|
Title: LOAD LOCAL DATA INFILE and LOAD DATA INFILE? Post by: Sipra on July 03, 2008, 11:39:17 am Frndz,
Is there any significance difference between LOAD LOCAL DATA INFILE and LOAD DATA INFILE? Title: Re: LOAD LOCAL DATA INFILE and LOAD DATA INFILE? Post by: ragjeevan on February 19, 2010, 03:39:35 pm LOAD DATA LOCAL INFILE will read a file that is on the machine where you are
running the mysql client. For eg., your Laptop.The file willbe sent over the network to the MySQL server host. LOAD DATA INFILE will read a file that is already present on the machine running the mysql server. |