specifying destination location for archive log files [message #128277] |
Sat, 16 July 2005 21:53 |
dnvs_praveen
Messages: 47 Registered: July 2005 Location: bangalore
|
Member |
|
|
init.ora
---------
log_archive_start=true
log_archive_dest_1='/home/oracle/newdb4/arch'
#db_recovery_file_dest='/home/oracle/flash_recovery_area' (commented 3rd line)
i want to change archive log destination. But when i try to mount the database its giving error that :
ora-32006: log_archive_start initialization parameter has been deprecated
ora-16024: parameter log_archive_dest_1 cannot be parsed
What is the procedure to change the archive log files desination
Praveen
|
|
|
Re: specifying destination location for archive log files [message #128289 is a reply to message #128277] |
Sun, 17 July 2005 02:10 |
Frank Naude
Messages: 4587 Registered: April 1998
|
Senior Member |
|
|
1) If you are running Oracle 10g, you need to remove the log_archive_start=true parameter from your INIT.ORA file. Oracle will automatically start the archiver process when the DB is in ARCHIVELOG mode.
2) Try to change your log_archive_dest_1 parameter to 'LOCATION=/home/oracle/newdb4/arch'
Ensure the location specified is a valid directory and that Oracle has permissions to write to it.
Best regards.
Frank
|
|
|