Viewing 15 posts - 9,046 through 9,060 (of 22,214 total)
There are basically two good ways to get query metrics out of the system. You can query the cache and see what's there for query performance, or you can audit...
January 19, 2014 at 3:43 am
Yeah, just run a query on the server that uses RAISEERROR and the appropriate error level. Nothing else needed. It won't hurt the server or any processes on the server.
January 17, 2014 at 5:57 am
Any login can have a query that causes blocking. That's just how SQL Server works. Based on what you've described, that's about all I can see. To minimize blocking, go...
January 17, 2014 at 4:51 am
Looking it over, the only hope for tuning is, as was already pointed out, to eliminate the key lookup. Otherwise, we're just processing a lot of data and that's going...
January 17, 2014 at 4:49 am
Access.
But seriously, Access & ODBC and... yeah... Access.
January 16, 2014 at 12:39 pm
There must be differences. No such thing as magic. Differing data sets leading to an error, maybe corruption on that database, something. Keep looking and look in and around settings...
January 16, 2014 at 8:05 am
If the same code doesn't work, then I'd start checking settings. First, default ANSI settings on the server. Collation on the server and the database. Also check collation on tempdb....
January 16, 2014 at 7:21 am
It's usually not a network problem, but it might be. It's usually an issue where the client code is doing row-by-row processing. There is no other wait occurring. It's literally...
January 16, 2014 at 7:16 am
UNION is an aggregate function that is basically going to give you unique values. If you want to eliminate them from the query any other way, it's probably through having...
January 16, 2014 at 7:03 am
And remember, those costs are just estimated values. They don't represent a literal real-world performance metric. It's just a measure of what the optimizer thinks a given operation will cost...
January 16, 2014 at 7:01 am
OK. Have you checked the error logs, both SQL Server and Windows? I can't really suggest a whole lot more than that without more details than that you have an...
January 16, 2014 at 5:20 am
KWymore (1/15/2014)
January 15, 2014 at 4:02 pm
below86 (1/15/2014)
I agree that I've looked at what I've done 2/5/10 years ago and think "what the 'H' was I thinking". And yes you would love to go back...
January 15, 2014 at 11:43 am
I agree on the number of students. Also, what's the difference between student_pk and student_id? Seems like one or the other isn't needed unless the ID is some sort of...
January 15, 2014 at 10:36 am
I'm actually a little shocked at some of the responses from the editorial. I thought the editorial was absolutely spot on.
For all those who think that you shouldn't be striving...
January 15, 2014 at 10:28 am
Viewing 15 posts - 9,046 through 9,060 (of 22,214 total)