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

oracle 用户密码管理

时间:2018-12-06 20:15:28      阅读:203      评论:0      收藏:0      [点我收藏+]

标签:log   bsp   历史   用户密码   oracle   dba   user   password   temp   

#oracle帐号多少次无效登录后锁定,锁定的天数

#首先建立profile文件,再指定用户属于profile

#如帐号xiaoming,profile 为aaa,输入3次无效密码后锁定,锁定2天

create profile  aaa limit failed_login_attempts 3 password_lock_time 2

#生效(把profile指定给某个用户)

alter user xiaoming profile aaa

#解锁(只有dba或有alter user 权限的用户)

alter user xiaoming account unlock

 

#设定密码几天一定要修改密码,宽限期为几天,密码的历史有几个

#如10天要修改密码,宽限2天,密码历史为12个

create profile bbb limit password_life_time 10 password_grace_time 2 password_reuse_time 12

#生效(把profile指定给某个用户)

alter user xiaoming profile bbb

 

#删除profile(cascade)[cascade] 选项表示连profile文件都删掉(物理删除)

drop profile aaa [cascade]

oracle 用户密码管理

标签:log   bsp   历史   用户密码   oracle   dba   user   password   temp   

原文地址:https://www.cnblogs.com/china2002/p/10078155.html

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