I have found SQL loader in Oracle is very helpful, fast and efficient. What is the MySQL equivalent of SQL loader?
问问题
9312 次
2 回答
5
There is MySQL Front 3.2
and
LOAD DATA INFILE
(see docs)
于 2011-09-26T12:09:17.980 回答
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.
于 2011-09-26T12:12:43.207 回答