Preface This article introduces a simple BAT script for backing up Mysql in Windows. The script uses the 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:
|
<<: Example of implementing circular progress bar in Vue
>>: A complete list of common Linux system commands for beginners
This is a website I imitated when I was self-stud...
1. Cause: I need to import a sql file, but I can&...
This article example shares the specific code of ...
Let's take a look at the code first <form ...
This is a pretty cool feature that makes web page...
This article introduces 4 methods to achieve mask...
Install Oracle_11g with Docker 1. Pull the oracle...
Table of contents What is Express middleware? Req...
1. Use of CSS scope (style division) In Vue, make...
Table of contents think 1. Greedy Snake Effect Pi...
This article shares the specific code of JavaScri...
<textarea></textarea> is used to crea...
Installation Environment Centos Environment Depen...
Nginx can not only hide version information, but ...
1. Delete node Execute kubectl delete node node01...