4

I have found SQL loader in Oracle is very helpful, fast and efficient. What is the MySQL equivalent of SQL loader?

Redbeard011010
  • 954
  • 6
  • 20
Suleman Ahmad
  • 2,025
  • 4
  • 28
  • 43

2 Answers2

5

There is MySQL Front 3.2

and

LOAD DATA INFILE

(see docs)

Louis
  • 2,854
  • 2
  • 19
  • 24
  • Louis: it seems just like external table, Yeah I have tried but any suggestion please for sqlloader ? – Suleman Ahmad Sep 27 '11 at 05:30
  • 1
    @Suleman : Also called heidiSQL : http://www.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, .... – Louis Sep 27 '11 at 06:18
2

LOAD DATA INFILE....

Provides much of the same functionality as you would implement in your control file except for byte ranges and 'WHERE' filters.

symcbean
  • 47,736
  • 6
  • 59
  • 94