Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: Reducing REDO log churing
Gregory,
You shouldn't need to put the table in a separate tablespace. NOLOGGING in Oracle 8 can be enabled at the table level. alter table <table_name> nologging;
If you are dropping and recreating the table from another table then you can use:
create table <new_table>
nologging
as select * from <old_table>
If you are using Oracle 7.x.x you can use (this also works in ORACLE8 for backwards compatability)
create table <new_table>
unrecoverable
as select * from <old_table>
This will greatly increase the performance of your data copy and reduce the hits on your redo logs.
Graeme. Received on Sun Feb 13 2000 - 22:11:19 CST
![]() |
![]() |