I have a large text file delimited by tabs. I have done a lot of research, looking for the fastest way to import into mysql, and it seems that load data would work best.
load data infile '/data/file1.txt' into table products fields terminated by "," lines terminated by "\n"
So my question is if the file is tab delimited, what are both the fields and lines terminated by: "\t"?
Also is this really the fastest way to load a very large text file into a database?
\t? Do you have one long line with no linebreaks? – Michael Feb 25 at 5:57