mysql数据备份方法总结
本文章来总结mysql数据备份方法,一种是大家常用的利用mysqldump命令方式进行数据备份,另一种是利用dos的xcopy命令带windows计划任务进行自动备份。
利用命令方式xcopy命令,把下面代码保存成bak.bat文件。
代码如下 | 复制代码 |
net stop mysql xcopy D:/phpStudy/MySQL/data/sql111cn/*.* D:/db_backup/%date:~0,10%/ /y net start mysql |
然后在你的服务器中做计划任务就可以实现自动备份数据库了,
利用mysqldump命令方式进行数据备份
备份数据库:
在命令提示符窗口(注意不是 MySQL 的 MySQL Command Line Client 窗口)中输入,
代码如下 | 复制代码 |
mysqldump -hlocalhost -uroot -proot temp > temp_2011.sql |
先进入到 MySQL想要存放备份文件的目录下(便于存放生成的*.sql文件).
恢复数据库:
删除原有数据库,建立数据库,把备份数据库导入。
代码如下 | 复制代码 |
mysqladmin -uroot -p123456 drop database_name mysqladmin -uroot -p123456 create database_name mysql -uroot -p123456 database_name |
上面可以做一个.php文件,然后利用计划任务进行定时执行就可以备份了。
常用的mysql备份数据命令语句分享
备份MySQL数据库的命令
代码如下 | 复制代码 |
mysqldump -hhostname -uusername -ppassword databasename > backupfile.sql |
备份MySQL数据库为带删除表的格式
备份MySQL数据库为带删除表的格式,能够让该备份覆盖已有数据库而不需要手动删除原有数据库。
代码如下 | 复制代码 |
mysqldump -–add-drop-table -uusername -ppassword databasename > backupfile.sql |
直接将MySQL数据库压缩备份
代码如下 | 复制代码 |
mysqldump -hhostname -uusername -ppassword databasename | gzip > backupfile.sql.gz |
备份MySQL数据库某个(些)表
代码如下 | 复制代码 |
mysqldump -hhostname -uusername -ppassword databasename specific_table1 specific_table2 > backupfile.sql |
同时备份多个MySQL数据库
代码如下 | 复制代码 |
mysqldump -hhostname -uusername -ppassword –databases databasename1 databasename2 databasename3 > multibackupfile.sql |
仅仅备份数据库结构
代码如下 | 复制代码 |
mysqldump –no-data –databases databasename1 databasename2 databasename3 > structurebackupfile.sql |
备份服务器上所有数据库
代码如下 | 复制代码 |
mysqldump –all-databases > allbackupfile.sql |
还原MySQL数据库的命令
代码如下 | 复制代码 |
mysql -hhostname -uusername -ppassword databasename |
还原压缩的MySQL数据库
代码如下 | 复制代码 |
gunzip |
将数据库转移到新服务器
代码如下 | 复制代码 |
mysqldump -uusername -ppassword databasename | mysql –host=*.*.*.* -C databasename |

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

ThinkPHP6 data backup and recovery: ensuring data security With the rapid development of the Internet, data has become an extremely important asset. Therefore, the security of data is of great concern. In web application development, data backup and recovery are an important part of ensuring data security. In this article, we will introduce how to use the ThinkPHP6 framework for data backup and recovery to ensure data security. 1. Data backup Data backup refers to copying or storing the data in the database in some way. This way even if the data

Backup is a very important task during website operation. If there is data loss or loss on the website, backup can facilitate the restoration of the website. PHP is a commonly used server-side programming language. The backup function of the website can be implemented by writing PHP scripts. This article will introduce how to use PHP to implement website backup function. 1. Types of backup files When backing up a website, you need to back up the database and website files. Usually website files include static files, program files, pictures and uploaded attachments, etc., while the database contains all the information of the website.

Data backup and restoration of PHP applications through DockerCompose, Nginx and MariaDB. With the rapid development of cloud computing and containerization technology, more and more applications choose to use Docker to deploy and run. In the Docker ecosystem, DockerCompose is a very popular tool that can define and manage multiple containers through a single configuration file. This article will introduce how to use DockerCompose, Ng

In the process of web development, data storage and backup are undoubtedly a very important part. In case of data loss or recovery needs, backup is very necessary. For PHP, an open source back-end language, there are also many options for data backup. Let’s take a closer look at data backup in PHP. 1. Database backup 1.1 MYSQLdump tool MYSQLdump is a command line tool for backing up MYSQL databases. It copies the entire database or database by executing SQL statements.

How to use Java to write the data backup function of a CMS system. In a content management system (ContentManagementSystem, CMS), data backup is a very important and essential function. Through data backup, we can ensure that the data in the system can be restored in time in the event of damage, loss or incorrect operation, thereby ensuring the stability and reliability of the system. This article will introduce how to use Java to write the data backup function of the CMS system and provide relevant code examples.

Using PHP and SQLite to implement data backup and recovery strategies Backup and recovery is a very important aspect of database management, which can protect our data from accidental damage or loss. This article will introduce how to use PHP and SQLite to implement data backup and recovery strategies, helping us better manage and protect the data in the database. First, we need to create a database using SQLite and establish some test data for subsequent operations. Here's a simple example: <?php

As the amount of data continues to increase, database backup becomes more and more difficult. Backup not only requires data integrity and consistency, but also requires backup speed and backup file size to meet actual needs. Data compression backup technology emerged as the times require and has become one of the indispensable technical means for database backup. MySQL is currently one of the most popular relational databases, and its officially provided backup tool mysqldump cannot meet the needs of compressed backup. Therefore, this article will introduce the use of compression command on Linux system ta

How to implement data backup and recovery functions in PHP projects? In the process of developing and managing PHP projects, data backup and recovery functions are very important. Whether it is to avoid accidental data loss or to ensure data security during project migration and upgrade, we need to master data backup and recovery methods. This article will introduce how to implement data backup and recovery functions in PHP projects. 1. Data backup definition backup path: First, we need to define the path used to store backup files. Can be defined in the project configuration file
