码迷,mamicode.com
首页 > 数据库 > 详细

Oracle Profile

时间:2014-08-12 16:26:54      阅读:220      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   ar   cti   div   log   

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;

--创建用户的profile
create 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;
--设置用户的profile
alter user arcerzhang profile default;

 

Oracle Profile,布布扣,bubuko.com

Oracle Profile

标签:style   blog   color   io   ar   cti   div   log   

原文地址:http://www.cnblogs.com/arcer/p/3907218.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!