August 6, 2009 at 2:28 pm
Hi,
I restore a database MyDB from Production SQL Server 2005 EE to a query server, sql server 2005 developer edition. The restore job is running succesfully with out any errors. But I noticed the following error messages in Error Log and I did not understand what these errors refering to even though the restore job running fine?
Error: 3633, Severity: 16, State: 1.
2009-08-06 12:46:40.41 spid58 The operating system returned the error '3(The system cannot find the path specified.)' while attempting 'DeleteFile' on 'D:\Microsoft SQL Server\MSSQL.1\MSSQL\Backup\MyDB.CKP' at 'storage.cpp'(875).
2009-08-06 12:46:41.17 Backup Error: 18272, Severity: 16, State: 1.
2009-08-06 12:46:41.17 Backup During restore restart, an I/O error occurred on checkpoint file 'D:\Microsoft SQL Server\MSSQL.1\MSSQL\Backup\MyDB.CKP' (operating system error 3(The system cannot find the path specified.)). The statement is proceeding but cannot be restarted. Ensure that a valid storage location exists for the checkpoint file.
2009-08-06 12:46:44.25 spid58 Starting up database 'MyDB'.
2009-08-06 12:46:44.66 spid58 The database 'MyDB' is marked RESTORING and is in a state that does not allow recovery to be run.
2009-08-06 12:46:44.90 spid58 Starting up database 'MyDB'.
2009-08-06 12:46:45.64 spid58 CHECKDB for database 'MyDB' finished without errors on 2009-08-01 22:00:12.523 (local time). This is an informational message only; no user action is required.
August 6, 2009 at 2:46 pm
Did you specify the restore must be done WITH STANDBY?
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
August 6, 2009 at 2:54 pm
Hello Rambilla4,
Please check this post.
http://www.sqlservercentral.com/Forums/FindPost307316.aspx
Regards,
Victor Alvarez
http://sqlpost.blogspot.com
August 6, 2009 at 3:57 pm
Here is my Restore Script:
RESTORE DATABASE MyDB
FROM DISK='D:\Backups\MyDB.bak'
WITH RECOVERY, REPLACE, STATS = 10,
MOVE 'MyDB_DATA' TO 'D:\SQLDATA\MyDB.MDF',
MOVE 'MyDB_log' TO 'D:\SQLLOG\MyDB.LDF'
GO
And I remember that, I have deleted the folder "Backup" from the path D:\Microsoft SQL Server\MSSQL.1\MSSQL as I'm not using the default location for backups.
Is this the reason for these errors? Can we delete the Backup folder from the default location?
August 8, 2009 at 12:25 am
Hi,
Its interesting!!! I have created "backup" folder in the path D:\Microsoft SQL Server\MSSQL.1\MSSQL and after that I'm not getting the restore error in the error log !!!
Is this a bug??
August 2, 2012 at 8:27 am
This is an old thread but I thought I'd post a reply as it may help others searching for a solution.
This will only work for 2008 sqlservers and up.
1, in SSMS right click the server name in object explorer and choose "facets" from the drop down menu
2, next to "facets" click the drop down and choose "Server Settings"
3, change the "BackupDirectory" entry to a valid location
June 5, 2015 at 12:02 pm
Thank you for this tip. I checked my facets setting and it was an incorrect location.
Viewing 7 posts - 1 through 6 (of 6 total)
You must be logged in to reply to this topic. Login to reply