Top "Load-data-infile" questions

A mySQL function for loading external data directly into the database.

PHP - Import CSV file to mysql database Using LOAD DATA INFILE

I have a .csv file data like that Date,Name,Call Type,Number,Duration,Address,PostalCode,City,State,Country,Latitude,…

php mysql sql csv load-data-infile
Import CSV to MySQL

I have created a database and a table. I have also created all the fields I will be needing. I …

mysql csv load-data-infile
MySQL LOAD DATA INFILE with ON DUPLICATE KEY UPDATE

For loading huge amounts of data into MySQL, LOAD DATA INFILE is by far the fastest option. Unfortunately, while this …

mysql load-data-infile on-duplicate-key
MYSQL LOAD DATA INFILE ignore duplicate rows (autoincrement as primary key)

I ran into some trouble using LOAD DATA INFILE command as i wanted to ignore the lines that was already …

mysql csv load-data-infile
How to change string date to MySQL date format at time of import of CSV using MySQL's LOAD DATA LOCAL INFILE

I'm using MySQL's LOAD DATA LOCAL INFILE SQL statement to load data from a CSV file into an existing database …

sql mysql datetime load-data-infile
mysqldump table without dumping the primary key

I have one table spread across two servers running MySql 4. I need to merge these into one server for our …

mysql mysqldump load-data-infile
SQL Loader : Load into 2 Tables from 1 controlfile and 1 CSV

Table T1 Structure:col1 number,col2 number Table T2 Structure: col1 number,col2 number,col3 number csv file: row1:1,2,3,4,5,6 row2:1,2,3,4,5,6 …

sql loader load-data-infile
MySQL load data infile - acceleration?

sometimes, I have to re-import data for a project, thus reading about 3.6 million rows into a MySQL table (currently InnoDB, …

mysql performance indexing load-data-infile
MySQL LOAD DATA Error (Errcode: 2 - "No such file or directory")

I am trying to load data into a table of my MySQL database, and getting this error. LOAD DATA LOCAL …

mysql sql bulkinsert load-data-infile
MySql file import (LOAD DATA LOCAL INFILE)

I have a table called city: +------------+--------------+------+-----+---------+----------------+ | Field | Type | Null | Key | Default | Extra | +------------+--------------+…

mysql load-data-infile