> hi all,
>
> i need to convert many text files to dbf ,
>
> if i have text files as t1,t2,t5,t35,t58 is ther away to convert it to tables at the same code(time)
>
> thanks
How the data in text files is stored, I mean delimter type?
You should have same number of fields as columns in the text file and the fields/column order too. You can try the following command:
USE T1
APPEND FROM t1.txt TYPE DELIMITED
Regards,
akram