Manual and scheduled backup steps for MySQL database

Manual and scheduled backup steps for MySQL database

Manual backup

1) cmd console: mysqldump -uroot -proot database name [table name 1, table name 2...] > file path

For example: back up the demo database to E:\test\demo.bak

mysqldump -uroot -p123456 demo > E:\test\demo.bak #123456 is the database password

If you want to back up the test1 table of the demo library

mysqldump -uroot -p123456 demo test1 > E:\test\demo.test1.bak

How to restore our data using the backup file mysql console?

2) MySQL console: source E:\test\demo.test1.bak

3) Specific operation screenshots:

insert image description here

insert image description here

insert image description here

Timer backup

1) Write the command to back up the database into the bat file

Create a mytask.txt file and insert the following content: F:\MySQL\bin\mysqldump -uroot -p123456 demo test1 > E:\test\demo.test.bak , then change the suffix to .bat

Note: The content of mytask.bat is "F:MySQL\bin" (for your own MySQL bin directory)

If your mysqldump.exe file path has spaces, be sure to use " " include

2) Then use the task manager to call the bat file regularly, make mytask.bat a task, and call it regularly

Steps: Control Panel>Task Schedule>Create Basic Task

insert image description here

insert image description here

insert image description here

insert image description here

insert image description here

insert image description here

insert image description here

insert image description here

The above is the details of the manual and scheduled backup techniques of MySQL database. For more information about manual and scheduled backup of database, please pay attention to other related articles on 123WORDPRESS.COM!

You may also be interested in:
  • Tensorflow implements AlexNet convolutional neural network and computing time evaluation
  • Tensorflow deep learning uses CNN to classify English text
  • Saving and reading Python deep learning TensorFlow neural network model
  • TensorFlow deep learning another programming style to implement convolutional neural network
  • TensorFlow tutorial Softmax logistic regression to recognize handwritten digits MNIST dataset
  • Detailed explanation of TensorFlow convolutional neural network AlexNet implementation example

<<:  Pitfall notes of vuex and pinia in vue3

>>:  CSS3 realizes the animation effect of lotus blooming

Recommend

mysql replace part of the field content and mysql replace function replace()

[mysql] replace usage (replace part of the conten...

What to do if you forget your mysql password

Forgot your MySQL password twice? At first I did ...

Detailed explanation of MySQL custom functions and stored procedures

Preface This article mainly introduces the releva...

How to install mysql5.7.24 binary version on Centos 7 and how to solve it

MySQL binary installation method Download mysql h...

How to install a virtual machine with Windows services on Mac

1. Download the virtual machine Official download...

How to implement h5 input box prompt + normal text box prompt

XML/HTML CodeCopy content to clipboard < input...

Detailed explanation of MySQL joint query optimization mechanism

Table of contents MySQL federated query execution...

Solution to mysql error code 1064

If the words in the sql statement conflict with t...

Website Building Tutorial for Beginners: Learn to Build a Website in Ten Days

The 10-day tutorial uses the most understandable ...

How to install Chrome browser on CentOS 7

This article introduces how to install Chrome bro...