I have a table with a XMLTYPE column named 'InvoiceXML'.

The data in this column is XML in the form:

<Invoice CustomerNum="1234" >
<CustomDeliveryDetails />
</Invoice>

When I do a

SELECT ... FOR XML PATH(''), ROOT('Invoices') 

I end up with:

<Invoices>
 <InvoiceXML>
  <Invoice CustomerNum="1234" >
  <CustomDeliveryDetails />
  </Invoice>
 </InvoiceXML>
</Invoices>

How do I stop the column name InvoiceXML appearing in the output?

link|improve this question
feedback

3 Answers

declare @T table (invoiceXML xml)

insert into @T values (
  '<Invoice CustomerNum="1234" >
     <CustomDeliveryDetails />
   </Invoice>
  ')

insert into @T values (
  '<Invoice CustomerNum="4321" >
     <CustomDeliveryDetails />
   </Invoice>
  ')

select (select T.invoiceXML)
from @T as T
for xml path(''), root('Invoices')

Edit 1 The subqeery (select T.invoiceXML) has no column name so it is removed.

link|improve this answer
Nice. You should probably add why your solution works: the subquery is given no name, so it doesn't have a column name to put in the containing element, causing it to be removed. – Tadmas Jan 25 '11 at 15:35
Thanks, I will do that. – Mikael Eriksson Jan 25 '11 at 16:10
feedback

Try:

SELECT cast(cast(InvoiceXML as nvarchar(max)) + '' as XML)
FROM whatever
FOR XML PATH(''), ROOT('Invoices')
link|improve this answer
Don't think you're allowed to concatenate a string directly onto an XML column. You'd need to double cast: cast(cast(InvoiceXML as nvarchar(max)) + '' as XML) – Joe Stefanelli Jan 25 '11 at 14:40
+1 After further review, I think it can be simplified even further. I looks like cast(InvoiceXML as XML) is sufficient. – Joe Stefanelli Jan 25 '11 at 20:54
feedback

Try this:

SELECT InvoiceXML.query('//Invoice')
  FROM <YOUR_TABLE>
FOR XML PATH('')
Try specifying a xpath query to invoice in the FPR XML PATH e.g: `FOR XML PATH('//InvoiceXML')`
link|improve this answer
Does that work? When I tried, it gives me: Row name '//InvoiceXML' contains an invalid XML identifier as required by FOR XML; '/'(0x002F) is the first character at fault. Removing the double-slash results in <InvoiceXML> wrapping each row twice. – Tadmas Jan 25 '11 at 15:25
Didn't test the earlier version of the answer, on verification it failed :). Updated the post with working version. Thx – Cybernate Jan 25 '11 at 15:51
feedback

Your Answer

 
or
required, but never shown

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