Tagged Questions

1
vote
1answer
84 views

How to Map oracle datatype SYS.XMLTYPE in Nhiberbate

Hi, I have a table in oracle having column of datatType SYS.XMLTYPE and have to map it in Nhibernate hbm to retrieve the XML. I am using C# with .net framework 3.5 is there any specific dataType …
1
vote
3answers
180 views

Gracefully convert from Unicode to single-byte charset

My database (10gR2) is single-byte (NLS_CHARACTERSET = WE8DEC). I have a Unicode XML file that I would like to parse. If I read the file into a CLOB and try to convert it to an XMLType, Oracle chokes …
4
votes
2answers
923 views

Oracle Pl/SQL: Loop through XMLTYPE nodes

Hi, I have a XMLTYPE with the following content: <?xml version="1.0"?> <users> <user> <name>user1</name> </user> …
1
vote
2answers
107 views

Is there an Oracle wrapper for Python that supports xmltype columns?

It seems cx_Oracle doesn't. Any other suggestion for handling xml with Oracle and Python is appreciated. Thanks.
0
votes
1answer
997 views

How to extract leaf nodes from Oracle XMLTYPE

I want to extract only the leaf nodes from an XMLTYPE object in Oracle 10g SELECT t.getStringVal() AS text FROM TABLE( XMLSequence( XMLTYPE( '<xml> …