備份和恢復SQL Server資料庫

iSQlServer發表於2009-05-13
* 功能說明:備份和恢復SQL Server資料庫
* 版本:V0.1(C#2.0);
* 當使用SQL Server時,請引用 COM元件中的,SQLDMO.dll元件
* 當使用Access中,請瀏覽新增引用以下兩個dll
*          引用C:/Program Files/Common Files/System/ado/msadox.dll,該DLL包含ADOX名稱空間
*          引用C:/Program Files/Common Files/System/ado/msjro.dll,該DLL包含JRO名稱空間
* *******************************************************************************/
using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.IO;
using ADOX;//該名稱空間包含建立ACCESS的類(方法)--解決方案 ==> 引用 ==> 新增引用 ==> 遊覽找到.dll
using JRO;//該名稱空間包含壓縮ACCESS的類(方法)

namespace EC
{
    ///


    /// 資料庫恢復和備份
    ///

    public class SqlBackObject
    {
        public SqlBackObject()
        {
            //
            // TODO: 在此處新增建構函式邏輯
            //
        }

        #region SQL資料庫備份
       ///


        /// SQL資料庫備份
       ///

       /// SQL伺服器IP或(Localhost)
       /// 資料庫登入名
       /// 資料庫登入密碼
       /// 資料庫名
       /// 備份到的路徑
        public static void SQLBACK(string ServerIP,string LoginName,string LoginPass,string DBName,string BackPath)
        {
            SQLDMO.Backup Backup = new SQLDMO.BackupClass();
            SQLDMO.SQLServer SQLServer = new SQLDMO.SQLServerClass();
            try
            {
                oSQLServer.LoginSecure = false;
                oSQLServer.Connect(ServerIP, LoginName, LoginPass);
                oBackup.Database = DBName;
                oBackup.Files = BackPath;
                oBackup.BackupSetName = DBName;
                oBackup.BackupSetDescription = "資料庫備份";
                oBackup.Initialize = true;
                oBackup.SQLBackup(oSQLServer);

            }
            catch (Exception e)
            {
                throw new Exception(e.ToString());
            }
            finally
            {
                oSQLServer.DisConnect();
            }
        }
        #endregion

        #region SQL恢復資料庫
        ///


        /// SQL恢復資料庫
        ///

        /// SQL伺服器IP或(Localhost)
        /// 資料庫登入名
        /// 資料庫登入密碼
        /// 要還原的資料庫名
        /// 資料庫備份的路徑

        public static void SQLDbRestore(string ServerIP,string LoginName,string LoginPass,string DBName,string BackPath)
        {
          
            SQLDMO.Restore restore = new SQLDMO.RestoreClass();
            SQLDMO.SQLServer SQLServer = new SQLDMO.SQLServerClass();
            try
            {
                oSQLServer.LoginSecure = false;
                oSQLServer.Connect(ServerIP, LoginName, LoginPass);
                orestore.Action = SQLDMO.SQLDMO_RESTORE_TYPE.SQLDMORestore_Database;
                orestore.Database = DBName;
                orestore.Files = BackPath;
                orestore.FileNumber = 1;
                orestore.ReplaceDatabase = true;
                orestore.SQLRestore(oSQLServer);

            }
            catch (Exception e)
            {
                throw new Exception(e.ToString());
            }
            finally
            {
                oSQLServer.DisConnect();
            }
        }


        #endregion

        #region 根據指定的檔名稱建立Access資料庫
        ///


        /// 根據指定的檔名稱建立資料
        ///

        /// 絕對路徑+檔名稱
        public static void CreateAccess(string DBPath)
        {
            if (File.Exists(DBPath))//檢查資料庫是否已存在
            {
                throw new Exception("目標資料庫已存在,無法建立");
            }          
            DBPath = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source="+DBPath;
            //建立一個CatalogClass物件例項
            ADOX.CatalogClass cat = new ADOX.CatalogClass();
            //使用CatalogClass物件的Create方法建立ACCESS資料庫
            cat.Create(DBPath);

        }
        #endregion

        #region 壓縮Access資料庫
        ///


        /// 壓縮Access資料庫
        ///

        /// 資料庫絕對路徑
        public static void CompactAccess(string DBPath)
        {
            if (!File.Exists(DBPath))
            {
                throw new Exception("目標資料庫不存在,無法壓縮");
            }
          
            //宣告臨時資料庫名稱
            string temp = DateTime.Now.Year.ToString();
            temp += DateTime.Now.Month.ToString();
            temp += DateTime.Now.Day.ToString();
            temp += DateTime.Now.Hour.ToString();
            temp += DateTime.Now.Minute.ToString();
            temp += DateTime.Now.Second.ToString() + ".bak";
            temp = DBPath.Substring(0, DBPath.LastIndexOf("//") + 1) + temp;
            //定義臨時資料庫的連線字串
            string temp2 = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source="+temp;
            //定義目標資料庫的連線字串
            string DBPath2 = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source="+DBPath;
            //建立一個JetEngineClass物件的例項
            JRO.JetEngineClass jt = new JRO.JetEngineClass();
            //使用JetEngineClass物件的CompactDatabase方法壓縮修復資料庫
            jt.CompactDatabase(DBPath2, temp2);
            //拷貝臨時資料庫到目標資料庫(覆蓋)
            File.Copy(temp, DBPath, true);
            //最後刪除臨時資料庫
            File.Delete(temp);
        }
        #endregion

        #region 備份Access資料庫
        ///


        /// 備份Access資料庫
        ///

        /// 要備份的資料庫絕對路徑
        /// 備份到的資料庫絕對路徑
        ///
        public static void Backup(string srcPath,string aimPath)
        {
           
            if (!File.Exists(srcPath))
            {
                throw new Exception("源資料庫不存在,無法備份");
            }
            try
            {
                File.Copy(srcPath,aimPath,true);
            }
            catch(IOException ixp)
            {
                throw new Exception(ixp.ToString());
            }
           
        }

        #endregion

        #region 還原Access資料庫
        ///


        /// 還原Access資料庫
        ///

        /// 備份的資料庫絕對路徑
        /// 要還原的資料庫絕對路徑
        public static void RecoverAccess(string bakPath,string dbPath)
        {          
            if (!File.Exists(bakPath))
            {
                throw new Exception("備份資料庫不存在,無法還原");
            }
            try
            {
                File.Copy(bakPath, dbPath, true);
            }
            catch (IOException ixp)
            {
                throw new Exception(ixp.ToString());
            }       
        }       
        #endregion
    }
}

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/16436858/viewspace-594977/,如需轉載,請註明出處,否則將追究法律責任。

相關文章