设为首页收藏本站

新微赢技术网

 找回密码
 注册
搜索
热搜: 回贴
查看: 229|回复: 4
打印 上一主题 下一主题

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

[复制链接]
跳转到指定楼层
1#
发表于 2009-3-16 23:22:29 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
向大家介绍如何使用 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();
您需要登录后才可以回帖 登录 | 注册

本版积分规则

申请友链|小黑屋|最新主题|手机版|新微赢技术网 ( 苏ICP备08020429号 )  

GMT+8, 2024-11-18 06:47 , Processed in 0.083970 second(s), 9 queries , Gzip On, Memcache On.

Powered by xuexi

© 2001-2013 HaiAn.Com.Cn Inc. 寰耽

快速回复 返回顶部 返回列表