I need to add the namespace details in the xml document.
already I have namespace
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
and xml data in the
l_xmltype :=dbms_xmldom.getXmlType(l_domdoc);
dbms_xmldom.freeDocument(l_domdoc); dbms_output.put_line(l_xmltype.getClobVal);
This l_xmltype is purely XML without namespace. how to concatinate the namespace with this l_xmltype. please help