Consider the following SQL:

;WITH XMLNAMESPACES(DEFAULT 'http://www.mynamespace.co.uk')
,CTE_DummyData AS (
    select id=1
)
select TOP 1
    [@ID]=1,
    (select top 1 [@ID] = 1 FROM CTE_DummyData FOR XML PATH ('Child'), TYPE)
from CTE_DummyData
FOR XML PATH ('Parent')

Thie returns the xml:

<Parent xmlns="http://www.mynamespace.co.uk" ID="1">
  <Child xmlns="http://www.mynamespace.co.uk" ID="1" />
</Parent>

What I need is to return the xml with the xmlns declaration on only the root element. eg:

<Parent xmlns="http://www.mynamespace.co.uk" ID="1">
  <Child ID="1" />
</Parent>

Is there a way to do this?

Note: The above SQL is an extreme simplification of the actual code, which produces a complex document, so changing from FOR XML PATH isn't really an option without giving me a couple of days of extra work to do.

link|improve this question

I can't find a way, but they should have the same meaning - why can't you use the first form? – Damien_The_Unbeliever Oct 13 '11 at 9:35
@Damien: This is part of a data migration process. While the first document means the same (as you say) it doesn't work when we pass it into the (third party) import web service. I think the issue is that its using the sub-queries. If you use a single query, and define the Child element using [Child/@ID] it works ok, but that would require a bit of a rethink on the code (which I've inherited) – Jon Egerton Oct 13 '11 at 9:56
feedback

1 Answer

up vote 2 down vote accepted

You can use the "query from hell"

;with CTE_DummyData AS (
    select id=1
)
select 1 as tag,
       0 as parent,
       'http://www.mynamespace.co.uk' as [Parent!1!xmlns],
       id as [Parent!1!ID],
       null as [Child!2!ID]
from CTE_DummyData       
union all
select top 1
       2,
       1,
       null,
       null,
       id
from CTE_DummyData       
for xml explicit
link|improve this answer
+1 aargh - that would be terrible to try and implement in my real situation! The idea is good though and I've got a way of working using this to solve my problem. – Jon Egerton Oct 14 '11 at 8:09
@JonEgerton - Yes it is complicated and awkward. I guess you could build the inner parts of your XML using for xml path syntax and then use this to build the outer part with the namespace. I have tested a bit a and you can use xml variables as a source for a column in the second nesting. – Mikael Eriksson Oct 14 '11 at 9:29
feedback

Your Answer

 
or
required, but never shown

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