您的位置:首页 > 数据库 > Oracle

 Oracle 11g Password Features

2016-09-02 11:48 288 查看
If a specific profile is not assigned to a given database user,
then the default profile will be assigned to that user. The
password related settings for the default profile have changes in
Oracle 11g as shown in the following table:
Resource NameOracle Database 10gOracle 11g
Failed_login_attempts1010
Password_grace_timeUnlimited7 (days)
Password_life_timeUnlimited180
Password_lock_timeUnlimited1 (days)
Password_reuse_maxUnlimitedUnlimited
Password_reuse_timeUnlimitedUnlimited
You can see these new settings by issuing the following
query:

SELECT profile, resource_name, limit
FROM dba_profiles
WHERE profile='DEFAULT';

ALTER USER SYSMAN IDENTIFIED BY <password>;

ALTER PROFILE DEFAULT LIMIT password_life_time UNLIMITED;

  

SELECT username,ACCOUNT_STATUS,EXPIRY_DATE FROM dba_users;
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: