Viewing 15 posts - 166 through 180 (of 464 total)
Joseph (3/12/2009)
March 13, 2009 at 12:09 pm
For what it's worth, it's not just the duration of the rebuild that matters. You are also impacting the server by locking the index for the duration (offline rebuild)...
March 13, 2009 at 11:43 am
You should also look at avg_fragment_size_in_pages - the higher the better. Because SQL reads extents (8 pages) a low value can indicate that more extents are being read than...
March 12, 2009 at 3:52 pm
I'm confused, when you say you are failing to connect are you talking about a login error, or a failure to connect to the server?
You indicated that you can...
March 12, 2009 at 3:46 pm
Simple recovery mode logs everything that bulk-logged mode would, the difference is that it doesn't require a log backup to free space for reuse. The log file may still...
March 12, 2009 at 3:19 pm
I can't think of any good way to do this. You could profile all statements over a period and parse them for temp table/variable usage, and you could profile...
March 12, 2009 at 3:14 pm
Can you ping the db server using that DNS from the web server? If so, is it showing the expected ip address?
March 12, 2009 at 3:03 pm
Ah, my mistake. Just as a reference, I like to allocate enough free space for at least a year on my databases - apart from lower fragmentation it's easier...
March 12, 2009 at 10:24 am
1MB is the default.
20MB for autogrowth is fine, you can set it to less if you wish as SQL will autogrow as many times as necessary until it runs out...
March 12, 2009 at 10:03 am
Without seeing the table and index DDL for the communication table it is hard to say exactly what the problem is. Comm_LeadId is in a nonclustered index, you may...
March 12, 2009 at 9:10 am
You can choose whether to have SQL files grow automatically, either by a percentage or a fixed amount. Best practice is to monitor file sizes and allocate more space...
March 12, 2009 at 8:59 am
Unfortunately it's not quite that simple ... each row has other information associated with it - a null bitmap for example. If your clustered index is not unique then...
March 11, 2009 at 12:00 pm
Roy : I was just referring to these errors -
SQL Server has encountered 2 occurrence(s) of cachestore flush for the 'Bound Trees' cachestore (part of plan cache) due to some...
March 11, 2009 at 11:37 am
You can also use an after trigger (the default type), which is more common for auditing as it adds to the original modification statement instead of replacing it.
The...
March 11, 2009 at 11:21 am
Dropping a database flushes the caches for that database - the information can no longer be used. Those messages are normal.
March 11, 2009 at 11:09 am
Viewing 15 posts - 166 through 180 (of 464 total)