Perguntas com a marcação «index-tuning»

13
Adicionando índice a grandes tabelas mysql

Eu tenho uma mesa | base_schedule_line_items | CREATE TABLE base_schedule_line_items( idint (10) não assinado NOT NULL AUTO_INCREMENT, installmentint (10) não assinado NOT NULL, on_datedata NOT NULL, actual_datedata DEFAULT NULL, payment_typeint (11) NOT NULL,

11
Um índice ou dois?

Eu tenho o seguinte índice criado em uma tabela no meu banco de dados: CREATE INDEX [idx_index1] on [table1] (col1, col2, col3) O servidor está sugerindo o seguinte índice 'ausente': CREATE INDEX [idx_index2] on [table1] (col1, col2) INCLUDE (col3, col4, col5, col6....) Parece-me lógico alterar...

8
Pergunta de ajuste do índice

Estou ajustando alguns índices e vendo alguns problemas que gostaria de seguir seu conselho Em uma tabela existem 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...