DBAのパスワードを忘れてしまうことがたまにあります。
その場合、以下のコマンドでパスワードを変更できます。
(接続識別子:xxxxx、パスワード:test)
command
$ export ORACLE_SID=xxxxx
$ sqlplus / as sysdba
SQL> ALTER USER SYS IDENTIFIED BY 'test';
Go to list of users who liked
More than 5 years have passed since last update.
DBAのパスワードを忘れてしまうことがたまにあります。
その場合、以下のコマンドでパスワードを変更できます。
(接続識別子:xxxxx、パスワード:test)
$ export ORACLE_SID=xxxxx
$ sqlplus / as sysdba
SQL> ALTER USER SYS IDENTIFIED BY 'test';
Register as a new user and use Qiita more conveniently
Go to list of users who liked