One of the biggest benefits of table partitioning is that, "it is possible to rebuild an index on specific partition".
Imagine there is a partitioned table (has 12 partitions for now), which has clustered and a few non-clustered indices, all partition aligned.
I want to add a new nonclustered index to table, which does not have to be built for old partitions. I need this index for only the last 3 partitions.
So, how can I create a new nonclustered index for last 3 partitions of 12 partitioned table?