用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即可