SYS AS SYSDBA@ORCL>startup open;
ORA-32004: obsolete or deprecated parameter(s) specified for RDBMS instance
Oracle instance started.
ora-32004: 不影响数据库的使用。报错信息为参数过期。可以看alter_orcl.log 日志文件那个参数过期。
SYS AS SYSDBA@ORCL> show parameter background_dump_dest;
查看alter_orcl.log 日志目录
Deprecated system parameters with specified values:
remote_os_authent
End of deprecated system parameter listing
remote_os_authent 参数过期。
修改参数文件:INITorcl.ORA
I:appAdministratorproduct11.2.0dbhome_1databaseINITorcl.ORA
删除参数:remote_os_authent
从pfile重新创建spfile
SQL> create spfile from pfile;
重启数据库,问题解决。
: