日志文章

2007年12月14日 17:37:40

ASP.NET备份恢复Sql Server数据库

本文将向大家介绍如何使用 ASP.NET 备份恢复 Sql Server 数据库,大家可以做个参考,也希望对大家有所帮助。  备份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();
  }

  还原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();
  }

Tags: backup   database  

类别: ASP.NET |  评论(5) |  浏览(1579) |  收藏
一共有 5 条评论
5楼 [楼主]心情 2008年05月24日 12:06:25 Says:
string path = this.FileUpload1.PostedFile.FileName 可以直接给定路径
4楼 [楼主]心情 2008年05月24日 12:05:22 Says:
应该是可以的,你应该将要恢复的数据库关闭即可
3楼 [匿名]请亲戚 2008年05月20日 17:15:05 Says:
恢复数据库时,错误抛出说数据库正在使用????
2楼 [匿名]oo 2008年05月07日 21:34:19 Says:
为什么不能恢复数据库。。???
发表评论