天天看點

Oracle中限制使用者會話數!

客戶反映想從資料庫層面限制使用者的連接配接數量,查了些資料,發現還是可以實作的,下面舉例證明:(sysdba操作下面語句)

  1. SQL> create profile five_session limit sessions_per_user 5;
  2. SQL> alter user scott profile five_session;
  3. SQL> alter system set resource_limit=true;

這樣當我用scott使用者在sqlplus連續登陸5次,打開5個會話,然後繼續登陸,在第六次登陸的時候就會出現如下錯誤:

C:\Users\yzj>sqlplus scott/tiger

SQL*Plus: Release 10.2.0.4.0 - Production on 星期五 9月 7 17:25:55 2012

Copyright (c) 1982, 2007, Oracle.  All Rights Reserved.

ERROR: ORA-02391: 超出同時存在的 SESSIONS_PER_USER 限制

請輸入使用者名:

到此,實驗完畢!

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/444614/viewspace-742903/,如需轉載,請注明出處,否則将追究法律責任。

轉載于:http://blog.itpub.net/444614/viewspace-742903/