mysqldump tool backup Back up the entire database $> mysqldump -u root -h host -p dbname > backdb.sql Back up a table in the database $> mysqldump -u root -h host -p dbname tbname1, tbname2 > backdb.sql Backing up multiple databases $> mysqldump -u root -h host -p --databases dbname1, dbname2 > backdb.sql Back up all databases in the system $> mysqldump -u root -h host -p --all-databases > backdb.sql Directly copy the entire database directory (not applicable for InnoDB storage engine) to back up windowsns: installpath/mysql/data linux: /var/lib/mysql Before copying, you need to execute the following command: MYSQL> LOCK TABLES; # Allow clients to continue querying tables during the copy process. MYSQL> FLUSH TABLES; # Write the activated index page to disk. mysqlhotcopy tool backup The fastest way to back up a database or table can only be run on the machine where the database directory is located, and can only back up MyISAM type tables. The table files to be backed up must be accessible to use this backup method. $> mysqlhotcopy -u root -p dbname /path/to/new_directory; #Copy the database to the new_directory directory. mysql command import sql file restore $> mysql -u root -p [dbname] < backup.sql # You need to create the dbname database before executing. If backup.sql is a backup file created by mysqldump, dbname is not required for execution. MYSQL> source backup.sql; # You need to select a database before executing the source command. Directly copy the database directory to restore Note: This method must ensure that the major version numbers of the original database and the database to be restored are consistent, and is only applicable to tables with the MyISAM engine.
mysqlhotcopy fast recovery Stop the MySQL service, copy the backup database file to the location where the data is stored (mysql's data folder), and restart the MySQL service (you may need to specify the owner of the database file). $> cp -R /usr/backup/test /usr/local/mysql/data # If the restored database already exists, the recovery can only be successful after the existing database is deleted using the DROP statement. The database version compatibility also needs to be ensured. Migrate between databases of the same version $> mysqldump -h www.abc.com -uroot -p password dbname | $>mysqldump -h www.bcd.com -uroot -p password # Migrate the database dbname on the server www.abc.com to the database of the same version on the server www.bcd.com. Migration between different versions of MySQL database Back up the original database. Uninstall the original database. Install the new database. Restore the backed-up database data in the new database. Database user access information requires backing up the mysql database. Default character set problem, MySQL4.x uses latin1 as the default character set, and mysql5.x uses utf8 as the default character set. If there is Chinese data, the default character set needs to be changed. Migration between different databases MyODBC tool realizes migration between MySQL and SQL Server. MySQL Migration Toolkit. Exporting and importing tables SELECT ...... INTO OUTFILE exports a text file. This method can only export to the database server, and the export file cannot already exist. MYSQL> SELECT ...... INTO OUTFILE filename [OPTIONS] MYSQL> SELECT * FROM test.person INTO OUTFILE "C:\person0.txt"; # Import the data in the person table into a text file person0.txt. mysqldump file exports a text file (unlike INTO OUTFILE, all options of this method do not need to be quoted) $> mysqldump -T path -u root -p dbname [tables] [OPTIONS] # The -T parameter indicates exporting a text file. path is the directory where the data is exported. $> mysqldump -TC:\test person -u root -p # Export the person table in the test table to a text file. After successful execution, there will be two files in the test directory, person.sql and person.txt mysql command to export text file MYSQL> mysql -u root -p --execute="SELECT * FROM person;" test > C:\person3.txt; # Export the person table data in the test database to the person3.txt text file. The --vartical parameter can be used to split a line into multiple lines. MYSQL> mysql -u root -p --vartical --execute="SELECT * FROM person;" test > C:\person3.txt; # --html exports the table as an html file, --xml exports the table as an xml file LOAD DATA INFILE imports a text file MYSQL> LOAD DATA INFILE 'filename.txt' INTO TABLE tablename [OPTIONS] [IGNORE number LINES]; # [IGNORE number LINES] means ignore the number of lines MYSQL> LOAD DATA INFILE 'C:\person0.txt' INTO TABLE test.person; mysqlimport import text file $> mysqlimport -u root -p dbname filename.txt [OPSTONS] # The name of the imported table is determined by the file name. The table must exist before importing data. $> mysqlimport -uroot -p test C:\backup\person.txt # Import data into the person table of the test database. Recovering Data Using mysqlbinlog $> mysqlbinlog [option] filename | mysql -u user -p password # filename is the binary log file. $> mysqlbinlog --stop-date="2013-03-30 15:27:47" D:\MySQL\log\binlog\binlog.000008 | mysql -u root -p password # Restore data to operations before 2013-03-30 15:27:47 based on the log file binlog.000008. Start binary logging log-bin = path/filename #Log file storage directory and file name expire_log_days = 10 #Log automatic deletion time max_binlog_size = 100M # Maximum size of the log file Viewing the binary log MYSQL> SHOW VARIABLES LIKE 'log_%'; MYSQL> SHOW BINARY LOGS; $>mysqlbinlog filename # filename is the binary log file name. Deleting binary logs MYSQL> RESET MASTER; #Delete all binary logs MYSQL> PURGE {MASTER | BINARY} LOGS TO 'log_name'; #Delete files with file numbers less than log_name MYSQL> PURGE {MASTER | BINARY} LOGS BEFORE 'date'; #Delete files before the specified date Temporarily stop binary logging (no need to restart MySQL service) MYSQL> SET sql_log_bin = {0|1} #Pause or start binary log. The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
<<: Methods and steps to build nginx file server based on docker
>>: jQuery+h5 realizes the nine-square lottery special effect (front-end and back-end code)
1. docker ps -a view the running image process [r...
2048 mini game, for your reference, the specific ...
Copy code The code is as follows: <!DOCTYPE ht...
MySQL Views Simply put, a MySQL view is a shortcu...
1. Links Hypertext links are very important in HTM...
1. Command Introduction bzip2 is used to compress...
Preface Before leaving get off work, the author r...
Table of contents Preface Active withdrawal Excep...
When using MySQL, dates are generally stored in f...
Use JOIN instead of sub-queries MySQL supports SQ...
The image integration technology used by American...
Background: During the development process, we of...
Table of contents Common version introduction Com...
1. List query interface effect Before introducing...
Ubuntu 16.04 builds FTP server Install ftp Instal...