Tagged Questions

Character Large Object - data type used in Oracle and IBM DB2 RDBMSes to store strings of character longer than 4000 bytes.

learn more… | top users | synonyms

12
votes
5answers
11k 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 with for update. ...
9
votes
3answers
686 views

Why has Hibernate switched to use LONG over CLOB?

It looks like that Hibernate started using LONG data type in version 3.5.5 (we upgraded from 3.2.7) instead of CLOB for the property of type="text". This is causing problems as LONG data type in ...
9
votes
2answers
6k 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 should not assume ...
6
votes
3answers
235 views

Oracle 10g small Blob or Clob not being stored inline?

According to the documents I've read, the default storage for a CLOB or BLOB is inline, which means that if it is less than approx 4k in size then it will be held in the table. But when I test this ...
5
votes
3answers
2k views

Issues calling stored procedure from C# with large CLOB

I'm not the first to have these issues, and will list some reference posts below, but am still looking for a proper solution. I need to call a stored procedure (Oracle 10g database) from a C# web ...
5
votes
7answers
7k views

SQL - How do you compare a CLOB

in a DB2 trigger, I need to compare the value of a CLOB field. Something like: IF OLD_ROW.CLOB_FIELD != UPDATED_ROW.CLOB_FIELD but "!=" does not work for comparing CLOBs. What is the way to ...
4
votes
3answers
175 views

Sybase TEXT vs Oracle CLOB performance

We're in the process of converting our database from Sybase to Oracle and we've hit a performance problem. In Sybase, we had a TEXT field and replaced it with a CLOB in Oracle. This is how we ...
4
votes
3answers
444 views

Why does SQLPLUS show empty and null CLOBs as null?

It seems SQLPLUS shows nulls and empty strings for CLOBs in a way that I wasn't expecting. Try the following in SQLPLUS (I'm using Oracle 10g Server). Create a table with a CLOB, and insert null, ...
4
votes
6answers
2k views

How to store unlimited characters in Oracle 11g?

We have a table in Oracle 11g with a varchar2 column. We use a proprietary programming language where this column is defined as string. Maximum we can store 2000 characters (4000 bytes) in this ...
4
votes
3answers
4k views

How do I test if a column equals empty_clob() in Oracle?

The naïve FOO = empty_clob() complains about incompatible types. I tried Googling, but (once again) had little success searching for help with Oracle. Thanks.
3
votes
1answer
62 views

solr clobtransfomer

I am stuck with ClobTransformer in solr from the past 3 days. I want to convert an oracle clob field to text field in solr. I am using multiple cores and I started my config and schema files from ...
3
votes
2answers
320 views

How to increase the speed for writing clob data to a file

We are extracting data from an oracle database to a file using C# oracleDataReader, we are using multiple threads and I found that reading data other than clob is very fast say say 4 min for 1 GB. But ...
3
votes
2answers
396 views

retreving long text (CLOB) using CFQuery

I am using CFQuery to retrieve the CLOB field from Oracle DB. If the CLOB filed contains the Data less than ~ 8000, then I can see retrieved the value ( the o/p), however If the value in CLOB field ...
3
votes
2answers
596 views

DB2: How to insert a clob with line breaks

I have a simple thing which I want to do, yet is so frustrating in attempting and completing. I just want to take some value such as this: 'a value with line breaks' And insert it into a CLOB field ...
3
votes
2answers
366 views

Oracle: LONG or CLOB?

From these two threads, Why is LONG an issue with Oracle? Is it possible to read a CLOB from a remote Oracle database? LONG is archaic and deprecated. Oracle says, Do not create tables with ...
3
votes
2answers
2k views

Is it possbile to update data inside a CLOB using SQL?

I have a table having one clob column which has XML data in it. say i want to replace XYZ with ABC in clob column. Is it possible using sqlplus?
3
votes
1answer
388 views

Loading a file into a clob

Given a url pointing to a file hosted on the webserver, is it possible to read the contents of that url into a clob? And if so, how?
3
votes
2answers
5k views

How to create a Clob in JPA in an implementation agnostic way

I am using Ejb3 and JPA (based on Hibernate and Oracle 10g at the moment) I have an entity that contains a clob @Entity @Table(name = "My_TAB") public class ExampleEntity implements ...
3
votes
1answer
1k views

How to read a CLOB column in Oracle using OleDb?

I have created a table on an Oracle 10g database with this structure : create table myTable ( id number(32,0) primary key, myData clob ) I can insert rows in the table without any ...
3
votes
2answers
1k views

PL/SQL Array to CLOB

i m using Oracle 9i. I m fetching data from a cursor into an array : FETCH contract_cur BULK COLLECT INTO l_contract ; But now i want to "convert" this *l_contract* into a CLOB variable ...
3
votes
3answers
6k views

Most efficient solution for reading CLOB to String, and String to CLOB in Java?

I have a big CLOB (more than 32kB) that I want to read to a String, using StringBuilder. How do I do this in the most efficient way? I can not use the "int length" constructor for StringBuilder since ...
3
votes
4answers
9k views

