June 13, 2013 at 10:50 am
Can anyone elaborate on the phases of recovery or point me to an article, for when you recover a database that has been log shipped? When Googling "Phases of Recovery Log Shipping" (I also tried Googling different variations of that string with no luck), I get a bunch of step-by-step articles on how to set up Log Shipping. I am interested in learning what goes on during that recovery.
Thanks for any and all responses...
June 13, 2013 at 11:02 am
Same as any other database, roll forward then roll back. With a log shipped database the roll back portion is only done when recovering the database, the roll forward is done after very log restore.
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
June 13, 2013 at 11:08 am
Roll forward - transactions committed in the log, but not written to the data files are pushed there.
Roll back - uncommitted transactions are undone from the data file.
Viewing 3 posts - 1 through 2 (of 2 total)
You must be logged in to reply to this topic. Login to reply