windows 下解決方案:html
- 打開命令行輸入:sqlplus/nolog
- 輸入:connect/as sysdba
- 輸入: select * from dba_profiles where profile='DEFAULT' and resource_name='PASSWORD_LIFE_TIME'; -- 修改查看密碼過時設置
- 輸入:alter profile default limit password_life_time unlimited; -- 修改密碼不過時,根據本身須要求設置
- 輸入:alter user [username] identified by <password> account unlock; -- 解鎖已經被鎖定的賬號
參考:linux
http://www.ahlinux.com/oracle/11224.htmlsql
http://joyous.blog.51cto.com/9184276/1539059windows