| SQL> shutdown immediate; Database closed. Database dismounted. Oracle instance shut down. SQL> startup ORA-32004: obsolete and/or deprecated parameter(s) specified ORACLE instance started.Total System Global Area 167772160 bytes Fixed Size 1218316 bytes Variable Size 71305460 bytes Database Buffers 92274688 bytes Redo Buffers 2973696 bytes Database mounted. Database opened. |
| SQL> host oerr ora 32004; 32004, 00000, "obsolete and/or deprecated parameter(s) specified" // *Cause: One or more obsolete and/or parameters were specified in // the SPFILE or the PFILE on the server side. // *Action: See alert log for a list of parameters that are obsolete. // or deprecated. Remove them from the SPFILE or the server // side PFILE. |
| *.log_archive_format="%t_%s_%r.dbf" *.log_archive_max_processes=3 *.log_archive_start=FALSE *.log_archive_trace=4096 |
| Deprecated system parameters with specified values: log_archive_start End of deprecated system parameter listing |
| SQL> alter system reset log_archive_start SCOPE=SPFILE SID="*";System altered.SQL> shutdown immediate; Database closed. Database dismounted. ORACLE instance shut down. SQL> startup ORACLE instance started.Total System Global Area 167772160 bytes Fixed Size 1218316 bytes Variable Size 75499764 bytes Database Buffers 88080384 bytes Redo Buffers 2973696 bytes Database mounted. Database opened. |
| SQL>select name,description from v$parameter where isdeprecated = "TRUE"; |
|
|