淘先锋技术网

首页 1 2 3 4 5 6 7
默认的scott用户是被锁定的,先解锁就能登陆上了。



使用下面的语句解锁scott:
Java代码 复制代码
  1. alter user scott account unlock;  
alter user scott account unlock;

解锁之后可能会要求你该密码:
Java代码 复制代码
  1. alter user scott identified by tiger;  
alter user scott identified by tiger;




再登陆:
Java代码 复制代码
  1. sqlplus scott/tiger  
sqlplus scott/tiger

就能登陆了



用命令行启用帐户 先解锁后 一定要设密码 不然还是无法登陆
最后要进行提交。

转载于:https://www.cnblogs.com/ewyb/archive/2010/11/26/1889159.html