vote up 1 vote down star

I have a column in SQL Server 2005 that stores a simple chunk of XML. At a later point processing is performed and I need to merge some processing info into the XML.

While I can do this at an intermediate point I would much prefer to keep this method centraliazed within the stored procedure that is responsible for updating other fields post-processing.

Here's an example of the XML I'm starting with and the type of outcome I'd like to achieve. Can anyone provide me some rough SQL to achieve it?

Update: Finally got it! I'll post the full solution when I get the chance, it was enough of a hack that someone else will hopefully find it useful

All finished! In the end I had a couple of additional requirements that required me to rework Marc's suggested solution and ditch the .modify() function entirely; however his answer let me get past my initial hurdles and got me to where I could step back and spot the easier approach. Here's my final solution!

flag

79% accept rate
NO - the modify SQL XML DML is available in SQL Server 2005, too! – marc_s Apr 28 at 18:04
You need to be EXTREMELY careful with your casing, though! The method is called "modify" (all lower-case) - NOT "Modify". – marc_s Apr 28 at 18:05
Ahh! Red-Gate SQL Prompt is automatically upper-casing it. :-D SHIGGITY! :-D – Yoooder Apr 28 at 18:10
<hehe> I have strongly complained with Red-Gate about that behaviour for a long time - without much luck so far :-( Just turn off SQLPrompt for now, or manually lowercase it all again. – marc_s Apr 28 at 18:15
I'm getting so close, but still battling errors. The latest still has to do with trying to dynamically set the XML inside the insert statement. Any particular approach you can advise? – Yoooder Apr 28 at 18:37
show 1 more comment

1 Answer

vote up 1 vote down check

How about this:

update yourTable
set (your XML column).modify('insert <processingData id="guid" someAttrib="x" /> as last into /someData[1]')
where .......

That should do it.

For more details on how to deal with XML in SQL Server 2005 and up, I keep going back to this article at 15 seconds which shows really nicely how to insert, modify, and delete XML fragments inside your SQL server fields, using XML DML statements.

Marc

link|flag
Great link :-) but unfortunately it looks like the Modify() function isn't supported by SQL Server 2005 – Yoooder Apr 28 at 17:57
Sure it is supported in SQL Server 2005! I use it almost every day.... what makes you say that?? – marc_s Apr 28 at 18:03

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.