This article provides different SQL Server index rebuild scripts.
Script 1: Rebuild all indexes in a SQL Server database with specifying the Fill Factor:
--Rebuild all indexes in a database --Note: You need to specify the fill factor USE [DatabaseName] GO EXEC sp_MSforeachtable @command1="print '?' DBCC DBREINDEX ('?', ' ', 90)"; GO
Script 2: Rebuild specific index online
ALTER INDEX [IndexName] ON [TableName] REBUILD WITH (ONLINE=ON); GO
Script 3: Rebuild specific index offline (with default fill factor)
ALTER INDEX [IndexName] ON [TableName] REBUILD WITH (ONLINE=OFF); GO
Strengthen your SQL Server Administration Skills – Enroll to our Online Course!
Check our online course on Udemy titled “Essential SQL Server Administration Tips”
(special limited-time discount included in link).Via the course, you will learn essential hands-on SQL Server Administration tips on SQL Server maintenance, security, performance, integration, error handling and more. Many live demonstrations and downloadable resources included!
Script 4: Rebuild all indexes in a table online (with default fill factor)
ALTER INDEX ALL ON [TableName] REBUILD WITH (ONLINE=ON); GO
Script 5: Rebuild all indexes in a table offline (with default fill factor)
ALTER INDEX ALL ON [TableName] REBUILD WITH (ONLINE=OFF); GO
Featured Online Courses:
- AI Demystified: A 1-Hour Beginner’s Guide (Suitable for Non-Technical People)
- AI Essentials: A Beginner’s Guide to Artificial Intelligence
- Human-AI Synergy: Teams and Collaborative Intelligence
- SQL Server 2022: What’s New – New and Enhanced Features
- Working with Python on Windows and SQL Server Databases
- Introduction to Azure Database for MySQL
- Boost SQL Server Database Performance with In-Memory OLTP
- Introduction to Azure SQL Database for Beginners
- Essential SQL Server Administration Tips
- SQL Server Fundamentals – SQL Database for Beginners
- Essential SQL Server Development Tips for SQL Developers
- Introduction to Computer Programming for Beginners
- .NET Programming for Beginners – Windows Forms with C#
- SQL Server 2019: What’s New – New and Enhanced Features
- Entity Framework: Getting Started – Complete Beginners Guide
- Data Management for Beginners – Main Principles
- A Guide on How to Start and Monetize a Successful Blog
Read Also:
- Mastering SQL Server Performance Tuning: Essential Tips and Techniques
- The Importance of Database Indexes
- Index Fragmentation in SQL Server (Reorganizing/Rebuilding Indexes)
- Where are temporary tables stored in SQL Server?
- SQL Server 2016: TempDB Enhancements
- tempdb growth
- …more
Subscribe to the GnoelixiAI Hub newsletter on LinkedIn and stay up to date with the latest AI news and trends.
Subscribe to the SQLNetHub YouTube channel (SQLNetHub TV).
Subscribe to my personal YouTube channel.
Rate this article:
Reference: SQLNetHub.com (https://www.sqlnethub.com)
© SQLNetHub
Artemakis Artemiou, a distinguished Senior Database and Software Architect, brings over 20 years of expertise to the IT industry. A Certified Database, Cloud, and AI professional, he earned the Microsoft Data Platform MVP title for nine consecutive years (2009-2018). As the founder of SQLNetHub and GnoelixiAI Hub, Artemakis is dedicated to sharing his knowledge and democratizing education on various fields such as: Databases, Cloud, AI, and Software Development. His commitment to simplicity and knowledge sharing defines his impactful presence in the tech community.