Re: Primary key using a local partitioned index
Quote:
Originally posted by mike9
Hi,
I have a fact table which is range partitioned over the monthes.
For each monthly partition I have about 1'000'000 entries related to 1'000'000 different projects, 500'000 customers and 1 time value (1st day of the month).
You may create an index with compress 1 in order of (time, project, customer) since you have a single time value in each partition. That provide good performance for project-based search and also enable index probing.