Defrag SQL Database
How would this be done, how would you defrag a SQL database?
What applications could you use and/or what commands would you use?
Kind Thanks.
Looking for relevant SQL Server Whitepapers? Visit the SearchSQLServer.com Research Library.
bakash | Sep 20 2004 12:42AM GMT
Yes, for external fragmentation u can use Disk keeper…
n for internal fragmentation u can use DBCC REINDEX..
but Theres another option for internal fragmentation…
DBCC INDEXDEFRAG, its an online operation. It does not hold locks long term and thus will not block running queries or updates.