• 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?