首 页IT知识库翔宇问吧收藏本站
当前位置:翔宇亭IT乐园IT知识库WEBASP.NET

在ASP.NET中备份恢复Sql Server数据库的方法

减小字体 增大字体 作者:佚名  来源:本站整理  发布时间:2011-05-15 08:03:15

我们经常需要在程序中对数据库进行备份和恢复,以防止数据库遭到破坏带来巨大的损失。本文就向大家介绍了在ASP.NET中备份和恢复Sql Server 数据库的方法。

1、在ASP.NET中备份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()))
  {
  Response.Write(" ");
  return;
  }
  SqlCommand com = new SqlCommand(SqlStr2, con);
  com.ExecuteNonQuery();
  Response.Write(" ");
  }
  catch (Exception error)
  {
  Response.Write(error.Message);
  Response.Write(" ");
  }
  finally
  {
  con.Close();
  }

2、在ASP.NET中还原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();
  Response.Write(" ");
  }
  catch (Exception error)
  {
  Response.Write(error.Message);
  Response.Write(" ");
  }
  finally
  {
  con.Close();
  }

知识评论评论内容只代表网友观点,与本站立场无关!

   评论摘要(共 0 条,得分 0 分,平均 0 分) 查看完整评论

用户名: 查看更多评论

分 值:100分 90分 80分 70分 60分 40分 20分

内 容:

请注意用语文明且合法,不要发布带有攻击性、侮辱性的言论,谢谢合作!

验证码:

关于本站 | 网站帮助 | 广告合作 | 网站声明 | 友情连接 | 网站地图 | 用户守则 | 联系我们
本站部分内容来自互联网,如有侵权,请来信告之,谢谢!
Copyright © 2007-2019 biye5u.com. All Rights Reserved.
网站备案号:黑ICP备13005378号-3