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
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
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
429 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
534 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
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> ...
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
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 ...
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
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 ...