Hi I’m migrating a few databases from sql 2000 to sql 2008.
while running upgrade advisor I got a message that says that there are objects with the Dump/Load sintax. that is not on use anymore.
So I found the following text in a proc
Dump DataBase @name to @path With Init
Further investigating I discovered that this was a backup and that the sintax is similar.
My doubt is: Can this be replaced to:
Backup DataBase @NomeBanco to @nomeBkp With Init
is a to disk required? (can this Dump be used to backup to tape when used without the to disk?)
Is there any difference between the two statements?
Whats the main difference between this commands.
Thanks
Gabriel
Yes, MSDN BOL says compatible for SQL Server 2005 (DUMP and be used instead of BACKUP)
So my conclusion would be it’s valid for SQL Server 2008 given BACKUP stays the same as SQL Server 2005, except support for DUMP is removed