Convert XML to UDT in Oracle
- by Josh
Is there an easy way to convert an XMLType to a User Defined Type? I can convert the UDT to XMLType using the below.
select SYS_XMLGEN(pUDT) into param2 from dual;
I can't though, is find a function that takes that and turns it back into that UDT using the same mappings the SYS_XMLGEN used.