zoukankan      html  css  js  c++  java
  • ASP.NET备份恢复SQL Server数据库

    一、备份SQL Server数据库

    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("<script language=javascript>alert('此文件已存在,请从新输入!');

    location='Default.aspx'</script>");
    return;
    }
    SqlCommand com = new SqlCommand(SqlStr2, con);
    com.ExecuteNonQuery();
    Response.Write("<script language=javascript>alert('备份数据成功!');

    location='Default.aspx'</script>");
    }
    catch (Exception error)
    {
    Response.Write(error.Message);
    Response.Write("<script language=javascript>alert('备份数据失败!')</script>");
    }
    finally

    二、还原SQL Server数据库

    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("<script language=javascript>alert('还原数据成功!');

    location='Default.aspx'</script>");
    }
    catch (Exception error)
    {
    Response.Write(error.Message);
    Response.Write("<script language=javascript>alert('还原数据失败!')</script>");
    }
    finally

  • 相关阅读:
    Codeforces Round #131 (Div. 2) E. Relay Race dp
    Codeforces Round #130 (Div. 2) C
    Codeforces Round #130 (Div. 2) A. Dubstep
    UVA 11858 Frosh Week 逆序对统计
    UVA 11149 Power of Matrix 快速幂
    UVA 12382 Grid of Lamps 贪心
    POJ 3614 Sunscreen 贪心
    Codeforces Round #238 (Div. 2) D. Toy Sum 暴搜
    Codeforces Round #227 (Div. 2) E. George and Cards 线段树+set
    Codeforces Round #327 (Div. 2) E. Three States
  • 原文地址:https://www.cnblogs.com/cxy521/p/1258493.html
Copyright © 2011-2022 走看看