SELECT xmlelement("TADIGEID"
, xmlattributes
( 'https://infocentre.gsm.org/TADIG-EID' as "xmlns",
'https://infocentre.gsm.org/TADIG-GEN' as "xmlns:tadig-gen",
'http://www.w3.org/2001/XMLSchema-instance' as "xmlns:xsi",
'https://infocentre.gsm.org/TADIG-EID tadig-eid-10.0.xsd' as "xsi:schemaLocation"
)
, xmlelement ("ObjectType", object_type )
, xmlelement ("Info", xmlattributes (object_id as "Id"))
) AS namespace_example
FROM ALL_OBJECTS
WHERE ROWNUM <= 2
NAMESPACE_EXAMPLE |
---|
<TADIGEID xmlns="https://infocentre.gsm.org/TADIG-EID" xmlns:tadig-gen="https://infocentre.gsm.org/TADIG-GEN" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="https://infocentre.gsm.org/TADIG-EID tadig-eid-10.0.xsd"><ObjectType>EDITION</ObjectType><Info Id="133"></Info></TADIGEID> |
<TADIGEID xmlns="https://infocentre.gsm.org/TADIG-EID" xmlns:tadig-gen="https://infocentre.gsm.org/TADIG-GEN" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="https://infocentre.gsm.org/TADIG-EID tadig-eid-10.0.xsd"><ObjectType>TABLE</ObjectType><Info Id="142"></Info></TADIGEID> |
SELECT XMLSERIALIZE (CONTENT ( xmlelement("TADIGEID"
, xmlattributes
( 'https://infocentre.gsm.org/TADIG-EID' as "xmlns",
'https://infocentre.gsm.org/TADIG-GEN' as "xmlns:tadig-gen",
'http://www.w3.org/2001/XMLSchema-instance' as "xmlns:xsi",
'https://infocentre.gsm.org/TADIG-EID tadig-eid-10.0.xsd' as "xsi:schemaLocation"
)
, xmlelement ("ObjectType", object_type )
, xmlelement ("Info", xmlattributes (object_id as "Id"))
)
) AS CLOB indent SIZE=0
) AS not_pretty_print
FROM ALL_OBJECTS
WHERE ROWNUM <= 2
NOT_PRETTY_PRINT |
---|
<TADIGEID xmlns="https://infocentre.gsm.org/TADIG-EID" xmlns:tadig-gen="https://infocentre.gsm.org/TADIG-GEN" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="https://infocentre.gsm.org/TADIG-EID tadig-eid-10.0.xsd"> <ObjectType>EDITION</ObjectType> <Info Id="133"/> </TADIGEID> |
<TADIGEID xmlns="https://infocentre.gsm.org/TADIG-EID" xmlns:tadig-gen="https://infocentre.gsm.org/TADIG-GEN" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="https://infocentre.gsm.org/TADIG-EID tadig-eid-10.0.xsd"> <ObjectType>TABLE</ObjectType> <Info Id="142"/> </TADIGEID> |