以编程方式使用备份数据库
如何使用 .bak 数据库备份文件(通过 SQL Server 中的查询进行备份)以编程方式?
我希望我的应用程序将数据库备份到某个位置(我已经可以做到),并且我还希望它能够加载备份的数据库(.bak 文件)。
我如何使用 C# 来做到这一点?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您需要首先确保您的开发盒上安装了 SMO(SQL Server 管理对象)并可供您使用。如果您已在其上安装了某些版本的 SQL Server,则通常会出现这种情况。
如果您有可用的 SMO 库,则可以使用此代码片段进行操作:
为此,您需要具有以下项目引用
和命名空间
Microsoft.SqlServer.SmoExtend
在名为Microsoft.SqlServer.SmoExtended.dll
的程序集中实现,该程序集应在目录 < code>C:\Program Files\Microsoft SQL Server\100\SDK\Assemblies\(如果安装了 SMO)。如果您没有安装 SMO,您可以从 此处 适用于 SQL Server 2008 R2(还有适用于 SQL Server 2005 的旧版本)
You need to first make sure you have the SMO (SQL Server Management Objects) installed and available to you on your dev box. This is typically the case, if you have installed some version of SQL Server on it.
If you have the SMO library available, you can use this code snippet for your operation:
For this to work, you need to have the following project references
and the namespace
Microsoft.SqlServer.SmoExtended
is implemented in the assembly calledMicrosoft.SqlServer.SmoExtended.dll
which should be found in the directoryC:\Program Files\Microsoft SQL Server\100\SDK\Assemblies\
if you have SMO installed.If you don't have SMO installed, you can go fetch it from here for SQL Server 2008 or here for SQL Server 2008 R2 (there's also an older version for SQL Server 2005)
只需使用 SqlCommand.ExecuteNonQuery 来执行执行操作所需的 SQL,例如:
当然,相关 SQL 用户需要具有适当的权限。
Simply use SqlCommand.ExecuteNonQuery to execute the SQL needed to perform the operations, such as:
Of course the SQL user in question will need to have appropiate permissions.
这是备份的方法:
这是恢复的方法:
This is how to backup:
And this is how to restore:
检查此链接:
创建 SQL Server使用 C# 将文件(.bak)备份到任何位置
另外:
备份和恢复 SQL 数据库
Check this link:
Creating SQL Server backup file (.bak) with c# to any location
Also this:
Backup and restore SQL databases