i think you can try this
load data infile '/home/name/...' into table xyz fields terminated by ' ' lines terminated by '\n' ;
this is to be given from mysql prompt
if u have table say with fields name,address,no and if the files contains the data in other format then u can specify the field names in which they are in the file
load data infile '/home/name/...' into table xyz fields terminated by ' ' lines terminated by '\n' (address,name,no);
let me know if u wanted this same thing
i am also a newbie and would like to learn from mistakes
mandar@freeos.com