Tagged Questions

2
votes
3answers
75 views

How to import a .dmp file (Oracle) into MySql DB?

The .dmp is a dump of a table built in Oracle 10g (Express Edition) and one of the fields is of CLOB type. I was trying to simply export the table to xml/csv files then import it …
1
vote
2answers
138 views

Hibernate on Oracle: mapping String property to CLOB column

WARNING: see my own answer below. The problem is caused by old Oracle drivers that were present on the classpath in addition to 10.2.0.4. Problem solved. Leaving the rest of this q …
0
votes
5answers
98 views

Is use of DBMS_LOB necessary when returning CLOB from PL/SQL procedure?

I would like to create some PL/SQL procedures that return XML as CLOB parameters. I want to just do this (which works fine with simple tests): create or replace procedure p_xml_te …
0
votes
3answers
359 views

Exporting a CLOB to a text file using sqlDeveloper

I am using sqlDeveloper and trying to export a table to a CSV file. Some of the fields are CLOB fields, and in many cases the entries are truncated when the export happens. I'm l …
2
votes
3answers
100 views

unable to update CLOB using DBCP connection

Am trying to do update a clob column using a connection object that is retrieved using Apache DBCP connection pooling. Earlier, I've implemented connection pooling using this and …
0
votes
2answers
203 views

Problem importing LOB into Oracle using SQL Loader

I'm trying to export from SQL Server to Oracle a table that consists of an ID and a really long XML string stored as nvarchar(max). SQL Table -- CREATE TABLE MyStuff (MyID int, My …
1
vote
1answer
193 views

Strings > 4000 to CLOB conversion using hibernate

Hi, i have a java class persisting a string (>4k) into a database table into a CLOB field. If the string is less than 4k then it works. I have the field annotated using @Lob and …
0
votes
0answers
92 views

How to enqueue long text into Oracle JMS?

I have problem with sending long messages to Oracle JMS. My queue was created with: dbms_aqadm.CREATE_queue_table( queue_table => 'QUEUE_TABLE_TEST', queue_payload_type =&g …
1
vote
1answer
386 views

Lazily loading a clob in hibernate

There's a lot one can find about this googling a bit but I haven't quite found a workable solution to this problem. Basically what I have is a big CLOB on a particular class that …
1
vote
5answers
254 views

ResultSet.getBlob() Exception

The Code: ResultSet rs = null; try { conn = getConnection(); stmt = conn.prepareStatement(sql); rs = stmt.executeQuery(); while (rs.next()) { Blob blob …
4
votes
2answers
475 views

Help me understand the difference between CLOBs and BLOBs in Oracle

This is mainly just a "check my understanding" type of question. Here's my understanding of CLOBs and BLOBs as they work in Oracle: CLOBs are for text like XML, JSON, etc. You …
1
vote
3answers
178 views

What’s wrong with adding LOBs to an Oracle table?

I'm trying to ALTER a table by adding a new CLOB column (on Oracle 10), but it's failing. Giving me an ORA-01735 error. Problem is I can't find out what in particular is wrong with …
0
votes
1answer
357 views

How do I copy a CLOB from Oracle into SQL Server

The CLOB is XML data that is > 8k (sometimes > 32k). Any suggestions?
4
votes
3answers
1k views

Overcomplicated oracle jdbc BLOB handling

When I search the web for inserting BLOBs into Oracle database with jdbc thin driver, most of the webpages suggest a 3-step approach: insert empty_blob() value. select the row wi …
0
votes
5answers
1k views

Slow deletes from table with CLOB fields in Oracle 10g

I am encountering an issue where Oracle is very slow when I attempt to delete rows from a table which contains two CLOB fields. The table has millions of rows, no constraints, an …

1 2 next
15 30 50 per page