天天看點

登入plsql 報錯 the account is locked --使用者被鎖

登入資料庫伺服器,進入oracle使用者下

[[email protected] admin]# su - oracle

[[email protected] ~]$ sqlplus / as sysdba

SQL*Plus: Release 10.2.0.1.0 - Production on Mon Jan 4 16:08:27 2016

Copyright (c) 1982, 2005, Oracle.  All rights reserved.

Connected to:

Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - 64bit Production

With the Partitioning, OLAP and Data Mining options

SQL> alter user xx account unlock; --xx為你的使用者名,解鎖

         User altered.

SQL> commit;

         Commit complete.

SQL> alter user XX identified by 使用者名的密碼;  --修改密碼

轉載于:https://blog.51cto.com/10983441/1731964