zoukankan      html  css  js  c++  java
  • 在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(); 
      } 

  • 相关阅读:
    为Fiddler增加Burp-like Inspector扩展 实现类似Burpsuite爆破、一键重放、编码转换等功能
    SVN常见问题总结一
    手把手教你学SVN
    js基本语法汇总
    最全的常用正则表达式大全
    CSS padding margin border属性详解
    从零开始学习jQuery (五) 事件与事件对象
    js正则表达式语法
    浏览器内部工作原理
    原生AJAX入门讲解(含实例)
  • 原文地址:https://www.cnblogs.com/88223100/p/1016208.html
Copyright © 2011-2022 走看看