欢迎投稿

今日深度:

【翻译自mos文章】oracle db 中的用户账户被锁--查

【翻译自mos文章】oracle db 中的用户账户被锁--查看oracle用户的尝试次数,mosoracle


 

其实这个文章是为oracle 别的软件产品写的,不过涉及到user 锁定问题,那还是跟db有关系。

该文章我就不全部翻译了,只翻译最有用的一点:

---lcount列是记录oracle用户用错误的密码登陆db的登陆的次数。

 

Select lcount from SYS.USER$ where name ='<USERNAME>'


oracle中用户被锁

你安装 oracle 时 那个scott 用户 是被锁住的,
你想用 scott 用户登录 必须要解锁的
先用 sys 或 system 管理员身份登录进去
使用 alter user scott account unlock; 可以 将用户scott 解锁

希望对你有帮助
 

oracle 11g中用户被锁问题

alter user scott account unlock
后面加个分号。
alter user scott account unlock;
oracle命令以分号结束。

---
以上,希望对你有所帮助。
 

www.htsjk.Com true http://www.htsjk.com/shujukunews/2180.html NewsArticle 【翻译自mos文章】oracle db 中的用户账户被锁--查看oracle用户的尝试次数,mosoracle 参考原文: Users Accounts Getting Locked. (Doc ID 791037.1) 其实这个文章是为oracle 别的软件产品写的,不过涉及到...
评论暂时关闭