如何使用ASP.NET备份和恢复SqlServer数据库

本文提供了使用ASP进行SQL Server数据库备份与还原的代码实例。备份部分通过构造SQL语句并利用SqlConnection执行,同时检查备份文件是否存在。还原部分则通过上传备份文件并设置相应的数据库名称来实现。

 首先我们先分析ASP备份SQL数据库的代码,详细如下:

备份SqlServer数据库:
string SqlStr1 = "Server=(local);database='" + this.DropDownList1.SelectedValue + "';Uid=sa;Pwd=";
string SqlStr2 = "backup database " + this.DropDownList1.SelectedValue + " to disk='" + this.TextBox1.Text.Trim() + ".bak'";
SqlConnection con = new SqlConnection(SqlStr1);
con.Open();
try
{
if (File.Exists(this.TextBox1.Text.Trim()))
{
ClientScript.RegisterClientScriptBlock(this.GetType(), "", "alert('此文件已存在,请从新输入!');location='Default.aspx'", true);
return;
}
SqlCommand com = new SqlCommand(SqlStr2, con);
com.ExecuteNonQuery();
ClientScript.RegisterClientScriptBlock(this.GetType(), "", "alert('备份数据成功!');location='Default.aspx'", true);
}
catch (Exception error)
{
Response.Write(error.Message);
ClientScript.RegisterClientScriptBlock(this.GetType(), "", "alert('备份数据失败!')", true);
}
finally
{
con.Close();
}

下面是ASP.NET还原SQL数据库的方法,代码如下:

还原SqlServer数据库:
string path = this.FileUpload1.PostedFile.FileName; //获得备份路径及数据库名称
string dbname = this.DropDownList1.SelectedValue;
string SqlStr1 = "Server=(local);database='" + this.DropDownList1.SelectedValue + "';Uid=sa;Pwd=";
string SqlStr2 = "use master restore database " + dbname + " from disk='" + path + "'";
SqlConnection con = new SqlConnection(SqlStr1);
con.Open();
try
{
SqlCommand com = new SqlCommand(SqlStr2, con);
com.ExecuteNonQuery();
ClientScript.RegisterClientScriptBlock(this.GetType(), "", "alert('还原数据成功!');location='Default.aspx'", true);

}
catch (Exception error)
{
Response.Write(error.Message);
ClientScript.RegisterClientScriptBlock(this.GetType(), "", "alert('还原数据失败!');", true);
}
finally
{
con.Close();
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值