Falls jemand schon einmal eine ORA-00904 bekommen hat, als er versucht hat einen XMLType in ein CLOB umzuverwandeln, …
SQL> select attributes.getCLOBVal() from product_xv;
select attributes.getCLOBVal() from product_xv
*
ERROR at line 1:
ORA-00904: "ATTRIBUTES"."GETCLOBVAL": invalid identifier
Elapsed: 00:00:00.00
… der sollte einmal ein Tabellen-Alias verwenden. Ohne diesem geht es nämlich nicht:
SQL> select p.attributes.getCLOBVal() from product_xv p; no rows selected Elapsed: 00:00:01.67
Bisher keine Kommentare