zoukankan      html  css  js  c++  java
  • 如何远程备份sql server数据库

    方法一(不使用SQLDMO):

    ///
    ///备份方法
    ///
    SqlConnection conn = new SqlConnection("Server=.;Database=master;User ID=sa;Password=sa;");

    SqlCommand cmdBK = new SqlCommand();
    cmdBK.CommandType = CommandType.Text;
    cmdBK.Connection = conn;
    cmdBK.CommandText = @"backup database test to disk='C:\ba' with init";

    try
    {
    conn.Open();
    cmdBK.ExecuteNonQuery();
    MessageBox.Show("Backup successed.");
    }
    catch(Exception ex)
    {
    MessageBox.Show(ex.Message);
    }
    finally
    {
    conn.Close();
    conn.Dispose();
    }


    ///
    ///还原方法
    ///
    SqlConnection conn = new SqlConnection("Server=.;Database=master;User ID=sa;Password=sa;Trusted_Connection=False");
    conn.Open();

    //KILL DataBase Process
    SqlCommand cmd = new SqlCommand("SELECT spid FROM sysprocesses ,sysdatabases WHERE sysprocesses.dbid=sysdatabases.dbid AND sysdatabases.Name='test'", conn);
    SqlDataReader dr;
    dr = cmd.ExecuteReader();
    ArrayList list = new ArrayList();
    while(dr.Read())
    {
    list.Add(dr.GetInt16(0));
    }
    dr.Close();
    for(int i = 0; i < list.Count; i++)
    {
    cmd = new SqlCommand(string.Format("KILL {0}", list[i]), conn);
    cmd.ExecuteNonQuery();
    }

    SqlCommand cmdRT = new SqlCommand();
    cmdRT.CommandType = CommandType.Text;
    cmdRT.Connection = conn;
    cmdRT.CommandText = @"restore database test from disk='C:\ba'";

    try
    {
    cmdRT.ExecuteNonQuery();
    MessageBox.Show("Restore successed.");
    }
    catch(Exception ex)
    {
    MessageBox.Show(ex.Message);
    }
    finally
    {
    conn.Close();
    }

    方法二(使用SQLDMO):

    ///
    ///备份方法
    ///
    SQLDMO.Backup backup = new SQLDMO.BackupClass();
    SQLDMO.SQLServer server = new SQLDMO.SQLServerClass();
    //显示进度条
    SQLDMO.BackupSink_PercentCompleteEventHandler progress = new SQLDMO.BackupSink_PercentCompleteEventHandler(Step);
    backup.PercentComplete += progress;

    try
    {
    server.LoginSecure = false;
    server.Connect(".", "sa", "sa");
    backup.Action = SQLDMO.SQLDMO_BACKUP_TYPE.SQLDMOBackup_Database;
    backup.Database = "test";
    backup.Files = @"D:\test\myProg\backupTest";
    backup.BackupSetName = "test";
    backup.BackupSetDescription = "Backup the database of test";
    backup.Initialize = true;
    backup.SQLBackup(server);
    MessageBox.Show("Backup successed.");
    }
    catch(Exception ex)
    {
    MessageBox.Show(ex.Message);
    }
    finally
    {
    server.DisConnect();
    }
    this.pbDB.Value = 0;

    ///
    ///还原方法
    ///
    SQLDMO.Restore restore = new SQLDMO.RestoreClass();
    SQLDMO.SQLServer server = new SQLDMO.SQLServerClass();
    //显示进度条
    SQLDMO.RestoreSink_PercentCompleteEventHandler progress = new SQLDMO.RestoreSink_PercentCompleteEventHandler(Step);
    restore.PercentComplete += progress;

    //KILL DataBase Process
    SqlConnection conn = new SqlConnection("Server=.;Database=master;User ID=sa;Password=sa;Trusted_Connection=False");
    conn.Open();
    SqlCommand cmd = new SqlCommand("SELECT spid FROM sysprocesses ,sysdatabases WHERE sysprocesses.dbid=sysdatabases.dbid AND sysdatabases.Name='test'", conn);
    SqlDataReader dr;
    dr = cmd.ExecuteReader();
    ArrayList list = new ArrayList();
    while(dr.Read())
    {
    list.Add(dr.GetInt16(0));
    }
    dr.Close();
    for(int i = 0; i < list.Count; i++)
    {
    cmd = new SqlCommand(string.Format("KILL {0}", list[i]), conn);
    cmd.ExecuteNonQuery();
    }
    conn.Close();

    try
    {
    server.LoginSecure = false;
    server.Connect(".", "sa", "sa");
    restore.Action = SQLDMO.SQLDMO_RESTORE_TYPE.SQLDMORestore_Database;
    restore.Database = "test";
    restore.Files = @"D:\test\myProg\backupTest";
    restore.FileNumber = 1;
    restore.ReplaceDatabase = true;
    restore.SQLRestore(server);
    MessageBox.Show("Restore successed.");
    }
    catch(Exception ex)
    {
    MessageBox.Show(ex.Message);
    }
    finally
    {
    server.DisConnect();
    }
    this.pbDB.Value = 0;



    本文由中国C#技术学习中心整理  如果你对本文有不明之处请到技术论坛讨论!
    http://www.studycs.com/ShowArticle.aspx?id=538
  • 相关阅读:
    [微软官方]SQLSERVER的兼容级别
    使用 OPENJSON 分析和转换 JSON 数据 (SQL Server)
    WPF 解决TreeViewItem上为IsMouseOver 时 父级Item也会 受影响
    依赖注入
    关于编译告警 C4819 的完整解决方案
    你想知道的 std::vector::push_back 和 std::vector::emplace_back
    如何使用 Dump 文件?
    关于 PDB 文件你需要知道什么?
    图解哈希表及其原理
    C++ 中的虚函数表及虚函数执行原理
  • 原文地址:https://www.cnblogs.com/draeag/p/834481.html
Copyright © 2011-2022 走看看