Viewing 15 posts - 9,016 through 9,030 (of 22,214 total)
That is the number used to compare to the cost threshold for parallelism. That fact doesn't change where the numbers come from. The optimizer assigns them based on internal processes,...
January 21, 2014 at 10:02 am
I'd suggest following the recommendations in the error message and run DBCC CHECKDB. Depending on where the statistics are, and if there are any other underlying problems, you may be...
January 21, 2014 at 8:31 am
Yep. It's cumulative, so a plan with zero value ads zero to the number. Understand though, just because an operator says it has zero cost doesn't mean it actually did...
January 21, 2014 at 8:29 am
Those values accumulate as you go through the plan, each one reflecting the ones before it in the plan in the physical processing order (right to left).
January 21, 2014 at 7:45 am
But, question, why no primary key? The vast majority of tables absolutely should have a primary key. Just as the vast majority of tables should have a clustered index (and...
January 21, 2014 at 7:44 am
January 21, 2014 at 7:43 am
Since you are completely on your own on this, again, I suggest getting a copy of my book. Links are down in my signature.
After you get backups in place... that...
January 21, 2014 at 7:40 am
praneethydba (1/21/2014)
Still in Recovery. I am Panic.
My company is running this database from past 8 years and no indexing, no Primary/clustered index, No jobs etc.
So I want to streamline all...
January 21, 2014 at 7:09 am
Ed Wagner (1/21/2014)
Grant Fritchey (1/21/2014)
January 21, 2014 at 7:04 am
Hey Ed, make sure you use FORMAT in addition to the INIT statement. INIT doesn't rewrite the header, so if you ever do modify the backup being done in some...
January 21, 2014 at 6:23 am
Just use sp_msforeachdb. That's what it's for. But, if you really, really don't want to use it, set up a cursor to cycle through the databases (that's all that query...
January 21, 2014 at 5:52 am
Or use INIT and FORMAT with the backup command to make it always be a single file instead of a series of files stacked together.
January 21, 2014 at 5:48 am
Since you're posting this in the 2008 forum, I'm going to assume you're on a 2008 or better server. You can look at they system_health extended event session. It's running...
January 21, 2014 at 3:44 am
Please supply a bunch more detail, especially the code you wrote and what you expected it to do for you.
January 21, 2014 at 3:39 am
A full backup includes the part of the transaction log that hasn't been marked as getting removed, so if you had a huge jump in the size of the log...
January 21, 2014 at 3:38 am
Viewing 15 posts - 9,016 through 9,030 (of 22,214 total)