SQL> Disconnected from Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
---- Load weak_password.unl
ORA-28000: the account is locked
% sqlplus / as sysdba
解鎖該數據庫用戶。SQL> alter user username account unlock;
說明:
username為數據庫用戶名。
執行導入數據腳本。導入成功,系統提示如下信息:
Import terminated successfully without warnings.
如何解決ORACLE數據庫用戶密碼過期
1. 重新設定用戶密碼。
SQL> alter user username identified by password;
說明:
username為數據庫用戶名。
password為數據庫密碼,可以使用舊密碼。
2. 解鎖該數據庫用戶。
SQL> alter user username account unlock;
3. 修改用戶密碼過期策略。
SQL> ALTER PROFILE DEFAULT LIMIT PASSWORD_LIFE_TIME UNLIMITED;