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: Disabling ARCHIVELOG problem

Re: Disabling ARCHIVELOG problem

From: Wario <sergeant.rock_at_gmail.com>
Date: 31 Aug 2004 14:11:41 -0700
Message-ID: <c75b43bb.0408311311.1a3e8bd2@posting.google.com>


Why are you disabling archive? Are you trying to reduce the amount of redo to save space or time?

Disabling archive is a bad idea. I think you should look for another way to reduce redo.

  1. Use hints for inserting to avoid redo.

    insert /*+ append */ into mytable ........;

2. use SQLLDR with unrecoverable option to insert bulk data.

3. Disable indexes before process and rebuild when done.

4. Update only columns that change not the whole row.

5. Tune the SQL in batch jobs. Received on Tue Aug 31 2004 - 16:11:41 CDT

Original text of this message

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