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

bulk insert dbf file

Status
Not open for further replies.

Guest_imported

New member
Joined
Jan 1, 1970
Messages
0
hi guys
i want to copy data from branch.dbf into table branch
please help me to do it.
i am using

BULK INSERT betatest.dbo.[branch]
FROM 'c:\betagrp\dbf\branch.dbf'
WITH
(
FIELDTERMINATOR = '\t',
ROWTERMINATOR = '\t\n')
it give erros

 

Bulk Insert works on text files. Is the DBF file a text file of a database file from another RDMS or database program? If it is you'll need to use DTS to copy the file using ODBC or OLE DB. Terry L. Broadbent
FAQ183-874 contains tips for posting questions in these forums.
NOTE: Reference to the FAQ is not directed at any individual.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top