El siguiente código al ejecutarlo genera automáticamente otro código, que reconstruye todos los índices de nuestra base de datos. Este script generado se debe ejecutar en una nueva pantalla de query en nuestro SQL Server.
MERGE in SQL Server for Insert, Delete and Update with two tables - Practical example using MERGE to synchronize two tables, Insert, Update and Delete in a single…
Más adelante les voy a suministrar otro script, que dependiendo del nivel de fragmentación hace un Rebuild o Reindex, pero por el momento este es bastante efectivo.
SELECT 'ALTER INDEX [' + i.name + '] on NombreBaseDatos.dbo.' + t.name + ' REBUILD;Print ''Tabla ' + i.name + ' indexada;''' FROM sys.indexes i, sys.tables t WHERE i.object_id > 97 AND isnull(i.name,'x') <> 'x' AND i.name not like 'queue%' AND i.object_id = t.object_id