Viewing 6 posts - 1 through 6 (of 6 total)
Disregard the last question. I read more about bcp and figured out how to load a delimited record into the proper fields. Thanks for the guidance.
Bryan
December 19, 2007 at 9:44 am
Would you load the data into a staging table as one long string including the delimiters?
December 19, 2007 at 9:32 am
This process will be used very sporatically. Files are typically around 200 records. Basically, I will read the record in the file, evaluate two columns of the record...
December 18, 2007 at 8:04 am
do you want nulls to remain nulls?
December 18, 2007 at 7:59 am
Try this...
select
substring(datecolumn,1,2)+ '/' +
cast(month(substring (datecolumn,3,3)+'2007')as char(2)) +'/'
December 17, 2007 at 3:34 pm
Viewing 6 posts - 1 through 6 (of 6 total)