Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: find/replace on long field

Re: find/replace on long field

From: sybrandb <sybrandb_at_gmail.com>
Date: 26 Oct 2006 13:11:16 -0700
Message-ID: <1161893476.439344.25300@m73g2000cwd.googlegroups.com>

Hugh wrote:
> I have a table where I am searching for text in a long field to be
> replaced in Oracle 8.
>
>
>
> I have created something like
>
> update table_tbl
> set FIELD =
> replace(FIELD,'text_to_be_Replaced','new_text_to_be_inserted')
> where FIELD like '%'||'text_to_be_Replaced'||'%'
>
> but that does not work since you can not run an oracle function on a
> Long field. Since this database works with 3rd party software,
> changing the field to a CLOB is not a viable option.
>
>
> any recommendations?

In order of precedence
- get rid of the software. Oracle 8.0 was desupported in the previous milennium.
- put the updated records in a temporary table. Use the *sqlplus*!!! COPY command to replace the affected records. You will need to set up a database link to the database you are connected too.
the COPY statement is documented in the sqlplus reference manual.

-- 
Sybrand Bakker
Senior Oracle DBA
Received on Thu Oct 26 2006 - 15:11:16 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US