Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: LONG RAW into BLOB
Use the TO_LOB function. For example:
INSERT INTO my_blob_table SELECT id_num, TO_LOB(my_raw_field) FROM my_raw_table;
TO_LOB must be used in the select list of a subquery in an INSERT statement.
-- Karl Gruel kgruel_at_paradigm4.comReceived on Tue Feb 27 2001 - 08:44:43 CST
> -----Original Message-----
> From: abimanyu_at_bigfoot.com [mailto:abimanyu_at_bigfoot.com]
> Sent: Monday, February 26, 2001 11:25 PM
> To: Multiple recipients of list ORACLE-L
> Subject: LONG RAW into BLOB
>
>
> hi all ..
> i wanna ask something ...
> how can i insert my LONG RAW field value .. into BLOB field ?
>
> how to do that ?
>
> regards
> abimanyu
>
> "I'll be back!"
> Arnold Schwarzenegger
>
> --
> Please see the official ORACLE-L FAQ: http://www.orafaq.com
> --
> Author:
> INET: abimanyu_at_bigfoot.com
>
> Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051
> San Diego, California -- Public Internet access / Mailing Lists
> --------------------------------------------------------------------
> To REMOVE yourself from this mailing list, send an E-Mail message
> to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in
> the message BODY, include a line containing: UNSUB ORACLE-L
> (or the name of mailing list you want to be removed from). You may
> also send the HELP command for other information (like subscribing).
>
-- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Karl \"Trey\" Gruel INET: kgruel_at_Paradigm4.com Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Lists -------------------------------------------------------------------- To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).