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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

import/export problem

Status
Not open for further replies.
Jun 9, 1999
45
HK
In SQL2000, when I do import/export, there is DBaseV in the destination. In
SQL 2005, there is such selection. How can I make DBaseV export in SQL 2005?
Thanks.
 
If this is a quick fix, you can open dbase files in excel or access and save as a different format.

If it's something you'll be running a lot, you will need to search for a dbf driver for SQL 2005 (I do not know where to find this).

Good Luck,

Alex

Ignorance of certain subjects is a great part of wisdom
 
Try this

SELECT *
FROM OPENROWSET('MSDASQL', 'Driver={Microsoft dBase Driver (*.dbf)};DBQ=<Directory>', 'Select * from <dbf filename>')
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top