使用下面的语句解锁scott:
- alter user scott account unlock;
alter user scott account unlock;
解锁之后可能会要求你该密码:
- alter user scott identified by tiger;
alter user scott identified by tiger;
再登陆:
- sqlplus scott/tiger
sqlplus scott/tiger
就能登陆了
用命令行启用帐户 先解锁后 一定要设密码 不然还是无法登陆
最后要进行提交。