MSCEWI1084
XMLTABLE is not supported.
High
XMLTABLE function is not currently supported.
SELECT x.*
FROM XmlTableTest t,
XMLTABLE ('/Employees/Employee'
PASSING t.xmldata
COLUMNS firstname VARCHAR2(30) PATH 'firstname',
lastname VARCHAR2(30) PATH 'lastname') x;
SELECT x.*
FROM MYDB.PUBLIC.XmlTableTest t, /*** MSC-ERROR - MSCEWI3010 - XMLTABLE IS NOT SUPPORTED ***/
XMLTABLE ('/Employees/Employee'
PASSING t.xmldata
COLUMNS firstname VARCHAR(30) PATH 'firstname',
lastname VARCHAR(30) PATH 'lastname') x;
- For more support, you can email us at [email protected] or post a message to our forums. If you have a contract for support with Mobilize.Net, reach out to your sales engineer and they can direct your support needs.
Last modified 7mo ago