Skip to Main Content

SQL & PL/SQL

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Difference between BLOB and CLOB

Satyam ReddyOct 22 2010 — edited Oct 22 2010
Hi,

THe basic difference between BLOB and CLOB would be BLOB stands for Binary Large Objects and CLOB stands for Character Large Objects. Is there any other specific difference between BLOB and CLOB.

Can i store XML data or file in BLOB or is it recommended to store in CLOB or XMLTYPE.


I have a xml file stored in a column of type BLOB . Can i convert that BLOB content to CLOB. if so how.

table structure goes something like this
CREATE TABLE clarity_log
             (
                          request_code NUMBER,
                          response_file BLOB ,
                          date_Created DATE DEFAULT SYSDATE
             )
In the above table we have xml data in response_file column

Please advise

Edited by: vine on Oct 21, 2010 10:50 PM
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Nov 19 2010
Added on Oct 22 2010
3 comments
5,701 views