(1)、备份数据库部分表到本地文件夹
@echo off
del /f /s /q C:\sqlDataBackups/summary.sql
C:\"Program Files (x86)"\MySQL\"MySQL Server 5.5"\bin/mysqldump -uroot -proot summary
--ignore-table=summary.coin
--ignore-table=summary.coin_address
--ignore-table=summary.dlt
--ignore-table=summary.dlt_summary
--ignore-table=summary.p3
--ignore-table=summary.p3_summary
--ignore-table=summary.coin_address
--ignore-table=summary.ssq
--ignore-table=summary.ssq_summary
--ignore-table=summary.tips_record
> C:\sqlDataBackups/summary.sql
@echo on
命令解释:
先删除summary.sql文件,然后生成summary.sql
文件夹名称中有空格,用英文双引号包裹
^连接命令换行,前后连接起来是一个字符串
--ignore-table=summary.tips_record放弃备份数据库summary中的tips_record表
(2)、Windows添加定时任务
1、Windows系统的开始菜单-->点选程序-->点选附件-->
点选系统工具-->点选任务计划程序-->点选命令
2、双击任务计划程序库-->创建任务-->
配置运行时机和触发器中选择运行频率-->
在操作中选择运行的bat文件
(3)、备份到网盘:
开通百度云盘会员
百度云盘定时备份
网友评论