Is there a easy way to suppress the XML row tags of a collection in Oracle? - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T18:28:51Zhttp://stackoverflow.com/feeds/question/529428http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/529428/is-there-a-easy-way-to-suppress-the-xml-row-tags-of-a-collection-in-oracle0Is there a easy way to suppress the XML row tags of a collection in Oracle?Tom2009-02-09T19:06:06Z2009-02-10T16:13:52Z
<p>I have a query that I am generating the XML from in Oracle using the DBMS_XMLGEN package.</p>
<p>As an example, I am using a cursor as follows:</p>
<pre><code>SELECT
A.NAME primaryName,
(CURSOR(SELECT B.NAME AS NAME FROM B WHERE B.ID=A.ID)) SYNONYMS
FROM
A
</code></pre>
<p>I have a query context, qtx, and set the query to the above for that context. Calling:</p>
<pre><code>result := DBMS_XMLGEN.getXML(qryCtx);
</code></pre>
<p>gets me almost where I want to be, from the viewpoint of the generated XML:</p>
<pre><code><PRIMARYNAME>Main Name</PRIMARYNAME>
<SYNONYMS>
<SYNONYMS_ROW>
<NAME>Synonym1</NAME>
</SYNONYMS_ROW>
<SYNONYMS_ROW>
<NAME>Synonym2</NAME>
</SYNONYMS_ROW>
</SYNONYMS>
</code></pre>
<p>What I would really like to do is suppress the <code>SYNONYMS_ROW</code> tag. I've also tried a (CAST(MULTISET( <code><query></code>) and have similar results.</p>
<p>I know I could do a CLOB search and replace, but it seem like there should be a slightly easier or better engineered approach (ie, should I define the desired xsd and use that somehow?). I could also do a full stored procedure and build the tags as needed on the fly using cursors, but it would be nice to have a single SQL statement to use instead. Thanks for any suggestions </p>
<p><br><br>
Thanks Nick - it turned out that the easiest way to solve the issue I describe was to use the XMLAGG function and generate my XML result slightly differently.</p>
<pre><code>select
XMLELEMENT("primaryName",A.Name),
xmlelement("synonyms",
(SELECT XMLAGG(XMLELEMENT("name",b.name) ) from b
where b.id=a.id and b.type='S') )
from
A
</code></pre>
http://stackoverflow.com/questions/529428/is-there-a-easy-way-to-suppress-the-xml-row-tags-of-a-collection-in-oracle/529480#5294801Answer by Nick for Is there a easy way to suppress the XML row tags of a collection in Oracle?Nick2009-02-09T19:19:27Z2009-02-09T19:19:27Z<p>You'll need to drop down to PL/SQL where you have more control over the dbms_xmlgen package. For instance, here is how you can change the behavior of the row tags it sets.</p>
<pre><code>declare
qryctx DBMS_XMLGEN.ctxhandle;
results xmltype;
begin
qryctx := dbms_xmlgen.newcontext('select foo from bar where id = my_id');
dbms_xmlgen.SETBINDVALUE(qryctx,'my_id',id);
dbms_xmlgen.setRowTag(qryCtx,NULL);
dbms_xmlgen.setRowSetTag(qryCtx,NULL);
results := dbms_xmlgen.getxmltype(qryctx);
dbms_xmlgen.closecontext(qryctx);
return results;
end;
</code></pre>
<p>This package will allow you not only to change the row tag, but also the tag that goes around all the rows. In the above example, I suppressed the row tag by passing NULL as the second arguement into the dbms_xmlgen.setRowTag call. I hope this helps.</p>
http://stackoverflow.com/questions/529428/is-there-a-easy-way-to-suppress-the-xml-row-tags-of-a-collection-in-oracle/532974#5329740Answer by Tom for Is there a easy way to suppress the XML row tags of a collection in Oracle?Tom2009-02-10T16:13:52Z2009-02-10T16:13:52Z<p>See the comments I added at the end of the question for how I ultimately decided to go.</p>