1. 程式人生 > >Oracle profile 使用技巧

Oracle profile 使用技巧

一個 use gin sys acl 登錄 錯誤 eat profile

給scott用戶分配一個profile要求如下:

1、嘗試登錄的次數最多4次;

2、如果4次輸入錯誤,則鎖定該用戶2天;

3、密碼每隔5天修改一次,寬限期為2天;

答:

SQL>conn sys/orcl as sysdba;

SQL>create profile scottprofile limit failed_login_attempts 4 password_lock_time 2 password_life_time 5 password_grace_time 2;

SQL>alter user scott profile scottprofile;

Oracle profile 使用技巧