Sql reorganize index. Below the last two rows that displays the fail: Source: Reorganize Index Executing query "ALTER INDEX Stack Exchange Network Stack Exchange network consists of 183 Q&A communities including Stack Overflow , the largest, most trusted online community for developers to learn, share their knowledge, and build their careers. Sql reorganize index

 
Below the last two rows that displays the fail: Source: Reorganize Index Executing query "ALTER INDEX Stack Exchange Network Stack Exchange network consists of 183 Q&A communities including Stack Overflow , the largest, most trusted online community for developers to learn, share their knowledge, and build their careersSql reorganize index  ALTER INDEX ALL ON table_name REBUILD OR

Defragmentation in Practice. Q23: What is the difference between index Rebuild and Index Reorganize operations? Index fragmentation can be resolved by rebuilding and reorganizing SQL Server indexes regularly. This manual operation two-step. The Reorganize Index task also includes an option to compact large object data. index_type_desc AS IndexType, indexstats. before i answer your question is the database on simple recovery. These will only generate transaction log when index pages are compacted and reorganized – so for less heavily fragmented indexes. Rebuild drops. When you rebuild indexes Offline, the operation acquires a Schema modification (Sch-M) lock on the table. This means every time we need to scan the. That can be found using the STATS_DATE function. If you look into the sys. The purpose is to reduce the size of database and increase the db performance. For now, I have just turned off the weekly index reorganize task which is not really a good long term solution. Change it to be weekly or even less frequently. For us to perform this test we will first create a simple test table with a few columns and load a fair amount of data into it. First, let’s look at the index in this tutorial with sample code to create a non-clustered SQL Server index on a sales table. Thank you all for your suggestions. There are some good reasons to Rebuild an index, like updating statistics. If a nonclustered index is being rebuilt, a shared lock is held on the table in question during the operation. create table dbo. But if you need to change something about an index (that. DROP INDEX when you are dropping a clustered index offline without specifying the MOVE TO clause and nonclustered indexes do not exist. Inadequate disk space can degrade performance or even cause the index operation to fail. Hi, The widely used thresholds are: Reorganize if fragmentation is between 10-30%. The detailed information can also be useful to determine whether your dedicated SQL pool is being impacted by a large number of small, fragmented tables, which can lead to delays in compilation. Object: SQLServer:Databases; Counter: Percent Log Used ; Instance: (your big database name) Alert if counter rises above: 80; Response: Execute job ('Reorganize Check') Create a job ('Reorganize Check') Rebuilding a clustered columnstore index is an offline operation until SQL Server 2019 when the ability to rebuild online was introduced. All they do is waste space and resources. Proceed to the Steps tab: Clicking on New. Reorganizing an index uses minimal system resources and is an online operation. If the index creation is interrupted, the index isn't re-created. One of the biggest performance hits that you will see on your databases, next to not having indexes, is indexes that are very fragmented. This means that for a lightly fragmented index (e. The execute sql task should contain the index rebuild code along with stats rebuild . or to reorganize use: ALTER INDEX __NAME_OF_INDEX__ ON __NAME_OF_TABLE__. For more information, see the article: Gathering SQL Server indexes statistics and usage information. Compaction is based on the existing fill. Fragmentation causes issues where it takes SQL Server more time to traverse the index tree to find the necessary records. SQL Server 2008 provided a special type of column called a spatial column, which is a table column that contains data of a spatial data type, such as geometry or geography. SQL Fool (Michelle Ufford) has a great script to do this for you - all done and well tested by many users. SET @BackupDirectory = N'C:Backup' -- <== Change this to your backup directory. In the Shrink database dialog, details about database size will be provided, and an option to choose if files will be reorganized. Reorganizing should be used at lower (<30%) fragmentations but only rebuilding (which is heavier to the database) cuts the fragmentation down to 0%. Larger indexes have more intermediate levels and pages. In this article. This tool provides index analysis to manage index defragmentation, including rebuild and reorganize fragmented indexes . H. Hallengren website has an option to reorganize indexes say with 5% Fragmentation, and rebuild for 30% Fragmentation. Under Select a page, select Options. The. It cames in two flavours: online and offline. If not specified otherwise, the procedure uses the fill factor that is already set for each index. The schema is the user name under which the table was created. INDEX index-name Specifies the index to use when reorganizing the table. This script contributed by the Microsoft WSUS team. You can do maintenance in phases, where each maintenance phase covers a subset of. I have pasted the create syntax below for. Burt King. Last weekend the index maintenance took more than 5 hours and the full backup was running at the same time. First it’ll try an index reorganize, which is an online operation. When you rebuild, SQL creates a new fresh index. Reorganizing an index uses minimal system resources. Also, in earlier versions the granularity of control was less refined. 2. Note that the time it takes to complete the operations depends on the size of the database and how fragmented the indexes. The syntax for rebuilding indexes is very simple, we just add the "WITH ONLINE=ON" clause to the ALTER INDEX command. We are aware that we. You cannot say, “If the index is 45% or more fragmented, rebuild it– otherwise do nothing. You don’t get bonused based on the amount of free space on your drives. Categorize fragmentation percentage – Microsoft suggests that we. Reorganizing an index uses minimal system resources and is an online operation. All you might notice is a drop in performance executing queries while the indexes are gone but dropping and creating a (none-clustered) index has no impact whatsoever on the actual data stored in your tables (Creating a clustered index impacts the physical ordering of your data but again, no data. Since you can have multiple columns in a table, here are a few considerations for index key columns. In the Select Maintenance Tasks page, select the following tasks: Reorganize. The column Rebuild_Index_SQL in the vColumnstoreDensity view contains an ALTER INDEX REBUILD statement that can be used to rebuild your indexes. g. This issue can be solved by reorganizing or rebuilding the index. The length of time the rebuild takes is related to the size of the index, not the amount of fragmentation in it. Automatic Tuning on Azure SQL Database does not do maintenance of indexes and statistics. The REORGANIZE modifier for ALTER INDEX is not currently supported by Azure SQL. Check out my Pluralsight course on fragmentation or read. After rebuilding indexes, the application performs badly. For a dedicated SQL pool table with an ordered CCI, ALTER INDEX REBUILD will re-sort the data using tempdb. SQL Server 2012 (11. Rebuilds are generally faster. in case you aren't on SQL enterprise edition, you cannot rebuild WITH ONLINE, hence you can cause additional blocking; ad. As visible in the above image, REBUILD and REORGANIZE are the two available choices to play out the trim operation over the page. ” Select the vault database(s). For a reorganize they are not, but just because a reorganize happened does not necessarily mean that a stats update is necessary. Rebuild if > 30%. SQL Server Tools. This is how records are made unique in the context of a clustered index. I have configured Ola Hallengren's backup and integrity check scripts. ALTER INDEX __NAME_OF_INDEX__ ON __NAME_OF_TABLE__ REBUILD. This is quite a big problem in SQL Server, as your indexes will fragment over time. index_id = 0 -- Heap or table indexstats. sql file. It doesn’t work on the intermediate pages between the root and the leaf. This has been found by using the schema change report in sql server 2005 and fixed by changing the job time of the Reorganize index. Here is a simple query to check fragmentation on your existing indexes:1 Answer. 21 Code: 0xC0024104 Source: Reorganize Index Task Description: The Execute method on. Maintain Index and Column StatisticsAs people have mentioned here, your indexes do not automatically rebuild. The Microsoft Docs page for SQL Server statistics states: Operations such as rebuilding, defragmenting, or reorganizing an index do not change the distribution of data. Improve this answer. ALTER INDEX __NAME_OF_INDEX__ ON __NAME_OF_TABLE__ REBUILD. GO. Large object data is data with the image, text, ntext, varchar (max), nvarchar (max), varbinary (max), or xml data type. TEST_INDX(id) WITH (DATA_COMPRESSION = PAGE);Index Reorganize/ Rebuild Time. Larger indexes have more intermediate levels and pages. 2. It cames in two flavours: online and offline. To achieve availability similar to the reorganize. ALTER INDEX ALL ON table_name REORGANIZE OR. Identifies indexes that are fragmented and defragments them. Your disk drive space is for files, not for ornamentation. Please refer to SQL Server Maintenance Plan Reorganize Index and Update Statistics Tasks to get more information about how to design the maintenance plan. Reorganize Index Task Forum – Learn more on SQLServerCentral. Index rebuilds look. instead, you do it separately in order to do it more or less batch mode. Last weekend the index maintenance took more than 5 hours and the full backup was running at the same time. This prevents modifications to the table. @LeeWalters shrink is done, and yes, due to disk issues, not possible to add drives, that's why, in addition, db is populated with blob data, so the question is more from the index fragmentation side. 3. 5) Perform full database backup. One common and widely used example is SQL Fool's scriptYes. We are planning to run index rebuild/reorganize on a regular basis in our application. It's better to do reorg on Nightly. A probable cause is that the changed (presumably reduced) size of the structures after rebuilding means the optimizer is choosing a different plan. Ignore anything with less than 15-20 pages. Eliminate all deleted rows. As visible in the above image, REBUILD and REORGANIZE are the two available choices to play out the trim operation over the page. There are two options that can be used: Reorganize pages with the original amount of free space - this will use whatever was specified when the table was createdThe WSUSDBMaintenance script is a T-SQL script that can be run by SQL Server administrators to re-index and defragment WSUS databases. This procedure automatically chooses whether to rebuild or reorganize an index according to its fragmentation level, amongst other parameters, and update statistics. Expand Tables. How many pages are in these indexes. Create a maintenance plan. No right from SQL Server 7. USE AdventureWorks; GO ALTER INDEX ALL ON Production. The only way to remove wasted space and restore the correct page ordering is to rebuild or reorganize the indexes on a regular basis. Reorganizing an index uses minimal system resources. Use solutions such as Adaptive Index Defrag to automatically manage index defragmentation and statistics updates for one or more databases. Index Reorganize During Database Full Backup. As a generally accepted good practice reorganize only when ragmentation of index is between 5 to 30 % for anything more than that rebuild the index. The possibility to. For maintenance i create a procedure that: -Shrink Database file (if is enabled) -Shrink Database log file. ALTER INDEX [myIndex] ON [dbo]. 19 4. (About 1 TB of data including myIndex (non. The procedure uses SQL Server ALTER INDEX command, with the REORGANIZE option NULL. However, sometimes you don't want this, say for read only tables or huge tables. The database is using the Simple Recovery model. That's why as a rule of thumb, for fragmentation greater than about 30%. Rebuild if > 30%. Right-click on the Maintenance Plans and go to Maintenance Plan Wizard. The first part of this tip focuses on SQL Server Enterprise Edition to reduce the duration for index maintenance for off-line rebuilds. The index front is stable, no change. The second part of this tip is intended to reduce the duration for update statistics as it pertains to both. The maintenance plan. I don't remember if IDENTITY INSERT ON will help. Online rebuilds are online available on the Enterprise version of SQL Server and your version probably isn't, so just set the operation not to be run "Online" on you Wizard. The syntax for rebuilding indexes is very simple, we just add the "WITH ONLINE=ON" clause to the ALTER INDEX command. Technically, rebuilding consists of copying, renaming, and dropping the old one, internally. Test all three and see which is fastest and which gives the least index fragmentation. Reorganize/Rebuild single index vs all table indexes. ;WITH cte AS ( SELECT object_id, index_id, partition_number, rows, ROW_NUMBER () OVER (PARTITION BY object_id, index_id, partition_number. This can be checked using:. Reorganizing also compacts the index pages. object_id =. To work around this, try the following methods: Method 1 ( recommended ): Limit the number of full-text indexes in the same catalog. _in_percent > 50 AND ss. Our Production instance is running SQL Server 2014. Rebuilds are generally faster. Instead of running rebuild index on whole database we are planning to run it against each table. 11. Are there any advantages or disadvantages to using " UPDATE STATISTICS (Index name) " as opposed to "ALTER INDEX (index. Then, choose New, Job to create a SQL agent job. dm_exec_requests to see how much longer your query has to finish. Similarly, removing. You need to do more research but basically, reorganize as often as needed to keep your fragmentation under 20-30% until you can rebuild it during off-hours. 2 contributors. Index should be rebuild when index fragmentation is great than 40%. We recently switched to Ola Hallengren's maintenance script and automated the deployment of MaintenanceSolution. Product REORGANIZE GO. SQL Server does not maintain when an Index was last rebuild, instead it keeps information when stats were last updated. Maybe I should explain. You also can create a linked server to SQLAZURE and create a sql agent job. Under the very wrong assumption that it wouldn't take long, I've ran ALTER INDEX ALL ON OUR_BIGGEST_TABLE REORGANIZE;. The SQL Server instance should have enough memory available to hold the largest table and perform the largest nonclustered index sort at the same time. For example, LDAPDB2. It can be done with online option in enterprise edition. We have decided to use the following code to compute a fragmentation % for each full-text index. That means that it sometime has to contend with blocking because it's sharing the same pages that. @LeeWalters shrink is done, and yes, due to disk issues, not possible to add drives, that's why, in addition, db is populated with blob data, so the question is more from the index fragmentation side. This can be demonstrated by small test. Once you select that option it will bring up the following screen. Provide a name for your maintenance plan and click Next to choose the tasks we want to include in our maintenance plan. Select “reorganize index” and “rebuild index. Custom SQL Server Index. 100% complete End Progress Error: 2016-06-10 22:30:23. Index reorg only shuffles around leaf-level pages of your index and will try to compact those - but it doesn't completely rebuild the index structure. An index rebuild will always build a new index, even if there’s no fragmentation. Our Production instance is running SQL Server 2014. You can query the sys. The query result is matched against the full-text index. Mar 8, 2021, 2:47 PM. REORGANIZE Tells SQL Server to perform a master merge, which involves merging the smaller indexes created in the process of indexing into one large index. 3番目のパラメータは、Non ClusteredインデックスID(sys. Share. For that plan we will break those tables into seven groups and everyday run script against. Reorganizing an index only deals with the fragmentation that exists, and the more fragmentation there is, the longer a reorganize will take. I want to rebuild or reorganize indexes in a table. Specify the. A clustered table provides a few benefits over a heap such as controlling how the data is sorted and stored, the ability to use the index to find rows quickly and the ability to reorganize the data by rebuilding the clustered index. 2. Instead of our phone book having 1,000 pages that are 100% full, we might have 1100 pages that are only 90% full. It was trying to do so because when Index is REBUILT (with. 1 and another one for versions starting from 6. To fix the fragmentation either rebuild or reorganize the index on the table. Select Maximum degree of parallelism, and then enter some value between 1. It reorgs indexes when fragmentation is below 30% else it rebuild the index. Depending on the fragmentation level, you need to rebuild or reorganize the indexes. Index Reorganize During Database Full Backup. The rebuild command will defragment all those intermediate pages. I want to rebuild or reorganize indexes in a table. SQL. SELECT total_execution_time, percent_complete, name,state_desc,last_pause_time,page_count FROM sys. SQL Server 2017 includes a new system view sys. This could be further tweaked to handle only indexes that need maintenance based on fragmentation levels as well as then doing either an index reorg or an index rebuild. It defragments the leaf level of clustered and nonclustered indexes on tables and views by physically reordering the leaf-level pages to match the logical, left to right, order of the leaf nodes. It’s advisable to remove those often. Check the column, avg_fragmentation_in_percent and if its greater than. Although this option increases the amount of temporary disk space that is used to create an index, the. index optimization job failed from the last 4 days. Index maintenance usually starts 3 hours before the database full backup and ends before the full backup start. Your new index will have the size non less than the size of disabled index. Artemakis Artemiou. Right-click Maintenance Plan and select Execute. Reorganize a fragmented SQL Server index and optimize performance. Select Allow online DML processing, and then select True from the list. However, you can create a staging table insert all rows into that, drop original table and rename staging table to original. To create SQL database maintenance plan, launch SQL Server Management Studio > expand the database instance > Management > right-click on the maintenance plan > New Maintenance Plan. [myTable] REORGANIZE WITH ( LOB_COMPACTION = ON ) I have the above query running for 16 days (still running), the table is a dummy table used for benchmark tests, it has over 10 Billion rows. In SQL Server, you "might" run into issues with "updating primary key". However, recently this approach has. Just go to the table, further expand the indexing folder and right after that you can right-click on it and select the option to rebuild all the indexes. Depending on the type of index and the Database Engine version, a rebuild operation can be done offline or online. dm_db_index_physical_stats fincation have index_id which display heap and index informatiob. Apply SQL Server index key column best practices. We don't want to run index optimization on multiple databases at the same time The code uses stored procedure dbo. INDEX_REORGANIZE Reorganizes the index. It's a great piece of work - it allows you to define fragmentation levels for which you. Click the plus sign to expand the table on which you want to rebuild an index online. Here are a couple of examples. If you don’t spend much time with SQL Server and you. In Object Explorer, click the plus sign to expand the database that contains the table on which you want to specify an index's fill factor. All nonclustered indexes will include the clustered key by default, in order to perform lookups when necessary. DROP INDEX when you are dropping a nonclustered index. Beginning with SQL Server 2016 (13. It also enables faster growth in the future. The first rebuilds a single index on a table and the second rebuilds all the indexes on the table. The entire index has to be read to. Start the Microsoft SQL Server Management Studio client, and then log in to it. Specify the name of the maintenance plan. or to reorganize use: ALTER INDEX __NAME_OF_INDEX__ ON __NAME_OF_TABLE__ REORGANIZE. It is causing other queries to wait, even simple ones like: SELECT * FROM tableName WHERE indexedColumn = @value. I have configured Ola Hallengren's backup and integrity check scripts. Add a comment. Creating a SQL Server Maintenance Plan. You can apply a new fillfactor when you rebuild an index. 2. Regular index maintenance and statistics updates are crucial, that much is certain. less than 30% fragmentation), it’s generally faster to reorganize the index, but for a more heavily fragmented index, it’s generally faster to just. However, each time I check (even immediately after recreating the indexes) the avg_fragmentation_in_percent shows 100%. Rename. It's a great piece of work - it allows you to define fragmentation levels for which you. You can use WAIT_AT_LOW_PRIORITY time keyword along with online rebuild process and it will automatically abort the rebuilding process for. e. Reorganize an index For rowstore indexes, the Database Engine defragments only the leaf level of clustered and nonclustered indexes on. [CCS-KIDS1] GO. The index uses the main filters on the sales table from the time dimension, i. Expand the Indexes folder. To add to this, you need to learn your system and how it's used. When rebuilding offline your index is completely unavailable, but the operation is faster than that online. Many people (and even solutions) in the SQL Server community say you need to look at Index Fragmentation levels (e. where, table_name is the name of the table to be reorganized. Copy. ALTER INDEX . -- Compute fragmentation information for all full-text indexes on the database SELECT c. The query causing the block is in the format: ALTER INDEX [indexName] ON tableName REORGANIZE. In it, enter the Job name, owner, optionally Category. The documentation is also indicating that: Online index operations are not available in every SQL Server edition. There are two options to fix fragmentation. Microsoft recommends Index Rebuild operation to defrag indexes if the fragmentation level of your index is greater. For more information, see ALTER INDEX (Transact-SQL). 例えば、10 % 以上 30 % 未満であれば再構成 (Reorganize)、 30% 以上であれば再構築 (Rebuild) するとすれば、. Problem. On a data partitioned table, you can reorganize a specific nonpartitioned index on a partitioned table, or you can reorganize all the partitioned indexes on a. SQL Server Index Rebuild and Reorganize Script. The SQL Server Maintenance Solution lets you intelligently rebuild or reorganize only the indexes that are fragmented. The log size shouldn't be unrestricted. If the index is disabled, rebuilding brings it back to life. RESUMABLE = ON means you can pause. Ignore: Fragmentation levels of 10 percent or less should not pose a performance problem, so you don’t need to do anything. Index Fragmentation and out of date statistics! Don't forget stats, it's one of the most important factors in SQL Server deciding whether or not to use a index. avg_page_space_used_in_percent column in the sys. Yup, that is one perfectly valid way. After finding out almost all databases on my SQL Server had fragmentation over 40%, I decided to do an index rebuild on all tables using a fill factor of 80. Setup a new job to run update stats via IndexOptimize daily. For more information about this enhancement, check the SQL Server 2016. To update all statistics in a table. Another possibly is that the index is being rebuilt and then re-fragmenting again. This requires the DBA to create such a maintenance job. m. In the Object Explorer panel locate the database in question, and use right mouse click to bring up the context menu. Reorganizing an index only deals with the fragmentation that exists, and the more fragmentation there is, the longer a reorganize will take. For instance, in the Maintenance Plans of SQL Server 2017, it is possible to rebuild only those indexes where fragmentation level is higher than a specific percentage and has more pages than specified in "Page Count". If you don’t spend much time with SQL Server and you. ALTER INDEX ALL ON [dbo]. If the index you wish to reorganize is not listed in the “Indexes to be reorganized” section, ensure that it has been added to this section and then click the “OK” button. Rebuilding a clustered columnstore index is an offline operation until SQL Server 2019 when the ability to rebuild online was introduced. I don't think Windows SQL Server Maintenance has this option yet. - 1: The script will just output the index reorganization or rebuild commands without running them. ". When you reorganize an index, SQL Server physically reorders the leaf-level pages to match the logical order of the leaf nodes. This index always show 100% avg_fragmentation_in_percent, index level 2, pages =8. The Full-Text Engine compiles and executes full-text queries. Answer: If you are using SQL Server 2014, 2016, 2017 or latest version of SQL Server, you can run the following command and it will abort the index rebuilding process after the period of the time. FileID, a. Product REBUILD. do nothing; reorganize an index; rebuild an index; Don't reinvent the wheel - just go see and use the script!I am a new DBA to a SQL 2005 production Report server. Use Ola Hallengren ‘s IndexOptimize but don’t use his defaults. Basically, an index rebuild copies the index to another place. Script and result below: ALTER INDEX ALL ON Fragmented REORGANIZE GO1 Answer. This makes it more likely that some other session is blocked by your session, and that you may, in turn, become blocked by a lock held by that session. The query causing the block is in the format: ALTER INDEX [indexName] ON tableName REORGANIZE. before i answer your question is the database on simple recovery. SQL Server development version and Enterprise version has option ONLINE, which can be turned on when Index is rebuilt. When I run a maintenance plan to reorganize and rebuild tables indexes, it fails. You can also see if a reorganize will help until you can do a full rebuild. Hi Everyone, We have a weekly maintenance plan in place that fails with the following error: Executing the query "ALTER INDEX [NCI_WI_BId_PId_PMId_SId_NPB] ON [Infr. August 1, 2013 at 3:52 pm. Applies to: SQL Server Azure SQL Database Azure SQL Managed Instance Azure Synapse Analytics Analytics Platform System (PDW) Columnstore indexes are the standard for storing and querying large data warehousing fact tables. Click Next, and you can define the Update Statistics task. In the infrequent cases where you do need to reorganize or re-build index, consider these: Run index maintenance during off peak period. Merging the full-text index fragments can improve performance and free up disk and memory resources. DROP INDEX when you are dropping a nonclustered index. The difference is easily visible. No, there is no auto-magical defragging of indexes. However, these numbers are only for general guidance as a starting point for your environment. If you need more tempdb space, scale up the pool. [Test] REBUILD WITH (ONLINE = ON); Additionally, I would only rebuild indexes which require it. If an index contains less than 100 pages, I will perform no maintenance. Reorganizing an index defragments the leaf level of an index by physically re-ordering pages to match the logical order. ” Select the vault database(s). Reorganize the data on the data and index pages by rebuilding indexes with a new fill factor. I still see questions about SQL Server 2000/2005 pop up on Stack Exchange. -Search all indexes of a table that have 5% or more of fragmentation and page_count >= 1000. The algorithm to build an index from scratch is different to that which maintains it as data arrives so these non-clustered indexes will be unfragmented too. – Ed B. The. Microsoft's guidance on index reorganize and rebuild supports this: For example, if a given index is used mainly for scan operations, removing fragmentation can improve performance of these operations. Jan 11 at 14:24. This article introduces the concept of fragmentation and discusses two ways of managing index fragmentation - reorganizing and rebuilding. When you rebuild, SQL creates a new fresh index. sql script from Ola’s website and open it up in a query window inside of SSMS. index_id > 0 -- Indexes. ) rebuilt all indexes on the table. line is helpful to give the user some indication of what indexes it is rebuilding and how far it has progressed. So now once you have identified the high fragmentation level in your database, which could. Index Rebuild : This process drops the existing Index and Recreates the index. This REBUILD option is available in SQL Server 2008 onwards. cyNumber) AS cyNumber, MAX (b. It shouldn't be used on. However I want advice whether it is required to setup the SQL Server Index and Statistics Maintenance scripts, because my SQL server is running on a SAN infrastructure and I have read that there is no benefit to setting fill-factor to less than 100%, or to perform index. Next the New Job window will open. REORGANIZE statement. Index rebuilding and reorganizing are the two methods to maintain indexes and improve database performance. SQL Server 2005 Index Rebuild/Reorganize. e. Index rebuilding process uses more CPU and it locks the database resources. Reorganizing the indexes will take less time, and less effort from the SQL server thus they can be done in a weeknight type of instances. And if the reorganize is a deadlock. Use the online version of the Rebuild Index task ; Use the Reorganize Index task followed by the Update Statistics task; If you have the Enterprise Edition of SQL Server, the Maintenance Plan Wizard offers a Keep index online while reindexing option, which means that the index will continue to be available to users even while it is being. This is a best practice for performance when you rebuild or reorganize indexes. I'm just using the reorg index task that is in the maintenance plan designer GUI.