InterviewSolution
Saved Bookmarks
| 1. |
Purpose of DBCC DBREINDEX command is to ____________(a) Rebuilds one or more indexes for a table in the specified database(b) Rebuilds only one index for a table in the specified database(c) Displays fragmentation information for the data and indexes of the specified table(d) All of the mentionedI have been asked this question in exam.My question comes from Database Maintenance topic in section Enterprise Data Management of SQL Server |
|
Answer» RIGHT answer is (a) Rebuilds one or more indexes for a table in the SPECIFIED database Easy explanation: The DBCC DBREINDEX command will not AUTOMATICALLY rebuild all of the indexes on all the tables in a database; it can only WORK on one table at a time. |
|