ORA-28000: the account is locked
2020-04-19 本文已影响0人
Bruce基
Oracle被锁定
ORA-28000: the account is locked
解除锁定:
alter user 你的账户名 account unlock;
查看登陆次数:
SELECT * FROM dba_profiles s WHERE s.profile=’DEFAULT’ AND resource_name=’PASSWORD_LIFE_TIME’;
注:dba_profiles 是系统配置集合视图(VIEW)文件。
从上图中可以看出,Oracle 默认登陆失败的次数为10次,如果连续登陆失败次数超过10次,用户将被锁定。
设置次数不限:
alter profile default limit failed_login_attempts unlimited;
也可以设置次数:
alter profile default limit failed_login_attempts 30;
注意:每次执行需要提交。
commit;
说明
本文只做学习参考,如有任何不准确的地方欢迎指正。
我的邮箱:
lulongji2011@163.com