Hibernate > CLOB > Oracle :(

I am trying to write to an Oracle clob field a value over 4000 characters. This seams to be a common issue but non of the solutions seem to work. So I pray for help from here. Down and dirty info: ...
3
votes
3answers
4k 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 to the MySql, but ...
3
votes
2answers
7k views

How do I display the full content of LOB column in Oracle SQL*Plus?

When I try to display the contents of a LOB (large object) column in SQL*Plus, it is truncated. How do I display the whole thing?
2
votes
1answer
57 views

Poor performance getting clob field from Oracle in .Net

I am trying to read a clob column from oracle in .Net and observing very poor performance and lots of network traffic. I have tried ODP+OCI, devArt+OCI ways to access the data with the same results - ...
2
votes
1answer
54 views

Why doesn't OCI-Lob->close work for IN OUT parameters?

From the documentation I've read regarding LOBs and the OCI8 PHP extension, it seems like I should call $lob->close() in the code below, since I have used $lob->writeTemporary(). ...
2
votes
2answers
61 views

Insert big XSLT into Clob column

I have a big XSLT which I have to insert into a Clob column. My problem is that I get an error message when I try to insert the XSLT into the clob column. It says that it exceeds the 4000 character ...
2
votes
4answers
638 views

Oracle 10g: Can CLOB data lengths be less than 4,000?

We have three databases: dev, staging, and production. We do all our coding in the dev environment. We then push all our code and database changes to staging so the client can see how it works in a ...
2
votes
1answer
203 views

How to insert empty_clob() from java to Oracle

I am having an NCLOB column in oracle. When I create a row, I need to insert an empty_clob() using normal java insert query. Does anyone know how this is done? I am looking for something like the one ...
2
votes
1answer
195 views

EMPTY_CLOB() in Microsoft SQl server

Oracle has a CLOB type and the function EMPTY_CLOB(). I'm looking for an alternative for use in SQL server. Thanks in advance.
2
votes
3answers
2k views

“ORA-01036: illegal variable name/number\n” for oracle clob in C#

When I try to create an oracle stored procedure call with clob input and output in C#, I get the following error: ORA-01036: illegal variable name/number\n Here's the code itself: ...
2
votes
2answers
384 views

Hibernate+Oracle+Clob: Content of attributes get switched

Has anyone heard of this error before: I have a Java 5 application, that uses Hibernate 3.3.2 to access an Oracle Database 10g, the JDBC driver is the Oracle light driver version 10.2.0.4.0 (the most ...
2
votes
3answers
2k views

DBunit generates java.lang.ClassCastException: java.lang.String cannot be cast to oracle.sql.CLOB when trying to load a CLOB field

I am using the latest version of DBUnit (2.4.7), on Oracle 11GR2. I'm using Java 6 (1.6.0_15) and the latest version of Oracle's client jar (jdbc6.jar) I've been unable to successfully load any data ...
2
votes
3answers
10k 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 question for ...
2
votes
5answers
954 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_test_1( p_xml out ...
2
votes
3answers
830 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 it was working fine ...
2
votes
2answers
1k views

Strings > 4000 to CLOB conversion using hibernate

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 initially I was getting ...
2
votes
1answer
2k 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 I want to have ...
2
votes
2answers
1k views

How do I copy a CLOB from Oracle into SQL Server

The CLOB is XML data that is > 8k (sometimes > 32k). Any suggestions?
2
votes
5answers
6k views

select * returns CLOB

I have not used oracle before and I was to modify the clob data as it has my home phone number. But when I do select * from table shows CLOB and I cannot see the data. How can I see the data and how ...
2
votes
5answers
3k 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, and the deletes are ...
1
vote
0answers
36 views

php: pdo read clob without bind

$query = "select id, xmldata from xmlcontent where id = '586655' OR id = '671347'" $db = new PDO(...); $stmt = $db->prepare($query); $stmt->execute(); $result = ...
1
vote
0answers
49 views

Querying a table containing CLOB value from oracle database using Criteria

I am trying to access a table containing three columns id(Long),name,value(CLOB) I am using the Criteria in hibernate to get all the rows in the table. The code is as follows : ...
1
vote
0answers
52 views

Grails 1.3.7 GORM integration to Oracle 10g DB reults in “SQL Error: 932, SQLState: 42000” for domain class attribute mapping to Orable CLOB type

I get exactly the problem described in: http://www.bedework.org/trac/bedework/ticket/58 The issue occurrs when a service class invokes save() on a doamin class which has an attribute ("String ...
1
vote
2answers
37 views

What is a temporary CLOB in buffer cache for?

The dbms_lob.createtemporary function takes three parameters, one of which specifies if the temporary LOB is to be "read into buffer cache or not". I'm not entirely clear on what that means. More ...
1
vote
1answer
65 views

Oracle 11g handling newlines differently than 10g

We have a web service (closed source) that accesses an Oracle 11g database. It was recently upgraded from 10g to 11g. It returns records, one of the columns being an NCLOB type. The string sent to ...
1
vote
2answers
171 views

Converting CLOB to a usable String in VB.NET

I'm writing a tool the retrieves data from an Oracle database. The majority of the fields are VARCHAR2, but there's one particular field I want to retrieve that is a CLOB. I'm trying to convert the ...
1
vote
2answers
83 views

How to compare a local CLOB column against a CLOB column in a remote database instance

I want to verify that the data in 2 CLOB columns is the same on 2 different instances. If these were VARCHAR2 columns, I could use a MINUS or a join to determine if rows were in one instance or the ...
1
vote
1answer
93 views

Dumping CLOB fields into files?

Say you have the table: Column_name | data_type Title | Varchar2 Text | CLOB with some rows: SomeUnkownMovie | A long time ago in a galaxy far, far away....(long text ahead) ...
1
vote
2answers
228 views

Update Clob column in Oracle

I have an table with name ABC which has CLOB data. I want to update the column to insert string in specific position in this Clob column. String to be inserted : <nv_pair> <name ...

1 2 3