Good PARTITIONING PRACTICE.. How do i automate partitioning? [message #18451] |
Thu, 31 January 2002 07:08  |
CATHYBEE
Messages: 20 Registered: January 2002
|
Junior Member |
|
|
What is a good partitioning practice?
Right now, my table looks like
1 CREATE TABLE tbl_ClaimsHistory (
2 DepositTime TIMESTAMP (4) NOT NULL)
3 PARTITION BY RANGE(DepositTime)
4 (PARTITION D0200201
5 VALUES LESS THAN(TO_date('01-FEB-2002','DD-MON-YYYY')),
6 PARTITION D0200202
7 VALUES LESS THAN(TO_date('01-MAR-2002','DD-MON-YYYY')),
8* PARTITION D0200203 VALUES LESS THAN(MAXVALUE))
so how often do i have to partition it..
Is there a way in ORACLE 9i to automate partition.
I want to automate the partition, which automates at the end of each month?
Any help will be very appreciated..
|
|
|
|