Tagged Questions
8
votes
3answers
9k views
Oracle Pl/SQL: Loop through XMLTYPE nodes
I have a XMLTYPE with the following content:
<?xml version="1.0"?>
<users>
<user>
<name>user1</name>
</user>
<user>
...
2
votes
2answers
107 views
How to rename an Oracle XMLTYPE node
I have an XMLType in PL/SQL and I need to rename some of the nodes and some of the values. For example:
<root>
<fields>
<a>foo</a>
<b>bar</b>
...
2
votes
2answers
242 views
Moving XML over a DBLink
I am trying to move some data over a dblink and one of the columns is an XMLType column. The code looks like this:
begin
delete from some_schema.some_remote_tab@src_2_trg_dblink;
INSERT INTO ...
2
votes
3answers
1k 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 ...
1
vote
1answer
141 views
Using ExtractValue and XMLType in MAterialized view
I'm trying to create a materialized view that will present a tabular view on XML data contained in a table. I am also hoping to use the auto refresh option to ensure the MV is always up to date.
Some ...
0
votes
3answers
828 views
why doesn't XMLTYPE.getClobVal() work on 9i like on 11g?
So on 11g I can execute the following plsql without any problems:
DECLARE
lob1 CLOB;
BEGIN
SELECT e.xml_col.getClobVal() INTO lob1 FROM "XML"."XML_TABLE" e WHERE KEY_COL=3 ;
...