SQL SERVER – ReIndexing Database Tables and Update Statistics on Tables

USE MyDatabase
GO
EXEC sp_MSforeachtable @command1="print '?' DBCC DBREINDEX ('?', ' ', 80)"
GO
EXEC sp_updatestats
GO

No comments:

Post a Comment