Oracle 重置sys密碼
有兩種重置sys密碼的方法
<方法一>
sqlplus /nolog
sql> connect /as sysdba
sql> alter user sys identified by "new password";
<方法二>
Oracle將sys密碼加密後存在database目錄下, 若以oracle11g為例, 儲存在下面路徑,
c:\app\Administrator\product\11.2.0\dbchome_1\database\PWDABC.ora
其中, 檔案名稱為PWD+SID。
要重置前, 必需將此檔案刪除或更名, 否則執行指令後會發生檔案已存在而失敗的錯誤。
1. 打開cmd
2. 進入"c:\app\Administrator\product\11.2.0\dbchome_1\database\"目錄
3. 執行指令"orapwd file=PWDABC.ora password=新密碼 entries=10", 重新產生密碼
4. 停止服務 net stop "OracleServiceABC"
5. 啟動服務 net start "OracleServiceABC"
reference web:
http://clshangsha.iteye.com/blog/1897789
<方法一>
sqlplus /nolog
sql> connect /as sysdba
sql> alter user sys identified by "new password";
<方法二>
Oracle將sys密碼加密後存在database目錄下, 若以oracle11g為例, 儲存在下面路徑,
c:\app\Administrator\product\11.2.0\dbchome_1\database\PWDABC.ora
其中, 檔案名稱為PWD+SID。
要重置前, 必需將此檔案刪除或更名, 否則執行指令後會發生檔案已存在而失敗的錯誤。
1. 打開cmd
2. 進入"c:\app\Administrator\product\11.2.0\dbchome_1\database\"目錄
3. 執行指令"orapwd file=PWDABC.ora password=新密碼 entries=10", 重新產生密碼
4. 停止服務 net stop "OracleServiceABC"
5. 啟動服務 net start "OracleServiceABC"
reference web:
http://clshangsha.iteye.com/blog/1897789
留言
張貼留言