Index on Partitioned Table
We frequently use sql to fetch data from event_t and its ancillary tables for reporting purpose. Over the time our event_t table have grown up to 60 Lakhs records and we refer created_t columns as our criteria to filter records to get our data. These sqls have started to take toll on performance now because of its growing size. I am interested in making a index on event_t table for created_t column.
My questions are
Is there any recommended approach/steps for creating indexes on BRM tables? Please share reference.
How much sample percent i specify while gathering statistics (OR will it automatically gather statistic for the table when index creation sql is executed in SQLPLUS)?