I am using Oracle 11g and I try to create XML data. One of the tags is:
<majorLine>
I use the below code to generate it:
l_major_line := DBMS_XMLDOM.createElement (l_domdoc, 'ns1:majorLine');
DBMS_XMLDOM.setattribute (l_major_line, 'xmlns:ns1','urn:xyz:ccw:config:msa:data');
DBMS_XMLDOM.setattribute (l_major_line, 'lineId', l_line_id);
It gives this output:
<ns1:majorLine xmlns:ns1="urn:xyz:ccw:config:msa:data" linId = "12345">
The issue is, that I don't want the portion: "xmlns:ns1="urn:xyz:ccw:config:msa:data"
Instead I need:
<ns1:majorLine linId = "12345">
Please help. Thanks in advance.