首页 > 代码库 > Oracle Profile
Oracle Profile
Oracle Profile操作
--查看用户的默认PROFILE信息select username,b.* from dba_users a,dba_profiles b where a.profile=b.profile and username = ‘PRECISE_DB‘;--设置用户的默认PROFILE相关参数信息alter profile default limit PASSWORD_LIFE_TIME unlimited;--创建用户的profilecreate profile app_users2 limit failed_login_attempts 5 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 10;--设置用户的profilealter user arcerzhang profile default;
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。