Viewing 15 posts - 41,476 through 41,490 (of 49,571 total)
Ellen (1/23/2009)
January 23, 2009 at 2:07 pm
Ed (1/23/2009)
So even if 20 coded columns need to access the lookup table to decode to descriptions, a table scan will be performed 20 times?
Not sure what you're...
January 23, 2009 at 2:06 pm
Few questions.
Why is the tran log set up as 4 files?
Are the log files on a separate physical drive from the data files?
Likewise, is the drive that the log backups...
January 23, 2009 at 1:28 pm
ashepard (1/23/2009)
If you are working with short rows, like a domian table of values then...
January 23, 2009 at 1:26 pm
See here - http://sqlinthewild.co.za/index.php/2009/01/09/seek-or-scan/
Edit: don't use index hints unless you are really sure you know what they're doing and why the optimiser didn't pick that index itself.
January 23, 2009 at 1:07 pm
Grant Fritchey (1/23/2009)
I haven't run averages on my systems recently, but 20ms just for recompiles seems a bit high for an average.
The 20 is compiles/sec, not sec/compile. There's no counter...
January 23, 2009 at 12:58 pm
Keena Ferguson (1/23/2009)
You are correct ... I only copied the first few lines ... I have attached the entire results set ... I have been looking at the DBCC CHECKDB...
January 23, 2009 at 12:47 pm
Is that the full output from CheckDB? It doesn't look like it. Can you please the full output. (If it's large, save it to a text file, zip and attach)
January 23, 2009 at 1:06 am
MarkusB (1/23/2009)
But I also noticed that this is a MYSQL procedure, not SQL Server. So you might better post it to a MySQL forum.
Good catch. I didn't even read the...
January 23, 2009 at 1:03 am
What you can do in VS is build that up as a string, assign it to a variable, do a debug.print (or equivalent) to get the string that will be...
January 23, 2009 at 12:54 am
I think I've found the major problem. You're missing brackets in the where clause. ANDs have precedence over ORs, so the way your where clause is written (with an or...
January 23, 2009 at 12:53 am
Jessica (1/22/2009)
I don't think I can upload the actual sqlplan file on here.
Zip it and attach it. If possible, for the actual exec plan, not the estimated.
The jpg doesn't have...
January 23, 2009 at 12:39 am
You say you're getting an error when calling that? What would the specific error message be?
January 23, 2009 at 12:30 am
It means you're calling a procedure, view or function from your procedure, and then from that proc calling another, etc 32 levels deep. Or it could be recursive with the...
January 23, 2009 at 12:29 am
Viewing 15 posts - 41,476 through 41,490 (of 49,571 total)