源码网商城,靠谱的源码在线交易网站 我的订单 购物车 帮助

源码网商城

asp.net 因为数据库正在使用的解决方法

  • 时间:2020-02-18 15:56 编辑: 来源: 阅读:
  • 扫一扫,手机访问
摘要:asp.net 因为数据库正在使用的解决方法
这个问题困惑我好长的时间,在网上搜,也没完全的解决方案,不是过于简单,就是乱说,有的论坛上还没人回答这个问题.今天我彻底解决这个问题,并在C#里测试完全通过.现在把他写出来,希望对朋友们有帮助(如要转载,记得给我版权哦.嘿嘿!!!).以下信息是综合网上的资料和我的实际问题,整理出来的. 备份: 在备份按钮里写:
[u]复制代码[/u] 代码如下:
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(); } }
还原: 在还原按钮里写:
[u]复制代码[/u] 代码如下:
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
[u]复制代码[/u] 代码如下:
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('''+@dbname+''')' exec (@sql) open getspid fetch next from getspid into @spid while @@fetch_status <>-1 begin exec('kill') +@spid fetch next from getspid into @spid end close getspid deallocate getspid end
  • 全部评论(0)
联系客服
客服电话:
400-000-3129
微信版

扫一扫进微信版
返回顶部