Oracle - 找回sys和system系統管理員的密碼
怎樣找回sys和system系統管理員的密碼?
Case:? 把sys的密码改成 sys, 把system的密码改成system.
?
?
Solution: 在数据库服务器端做下面步骤.
C:\>sqlplus /nolog
SQL*Plus: Release 9.2.0.1.0 - Production on 星期三 3月 24 11:21:06 2004
Copyright (c) 1982, 2002, Oracle Corporation.??All rights reserved.
SQL> connect / as sysdba
已连接。
SQL> alter user sys identified by sys;
用户已更改。
SQL> alter user system identified by system;
用户已更改。
SQL>