Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Partitioning strategy Help

Status
Not open for further replies.

diepa

Programmer
Dec 28, 1998
16
US
I will have several tables with 6,000,000 rows in my database. As an example, this is one of the tables:
TABLE_BIG
FIELD1_PK NUMBER(10)
FIELD2 NUMBER(10)
FIELD3 VARCHAR2(256)
CERATEDATE DATE

Our queries are going to be over the field FIELD1_PK on the where clause and that number is generated using a sequence. That table will start with 5M rows, and will increase with 3M rows/month.
My question is the type of partition that I should use considering that if I have 2 partitions, all of The new values will go to the right side of the partition.
Should I use hash partition over that field? not partition at all?

Thanks,
Diego
 
If it's a primary key I'm sure it has an index. That's all you need. Partitions are overrated, for most cases indexes are all you need.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top