In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-01-31 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >
Share
Shulou(Shulou.com)06/01 Report--
MYSQLDUMP TABLE IN SQL FORMAT
1.What is mysqldump?
Mysqldump is a sql based dump, data is dumped then loaded and all indexes are recreated. During mysqldump, all the tables would be locked and will not be accessible for queries.
2.Create test table doudou01 and doudou02
Mysql > select * from doudou01
+-- +
| | I |
+-- +
| | 2 |
| | 22 |
| | 35 |
+-- +
3 rows in set (0.00 sec)
3.list of mysqldump sql
[root@dbdou02 ~] # mysqldump-pDoudou123! Test doudou01
Warning: Using a password on the command line interface can be insecure.
-- MySQL dump 10.13 Distrib 5.6.29, for Linux (x86 / 64)
--
-- Host: localhost Database: test
-
-- Server version 5.6.29
# # Basic information # #
/ * 40101 SET @ OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT * /
/ * 40101 SET @ OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS * /
/ * 40101 SET @ OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION * /
/ * 40101 SET NAMES utf8 * /
/ * 40103 SET @ OLD_TIME_ZONE=@@TIME_ZONE * /
/ * 40103 SET TIME_ZONE='+00:00' * /
/ * 40014 SET @ OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 * /
/ * 40014 SET @ OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 * /
/ * 40101 SET @ OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' * /
/ * 40111 SET @ OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 * /
--
-- Table structure for table `dou01`
--
DROP TABLE IF EXISTS `doudou01`
/ *! 40101 SET @ saved_cs_client = @ @ character_set_client * /
/ *! 40101 SET character_set_client = utf8 * /
CREATE TABLE `doudou01` (
`i` bigint (20) NOT NULL AUTO_INCREMENT
PRIMARY KEY (`i`)
) ENGINE=MyISAM AUTO_INCREMENT=36 DEFAULT CHARSET=gbk
/ * 40101 SET character_set_client = @ saved_cs_client * /
# # create table statement # #
--
-- Dumping data for table `dou01`
--
LOCK TABLES `doudou01` WRITE
/ *! 40000 ALTER TABLE `dou01` DISABLE KEYS * /
INSERT INTO `dou01` VALUES (2), (22), (35)
/ *! 40000 ALTER TABLE `dou01` ENABLE KEYS * /
UNLOCK TABLES
/ * 40103 SET TIME_ZONE=@OLD_TIME_ZONE * /
# # export table data to sql-format # #
/ * 40101 SET SQL_MODE=@OLD_SQL_MODE * /
/ * 40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS * /
/ * 40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS * /
/ * 40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT * /
/ * 40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS * /
/ * 40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION * /
/ * 40111 SET SQL_NOTES=@OLD_SQL_NOTES * /
-- Dump completed on 2016-03-18 15:02:09
4.backup using mysqldump
[root@dbdou02 ~] # mysqldump-uroot-p test doudou01 > doudou01.sql
[root@dbdou02 ~] # mysqldump-uroot-p test doudou02 > doudou02.sql
[root@dbdou02 ~] # ls-l doudou*
-rw-r--r--. 1 root root 1866 Mar 21 11:14 doudou01.sql
-rw-r--r--. 1 root root 2102 Mar 21 11:14 doudou02.sql
5.reloading SQL-Format Backups
5.1 use mysqldump other database
Mysql > use test1
Database changed
Mysql > show tables
Empty set (0.00 sec)
5.2 source dump.sql
Mysql > source doudou01.sql
Query OK, 0 rows affected (0.00 sec)
...
Query OK, 3 rows affected (0.00 sec)
Records: 3 Duplicates: 0 Warnings: 0
...
Mysql > source doudou02.sql
Query OK, 0 rows affected (0.00 sec)
...
Query OK, 3 rows affected (0.01sec)
Records: 3 Duplicates: 0 Warnings: 0
...
5.3 check list reload tables
Mysql > show tables
+-+
| | Tables_in_test1 |
+-+
| | doudou01 |
| | doudou02 |
+-+
2 rows in set (0.00 sec)
Mysql > select * from doudou01
+-- +
| | I |
+-- +
| | 2 |
| | 22 |
| | 35 |
+-- +
3 rows in set (0.00 sec)
Mysql > select * from doudou02
+-+
| | country_id | country | last_update | |
+-+
| | 1 | doudou | 2016-03-18 14:47:59 |
| | 2 | dba | 2016-03-18 14:47:59 |
| | 3 | nba | 2016-03-18 14:47:59 |
+-+
3 rows in set (0.01sec)
6.It's Successly!
#
All rights reserved, the article is allowed to be reprinted, but the source address must be indicated by link, otherwise legal liability will be investigated! [QQ Exchange Group: 53993419]
QQ:14040928 E-mail:dbadoudou@163.com
Link to this article: http://blog.itpub.net/26442936/viewspace-2060811/
* 6 years working experience in DBA, looking for new job opportunities *
#
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.