This should be an easy one...

In Oracle I am using XMLTYPE.TRANSFORM(myxml, myxsl) to perform a transformation.

The XMLTYPE returned is a fragment (i.e. there is no XML document declaration). I require the output to be a document (i.e. with the <?XML version="1.0" ?> declaration).

My trasform works fine using standalone tools.

Any help would be appreciated..

link|improve this question

75% accept rate
feedback

2 Answers

up vote 1 down vote accepted

I ended up solving this by prepending the declaration string to the CLOB output like so : return ('<?xml version="1.0" encoding="UTF-8"?>' || xmltype.GETCLOBVAL(L_RESULT));

link|improve this answer
feedback

You could use sys_xmlgen:
select sys_xmlgen(xmlforest(a.value, a.value2)) from
(select 'value' value, 2 value2 from dual) a

link|improve this answer
Thanks, I tried this but it inserts the resulting document in an enclosing <ROW> element which invalidates it according to the schema it needs to be matched to. It seems that XMLTYPE.TRANSFORM reasonably assumes that the resulting document may not be well formed, so returns just a fragment. I want to keep all of my XML to XML formatting in the stylesheet only, let it do the work. – NotNowJohn Mar 29 '11 at 14:10
feedback

Your Answer

 
or
required, but never shown

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