Hi.

I want to update a table based on data in another
table. Something like:

update table1 a set f1 = 
(select f2 
from table2
where table2.f3 = table1.f3
and table2.f4 = table1.f4);

this seems to work, but generates a lot of redo logs.
So I tried to add NOLOGGING. Alas, seems like
NOLOGGING
and alias don't tolerate each other. I haven't been
able to run an Update with both alias and NOLOGGING.
Is that something that Oracle restricts or did I not
try hard enough?

Any suggestions?

TIA

Gene

__________________________________________________
Do you Yahoo!?
New DSL Internet Access from SBC & Yahoo!
http://sbc.yahoo.com
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Gurelei
  INET: [EMAIL PROTECTED]

Fat City Network Services    -- 858-538-5051 http://www.fatcity.com
San Diego, California        -- Mailing list and web hosting services
---------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (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).

Reply via email to