oracle刚开始时Scott账户是lock状态的解决办法
1. 首先,需要对Scott账户进行解锁,输入:alter user scott account unlock;这时,提示scott账户过期并且密码过期(expired);
2. 然后,查看scott账户有效期,输入:select * from dba_profiles s where s.profile = ‘default‘ and resource_name = ‘password_life_time‘;
3. 接着,设置scott账户的有效期为无限,输入:alter profile default limit password_life_time unlimited;
4. 最后,修改scott账户的密码为root,输入:alter user scott identified by root。
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。