Viewing 4 posts - 1 through 4 (of 4 total)
No, the oraclemts service did not stop running and we have Oracle 11.2.0
Thanks.
February 15, 2013 at 2:35 pm
I did try this code and it somewhat worked.
DECLARE @attach varchar(15)
DECLARE @list varchar(8000)
select @attach=attachid,
@list=program_id_name + ',' + COALESCE(@list,'')
from #t1
SELECT LEFT(@attach,LEN(@attach))as attachid, LEFT(@list,LEN(@list)-1)as progname
However, it took all of the program_id_names...
September 20, 2011 at 11:59 am
I did try it, but it did fail. It came with a error for incorrect syntax at FOR XML Path.
Thanks for trying to help.
September 20, 2011 at 11:48 am
I understand, however, I work for the state and at this point in time, I do not have access to any other versions. There is talk of upgrading after...
September 20, 2011 at 11:29 am
Viewing 4 posts - 1 through 4 (of 4 total)