10、單機運行環境搭建之 --Windows下mysqldump 備份與還原資料庫

來源:互聯網
上載者:User

 編輯如下批處理 backup.bat

@echo 設定MySql資料庫的IPset  ipaddress=127.0.0.1@echo 設定MySql資料庫名set  db_name1=lxyy_db@echo 擷取當天的日期格式yyyymmdd 20120311set  backup_date=%date:~0,4%%date:~5,2%%date:~8,2%set  backup_date1=date:~0,10@echo 設定mysqldump 備份的參數set  uid_test_db=-uroot -pdsideal -h %ipaddress% %db_name1%@echo 使用mysqldump對指定的MySql進行備份mysqldump %uid_test_db%  >%db_name1%_%backup_date%.sql@echo 用7-zip對備份出的sql檔案進行壓縮,此處使用7zip進行壓縮,也可以換成其它的壓縮命令  "C:\Program Files\7-Zip\7z" a %backup_date%.zip  *.sql  @echo  刪除已壓縮的備份檔案del *.sql

 7zip下載路徑:

x86 http://jaist.dl.sourceforge.net/project/sevenzip/7-Zip/9.20/7z920.exex64 http://jaist.dl.sourceforge.net/project/sevenzip/7-Zip/9.20/7z920-x64.msi

還原資料庫

mysql -u root –password=dsideal lxyy_db < 備份檔案.sql

 

相關文章

聯繫我們

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