Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Inserting CLOB into LONG column
Using Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 -
64bit
We must use the LONG database because of an issue with the reporting tool we are using.
jimmyb> desc p_email_corr
Name Type Nullable Default Comments
------------- ------ -------- ------- --------
EMAIL_CORR_ID NUMBER Y
BODY LONG Y
jimmyb> desc email_corr
Name Type Nullable Default Comments
----------------- ------------------ -------- ------- --------EMAIL_CORR_ID
2 select email_corr_id, body
3 from email_corr
4 where email_corr_id = 1671568;
select email_corr_id, body
*
ORA-22835: Buffer too small for CLOB to CHAR or BLOB to RAW conversion (actual: 4214, maximum: 4000)
Isn't the maximum size for LONG 2GB ?
Does anyone know of a work around?
Received on Wed Oct 24 2007 - 12:47:15 CDT
![]() |
![]() |