views:

6217

answers:

2

How can you import a foxpro DBF file in SQL Server?

+3  A: 

Use a linked server or use openrowset, example

SELECT * into SomeTable
FROM OPENROWSET('MSDASQL', 'Driver=Microsoft Visual FoxPro Driver;
SourceDB=\\SomeServer\SomePath\;
SourceType=DBF',
'SELECT * FROM SomeDBF')
SQLMenace
+1  A: 

This tools allows you to import to and from SQL Server.

GateKiller