标签:运行 脚本 mysql 清理 mys tmp events tran pre
计划任务中调用bat 脚本文件,运行mysqldump备份
bat命令
set "Ymd=%date:~0,4%%date:~5,2%%date:~8,2%0%time:~1,1%%time:~3,2%%time:~6,2%" C:\mysql57\bin\mysqldump --opt --single-transaction=TRUE --user=root --password=root --host=127.0.0.1 --protocol=tcp --port=3306 --default-character-set=utf8 --single-transaction=TRUE --hex-blob --routines --events "tmp_db" > "C:\mysql57\bakdb\tmp_db_%Ymd%.sql"
一周清理一次旧的备份文件
forfiles /p "C:\mysql57\bakdb" /m tmp_db_*.sql -d -7 /c "cmd /c del /f @path"
标签:运行 脚本 mysql 清理 mys tmp events tran pre
原文地址:https://www.cnblogs.com/6min/p/10984408.html