程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> SqlServer數據庫 >> 關於SqlServer >> ASP.NET備份恢復SqlServer數據庫

ASP.NET備份恢復SqlServer數據庫

編輯:關於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("<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
{
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("<script language=Javascript>alert(''還原數據成功!'');location=''Default.ASPx''</script>");
}
catch (Exception error)
{
Response.Write(error.Message);
Response.Write("<script language=Javascript>alert(''還原數據失敗!'')</script>");
}
finally
{
con.Close();
}
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved