Click here to Skip to main content
15,895,606 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
how to convert dbf to sql table....if any software available mention tat name...urgent...
Posted
Comments
Sandeep Mewara 3-Aug-10 13:34pm    
Reason for my vote of 1
1. No effort
2. Urgent

No, it's not urgent at all. Your inability to do your job is not really our problem. I don't know of any programs, but surely it's not hard to write code to connect to both sources and copy the tables, assuming your variety of SQL has no import tool that you can use.
 
Share this answer
 
Use Linked Server in SQL server.

Use MS OLEDB Provider 4.0 and name it DBFConverter and give the folder name where your all DBF files available.

Eg: the DBf file named "EmpData.BDF" is available in configured folder. Use the following query to retrieve all rows

Select * from DBFConverter...EmpData

If you want to convert it to SQL table,

Select * into NewTableName from DBFConverter...EmpData

Hope it helps!! :)
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900