Backup a database on a HDD with a different sector size Backup a database on a HDD with a different sector size sql sql

Backup a database on a HDD with a different sector size


All you have to do is back it up with a different name.


This issue is caused by different sector sizes used by different drives.

You can fix this issue by changing your original backup command to:

BACKUP DATABASE MyDB TO  DISK = N'D:\MyDB.bak' WITH  INIT , NOUNLOAD ,  NAME = N'MyDB backup',  STATS = 10,  FORMAT

Note that I've changed NOFORMAT to FORMAT and removed NOSKIP.

Found a hint to resolving this issue in the comment section of the following blog post on MSDN:SQL Server–Storage Spaces/VHDx and 4K Sector Size

And more information regarding 4k sector drives:http://blogs.msdn.com/b/psssql/archive/2011/01/13/sql-server-new-drives-use-4k-sector-size.aspx


Just remove the existing .bak file and re-run.