InterviewSolution
| 1. |
What Is The Usage Of Log_file_name_convert Parameter In Oracle Data Guard Setup? |
|
Answer» LOG_FILE_NAME_CONVERT parameter is used in ORACLE Data Guard setup that to in standby databases. LOG_FILE_NAME_CONVERT parameter are used to update the location of redo log files in standby database. These parameter are used when you are using different directory structure in standby database compare to primary database redo log file location. Step for Physical Standby These are the STEPS to FOLLOW:
SELECT thread#, sequence# AS “SEQ#”, name, first_change# AS “FIRSTSCN”, next_change# AS “NEXTSCN”,archived, deleted,completion_time AS “TIME” FROM v$archived_log V$ log_history LOG_FILE_NAME_CONVERT parameter is used in Oracle Data Guard setup that to in standby databases. LOG_FILE_NAME_CONVERT parameter are used to update the location of redo log files in standby database. These parameter are used when you are using different directory structure in standby database compare to primary database redo log file location. Step for Physical Standby These are the steps to follow: SELECT thread#, sequence# AS “SEQ#”, name, first_change# AS “FIRSTSCN”, next_change# AS “NEXTSCN”,archived, deleted,completion_time AS “TIME” FROM v$archived_log V$ log_history |
|