Preguntas etiquetadas con index-tuning

13
Agregar índice a tablas mysql grandes

Tengo una mesa El | base_schedule_line_items | CREATE TABLE base_schedule_line_items( idint (10) unsigned NOT NULL AUTO_INCREMENT, installmentint (10) unsigned NOT NULL, on_datedate NOT NULL, actual_datedate DEFAULT NULL, payment_typeint (11) NOT NULL,

11
¿Un índice o dos?

Tengo el siguiente índice creado en una tabla en mi base de datos: CREATE INDEX [idx_index1] on [table1] (col1, col2, col3) El servidor sugiere el siguiente índice 'faltante': CREATE INDEX [idx_index2] on [table1] (col1, col2) INCLUDE (col3, col4, col5, col6....) Me parece lógico enmendar la...

8
Pregunta de ajuste del índice

Estoy ajustando algunos índices y viendo algunos problemas me gustaría seguir su consejo En 1 tabla hay 3 índices dbo.Address.IX_Address_ProfileId [1 KEY] ProfileId {int 4} Reads: 0 Writes:10,519 dbo.Address.IX_Address [2 KEYS] ProfileId {int 4}, InstanceId {int 4} Reads: 0...