Viewing 2 posts - 31 through 32 (of 32 total)
yah...! actually you come across that error not from the disturbance of bulk insert or any other thing but its all because you are trying to insert data into a...
April 30, 2010 at 6:52 am
#1160363
Hi.,
if u really want try pivot property in sql server then jst try this.............
select * from
(
select unique_id,parameter_name,parameter_value from dbo.MyTable
) ttbl
PIVOT
max(parameter_value) --in case of...
April 29, 2010 at 4:07 am
#1159517