如何使用T-SQL或.net代码将Mdf / ldf数据库文件转换为.bak文件(db restore)

时间:2011-01-06 13:44:53

标签: sql-server database-restore mdf ldf

我有sql server数据库文件(Mdf / Ldf),我想使用T-SQL命令或.net代码(C#或Vb.net)将它们转换为备份文件。

任何建议。

thans

1 个答案:

答案 0 :(得分: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...

原始来源 - http://forums.asp.net/p/1448416/3870094.aspx