I have few tables that will be getting populated with transaction data
continuously.This table
grows to large size.For us once the transaction is completed we don't need
the data to be in the database,
but we cannot delete them either.We need to archive those records and clear
those archived records
from the table.Like out of the 3million records I want to keep this months
records and archive the
remaining.There are few set of tables which needs to be archived and they
are all related.

I can think of creating a new table and populating the table with records
that needs to be archived and
after this those records can be deleted.Ex

create table T1 as select * from <tablename> where id < xxxx;

What is the best way of doing this.

Thanks
Ravindra

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Ravindra Basavaraja
  INET: [EMAIL PROTECTED]

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: [EMAIL PROTECTED] (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).

Reply via email to