Simple Mysql backup BAT script sharing under Windows

Simple Mysql backup BAT script sharing under Windows

Preface

This article introduces a simple BAT script for backing up Mysql in Windows. The script uses the mysqldump command to back up a specified Mysql database to a file in the format of %dbname%-yyyyMMddHHmmss.sql . Only the backups of the last 60 days are retained. If you want to execute it at a scheduled time, just add a task schedule in Windows. For details, please refer to this article.

The sample code is as follows

@echo off
set hour=%time:~0,2%
if "%time:~0,1%"==" " set hour=0%time:~1,1%
set now=%Date:~0,4%%Date:~5,2%%Date:~8,2%%hour%%Time:~3,2%%Time:~6,2%
echo %now%
set host=xxx.xxx.xxx.xxx
set port=3306
set user=root
set pass=root
set dbname=dataname
set backupfile=E:\backup\db\%dbname%-%now%.sql
E:\backup\mysql-5.7.13-winx64\bin\mysqldump -h%host% -P%port% -u%user% -p%pass% -c --add-drop-table %dbname% > %backupfile%
echo delete files before 60 days
forfiles /p "E:\backup\db" /m *.sql /d -60 /c "cmd /c del @file /f"

Summarize

The above is the full content of this article. I hope that the content of this article can bring some help to your study or work. If you have any questions, you can leave a message to communicate. Thank you for your support of 123WORDPRESS.COM.

You may also be interested in:
  • Using bat script to upload and download ftp regularly under windows
  • How to remove the small arrow in the shortcut in Windows 7? BAT script sharing
  • Windows sets up a bat script to start automatically at boot time
  • Detailed explanation of for loop usage in Windows bat script

<<:  Example of implementing circular progress bar in Vue

>>:  A complete list of common Linux system commands for beginners

Recommend

Vue implements a small weather forecast application

This is a website I imitated when I was self-stud...

Vue implements image drag and drop function

This article example shares the specific code of ...

CSS multi-level menu implementation code

This is a pretty cool feature that makes web page...

Various ways to achieve the hollowing effect of CSS3 mask layer

This article introduces 4 methods to achieve mask...

How to install Oracle_11g using Docker

Install Oracle_11g with Docker 1. Pull the oracle...

Detailed explanation of how Node.js middleware works

Table of contents What is Express middleware? Req...

Summary of the use of CSS scope (style splitting)

1. Use of CSS scope (style division) In Vue, make...

JS practical object-oriented snake game example

Table of contents think 1. Greedy Snake Effect Pi...

JavaScript to implement the function of changing avatar

This article shares the specific code of JavaScri...

Textarea tag in HTML

<textarea></textarea> is used to crea...

Nginx+FastDFS to build an image server

Installation Environment Centos Environment Depen...

Solution to nginx hiding version number and WEB server information

Nginx can not only hide version information, but ...

Implementation of k8s node rejoining the master cluster

1. Delete node Execute kubectl delete node node01...