using system; using system.collections.generic; using system.linq; using system.web; using system.web.ui; using system.web.ui.webcontrols; using system.data.sqlclient; using system.data; using system.configuration; using system.collections
using system;
using system.collections.generic;
using system.linq;
using system.web;
using system.web.ui;
using system.web.ui.webcontrols;
using system.data.sqlclient;
using system.data;
using system.configuration;
using system.collections;
public partial class webform1 : system.web.ui.page
protected void page_load(object sender, eventargs e)
protected void button1_click(object sender, eventargs e)
//引用web.config的資料庫連線字串 優點:資料庫移植的時候可直接對web.config的資料庫連線字串中的ip進行更換.
//引用web.config的資料庫連線字串 優點:資料庫移植的時候可直接對web.config的資料庫連線字串中的ip進行更換.
string con_str = configurationmanager.connectionstrings["testconnectionstring"].tostring();
sqlconnection conn = new sqlconnection(con_str);
tryconn.open();
//殺死所有正在使用要還原資料的資料庫程序
系統完全備份 增量備份
最近專案遇到需要對資料庫和檔案進行備份操作,主要涉及 完全備份 增量備份 條件備份等,一直思考也沒什麼好的思路。網上最多的是針對與資料庫進行shell命令呼叫的備份,屬於資料庫級的備份,沒有提下業務級的備份。目前做法是為了避免web服務壓力,單獨做了備份小組件,放到一台伺服器中。外掛程式負責啟動服務...
ubuntu系統備份
1.備份系統 我該如何備份我的ubuntu系統呢?很簡單,就像你備份或壓縮其它東西一樣,使用tar。和windows不同,linux不會限制root訪問任何東西,你可以把分割槽上的所有東西都扔到乙個tar檔案裡去!首先成為root使用者 sudo su 然後進入檔案系統的根目錄 當然,如果你不想備份...
linux系統備份
剛剛重新安裝系統,這次決定備份一些重要的目錄。以前一直知道tar命令是這方面的高手,但是到底要怎麼備份?並沒有系統的研究過,所以剛才的實踐,總結了經驗,放出來和大家分享。第一部分 備份 首先 我們需要在 目錄下重建乙個壓縮檔案,為什麼要在 下面建立呢?就是因為不能讓我們把這個壓縮檔案自己壓縮的自己的...