Open fjtello opened 7 years ago
-- reconstuir índices ALTER INDEX ALL ON myTable REBUILD;
-- reorganizar índices ALTER INDEX ALL ON table1 REORGANIZE;
-- borra la caché del plan de ejecución DBCC FREEPROCCACHE;
-- Actualizar estadísticas, muchas actualizaciones de golpe y pocas durante el día: FULLSCAN UPDATE STATISTICS myTable WITH FULLSCAN;
-- Actualizar estadísticas, las actualizaciones son igual de frecuentes durante todo el día UPDATE STATISTICS myTable;
-- reconstuir índices ALTER INDEX ALL ON myTable REBUILD;
-- reorganizar índices ALTER INDEX ALL ON table1 REORGANIZE;
-- borra la caché del plan de ejecución DBCC FREEPROCCACHE;
-- Actualizar estadísticas, muchas actualizaciones de golpe y pocas durante el día: FULLSCAN UPDATE STATISTICS myTable WITH FULLSCAN;
-- Actualizar estadísticas, las actualizaciones son igual de frecuentes durante todo el día UPDATE STATISTICS myTable;