Skip to Main Content

Oracle Database Discussions

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Redo generation with direct inserts

NilaAug 24 2016 — edited Aug 25 2016

Guys,

I'm bit confused with this direct insert statments and redo.

Ive created below table, and used direct insert statment. But Autotrace shows redo size?

Any idea why? I was expecting redo will bypass.

Only thing is our DB is on force logging mode but the table space is in NO force logging.

create table WC_TEST_NK (name varchar2(100)) nologging;

insert /*+ append */ into WC_TEST_NK (name) select row_WID from WC_BIGTABLE where rownum < 100

          10484  redo size

            8236  redo size for direct writes

               2  redo subscn max counts

               2  redo synch time (usec)

           30007  redo synch time overhead (usec)

               1  redo synch time overhead count ( 32ms)

               1  redo synch writes

               1  redo write info find

Thanks!

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Sep 22 2016
Added on Aug 24 2016
13 comments
1,433 views