We have a number of applications accessing our APIs by providing XML data. At a certain point we decided to use xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"
for incoming NULL
-values to be able to distinguish empty values from NULL
values in a uniform way.
Because the transition to xsi:nil
is still ongoing, I want to be able to tell whether or not the xsi
-namespace is declared as an indicator of whether or not the calling application would use xsi:nil="true"
for NULL
-values.
I tried
DECLARE @SomeXML xml = N'<ROOT xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><blubb><blah xsi:nil="true"/></blubb></ROOT>';
SELECT @SomeXML.exist('declare namespace xsi="http://www.w3.org/2001/XMLSchema-instance"; //xsi:*, //@xsi:*');
but this will only work if the namespace is actually referred to in the XML-document. A query like //@xmlns:*
leads to the error
Msg 2229, Level 16, State 1, Line 6
XQuery [query()]: The name "xmlns" does not denote a namespace.
while a query for //@*:xsi
just returns nothing at all.
Is there any way to determine the declared XML-namespaces in SQL Server 2016?
I learned from this thread, that there is a rather old way to enumerate namespaces utilizing
OPENXML
:I am uncertain how elegant this is, as
text
column is of typentext
, and the calls tosys.sp_xml_preparedocument
andsys.sp_xml_removedocument
mean, that you need to pay a bit more attention, when you include this into other queries. Probably the worst draw-back is, that you need to do this RBAR.Still this is a solution without casting
xml
tovarchar
, so it should be difficult to spoof.Listing all namespaces: