fjtello / SQL-C-sharp

Common programming and coding tips and howtos
0 stars 0 forks source link

SQL syntax [#rebuild #reorganize #index #statistics #fullscan] #9

Open fjtello opened 7 years ago

fjtello commented 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;