jdgonzalez
Programmer
Hi everyone,
I'm hoping someone can help me out here. I'm starting a process of practicing my restoration of backups using query analyzer. I've been able to perform the restoration of the backup, but restoring the transaction logs is not working.
My scenario assumes that the backup is being restored to a new server and that I lost all data on the old one (except the backup and transaction logs which are copied to the network).
Here is the code I was using.
...but the error I get is:
I've been reading BOL on how to recover to a new server, but it's just not making any sense.
Any help provided would be greatly appreciated.
Thanks
I'm hoping someone can help me out here. I'm starting a process of practicing my restoration of backups using query analyzer. I've been able to perform the restoration of the backup, but restoring the transaction logs is not working.
My scenario assumes that the backup is being restored to a new server and that I lost all data on the old one (except the backup and transaction logs which are copied to the network).
Here is the code I was using.
Code:
restore log backuptest
from disk = 'C:\Documents and Settings\Administrator\Desktop\old_db\old_db_tlog_200505090000.TRN'
with norecovery
...but the error I get is:
Code:
Server: Msg 4306, Level 16, State 1, Line 1
The preceding restore operation did not specify WITH NORECOVERY or WITH STANDBY. Restart the restore sequence, specifying WITH NORECOVERY or WITH STANDBY for all but the final step.
Server: Msg 3013, Level 16, State 1, Line 1
RESTORE LOG is terminating abnormally.
I've been reading BOL on how to recover to a new server, but it's just not making any sense.
Any help provided would be greatly appreciated.
Thanks