Table with a retention period [message #203871] |
Thu, 16 November 2006 14:13 |
vatsanc
Messages: 1 Registered: November 2006 Location: New York
|
Junior Member |
|
|
Is there a facility in Oracle 10g to retain data in a table for a period (say 6 months) and then drop the data after that ?
Basically, the use case is like this: we want to store historical data going back 6 months. If possible, we want the database server to continuously drop off the data outside the 6 month window. Is this possible with Oracle 10g ?
Thanks.
|
|
|
|
Re: Table with a retention period [message #205545 is a reply to message #203871] |
Sat, 25 November 2006 17:18 |
oranje66
Messages: 4 Registered: November 2006 Location: Banking Industry, Germany
|
Junior Member |
|
|
Hi, consider Oracle's Partitioning Option : Range Partitioning by date. And, drop the partition of data you do not wanna hold anymore.
Only limitition for always available : no global indexes permitted.
I've designed 3 DW with this featuere: we almost have no impact on the running system when dropping a partition.
Good luck
|
|
|