on the key column(s), as well as any other indexes you might want, on the partitioned table. (The key index is not strictly necessary, but in most scenarios it is helpful.)
А когда этот индекс может быть полезен?
Хмм... почти всегда, в самом деле. Вы лучше приведите пример ситуации, когда он не полезен.
😊 Давайте попробуем пример привести. create table x (a int, b int) partition by range (a); create table x1 partition of x for values from (1) to (100); create table x2 partition of x for values from (100) to (1000); select from x where a = 10 and b < 10; Для такого запроса нужен индекс по полю а?
1. Он поможет, скорее всего. ;) 2. "The key index is not strictly necessary, but in most scenarios it is helpful". А это не key index.
Эмм.. а что такое key index?
А, стоп, это я неправильно прочитал (сейчас сходил в документацию за контекстом). ;) Да, это "partition key index".
Обсуждают сегодня