Hi
I'm using 8.0.4 and am having trouble viewing XML objects in PL/SQL Developer, for example I create a table with one column of an xml type, insert some data, but on selecting from the table the GUI tool shows 1 row, but no information on screen. Is anyone else having this problem and is there a workaround?
CREATE OR REPLACE TYPE ft_arrival_obj AS OBJECT (
financial_transaction_xml sys.xmltype
);
-- Create table
create table FT_CHEQUE_OBJECT
(ft_xml FT_ARRIVAL_OBJ)
Similarly, in tables with more regular columns and an xml column, the toll with display all columns except the one with XML in it.
Any help appreciated
Cheers
Gaz
I'm using 8.0.4 and am having trouble viewing XML objects in PL/SQL Developer, for example I create a table with one column of an xml type, insert some data, but on selecting from the table the GUI tool shows 1 row, but no information on screen. Is anyone else having this problem and is there a workaround?
CREATE OR REPLACE TYPE ft_arrival_obj AS OBJECT (
financial_transaction_xml sys.xmltype
);
-- Create table
create table FT_CHEQUE_OBJECT
(ft_xml FT_ARRIVAL_OBJ)
Similarly, in tables with more regular columns and an xml column, the toll with display all columns except the one with XML in it.
Any help appreciated
Cheers
Gaz