When using the log_file_name_convert parameter in creating a standby database, how can I configure my init.ora parameter file of the standby database on a different host to reference multiple redolog files on different mount points??
When you create stanby DB you must place all files, including LOG in come directory structure ac primary DB.
if uoy place db files and log files in another dir structure you must set 2 parameters for convers full file names with path for DB and LOG on standby DB box:
db_file_name_convert
log_file_name_convert
for more information read classic books (Oracle Documentation library)
Which converts the logs in /u01/oradata/prod in the primary to /u01/oradata/standby of the standby host
Now, my question is, how do I convert the logs in /u02/oradata/prod files???? When I put two LOG_FILE_NAME_CONVERT in the standby init.ora file, I get an error.
Bookmarks