Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Align

Dbvisit Standby must be scheduled on both the primary and standby servers. Since Dbvisit version 5.1.19 it is possible to schedule Dbvisit only on the primary server using the INITIATE_DBVISIT_ON_STANDBY variable. Ensure you understand the implication before using this feature. See variable INITIATE_DBVISIT_ON_STANDBY in the  Dbvisit Standby configuration variables (DDC)  section for more details.
Dbvisit Standby can be scheduled using Dbvserver (see Scheduling Dbvisit Standby with Dbvserver scheduler - all platforms).
If Dbvisit Standby is scheduled in Dbvserver then no other scheduling software is required.
If Dbvserver is not running, then Dbvisit Standby can be scheduled in cron or other scheduling software. 
A decision must on the maximum time that the standby database may be behind the primary database. This is a business decision, but certain factors play a key role. These are:

  1. Speed of the network
  2. Activity on the database
  3. Speed of the disks
  4. Compression method chosen and CPU power to compress and uncompress archive log files.

A good recommended time frame is to schedule Dbvisit Standby every 10 minutes. 
To schedule Dbvisit Standby, add a cron entry to the Oracle software owner on both the primary and standby server. This entry will run 24x7 and every 10 minutes. It is recommended that the standby cron is scheduled a little later than the primary cron. This ensures there are log files to be applied when Dbvisit Standby executes on the standby server.
To edit the cron type in crontab -e

...

Section
Column
width5%

 

Column
width95
Panel
bgColorCCC
# Dbvisit - Standby Database Technology from Avisit Solutions Limited 
00,10,20,30,40,50 * * * * /usr/local/dbvisit/standby/dbvisit dbvisitp >>/dev/null 2>&1
Where Dbvisitp is the name of the database and Dbvisit Standby is installed in the /usr/local/dbvisit/standby directory.
>>/dev/null 2>&1 is optional.

Standby server:

Section
Column
width5%

 

Column
width95
Panel
bgColorCCC
#Dbvisit - Standby Database Technology from Avisit Solutions Limited 
05,15,25,35,45,55 * * * * /usr/local/dbvisit/standby/dbvisit dbvisitp >>/dev/null 2>&1
Where Dbvisitp is the name of the database and Dbvisit Standby is installed in the /usr/local/dbvisit/standby directory.
>>/dev/null 2>&1 is optional.
Note

Dbvisit Standby must be scheduled on both the primary and standby server.

...