I have found SQL loader in Oracle is very helpful, fast and efficient. What is the MySQL equivalent of SQL loader?
2 Answers
There is MySQL Front 3.2
and
LOAD DATA INFILE
(see docs)
2 Comments
Suleman Ahmad
Louis: it seems just like external table, Yeah I have tried but any suggestion please for sqlloader ?
Louis
@Suleman : Also called heidiSQL : roseindia.net/mysql/mysql-front.shtml It is a solid tool to interact with the db. Also does import/export of text files, CSV files, ....
LOAD DATA INFILE....
Provides much of the same functionality as you would implement in your control file except for byte ranges and 'WHERE' filters.