ORA-28000: the account is locked-
的解决办法
2009-11-11 18:51
ORA-28000: the account is locked
第一步:使用
PL/SQL
,登录名为
system,
数据库名称不变,选择类型的时候把
Normal
修改
为
Sysdba;
第二步:选择
myjob,
查看
users;
第三步:选择
system,
右击点击“编辑”
;
第四步:修改密码,把“帐户被锁住”的勾去掉;
第五步:点击“应用”再点击“关闭”
;
第六步:重新登录就可以通过验证了;
第二种
ALTER USER username ACCOUNT UNLOCK;
第三种
在
plsql developer
中要是以
scott/tiger
登录时提示
ora-28000 the account is locked
。
解决办法:
新装完
Oracle10g
后,用
scott/tiger
测试,会出现以下错误提示:
oracle10g the account is locked
oracle10g the password has expired
原因:默认
Oracle10g
的
scott
不能登陆。
解决:
(
1
)
conn sys/sys as sysdba; //
以
DBA
的身份登录
(
2
)
alter user scott account unlock;//
然后解锁
(
3
)
conn scott/tiger //
弹出一个修改密码的对话框,修改一下密码就可以了
在运行里面输入
cmd
在
DOS
模式下输入
sqlplus
,
以
system
用户名登录,
密码是刚装
oracle
时自己填写的密码
orcl
,登录进去以后。
SQL> conn sys/sys as sysdba;
(分号是必须的但是我是以
system
登录的所在这不应该
写
conn sys/sys as sysdba
应该写
conn system/orcl as sysdba;
)
Connected.
SQL> alter user scott account unlock;
User altered.
SQL> commit;
Commit complete.
SQL> conn scott/tiger//
请输入新密码,并确认后
OK
Password changed
Connected.