当前位置:网站首页>Navicat run SQL file import data incomplete or import failed
Navicat run SQL file import data incomplete or import failed
2022-07-07 13:32:00 【Barren desert】
Preface :
When we want to import data from one database to another
Generally, the required data table is dumped sql file And then it runs again sql file Import into the new database
Do it When there is little data, there is usually no mistake
But if the amount of data is large There are many tables There will be a lack of data tables Or lack of data
Solutions to problems :
Inquire online information to know There are several ways to try to solve
First of all :
Start with the configuration file of the database
Find... On the server MYSQL Install under directory my.ini file Then go and modify Remember to restart

lookup max_allowed_packet attribute
max_allowed_packet=50M
Or make it bigger
second :
from navicat Modify the database storage size It's a little similar to the first one I 2 It's all changed
command :
// View the current max_allowed_packet Size
show global variables like 'max_allowed_packet';// modify max_allowed_packet Size
set global max_allowed_packet=1024*1024*50;After the change, check whether the following sizes have changed Change is success
Third :
The code and structure of the imported database and the exported database are different

Modify the table character set synchronization of the database
Fourth :
Change strict mode , Perform the following sql Then import sql file ;
SET sql_mode = '';
SET GLOBAL sql_mode = '';

Be careful :
When used "SET sql_mode=''" when ,mysql Clear the default mode information ,
But there is also a problem , It would be mysql No intrusion detection , Error message ,
This requires programmers to sql Be more careful when operating . You can put it sql Add to sql Execute first in the file
The fifth :
When we import data hold " Run multiple queries in each run " Give it right It will be slower But the data will not conflict Will not let the data be reduced

The sixth :
This method is a little metaphysical The credibility needs to be investigated You can try everyone
Select run in the database sql file No... Is selected in the table function sql file It will be more accurate


The seventh :
Use the command line to import and export
One 、window Environmental Science
A. export .sql
1. Export the entire database mysqldump -u user name -p Database name > Exported file name
mysqldump -u dbuser -p dbname > dbname.sql2. Export a table mysqldump -u user name -p Database name Table name > Exported file name
mysqldump -u dbuser -p dbname users> dbname_users.sql3. Export a database structure mysqldump -u dbuser -p -d --add-drop-table dbname >d:/dbname_db.sql-d No data --add-drop-table At every create Add a... Before the statement drop table
B. Import .sql
Commonly used source command
Get into mysql Database console , Such as mysql -u root -pmysql>use database
And then use source command , The following parameters are script files ( As used here .sql)mysql>source d:/dbname.sql
Import data into database
mysql -uroot -D Database nameImport data into a table in the database
mysql -uroot -D Database name Table name
Two 、linux Environmental Science
A. export .sql
Export database with mysqldump command ( Be careful mysql Installation path for , The path of this command ):
1、 Export data and table structure :
mysqldump -u user name -p Parameters ( Optional ) Database name >/home/sql/ Database name .sql
mysqldump -u root -p --default-character-set=utf8 db_name>/home/sql/fileName.sqlYou will be prompted to enter the password after pressing enter
2、 Export only table structure
mysqldump -u user name -p password -d Database name > Database name .sql
/usr/local/mysql/bin/ mysqldump -uroot -p -d abc > abc.sqlnotes :/usr/local/mysql/bin/ —> mysql Of data Catalog
B. Import .sql
1、 First, build an empty database
mysql>create database abc;2、 Import database
Method 1 :
(1) Select database
mysql>use abc;
(2) Set database encoding
mysql>set names utf8;
(3) Import data ( Be careful sql Path to file )
mysql>source /home/abc/abc.sql;
Method 2 :
mysql -u user name -p Parameters ( Optional ) Database name < Database name .sql
mysql -uabc_f -p--default-character-set=utf8 abc < abc.sqlThe eighth :
No use. See the latest navicat12 Functions of the belt

Data transmission and data synchronization Structure synchronization Open the interface and have a look Simpler violence
If none of the above has solved your problem
You can try a simple and violent method If there is not much data to import
You can put sql Open the file directly and go to navicat Directly inside Inquire about -> New query Then input sql
See where the error is reported Then modify it accordingly

When your talent can't support your ambition , You should be quiet to learn ; When you can't control your goals , It's time to sink in and experience . Dreams are not impetuous , It's precipitation and accumulation .
边栏推荐
- JNA learning notes 1: Concepts
- PAcP learning note 1: programming with pcap
- DETR介绍
- [learning notes] segment tree selection
- How far can it go to adopt a cow by selling the concept to the market?
- 10 pictures open the door of CPU cache consistency
- 单片机学习笔记之点亮led 灯
- error LNK2019: 无法解析的外部符号
- PCAP学习笔记二:pcap4j源码笔记
- 如何让electorn打开的新窗口在window任务栏上面
猜你喜欢
随机推荐
Getting started with cinnamon applet
Simple and easy-to-use code specification
About how appium closes apps (resolved)
MongoDB的用户管理总结
error LNK2019: 无法解析的外部符号
Drawerlayout suppress sideslip display
User management summary of mongodb
Cinnamon 任务栏网速
C语言数组相关问题深度理解
Why can basic data types call methods in JS
Write it down once Net a new energy system thread surge analysis
flask session伪造之hctf admin
LeetCode_ Binary search_ Medium_ 153. Find the minimum value in the rotation sort array
JNA learning notes 1: Concepts
Scrapy教程经典实战【新概念英语】
MongoDB优化的几点原则
Custom thread pool rejection policy
[QNX hypervisor 2.2 user manual]6.3.4 virtual register (guest_shm.h)
Use of polarscatter function in MATLAB
RealBasicVSR测试图片、视频








