Questions tagged [clob]

Character Large Object - SQL data type used to store character strings longer than the regular CHAR and VARCHAR types allow.

Character Large Object - SQL data type intended to store character strings longer than the regular CHAR and VARCHAR types handle.

See also NCLOB data type which is recommended for storing National Character strings/Unicode.

Oracle: CLOBs are stored externally and are referenced from table, so using them involves performance hit in comparison to using VARCHAR2. In exchange they have very high size limits, depending on exact version of RDBMS but not smaller than 2 GB.

Main difference between CLOB and BLOB data type is that CLOB has defined character encoding and to limited extent can be compared to strings, indexed and searched.

1067 questions
-3
votes
1 answer

utf-8 oracle clob, write/read pdf in java?

my mission is to change 2 php pages with a java webapp that writes an upload pdf file to a clob and reads it when user ask for a download. I threated the pdf as a byte array and have been able to read/write it correctly the big problem is the…
-6
votes
1 answer

How to compare clob columns of single table in oracle?

How to compare clob columns of single table in oracle?
Subbbu
  • 9
  • 1
  • 3
1 2 3
71
72