5

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

有什么建议么。

4

1 回答 1

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

于 2011-01-06T13:50:25.657 回答