Oracle基礎 09 概要檔案 profile

j04212發表於2014-02-12


--建立 profile 概要檔案

create profile profile123 limit
failed_login_attempts 2;
 
--修改使用者的 profile 檔案
alter user scott profile profile123;

確保將初始化引數 resource_limit 設定為true,以實施概要檔案中的資源限制。否則,Oracle將忽略 create 或 alter profile 語句中的限制設定。與密碼有關的概要檔案屬性不依賴 resource_limit 引數,它們在建立概要檔案後自動啟動。


--查詢使用者的profile

SYS@ test11g> select profile from dba_users
  2  where username='IKKI';

PROFILE
------------------------------
DEFAULT


--檢視profile檔案內容

SYS@ test11g> select distinct resource_name,limit
  2  from dba_profiles
  3  where profile='DEFAULT';

RESOURCE_NAME                    LIMIT
-------------------------------- ----------------------------------------
PASSWORD_LOCK_TIME               1
IDLE_TIME                        UNLIMITED
CONNECT_TIME                     UNLIMITED
PASSWORD_GRACE_TIME              7
LOGICAL_READS_PER_SESSION        UNLIMITED
PRIVATE_SGA                      UNLIMITED
LOGICAL_READS_PER_CALL           UNLIMITED
SESSIONS_PER_USER                UNLIMITED
CPU_PER_SESSION                  UNLIMITED
FAILED_LOGIN_ATTEMPTS            10
PASSWORD_LIFE_TIME               180
PASSWORD_VERIFY_FUNCTION         NULL
PASSWORD_REUSE_TIME              UNLIMITED
PASSWORD_REUSE_MAX               UNLIMITED
COMPOSITE_LIMIT                  UNLIMITED
CPU_PER_CALL                     UNLIMITED

16 rows selected.


--刪除使用者概要檔案

drop profile profile123 cascade;

 

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

相關文章