Skip to Main Content

SQL & PL/SQL

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!

Archivelog is creating even in Tablespace,table NOLOGGING and CATS

890271Apr 10 2014 — edited Apr 11 2014

Hello All,

Archive log is creating, even if the tablespace,table are in NOLOGGING. And also i am trying to create a table using CATS (create table test_table AS Select...)

Database Version : Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production

alter tablespace DATA11 NOLOGGING;

alter session enable parallel dml;

create table test_table

tablespace DATA11

Parallel (degree 8)

NolOGGING

AS

SELECT /* + append */

CREATED_BY,

CREATED,

....

....

FROM

Table_1;

Table_1 : 50M rows

it is creating huge archive. Any possible way to avoid creating archivelogs? other than "alter database noarchivelog"

This post has been answered by Eight Six on Apr 10 2014
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on May 9 2014
Added on Apr 10 2014
5 comments
1,530 views