Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Mailing Lists -> Oracle-L -> Re: Speed up massive delete
Jack,
First of all you could explore these options :
Could you truncate the table ?
Could you copy out the rows you want to keep (using CTAS NOLOGGING) /drop the
table/rename 'kept-rows' table to original name?
Are the rows in a partition that you could drop?
If none of these are possible these measures will improve performance :
Disable log archiving.
Make sure your redo logs are on the fastest disk available. Consider allocating
larger logs temporarily if you checkpoint frequently.
Remove any unnecessary indexes. Oracle won't have to keep them updated PLUS the
optimiser will be likely to scan the table (which is probably what you want) if
there's no suitable index.
Remove any unnecessary foreign keys and triggers.
You may be advised to use NOLOGGING. Ignore this advice. NOLOGGING does not affect deletes and will make no difference.
Regards,
Mike Hately,
Oracle DBA
|--------+----------------------->
| | nlzanen1_at_EY.N|
| | L |
| | |
| | 06/28/01 |
| | 10:45 AM |
| | Please |
| | respond to |
| | ORACLE-L |
| | |
|--------+-----------------------> >-------------------------------------------------------------------| | | | To: Multiple recipients of list ORACLE-L | | <ORACLE-L_at_fatcity.com> | | cc: (bcc: Mike Hately/ETECH) | | Subject: Speed up massive delete | >-------------------------------------------------------------------|
Hi All,
I have to do some pretty big deletes on a test environment and they are
estimated to take for ever.
Are there any options to speed it up?
Jack
Indien bovenstaand e-mailbericht niet aan u is gericht, verzoeken wij u vriendelijk doch dringend het e-mailbericht te retourneren aan de verzender en het origineel en eventuele kopieën te verwijderen en te vernietigen.
Ernst & Young hanteert bij de uitoefening van haar werkzaamheden algemene voorwaarden, waarin een beperking van aansprakelijkheid is opgenomen. De algemene voorwaarden worden u op verzoek kosteloos toegezonden.
If you are not the intended recipient of this communication please return the communication to the sender and delete and destroy all copies.
In carrying out its engagements, Ernst & Young applies general terms and conditions, which contain a clause that limits its liability. A copy of these terms and conditions is available on request free of charge.
-- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: INET: nlzanen1_at_EY.NL 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: INET: MHately_at_etech-uk.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).Received on Thu Jun 28 2001 - 05:51:21 CDT