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>
...
4
votes
3answers
418 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.
3
votes
3answers
94 views
Why should I use XmlType instead of a relational database?
I'm doing an assignment where I am to consider two solutions for storing text used in a webpage.
Scenario: there is one webpage for one lecture, and several lectures for one subject.
The first ...
3
votes
2answers
166 views
Oracle: how to do full text searches on an XMLType?
I have an app storing XML in an Oracle table as XMLType. I want to do full text searches on that data. The Oracle documentation, in Full-Text Search Over XML Data, recommends to use the contains SQL ...
3
votes
0answers
1k views
“ORA-31011: XML parsing failed” when inserting an XML document into a table with XMLType column using Hibernate
I want to store XML data in an Oracle XMLType column with registered XML schema file. Both XML files and the XSD schema are valid and XMLs conform to the schema. To get Hibernate work with XMLType, I ...
3
votes
1answer
848 views
Oracle: how to create a fast refresh materialized view that extracts data from XMLType?
I have a table xml_documents with two columns: a document_id column (primary key) and an xml column with some XML data, which is a schema-less XMLType. I can create a materialized view with just the ...
3
votes
1answer
539 views
How to get first element by XPath in Oracle
In my Oracle db I have records like this one:
<ROOT>
<Event>
<Type>sldkfvjhkljh</Type>
<ID>591252</ID>
</Event>
<Data>
<File>
...
2
votes
1answer
54 views
Oracle 11g XMLType object relational Storage -> XML Schema validation
i got the following problem. Each time I try to load an XML File via JDBC in my Oracle DB I get an ORA-19007 Error: schema of document doesn´t match with schema http://myServerURL/mondial.xsd
In ...
2
votes
2answers
110 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
246 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
1answer
576 views
Oracle xmltype extract function never deallocate/reclaim memory until session down
I'm using Oracle 9.2x to do some xmltype data manipulation.
The table as simple as tabls(xml sys.xmltype), with like 10000 rows stored. Now I use a cursor to loop every row, then doing like
...
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 ...
2
votes
1answer
3k 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>
...
1
vote
0answers
97 views
Parsing Large XML (>4k) in PL/SQL
I am getting an xml of length around 30k. I have to extract key and value pairs from this xml and insert into a table. Also have to avoid from duplicated rows in table. Here is the query I came up ...
1
vote
1answer
54 views
Oracle UpdateXML() changes XML structure?
When I call UpdateXML() I find that empty nodes are being converted to shorthand XML. Is there a way to prevent UpdateXML() from behaving this way, perhaps a flag or setting or alternate XPath ...
1
vote
2answers
374 views
XSL transform in Oracle using XMLTYPE.TRANSFORM returns a fragment, document required
This should be an easy one...
In Oracle I am using XMLTYPE.TRANSFORM(myxml, myxsl) to perform a transformation.
The XMLTYPE returned is a fragment (i.e. there is no XML document declaration). I ...
1
vote
2answers
193 views
Does Oracle's XMLType support JDBC batch updates?
Does Oracle's JDBC implementation support XMLType batch updates (via PreparedStatement.addBatch())?
1
vote
2answers
634 views
select distinct values on XMLType
I've got a table that has a XMLType field. The table is created and loaded using the following DDL/DML:
CREATE TABLE T_ECO_test_LOG
(
SECID NUMBER NOT NULL,
...
1
vote
0answers
583 views
Slow to convert Oracle 11g XMLType into Java String or Document
After retrieving a result set from an Oracle 11g database, it takes roughly 75 seconds to convert the XMLType (this is a structured XML Storage, registered with an xsd) into either a java String or ...
1
vote
0answers
469 views
Oracle XMLDB's XMLCAST and XMLQUERY incompatible with iBatis?
I've been trying to select a list of values from XMLs stored in an
XMLType column but I keep getting the errors which are listed at the
tail end of this post.
The select id is
getXMLFragment
, ...
0
votes
1answer
36 views
Oracle updateXML - What is the text() for?
When I'm using the Oracle updateXML()-Function, I have to address the path to the attribute which I'm trying to update (e.g. '/supplier/companyName/text()', 'Some Company Ltd').
OK, I'm fine with ...
0
votes
1answer
314 views
Oracle XML type parsing issue
My XML File is stored in oracle column
<?xml version="1.0" encoding="UTF-8"?>
<BasicProductTemplateType xmlns="http://www.asia.com/app/Product_2_0" ...
0
votes
1answer
258 views
how to retrieve the data from xmltype parameter returned from stored proc
I have a stored proc it returns xmltype parameter. How to get the data from that using vb.net?
db.Parameters("param", Oracle.DataAccess.Client.OracleDbType.XmlType, _
...
0
votes
0answers
143 views
convert string to xml and pass it to a stored proc
I have a screen where user enters id,firstName ,lastName, DoB these all are strings.
I have a package it accepts XML type in parameter like
create or replace procedure Search (
P_parameters ...
0
votes
1answer
447 views
Creating a Data Model of XML data with Oracle 11g BI Publisher
I'm running Oracle BI Publisher 11g (11.1.1.3.0) and I'm trying to access XML data stored to a database table. Unfortunately I'm having several issues and at the moment I'm a quite confused.
I have a ...
0
votes
1answer
196 views
XML transformation with xsl and DB query
I'm using Java to transform xml files using the Transformer class. I pass a stylesheet (xls) file to the transformer along with the input xml file and that gives me a transformed output xml file.
At ...
0
votes
1answer
301 views
Update XMLTYPE in Oracle table with values from it's fields
I have an existing table in an Oracle 10gR2 that I added a XMLTYPE column to it. Now, I need to fill this field with a XML that is composed with a mixture of values from the fields of each row, but I ...
0
votes
3answers
834 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 ;
...
0
votes
2answers
568 views
Hibernate Computed Criteria Order
I have an Oracle XMLType column that stores the various language specific strings. I need to construct a Hibernate criteria that orders on this column. In order to do this, I need to extract the value ...