Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Dbase5 Export Utility

Status
Not open for further replies.

Sunwriter

IS-IT--Management
Jan 25, 2004
6
US
I have a 300+ field dbase5 table that I need to import to MSSQL 7.0. My DTS import is failing I believe due to a 255 field limit with my Dbase driver. (Access 2000 also has this limitation).

Can someone tell me where I might find a dbase5 utility to export the table to a comma-delimited file, for example. Once I have the data is this format I can work with it from there.

Thanks in advance for any assistance.

Jeff
 
If you have access to the dBase environment, the following should work. I have to say I've not tried that number of fields, but this is where I'd start.

USE MyTable
COPY TO NewFile.txt DELIMITED

You should get a file named NewFile.txt, comma delimited, character data inside double-quotes, CR/LF at the end of each record.

HTH,
dennis
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top