Tagged Questions

XMLType is a system-defined data type for handling XML data in Oracle databases.

learn more… | top users | synonyms

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
92 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
1answer
82 views

How to select from a previous xml query result

I am working with an oracle 11g r2 database and basically need to be able to be able to parse and select some nodes from it. I've spent hours scouring the net and reading the oracle xml db manual ...
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
844 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
2answers
940 views

Two classes have the same xml type name

When I try to publish my Workspace in RAD, I get this error "Two classes have the same xml type name", probably because the same class name exists in the same package, but in two different jars. And ...
3
votes
3answers
311 views

How to remove column name when selecting from a XMLTYPE column using FOR XML PATH

I have a table with a XMLTYPE column named 'InvoiceXML'. The data in this column is XML in the form: <Invoice CustomerNum="1234" > <CustomDeliveryDetails /> </Invoice> When I do ...
3
votes
1answer
431 views

SQL Server XmlType not preserving the CDATA element

We are using SQL Server 2005 and are trying to store an XML Type in the database. The XML type has an element that needs to contain the content in CDATA, yet once inserted, the field seems to be ...
3
votes
1answer
535 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
52 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
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
245 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
2answers
1k views

Mapping Oracle XMLType on JPA (EclipseLink)

We have a project with some special requirements, one of wich is getting data from a XMLType database column from an Oracle 10g database. We have found an easy solution using JDBC, but it would drive ...
2
votes
1answer
575 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
1answer
655 views

How to Map oracle datatype SYS.XMLTYPE in Nhiberbate

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 ...
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
94 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
51 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
1answer
142 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 ...
1
vote
2answers
370 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
192 views

Does Oracle's XMLType support JDBC batch updates?

Does Oracle's JDBC implementation support XMLType batch updates (via PreparedStatement.addBatch())?
1
vote
2answers
631 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
468 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 , ...
1
vote
1answer
848 views

Implementing IXmlSerializable on a generated class that has XmlTypeAttribute

Basically, the initial problem is I need to make a boolean value serialize as 0 or 1. The solution I found was to implement IXmlSerializable, which I did. Unfortunately the class I'm trying to ...
0
votes
1answer
17 views

Fluent NHibernate Mapping XDocument property to Oracle XMLType

I am looking for the best way to map from an XDocument property type to an Oracle XMLType? I am mapping to a legacy database and have no control over the schema. It is Oracle 9i. I have read that ...
0
votes
0answers
13 views

java serializer can't make empty namespace for an element?

I have a class for web service: @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "RequestResponseBase", propOrder = { "routingSlip", "parameters", ...
0
votes
0answers
33 views

Developing application using XML Database

What is the best technology used to build J2EE application based on XML Database. I'm using Oracle 11G Database and JDeveloper 11.1.1.4 Is it applicable to use ADFbc for it? Note: I'm trying not to ...
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
169 views

Parameters order with and @XmlType(propOrder) and Resteasy jackson

I produce json using resteasy. Everything works fine but... I can't order the parameters of my generated json: In my serialized class, I have the following anotations: @XmlRootElement ...
0
votes
1answer
51 views

parsing xml code and redirecting to table/file

Below is the sample XML Code stored in Oracle column <productAttribute> <name>Baiying_attr_03</name> <required>false</required> </productAttribute> ...
0
votes
1answer
310 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
101 views

NHibernate Merge problem with XMLType

I have a class that contains a property of type XmlElement. The property is mapped as following: <property name="XamlForm" column="XamlForm" type="KTN.Base.Data.Types.XmlType, KTN.Base.Data" /> ...
0
votes
1answer
256 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
142 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
446 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
0answers
300 views

How to map one-to-one relationship for multiple tables in Hibernate

I've got a table which is in one-to-one relationship with several other tables and I can't find a way to map it correctly in Hibernate. The reason why I need so many tables is that I need to store ...
0
votes
1answer
250 views

How to manage XmlType on H2 database

I use H2 Database for my unit tests. In my application, I have an Entity object called FooXml defined like that: @Entity @Table(name = "T_FOOXML") @SequenceGenerator(allocationSize = 1, name = ...
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
2answers
286 views

Using ora:view with XMLTable to Query a Relational Table as XML

I have an Oracle relational table called DOCTYPES with columns ID, DOCTYPE, SUBTYPE. When I run the following statement in Oracle SQL Developer SELECT * FROM XMLTable('for $i in ora:view("LAZ", ...
0
votes
1answer
198 views

Using CONTENT keyword while creating a table with an XML column from XML Schema Collection

While creating a table that has an XML type column, I am referring to a complex XML Schema Collection. When I specify the XML Schema, I have the option of mentioning either CONTENT or DOCUMENT ...
0
votes
0answers
112 views

Sql Server XML type schema design - index performance

I'm playing a bit with a framework for querying XML columns in Sql Server. I'm trying to find information on what is the best way to store random documents. My current format uses named tags. such ...
0
votes
1answer
298 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
831 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 ...