Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: CLOB field question
I have another CLOB question, what is the best way to do a search-and-replace?
Something like a c/oldvalue/newvvalue/ on the SQL*Plus command line, or $variable =~ s/oldvalue/newvalue/; in Perl.
The only thing I can think of right now would be using INSTR to locate the value I want, SUBSTR to extract the parts of the document either side of it, then APPEND to create a new CLOB with first part, new value, last part... but this seems a bit inelegant.
Thanks,
g
-----Original Message-----
Sent: Wednesday, August 15, 2001 10:21 PM
To: Multiple recipients of list ORACLE-L
Raj,
Perfect!!! This is just what I needed!
Thanks so much.
Bill
-> -----Original Message-----
-> From: root_at_fatcity.com [mailto:root_at_fatcity.com]On Behalf Of
Jamadagni,
-> Rajendra
-> Sent: Wednesday, August 15, 2001 3:35 PM
-> To: Multiple recipients of list ORACLE-L
-> Subject: RE: CLOB field question
->
->
-> Bill,
->
-> How about
->
-> select id
-> from MyTable
-> where DBMS_LOB.INSTR(YourClobColumn,UPPER(value_to_search_for)) > 0
-> and your_db_version = 8i
->
-> HTH
-> Raj
-> ______________________________________________________
-> Rajendra Jamadagni MIS, ESPN Inc.
-> Rajendra dot Jamadagni at ESPN dot com
-> Any opinion expressed here is personal and doesn't reflect that
-> of ESPN Inc.
->
-> QOTD: Any clod can have facts, but having an opinion is an art !
->
->
*********************************************************************1
*********************************************************************1
-- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Bill Tantzen INET: tantz001_at_tc.umn.edu 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: Guy Hammond INET: guy.hammond_at_avt.co.uk 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).Received on Thu Aug 16 2001 - 04:40:30 CDT
![]() |
![]() |