last archive log applied + archive log lag in standby db [message #149833] |
Mon, 05 December 2005 04:02  |
xaverianite
Messages: 3 Registered: November 2005
|
Junior Member |
|
|
Hi All,
I've created a standby database, how do I see the information about the last archive log which had been applied in the standby database?
I have configured tnsnames.ora and listner.ora for automatic transfer of archive log from primary to standby db and standby db is in managed recovery state. Is it possible that I can set some of time lag in primary db or standby db after which archive log should be transferred to standby db or after which standby db should check for archive log to be applied?
thank you,
Saurabh.
[Updated on: Mon, 05 December 2005 04:04] Report message to a moderator
|
|
|
Re: last archive log applied + archive log lag in standby db [message #150280 is a reply to message #149833] |
Wed, 07 December 2005 00:21   |
tarundua
Messages: 1080 Registered: June 2005 Location: India
|
Senior Member |
|
|
Hi sourabh,
-->how do I see the information about the last archive log which had been applied in the standby database?
Quote: | On the standby database, query the V$ARCHIVED_LOG view to verify the archived redo log was applied.
SQL> SELECT SEQUENCE#,APPLIED FROM V$ARCHIVED_LOG
ORDER BY SEQUENCE#;
|
I dont think that Oracle provides any facility for time lag but you can see this discussion .
Hope this will help you.
[Updated on: Wed, 07 December 2005 00:23] Report message to a moderator
|
|
|
Re: last archive log applied + archive log lag in standby db [message #152631 is a reply to message #149833] |
Sun, 25 December 2005 15:37   |
sharan alva
Messages: 57 Registered: November 1999
|
Member |
|
|
Hi,
In dataguard you can use the ' delay ' option to delay the application of the logs on the standby, the logs will be shipped immediately to the standby, but the application of this log on the standby will be delayed by the value in minutes provided. Check the datagaurd documentation regarding this parameter.
This is specified in the log_archive_dest_n that is used to ship the logs to the standby
eg log_archive_dest_n = 'service=<servicename> etc .... delay=240'
In the documentation check for Standby with Time-lag
Thanks
SHaran
|
|
|
|
|
|
|
|