遠程備份恢複SQL Server資料庫
來源:互聯網
上載者:User
///<summary>
///備份資料庫到本地磁碟
///</summary>
public bool BackUp(string BackUpFile)
{
try
{
//第一步:在伺服器上建立臨時檔案夾
ExecuteSql(@"master..xp_cmdshell 'md C:\temp'");
ExecuteSql(@"master..xp_cmdshell 'del C:\temp\*.* /q'");
//第二步:備份資料庫到伺服器目錄
ExecuteSql(@"backup database " + DataBaseName() + @" to disk='C:\temp\HSSY'");
//第三步:共用伺服器的備份目錄
ExecuteSql(@"master..xp_cmdshell 'net share SQLDATABACK=C:\temp'");
//第四步:複製伺服器上的備份檔案到本地
File.Copy(@"\\" + ServerIP() + @"\SQLDATABACK\HSSY", BackUpFile,true);
return true;
}
catch (System.Data.SqlClient.SqlException E)
{
throw new Exception(E.Message);
}
finally
{
//第五步:取消伺服器共用目錄的共用
ExecuteSql(@"master..xp_cmdshell 'net share SQLDATABACK /delete'");
}
}
/// <summary>
/// 從本地磁碟恢複資料庫
/// </summary>
public bool Restore(string RestoreFile)
{
try
{
//第零步:關閉使用者進程,防止其它使用者正在使用資料庫,導致資料恢複失敗
KillServerUser();
//第一步:在伺服器上建立臨時檔案夾
ExecuteSql(@"master..xp_cmdshell 'md C:\temp'");
ExecuteSql(@"master..xp_cmdshell 'del C:\temp\*.* /q'");
//第二步:共用伺服器的恢複目錄
ExecuteSql(@"master..xp_cmdshell 'net share SQLRESTORE=C:\temp'");
//第三步:複製伺服器上的備份檔案到本地
File.Copy(RestoreFile, @"\\" + ServerIP() + @"\SQLRESTORE\HSSY",true);
//第四步:取消伺服器共用目錄的共用
ExecuteSql(@"master..xp_cmdshell 'net share SQLDATABACK /delete'");
//第五步:恢複資料庫到伺服器目錄
ExecuteSql(@"restore database " + DataBaseName()+ @" from disk='C:\temp\HSSY'");
return true;
}
catch (System.Data.SqlClient.SqlException E)
{
throw new Exception(E.Message);
}
finally
{
//第六步:取消伺服器共用目錄的共用
//DbHelperSQL.ExecuteSql(@"master..xp_cmdshell 'net share SQLDATABACK /delete'");
}
}