Oracle 使用者 profile 屬性 轉

2022-07-22 03:15:12 字數 1624 閱讀 1986

--檢視profile 內容

select * from dba_profiles where profile='pf_eagle';

--檢視使用者的profiles

select username,profile from dba_users;

--檢視是否啟用動態資源限制引數

show parameter resource_limit;

--啟用限制

alter system set resource_limit=true scope=both;

--建立profile

create profile pf_eagle limit

failed_login_attempts 6

password_life_time 60

password_reuse_time 60

password_reuse_max 5

password_verify_function verify_function

password_lock_time 1/24

password_grace_time 90;

--修改使用者預設的profile

alter user user_name profile profile_name;

alter profile profile_personal limit failed_login_attempts unlimited;

--修改profile屬性

alter profile default limit password_life_time unlimited;

alter profile default limit composite_limit unlimited;

alter profile default limit failed_login_attempts unlimited;

alter profile default limit password_reuse_time unlimited;

alter profile default limit password_grace_time unlimited;

alter profile default limit password_verify_function null;

alter profile default limit password_lock_time unlimited;

alter profile default limit failed_login_attempts 10;

對profile的標準語法說明如下:

1)建立profile的語法如下:

create profile profile

limit ...

;2)對資料庫資源做限制時,下面是全部可用的引數:

| private_sga   限制會話在sga中shared pool中私有空間的分配

}3)對密碼做限制時,下面是全部可用的引數:

| password_verify_function

}

oracle使用者許可權 profile及角色的管理

一。使用者的基本管理操作 1.建立使用者同時指定密碼與預設表空間 create user test identified by test default tablespace users 2。給使用者可以登入的系統許可權 grant connect to test 3.使用者的許可權 revoke ...

使用者profile檔案引數詳解

profile檔案引數詳解 failed login attempt 設定登入到oracle資料庫時可以失敗的次數。一旦某使用者嘗試登入資料庫的達到該值時,該使用者的帳戶就被鎖定,只能由dba能解鎖。password life time 設定口令的有效時間 天數 一旦超過這一時間,必須重新設口令。預...

ORACLE 中 PROFILE的管理

session per user 2 cpu per session 1000 idle time 60 使用者在資料庫終止前,可以讓連線空閒多長時間 分鐘 connect time 480 六 限制引數 0 unlimited 取消資源限制 default 缺剩資源限制,即使用default資源限...