Posts
Sort by recent activity
Restore log error
Here is my code:
DECLARE @RestoreCommand VARCHAR(1000)
SET @RestoreCommand = N'-SQL "RESTORE LOG [MSN_Doc]
FROM DISK = ''c:\filename.sqb''
WITH MOVETO = ''D:\SQL_Data\''"'
PRINT @RestoreCommand
EXE...
Slow restore Performance
I am having issues with long running restores. I have even restored locally and across the network and both restores are very slow, almost at the speed of the naïve restore of sql server 2000. ...