主要是利用SQL Server提供的SQL语句来实现备份的。
备份:use master;backup database @name to disk=@path;
恢复:use master;restore database @name from disk=@path;
上面用的是参数化SQL语句,可以在程序执行的时候动态给参数赋值。
.aspx代码:
以下为引用的内容:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="DatabaseAction.aspx.cs" Inherits="DatabaseAction" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" > <head runat="server"> <title>无标题页</title> </head> <body> <form id="form1" runat="server"> <div> <table border="0" width="100%"> <tr><td colspan="2">数据库还原和备份</td></tr> <tr><td>请选择数据库</td><td> <asp:DropDownList ID="ddlDatabaseList" runat="server"> </asp:DropDownList></td></tr> <tr><td> 数据库文件名</td><td> <asp:TextBox ID="txtDbFileName" runat="server"></asp:TextBox></td></tr> <tr><td> 操作选项</td><td> <asp:RadioButton ID="rbBackup" runat="server" Checked="True" GroupName="action" Text="备份" /> <asp:RadioButton ID="rbRestore" runat="server" GroupName="action" Text="还原" /></td></tr> <tr><td> 操作</td><td> <asp:Button ID="btnOK" runat="server" OnClick="btnOK_Click" Text="执行" /></td></tr> </table> </div> </form> </body> </html> |