天天看點

資料庫腳本備份

rem *******************************Code Start*****************************

@echo off

set "Ymd=%date:~,4%%date:~5,2%%date:~8,2%"

D:\development\mysql-5.6.26-winx64\bin\mysqldump --opt -u  資料庫賬号 --password=資料庫密碼 confluence> D:\db_backup\mysql\confluence_%Ymd%.sql(備份檔案路徑)

@echo on

rem *******************************Code End*****************************