Hi,
I'm having difficulty finding out how to do the following in sql server 2005. I want to take two xml variables @a and @b, and combine them such that @c = @a + @b (so that @b would just appear after @a).
I would also like to be able to say something like @a = '<xx>' + @a + '</xx><yy>' + @b + '</yy>'
I know I can do this by first CASTing the xml datatype to a varchar, calling CONCAT, and then CASTing back to xml....but i am worried that this may truncate some of the xml data since VARCHAR has a limited length
I'm having difficulty finding out how to do the following in sql server 2005. I want to take two xml variables @a and @b, and combine them such that @c = @a + @b (so that @b would just appear after @a).
I would also like to be able to say something like @a = '<xx>' + @a + '</xx><yy>' + @b + '</yy>'
I know I can do this by first CASTing the xml datatype to a varchar, calling CONCAT, and then CASTing back to xml....but i am worried that this may truncate some of the xml data since VARCHAR has a limited length