kizziebutler
Programmer
I am exporting loads of data from sql 2000 to Oracle. I would like to write a stored procedure to concatenate fields. I would like to be able to convert dates, and if there is a null value this will be replace with getdate(). I would like some assistance on how to handle various fields when concatenating. Thank you
select
field1+'|',
field2+'|',
convert(varchar(10),datetimestamp,120),''),
field3
from table.
select
field1+'|',
field2+'|',
convert(varchar(10),datetimestamp,120),''),
field3
from table.