Hi,
When I am generating xml data from my table data,my text having special characters are converted to different format(> to >) .My requirement is just to convert row to xml format and store it into CLOB field in another table.
Is it possible to store it as similar to my text field format?
select xmlelement("tab1",'test->test') from dual
XML
------------------------------
<tab1>test->test</tab1>
Thanks.