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?

link|improve this question

76% accept rate
What do you mean both are delimited by \t? Do you have one long line with no linebreaks? – Michael Feb 25 at 5:57
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.