备份:
在备份按钮里写:
protected void Button1_Click(object sender, EventArgs e)
{
string path = “e:\MAZ数据库备份\” + Menu+ “.bak”;
if (File.Exists(path))
{
File.Delete(path);//注意,这个步骤很重要,如果重复,在备份的数据,就会变成,
//你刚开始的数据,所以每次都要先删除.
}
if (!File.Exists(path))
{
FileStream fs = File.Create(path);
fs.Close();
}
string backupstr=”backup database Test to disk='”+path+”‘;”;
SqlConnection con = new SqlConnection(“server=localhost;database=Menu;uid=sa;pwd=sa;”);
SqlCommand cmd = new SqlCommand(backupstr, con);
try
{
con.Open();
cmd.ExecuteNonQuery();
MessageBox.Show(“备份成功!”);
connection.Close();
}
catch (Exception ex)
{
string stringError = ex.ToString();
MessageBox.Show(“备份失败!”);
connection.Close();
}
}
还原:
在还原按钮里写:
protected void Button2_Click(object sender, EventArgs e)
{
string path = “e:\MAZ数据库备份\” + Menu+ “.bak”;
string connectionStringTest = “server=localhost ;database=master;uid=sa;pwd=sa”;
SqlConnection connection = new SqlConnection(connectionStringTest);
string backupstr = “restore database Menu from disk='” + path + “‘;”;
try
{
string sql = “exec killspid ‘” + Menu+ “‘”;//这个很关键,要不然就出现题目上的错误了
SqlCommand cmd = new SqlCommand(sql, connection);
connection.Open();
cmd.ExecuteNonQuery();
cmd = new SqlCommand(backupstr, connection);
cmd.ExecuteNonQuery();
MessageBox.Show(“恢复成功!”);
connection.Close();
}
catch (Exception ex)
{
string stringError = ex.ToString();
MessageBox.Show(“恢复失败!”);
connection.Close();
}
}
存储过程 killspid
create proc killspid (@dbname varchar(20))
as
begin
declare @sql nvarchar(500)
declare @spid int
set @sql=’declare getspid cursor for
select spid from sysprocesses where dbid=db_id([email protected]/* */+”’)’
exec (@sql)
open getspid
fetch next from getspid into @spid
while @@fetch_status <>-1
begin
exec(‘kill’) [email protected]/* */
fetch next from getspid into @spid
end
close getspid
deallocate getspid
end
以上就是【asp.net 因为数据库正在使用的解决方法】的全部内容了,欢迎留言评论进行交流!
2. 分享目的仅供大家学习和交流,您必须在下载后24小时内删除!
3. 不得使用于非法商业用途,不得违反国家法律。否则后果自负!
4. 本站提供的源码、模板、插件等等其他资源,都不包含技术服务请大家谅解!
5. 如有链接无法下载、失效或广告,请联系管理员处理!
6. 本站资源售价只是赞助,收取费用仅维持本站的日常运营所需!
7. 如遇到加密压缩包,请使用WINRAR解压,如遇到无法解压的请联系管理员!
8. 精力有限,不少源码未能详细测试(解密),不能分辨部分源码是病毒还是误报,所以没有进行任何修改,大家使用前请进行甄别
丞旭猿论坛
暂无评论内容