asp.net實現Database Backup還原功能

來源:互聯網
上載者:User

標籤:os   io   檔案   資料   for   art   ar   cti   

  1. -- 備份資料庫  
  2. backup database db_CSManage to disk=‘c:\backup.bak‘  
  3. -- 還原資料庫,必須先備份該資料庫的記錄檔到原先的備份檔案中  
  4. backup log db_CSManage to disk=‘c:\backup.bak‘  
  5. restore database db_CSManage from disk=‘c:\backup.bak‘  

其中db_CSManage是資料庫名稱,disk後的路徑即是備份檔案儲存的路徑。 
知道了SQL語句,那麼在.NET代碼中就容易多了,備份的.NET代碼如下: 

  1. try  
  2. {  
  3. if (txtPath.Text != "" && txtName122.Text != "")  
  4.     {  
  5.         getSqlConnection geCon = new getSqlConnection();  
  6.         SqlConnection con = geCon.GetCon();  
  7. string strBacl = "backup database db_CSManage to disk=‘" + txtPath.Text.Trim() + "\\" + txtName.Text.Trim() + ".bak‘";  
  8.         SqlCommand Cmd = new SqlCommand(strBacl, con);  
  9. if (Cmd.ExecuteNonQuery() != 0)  
  10.         {  
  11.             MessageBox.Show("資料備份成功!", "提示框", MessageBoxButtons.OK, MessageBoxIcon.Information);  
  12. this.Close();  
  13.         }  
  14. else  
  15.         {  
  16.             MessageBox.Show("資料備份失敗!", "提示框", MessageBoxButtons.OK, MessageBoxIcon.Information);  
  17.         }  
  18.     }  
  19. else  
  20.     {  
  21.         MessageBox.Show("請填寫備份的正確位置及檔案名稱!", "提示框", MessageBoxButtons.OK, MessageBoxIcon.Information);  
  22.     }// end   
  23. }  
  24. catch (Exception ee)  
  25. {  
  26.     MessageBox.Show(ee.Message.ToString());  

以下是還原資料庫的代碼,在樣本中發現開頭得先刪除與該資料庫相關的進程,然後在還原之前得先把資料庫記錄備份到開始的備份檔案中,然後才還原備份檔案,要不然會出錯的,代碼如下: 

  1. if (textPaht.Text != "")  
  2. {  
  3.     getSqlConnection geCon = new getSqlConnection();  
  4.     SqlConnection con = geCon.GetCon();  
  5. if (con.State == ConnectionState.Open)  
  6.     {  
  7.         con.Close();  
  8.     }  
  9. string DateStr = "Data Source=niunan\\sqlexpress;Database=master;User id=sa;PWD=123456";  
  10.     SqlConnection conn = new SqlConnection(DateStr);  
  11.     conn.Open();  
  12. //-------------------殺掉所有串連 db_CSManage 資料庫的進程--------------  
  13. string strSQL = "select spid from master..sysprocesses where dbid=db_id( ‘db_CSManage‘) ";  
  14.     SqlDataAdapter Da = new SqlDataAdapter(strSQL, conn);  
  15.     DataTable spidTable = new DataTable();  
  16.     Da.Fill(spidTable);  
  17.     SqlCommand Cmd = new SqlCommand();  
  18.     Cmd.CommandType = CommandType.Text;  
  19.     Cmd.Connection = conn;  
  20. for (int iRow = 0; iRow <= spidTable.Rows.Count - 1; iRow++)  
  21.     {  
  22.         Cmd.CommandText = "kill " + spidTable.Rows[iRow][0].ToString();   //強行關閉使用者進程   
  23.         Cmd.ExecuteNonQuery();  
  24.     }  
  25.     conn.Close();  
  26.     conn.Dispose();  
  27. //--------------------------------------------------------------------  
  28.     SqlConnection sqlcon = new SqlConnection(DateStr);  
  29.     sqlcon.Open();  
  30. string sql = "backup log db_CSManage to disk=‘" + textPaht.Text.Trim() + "‘ restore database db_CSManage from disk=‘" + textPaht.Text.Trim() + "‘";  
  31.     SqlCommand sqlCmd = new SqlCommand(sql, sqlcon);  
  32.     sqlCmd.ExecuteNonQuery();  
  33.     sqlCmd.Dispose();  
  34.     sqlcon.Close();  
  35.     sqlcon.Dispose();  
  36.     MessageBox.Show("資料還原成功!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);  
  37.     MessageBox.Show("為了必免資料丟失,在資料庫還原後將關閉整個系統。");  
  38.     Application.Exit();  
  39. }  
  40. else  
  41. {  
  42.     MessageBox.Show("請選擇備份檔案!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Warning);  
  43. }  
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.