ORA-16024 Referencing LOG_ARCHIVE_DEST_n Parameter
SYMPTOMS
You are using the log_archive_dest_n parameter in your pfile:
log_archive_dest_1 = 'location = /u01/oracle/arc'
and are receiving an:
ORA-16024: parameter log_archive_dest_1 cannot be parsed
SOLUTION
Ensure that /u01/oracle/arc is a valid directory and that Oracle has write permissions there.
Remove the spaces on either side of the '=' sign.
You cannot have as space on either side on the '=' sign after 'location'.
Note that the word 'location' can be in either upper or lower case.
log_archive_dest_1 = 'location=/u01/oracle/arc'
Make sure that there is no trailing /.
Make sure that LOG_ARCHIVE_DEST is not set in the init.ora.
These 2 parameters are not compatible with each other.
NOTE
The error ORA-16024 could also be encountered when an SPFILE is used, for instance when upgrading a database.To prevent that, you can remove the log_archive_dest from spfile by issuing
SQL> alter system reset log_archive_dest scope=spfile;
If still not working set the LOG_ARCHIVE_DEST_n parameter to a null value:
LOG_ARCHIVE_DEST_n=''
------------------------------------------------------------------------------------------------
No comments:
Post a Comment