用SQL語句就可以了空粗。斗缺
比如備份Northwind
SQL:
backup database Northwind to disk='c:\backuptext.dat'
所以程序這樣寫:
string myExecuteQuery = "backup database Northwind to disk='c:\backuptext.dat'斗銷鎮";
SqlCommand myCommand = new SqlCommand(myExecuteQuery, myConnection);
myCommand.Connection.Open();
myCommand.ExecuteNonQuery();
myConnection.Close();
㈡ asp.net如何備份MYSQL資料庫
備份SQL資料庫:右擊資料庫名稱,出來所有任務,選擇備份資料庫,選擇路徑就行了;
還原資料庫:您先建一個sql數據錄。右擊資料庫名稱,選擇所有任務,還原資料庫,在選擇「從設備」找到你那個備份的文件選擇就好了。
㈢ asp.net在後台怎麼對Sql Server 資料庫備份
using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void Button1_Click(object sender, EventArgs e)
{
string path=@"c:\大消Test.bak";
string backupstr="backup database Test to disk='"+path+"';";
SqlConnection con = new SqlConnection("server=.;uid=sa;pwd=;");
SqlCommand cmd = new SqlCommand(backupstr, con);
try
{
con.Open();
cmd.ExecuteNonQuery();
this.Label1.Text = "備份成功!";
}
catch
{
this.Label1.Text = "備份失敗!";
}
finally
{
con.Close();
}
}
protected void Button2_Click(object sender, EventArgs e)
{
string path = @"c:\Test.bak";
string restore="restore database Test from disk='"+path+"';";
SqlConnection con=new SqlConnection("server=.;uid=sa;pwd=;");
SqlCommand cmd=new SqlCommand(restore,con);
try
{
con.Open();
cmd.ExecuteNonQuery();
this.Label1.Text = "蔽昌恢復成功宏仿扒";
}
catch
{
this.Label1.Text = "恢復失敗";
}
finally
{
con.Close();
}
}
}
㈣ 怎樣用ASP備份SQL2000資料庫
ASP備份和恢復SQL資料庫的操作方法:
1、備份
<%
SQL="backup database 資料庫名 to disk='"&Server.MapPath("backup")&"\"&"backuptext.dat"掘困&"'"
set cnn=Server.createobject("adodb.connection")
cnn.open "driver={SQL Server};Server=伺服器名;uid=sa;pwd="
cnn.execute SQL
on error resume next
if err<>0 then
response.write "錯誤:"&err.Descripting
else
response.write "數據備份成功孫悔!"
end if
%>
2、恢復
<%
SQL="Restore database 資料庫名 from disk='"&Server.MapPath("backup")&"\判凱念"&"backuptext.dat"&"'"
set cnn=Server.createobject("adodb.connection")
cnn.open "driver={SQL Server};Server=伺服器名;uid=sa;pwd="
cnn.execute SQL
on error resume next
if err<>0 then
response.write "錯誤:"&err.Descripting
else
response.write "數據恢復成功!"
end if
%>
㈤ 怎麼用asp備份sql資料庫
沒有這樣的方法,必須使用sql客戶端,看一下你資料庫用的是什麼版本,比如sql2000,那你本地需要裝舉租sql2000,然後連上遠胡答拆程資料庫,將資料庫備份到本地。ftp在這里是沒用的
你理解錯誤,你說只給了你ftp,如果只給你ftp的話,你網站如何去連接資料庫?網站還如何運行?你檢查一下網站的數據褲棗庫連接頁面,裡面有連接資料庫的各種參數
ping一下域名啊,域名對應的公網IP即可