I am trying to import data from a csv file into MySQL Workbench 6.3.5 using the table data import wizard. I have about 400,000 rows of data, but the wizard only imports 27,016 rows of data.
Is this a mistake or restriction on importing data through MySQL Workbench?
I had a similar problem with my data import.
I opened CSV in Notepad ++ and found that Excel saved it with ANSI encoding, not UTF-8. When I changed the encoding to UTF-8, he suggested that the line in which my request was imported contained invalid characters.
, . , .
, " ", MySQL Workbench. , .
LOAD DATA local INFILE 'file path' INTO TABLE tablename FIELDS TERMINATED BY ',' ENCLOSED BY '"'LINES TERMINATED BY '\n' IGNORE 1 ROWS LIMIT 0, N;
N - csv
Source: https://habr.com/ru/post/1619684/More articles:Pathfinding, A-звезда и инерция скорости - algorithmHow to make gradle print or write all executed compiler commands? - gradleTopoJSON choropleth in R / Leaflet? - rAndroid BLE device gets extremely irregular results - androidPass an argument to jasmine unit test from karma? - gulpTrigger trigger notification / callback after phleg action - javascriptOSError: [Errno 107] The endpoint of the vehicle is not connected - pythonPrefab does not activate when colliding with an object - c #Как обслуживать созданный tempfile в django - pythonWhat are the benefits of using keywords as keys on maps in Clojure? - clojureAll Articles