Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: RAW insert problem
Harvinder, if you have the '0X' in your field and cannot filter it to use
the functions as Tim demonstrated you can use replace or substr to eliminate
the '0x' from your data:
1* select rawtohex(hextoraw(replace('0XABCD','0X',''))) from dual UT1 > /
RAWT
-----Original Message-----
From: oracle-l-bounce_at_freelists.org
[mailto:oracle-l-bounce_at_freelists.org]On Behalf Of Tim Gorman
Sent: Monday, June 14, 2004 10:28 PM
To: oracle-l_at_freelists.org
Subject: Re: RAW insert problem
SQL> select rawtohex(hextoraw('0Xabcd')) from dual; select rawtohex(hextoraw('0Xabcd')) from dual
*
SQL> select rawtohex(hextoraw('abcd')) from dual;
RAWT
> Hi,
>
> Our application is trying to insert value 0Xabcd in the column of
> datatype raw but oracle is giving error:
> Comma not found
> How can we convert convert this column into RAW and insert into column
>
> Thanks
> --Harvinder
>
>
> ----------------------------------------------------------------
> Please see the official ORACLE-L FAQ: http://www.orafaq.com
> ----------------------------------------------------------------
> To unsubscribe send email to: oracle-l-request_at_freelists.org
> put 'unsubscribe' in the subject line.
> --
> Archives are at http://www.freelists.org/archives/oracle-l/
> FAQ is at http://www.freelists.org/help/fom-serve/cache/1.html
> -----------------------------------------------------------------
-- Archives are at http://www.freelists.org/archives/oracle-l/ FAQ is at http://www.freelists.org/help/fom-serve/cache/1.html ----------------------------------------------------------------- ---------------------------------------------------------------- Please see the official ORACLE-L FAQ: http://www.orafaq.com ---------------------------------------------------------------- To unsubscribe send email to: oracle-l-request_at_freelists.org put 'unsubscribe' in the subject line. -- Archives are at http://www.freelists.org/archives/oracle-l/ FAQ is at http://www.freelists.org/help/fom-serve/cache/1.html -----------------------------------------------------------------Received on Tue Jun 15 2004 - 08:18:00 CDT
![]() |
![]() |