asp.Netデータベースが使用している解決策

3047 ワード

この问题は私を困惑させてとても长い时间、ネット上で探して、同じく完全な解决案がなくて、あまり简単ではありませんて、でたらめを言って、あるフォーラムの上でまだこの问题に答えていません.今日私は彻底的にこの问题を解决して、そしてC#の中でテストして完全に合格します.今彼を书いて、友达に対して助けがあることを望みます以下の情報はネット上の資料と私の実際の問題を総合して、整理したものです.
バックアップ:
バックアップボタンに次のように書きます.
 
  
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('''+@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