3.To apply the transaction logs as well as to recover the database to the point in time desired, enter the following restore commands at the command prompt:
a.Enter the following command for the first to the penultimate
RESTORE log database name from transaction log backup media with norecovery;
The database is still in “no recovery” mode. You can now apply the
b.Enter the following command for the last
RESTORE log database name from transaction log backup media with recovery;
For example:
RESTORE log northwind from Disk='G:\log1.bak' with norecovery; RESTORE log northwind from Disk='G:\log2.bak' with norecovery;
RESTORE log northwind from Disk='G:\log3.bak' with recovery;
Recovering All Data with | 71 |