Skip to content

Instantly share code, notes, and snippets.

@umair-me
Created August 28, 2015 09:59
Show Gist options
  • Save umair-me/c82c2931d30f1f7053fe to your computer and use it in GitHub Desktop.
Save umair-me/c82c2931d30f1f7053fe to your computer and use it in GitHub Desktop.
Rebuild indexes sql server
-- Re Index
EXEC sp_MSforeachtable "dbcc dbreindex('?', '')"
-- Update Stats
--EXEC sp_updatestats
-- or
EXEC sp_MSforeachtable "UPDATE STATISTICS ? WITH FULLSCAN"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment