fuzzyocelot
Programmer
Hi everyone,
When we back up SQL Server 2000 databases, we use the following t-sql statement. Does anyone see anything majorly wrong with it?
The reason I ask is because we sent a vendor a backup file for a database. He’s claiming that the .dat file doesn't restore the same way as a .bak file and that many of the constraints and indexes are missing. We've never had a problem with our .dat files. Does anyone know how some of the constraints or indexes could be missing? This does not make any sense to us.
Thanks!
When we back up SQL Server 2000 databases, we use the following t-sql statement. Does anyone see anything majorly wrong with it?
Code:
BACKUP DATABASE [MyDB] TO DISK = N's:\ MSSQL\Backup\MyDB.dat' WITH INIT , NOUNLOAD , NAME = N' MyDB backup', SKIP , STATS = 10, DESCRIPTION = N' MyDB complete backup', NOFORMAT
The reason I ask is because we sent a vendor a backup file for a database. He’s claiming that the .dat file doesn't restore the same way as a .bak file and that many of the constraints and indexes are missing. We've never had a problem with our .dat files. Does anyone know how some of the constraints or indexes could be missing? This does not make any sense to us.
Thanks!