5

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>
1
  • Which database are you using? Commented Aug 29, 2011 at 14:19

4 Answers 4

2

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.

Sign up to request clarification or add additional context in comments.

Comments

1

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.

1 Comment

thanks for your useful HyperLink. but I can finally save that as NVARCHAR string.
1

Although the order of attributes has no semantic significance, one of the design goals of XML is to be human-readable, so it is not entirely unreasonable to try to generate lexical XML in which the order of attributes is consistent and reflects user expectations: for example <point x="2" y="5" z="7"/> is easier on the eye than <point z="7" x="2" y="5"/>. The Saxon serializer therefore has an option saxon:attribute-order that allows the ordering of attributes in the output XML to be controlled: see http://www.saxonica.com/documentation/index.html#!extensions/output-extras/serialization-parameters

Comments

0

Beyond Mikael Eriksson's helpful answer that SQL Server will not preserve XML attribute ordering, and Michael Kay's special accommodation in Saxon for alphabetically serialization attributes by name, future readers should be warned that the XML Recommendation says that the the order of XML attributes is insignificant:

Note that the order of attribute specifications in a start-tag or empty-element tag is not significant.

Therefore, XML tools generally do not care about attribute ordering, and unless you are concerned with XML normalization/canonicalization1, neither should you. Without provision for attribute ordering in the XML Recommendation, achieving an ordering by leveraging special mechanisms such as saxon:attribute-order will likely prove to be only a temporary, localized success as the XML ecosystem will not guarantee any ordering as your XML passes through tools and toolchains through its life cycle.

1For those rare circumstances, see the section on attribute processing in the XML Normalization Recommendation or the Canonical XML Recommendation.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.