Viewing 15 posts - 151 through 165 (of 994 total)
Chiming in at Gail's request...
There's no way to detect corrupt statistics. The statistics blobs are not checked by DBCC CHECKDB as the query optimizer team has never provided a mechanism...
November 29, 2010 at 2:54 pm
NP - here to help.
November 3, 2010 at 12:06 pm
Indeed. The log file metadata will only be updated when it grows or shrinks - possibly when the file header page at the front is updated after a backup, log...
November 3, 2010 at 11:36 am
The log is usually circular in nature so overwrites itself and doesn't need to grow. Checkout the article for full details.
November 3, 2010 at 11:07 am
This isn't a problem. Your log will only grow if it needs to - not growing is a good thing.
See this article I wrote for TechNet Magazine: Understanding Logging and...
November 3, 2010 at 10:56 am
And I meant to add, I use the index_usage_stats DMV all the time with clients - helps to see how indexes are being used, which can be more important than...
October 30, 2010 at 5:37 pm
Invisible indexes - you can already do that in SQL Server since 2005 - ALTER INDEX .... DISABLE and then REBUILD to enable it again if you want.
October 30, 2010 at 5:00 pm
If you do repair_allow_data_loss you will lose data from that table as the page is from the leaf level of the clustered index. I would recommend restoring using your backups...
October 22, 2010 at 1:53 am
You could save yourself the money of the tool and just rebuild the transaction log in EMERGENCY mode - you'll get the same transactional consistency on the data as from...
October 13, 2010 at 8:28 pm
Nowadays I tend to recommend taking the backup, restoring it somewhere else and then running CHECKDB on the restored copy of the database. It checks that your database is corruption...
August 12, 2010 at 11:47 am
To answer a different interpretation of the question - no, people do not generally run CHECKDB before doing a nightly index rebuild.
How often should you run CHECKDB? It depends on...
August 12, 2010 at 11:21 am
These are errors in the statistics blobs for the database EPICSYS (some of their pages are marked as allocated in two IAM pages for two objects) and you're not going...
August 11, 2010 at 10:27 pm
Dave Coats (8/5/2010)
August 5, 2010 at 8:21 pm
Please continue the thread here where everyone can benefit from the discussion.
August 5, 2010 at 8:20 pm
Could be that you have more memory on the 2008 server and checkpoint is occuring less frequently and the log is growing until checkpoint occurs and clears the log.
What does...
August 5, 2010 at 11:30 am
Viewing 15 posts - 151 through 165 (of 994 total)