Oracle10g 中 scott/tiger 连接不上!解决方法!
1.?????? Oracle 10g 中scott/tiger 连接出现 the? account is locked(解决!)
?
??????? Oracle 10g中默认 将 scott/tiger 用户 locked锁定,解锁方案:
?
(1)?????? conn sys/sys as sysdba;? //以DBA的身份登录
(2)?????? alter user scott account unlock; //为scott用户 解锁
(3)?????? conn? scott/tiger? //重新连接登录
(4)?????? 提示修改密码,修改完成之后,即可登录成功!
?