功能
查看用户Profile
col profile format a50
col username format a50
select username, profile from dba_users;
查看Profile内容
select * from sys.user_resource_limits;
col limit format a30
col profile format a20
col resource_name format a30
col resource_type format a20
select * from sys.dba_profiles;
参数理解
password_life_time:密码过期策略
password_grace_time:密码过期的缓冲时间,过期过一段时间若还未更改则失效
failed_login_attempts:登录失败次数锁定
password_lock_time:超过登录失败次数锁定时间,单位:天
idle_time:登录超时自动退出
password_reuse_time和password_reuse_max:这两个参数必须互相关联设置,password_reuse_time指定了密码不能重用前的天数,而password_reuse_max则指定了当前密码被重用之前密码改变的次数,即多少次之内不许设置重复密码。两个参数都必须被设置为整数。
修改Profile
alter profile profile_name 参数 新值;alter profile default limit password_life_time 180; --即时生效,所有实例生效
- Profile详解
- Oracle之dba_profiles解析