遠程備份恢複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'");
        }
    }

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.