加入收藏 | 设为首页 | 会员中心 | 我要投稿 马鞍山站长网 (https://www.0555zz.cn/)- 媒体处理、内容创作、云渲染、网络安全、业务安全!
当前位置: 首页 > 站长学院 > Asp教程 > 正文

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

发布时间:2023-10-20 12:53:11 所属栏目:Asp教程 来源:
导读:我们经常需要在程序中对数据库进行备份和恢复,以防止数据库遭到破坏带来巨大的损失。本文就向大家介绍了在ASP.NET中备份和恢复Sql Server 数据库的方法。

1、在ASP.NET中备份SqlServer数据库

源程序片段如下:
我们经常需要在程序中对数据库进行备份和恢复,以防止数据库遭到破坏带来巨大的损失。本文就向大家介绍了在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();
  }

(编辑:马鞍山站长网)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章