How can get the XML with sorted attributes using XQuery in SQL?

for example for this XML:

<root><book b='' c='' a=''/></root>

must return:

<root><book a='' b='' c=''/></root>
link|improve this question

Which database are you using? – Andomar Aug 29 '11 at 14:19
MS SQL 2008 database. – ARZ Aug 30 '11 at 8:22
feedback

2 Answers

up vote 1 down vote accepted

From Limitations of the xml Data Type.

The order of attributes in an XML instance is not preserved. When you query the XML instance stored in the xml type column, the order of attributes in the resulting XML may be different from the original XML instance.

So even if you could figure out a way of sorting the attributes, you can not trust that the XML data type in SQL Server will preserve the order you want.

link|improve this answer
thanks for your useful HyperLink. but I can finally save that as NVARCHAR string. – ARZ Sep 15 '11 at 6:24
feedback

Attributes are unordered in XML, so the document is considered the same whichever order the attributes are printed out in. XQuery certainly has no way to change the order of attributes, and I doubt SQL XML does either.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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