Viewing 15 posts - 16,786 through 16,800 (of 22,211 total)
Jack has largely nailed it. ORM tools speed up development, but at the cost on the database side of things. Using the tool straight, no modifications, you get lowest common...
August 5, 2009 at 6:55 am
sward (8/4/2009)
I'm not really sure what you could use to get this using Top 1. Am i...
August 5, 2009 at 5:53 am
I can't support .rar compression files at work (don't ask). Can you zip the files?
August 5, 2009 at 5:48 am
sanketahir1985 (8/3/2009)
No, i m running the trace from my local pc.
Through the graphical user interface? If you're running a trace through TSQL, it's not running on your local machine, it's...
August 5, 2009 at 5:45 am
Steve Jones - Editor (8/4/2009)
August 5, 2009 at 5:33 am
Exclusive locks are occuring because data is being manipulated, inserted, deleted or updated. Where's the issue?
August 3, 2009 at 7:12 pm
Queries don't automatically use multiple processors to run. MAXDOP defines a limit on how many processors can be used, not on how many will be used. SQL Server also uses...
August 3, 2009 at 1:31 pm
Sorry, only the ones that are associated with the index that was rebuilt.
August 3, 2009 at 1:24 pm
Didn't you just ask this question under a different topic?
Please don't do that. It makes conversations harder to track.
Actually Steve, if I'm understanding the question, I think the answer is...
August 3, 2009 at 1:18 pm
Yes. When the index rebuilds, as oppose to reorganize, the statistics are updated and the procedures referncing those statistics are all marked for recompile.
August 3, 2009 at 1:14 pm
Well, instead of MAX and an aggregate function, I'd suggest using TOP 1 and an ORDER BY if you can supply a column that can be ordered in such a...
August 3, 2009 at 9:18 am
Because I know that a bunch of you will qualify:
http://scarydba.wordpress.com/2009/08/03/sql-server-standard/%5B/url%5D
Please consider taking part.
August 3, 2009 at 8:30 am
Inline UDF's are not usually a problem because, as you can see in the execution plan, they'll resolve out to a standard set of operations, like a view (unlike the...
August 3, 2009 at 7:32 am
It looks basically OK, but I'm curious why you're aggregating the data & selecting the max value. Are there multiple entries with the same key value? That's a bit of...
August 3, 2009 at 7:10 am
You wouldn't by chance be running the Profiler GUI against this server? If so, I'd suggest turning that off and using scripts to create a server-side trace routine. I say...
August 3, 2009 at 7:04 am
Viewing 15 posts - 16,786 through 16,800 (of 22,211 total)