all groups > sql server (alternate) > november 2005 >
You're in the

sql server (alternate)

group:

Bulk Import with header in text file


Bulk Import with header in text file cbanks NO[at]SPAM bjtsupport.com
11/28/2005 9:24:34 AM
sql server (alternate): I would appreciate some help on a procedure that I have. Using Bulk
Insert, I would like to import records from a text file. The issue I
have is the file contains a header - '1AMC_TO_Axiz' and a footer
'1AMC_TO_Axiz2". Using a format file, I can get the import to work by
editing the file and removing these two entries. Is there a way to
setup the format file to skip these two entries? My file currently
looks like this:
7.0
16
1 SQLCHAR 0 50 "|" 1 keyMemberNo
2 SQLCHAR 0 10 "|" 2 fldEffdate
.................
16 SQLCHAR 0 10 "\r\n" 16 fldNewRecord

Thanks
Charles
Re: Bulk Import with header in text file getinked
11/28/2005 2:05:59 PM
you should be able to write a batch file to open the text file and
replace those words w/ a NULL string.
Re: Bulk Import with header in text file Erland Sommarskog
11/28/2005 10:52:35 PM
(cbanks@bjtsupport.com) writes:
[quoted text, click to view]

BCP is very squared, and there is no way to specify a footer or a header.
The one exception is when you can hide the header in the format somehow.
If the headers fits into the format, you can the FIRSTROW and LASTROW
options to skip them.


--
Erland Sommarskog, SQL Server MVP, esquel@sommarskog.se

Books Online for SQL Server 2005 at
http://www.microsoft.com/technet/prodtechnol/sql/2005/downloads/books.mspx
Books Online for SQL Server 2000 at
Re: Bulk Import with header in text file cbanks NO[at]SPAM bjtsupport.com
11/29/2005 4:03:41 PM
Thanks for the replies! At least I now know that I did not miss
something!
AddThis Social Bookmark Button