Ext sqlserver C# 資料庫備份還原代碼,給大家參考下

来源:https://www.cnblogs.com/cshf/archive/2018/03/22/8622082.html
-Advertisement-
Play Games

<%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage<dynamic>" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.or ...


  <%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage<dynamic>" %>   <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server">     <title>Login11</title>     <script src="../../ext/ext-all.js" type="text/javascript">             </script>     <link href="../../ext/resources/css/ext-all.css" rel="stylesheet" type="text/css" />     <script src="../../ext/locale/ext-lang-zh_CN.js" type="text/javascript">             </script>     <script type="text/javascript">         Ext.onReady(function () {             Ext.tip.QuickTipManager.init();               var myMask = new Ext.LoadMask(Ext.getBody(), {                 id: 'mask',                 msg: "配置操作中,請稍等..."             });               var mystore = Ext.create('Ext.data.Store', {                 fields: ['Name', 'CreationTime', 'Length', 'FullName'],                 autoLoad: true,                 pageSize: 10,                 proxy: {                     type: 'ajax',                     url: '/AdLogin/filedata',                     reader: {                         type: 'json',                         root: 'd'                     }                 }             });             Ext.delfile = function (file) {                 myMask.show();                 Ext.Ajax.request({                     url: '/AdLogin/deleFile?file=' + file,                     async: true,                     success: function (response, opts) {                         myMask.hide();                         var obj = Ext.decode(response.responseText);                         Ext.Msg.alert("提醒", "刪除成功");                         mystore.load();                     },                     failure: function (response, opts) {                       }                 });               }               Ext.restore = function (file) {                 myMask.show();                 Ext.Ajax.request({                     url: '/AdLogin/reStore?file=' + file,                     async: true,                     success: function (response, opts) {                         myMask.hide();                         var obj = Ext.decode(response.responseText);                         Ext.Msg.alert("提醒", "還原成功");                         },                     failure: function (response, opts) {                       }                 });             }             function bfstore() {                 myMask.show();                 Ext.Ajax.request({                     url: '/AdLogin/bfStore',                     async: true,                     success: function (response, opts) {                         myMask.hide();                         Ext.Msg.alert("提醒", "備份成功");                         mystore.load();                     },                     failure: function (response, opts) {                       }                 });               }               var bfButton = Ext.create("Ext.Button", {                 text: '備份資料庫',                 handler: function () {                     bfstore();                 }             });               var mygrid = Ext.create('Ext.grid.Panel', {                 title: '資料庫管理',                 layout: 'fit',                 dockedItems: [{                     xtype: 'toolbar',                     dock: 'top',                     items: [bfButton]                 }],                 store: mystore,                 bbar: Ext.create('Ext.toolbar.Paging', {                     store: mystore,                     dock: 'bottom',                     displayInfo: true                 }),                   columns: [{                     header: '操作',                     width: 180,                     dataIndex: 'Name',                     renderer: function (value) {                         return ' <a href="#" onclick="Ext.delfile(\'' + value + '\')">刪除備份</a>  <a href="#" onclick="Ext.restore(\'' + value + '\')">還原資料庫</a>';                     }                 }, {                     header: '文件名稱',                     dataIndex: 'Name',                     width: 200                 },                 {                     header: '創建日期',                     dataIndex: 'CreationTime',                     width: 200,                     renderer: function (value) {                         var dt = new Date(parseInt(value.replace("/Date(", "").replace(")/", ""), 10));                         return Ext.Date.format(dt, 'Y-m-d h:m:s');                     }                 },                 {                     header: '備份大小',                     width: 200,                     dataIndex: 'Length',                     renderer: function (value) {                         return (value / 1024/1024).toFixed(2)+"MB";                     }                 },                 {                     header: '文件路徑',                     width: 400,                     dataIndex: 'FullName'                 }]             });                 Ext.create('Ext.container.Viewport',             {                 layout: 'fit',                 items: [mygrid]             });             });     </script> </head> <body>     <div>     </div> </body> </html>                   public ActionResult filedata()         {             string path = Server.MapPath("/backdata/");             DirectoryInfo di = new DirectoryInfo(path);             FileInfo[] list = di.GetFiles();             List<FileInfo> list1 = new List<FileInfo>();             for (int i = 0; i < list.Length; i++)             {                 list1.Add(list[i]);             }             JavaScriptSerializer serializer = new JavaScriptSerializer();             int start = Convert.ToInt32(Request.QueryString["start"]);             int limit = Convert.ToInt32(Request.QueryString["limit"]);             int allcount = list1.Count();             list1 = list1.Select(d => d).OrderByDescending(d => d.CreationTime).Skip(start).Take(limit).ToList();             return Content("{\"total\": " + allcount + ", d: " + serializer.Serialize(list1.Select(t => new {t.CreationTime,t.Name,t.FullName,t.Length })) + " }");           }         public ActionResult deleFile()         {             string file = Request.QueryString["file"];             string path = Server.MapPath("/backdata/") + file;             if (System.IO.File.Exists(path))             {                 System.IO.File.Delete(path);             }             return Content("{success:true}");         }         string database = "haoyhb";         public ActionResult reStore()         {             string file = Request.QueryString["file"];             string path = Server.MapPath("/backdata/") + file;             System.IO.FileInfo fileInfo = new System.IO.FileInfo(path);             DbHelperSQL.RestoreDatabase(fileInfo.FullName, database);             return Content("{success:true}");         }           public ActionResult bfStore() {             DbHelperSQL.BackUpDataBase(Server.MapPath("/backdata/") + DateTime.Now.ToString("yyyyMMddHHmmss") + ".bak", database);             return Content("{success:true}");         }            public static bool BackUpDataBase(string databasefile, string database)         {             using (SqlConnection conn = new SqlConnection(connectionString))             {                 if (File.Exists(databasefile))                 {                     File.Delete(databasefile);                 }                 //還原的資料庫MyDataBase                 string sql = "BACKUP DATABASE " + database + " TO DISK = '" + databasefile + "' ";                 conn.Open();                 SqlCommand comm = new SqlCommand(sql, conn);                 comm.CommandType = CommandType.Text;                 try                 {                     comm.ExecuteNonQuery();                 }                 catch (Exception err)                 {                     string str = err.Message;                     conn.Close();                       return false;                 }                   conn.Close();//關閉資料庫連接                 return true;             }         }                 //以下是還原資料庫,稍微麻煩些,要關閉所有與當前資料庫相連的連接------------------------------------           //--------------------------------------------------------------------------------------------------------------------------         public static string RestoreDatabase(string backfile, string database)         {             ///殺死原來所有的資料庫連接進程                 SqlConnection conn = new SqlConnection();             conn.ConnectionString = "Data Source=.;Initial Catalog=master;User ID=sa;pwd =sa";             conn.Open();               string sql = "SELECT spid FROM sysprocesses ,sysdatabases WHERE sysprocesses.dbid=sysdatabases.dbid AND sysdatabases.Name='" + database + "'";             SqlCommand cmd1 = new SqlCommand(sql, conn);             SqlDataReader dr;             ArrayList list = new ArrayList();             try             {                 dr = cmd1.ExecuteReader();                 while (dr.Read())                 {                     list.Add(dr.GetInt16(0));                 }                 dr.Close();             }             catch (SqlException eee)             {                 //MessageBox.Show(eee.ToString());                 return "還原失敗";             }             finally             {                 conn.Close();             }             //MessageBox.Show(list.Count.ToString());             for (int i = 0; i < list.Count; i++)             {                 conn.Open();                 cmd1 = new SqlCommand(string.Format("KILL {0}", list[i].ToString()), conn);                 cmd1.ExecuteNonQuery();                 conn.Close();                 // MessageBox.Show("系統已經清除的資料庫線程: " + list[i].ToString() + "\r\n正在還原資料庫!");             }             //這裡一定要是master資料庫,而不能是要還原的資料庫,因為這樣便變成了有其它進程             //占用了資料庫。             string constr = @"Data Source=.;Initial Catalog=master;User ID=sa;pwd =sa";             string path = backfile;             string BACKUP = String.Format("RESTORE DATABASE {0} FROM DISK = '{1}' WITH REPLACE", database, path);             SqlConnection con = new SqlConnection(constr);             SqlCommand cmd = new SqlCommand(BACKUP, con);             con.Open();             try             {                 cmd.ExecuteNonQuery();             }             catch (SqlException ee)             {                 //throw(ee);                 return "還原失敗";                 //MessageBox.Show("還原失敗");               }             finally             {                 con.Close();             }             return "還原成功";           }

 

 

 

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 對於主外鍵約定的理解,其實是學習實體間一對一和一對多關係的基礎。 1.1 主鍵(Key)約定 主鍵的預設約定是: 只要欄位名為 實體名(類名)+"id"(不區分大小寫) ,這就算是預設的主鍵約定。 如果要顯示標識的話,就使用特性標簽進行標識: 這樣標識的主鍵,在資料庫的名稱就是 StudentKey ...
  • 1.需求 WPF本身沒有直接把點集合繪製成曲線的函數。可以通過貝塞爾曲線函數來繪製。 貝塞爾曲線類是:BezierSegment,三次貝塞爾曲線,通過兩個控制點來控制開始和結束方向。 QuadraticBezierSegment,二次貝塞爾,通過一個控制點來控制彎曲方向。 本文使用的是三次。 圖片來 ...
  • 1,進入nginx的html目錄 vim ./crossdomain.xml 具體路徑: /usr/local/nginx/html/crossdomain.xml 2,在crossdomain.xml中添加: 1 2 3 4 5 6 結果就是: 註意:預設/usr/local/nginx/html ...
  • 在安裝 nginx 伺服器後,我想把網站的根目錄設置為 /root/www/ ,於是對 nginx 的 nginx.conf 文件進行配置 先打開 nginx.conf #user nobody; worker_processes 1; #error_log logs/error.log; #err ...
  • 概述 前面一篇 About Windows 10 SDK Preview Build 17110 中,我們簡單介紹了 Multi-instance UWP Apps,今天結合開發過程詳細講解一下。 在 Windows 10 Version 1803 以前,UWP App 同一時間只能啟動一個實例,而 ...
  • Unity C#開發中,常常用到Enum或Struct等類型作為Dictionary的key,或List的元素,即: List<EnumType>,Dictionary<EnumType, ValueType>,List<StructType>,Dictionary<StructType, Valu ...
  • using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.... ...
  • 在本篇文章中,學習添加用於管理資料庫中的書籍的實體類。通過實體框架(EF Core)使用這些類來處理資料庫。EF Core是一個對象關係映射(ORM)框架,它簡化了編寫資料庫訪問的代碼。 創建的實體類被稱為POCO類(“普通的CLR對象”)因為他們沒有在EF Core中有任何依賴。它... ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...