限制oracle資料庫例項中的使用者(user)總數

cnhtm發表於2010-02-22

如果要限制oracle資料庫例項中使用者(user)的總數,可以使用LICENSE_MAX_USERS來完成,如設定:
LICENSE_MAX_USERS = 200
則限定資料庫例項的總使用者(user)數不能超過200

(b14231 第104頁)

下面演示其效果

[@more@]

登入資料庫

ora_test@oracle[/home/oracle]> sqlplus / as sysdba

SQL*Plus: Release 10.2.0.1.0 - Production on Tue Feb 23 09:14:58 2010

Copyright (c) 1982, 2005, Oracle. All rights reserved.


Connected to:
Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
With the Partitioning, OLAP and Data Mining options

檢查license_max_users引數當前值

sys@CNHTM> show parameter license_max_users;

NAME TYPE VALUE
------------------------------------ ----------- ------------------------------
license_max_users integer 0

這裡預設為0,表示不限制總數

檢查當前資料庫的使用者數

sys@CNHTM> select count(1) from dba_users;

COUNT(1)
----------
6

設定license_max_users引數,現在總使用者數

sys@CNHTM> alter system set license_max_users=6 scope=both;

System altered.

建立新使用者,看使用者總數的限制是否生效

sys@CNHTM> create user test identified by test;
create user test identified by test
*
ERROR at line 1:
ORA-01985: cannot create user as LICENSE_MAX_USERS parameter exceeded

這裡出現ORA-01985錯誤,證明license_max_users引數可以起到限制使用者數的作用

--end--

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

相關文章