Thank you for your answer,
Records are like this, from a plain ASCII txt file, one record for each line that ends with a newline:
#1001# #HOT SHOTS# #ABRAHAMS# #JIM# #SHEEN# #CHARLIE# #ELWES# #CARY# #1991# #80# #Commedia# #19931015#
The last field is the date, fields are enclosed between # and divided by Tabs.
All fields are right imported correctly, except the date...
I've used the following command in MySQL:
load data infile 'test.txt' into table tablename fields terminated by '\t' enclosed by '#';
Have you got suggestions about my trouble ?