ORA-01999: password file cannot be updated in SHARED mode
Cause: The operation failed because the INIT.ORA parameter REMOTE_LOGIN_PASSWORDFILE was set to SHARED.
Action: Set the INIT.ORA parameter to EXCLUSIVE.
该错误指出,在共享模式下,password file无法更新。
ORA-01999:sharable模式不支持password file更新。您必须使用独占模式将password file更新到支持所需的功能级别。
ORA-01999通常会在使用新版本的Oracle数据库时发生,该版本可能需要更新password file以支持更新的功能,而该功能仅在独占模式下被支持。
1.使用“shutdown immediate”命令关闭Oracle实例;
2.设置“exclusive_mode”配置文件变量;
3.使用“startup exclusive”命令启动Oracle实例;
4.用“alter system set remote_login_passwordfile=exclusive scope=spfile”更新password文件;
5.使用“shutdown immediate”命令关闭Oracle实例;
6.重置“exclusive_mode”配置文件变量;
7.使用“startup”命令启动Oracle实例。