|
dev
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
Checking and IndexingHi,
Does running the SQL maintenance tools such as indexing and checking while users are using the database cause problems? Thanks Any maintenance activity such as DBCC CHECKDB and DBREINDEX will have some
effect due to their resource intensive nature. But DBCC CHECKDB can be run while users are accessing the system without stopping normal access to the tables. The system may be slower due to the CPU usage of the command but it will not prevent them altogether. DBCC DBREINDEX on the other hand will stop any access to the table it is currently working on. From the time it starts to reindex anything in that table it takes an exclusive table lock and holds it until it finish's with that table. -- Show quoteAndrew J. Kelly SQL MVP "Amir Marathonian" <AmirMarathon***@discussions.microsoft.com> wrote in message news:193BC0D7-1BF7-415B-8B74-1FBCBC4C649F@microsoft.com... > Hi, > > Does running the SQL maintenance tools such as indexing and checking while > users are using the database cause problems? > > Thanks |
|||||||||||||||||||||||