2011-01-06 13 views

risposta

3
BACKUP DATABASE [NameOfDatabase] TO DISK = N'D:\path\filename.bak' 
WITH NOFORMAT, NOINIT, NAME = N'NameOfDatabase-Full Database Backup', 
SKIP, NOREWIND, NOUNLOAD, STATS = 10 

Replace NameOfDatabase with name of your database. 
Replace D:\path\filename.bak with place you want to backup with 
Replace Name = N database name for cosmetic indexing reasons... 

fonte originale - http://forums.asp.net/p/1448416/3870094.aspx

Problemi correlati