SQL Backup Restore logshipping delay
astreet
Posts: 28
In our standby database environment, we backup transactions on the production database and ship them to the standby database without immediately applying the logs to the standby. We want to be able to apply all un-applied transactions up until a specific time. At all times, we want our standby database to be at least 4 hours behind production. How can we do that with SQL Backup?
Comments
In our case, we Network Copy all log files off production to the file server
but only run the "Log Restore" job from 10pm-4am on the standby server (low activity times)
DBA, MCITP
An alternative is to use
EXECUTE master.dbo.xp_dirtree @SourceDirBackupFiles, 1, 1
DBA, MCITP
Thanks!
I currently use Quest LiteSpeed (which has this feature) and am contemplating a switch to SQL Backup, but the loss of this feature might affect my decision.