Viewing 15 posts - 20,896 through 20,910 (of 22,202 total)
I'm strapped for time, so I might not be able to experiment with this, but what if you created the equivalent of a table of numbers, but instead made a...
March 7, 2008 at 5:46 am
I agree. If you're processing 15 rows of data and it doesn't matter that it takes 10 seconds, walk away a winner.
If you're trying to build a large scale, repeatable,...
March 7, 2008 at 5:36 am
At my company, we do clean up & hide the data from production, but not nearly enough and, unfortunately, not across all teams. The biggest problem we have is getting...
March 7, 2008 at 5:34 am
Michael Valentine Jones (3/6/2008)
March 7, 2008 at 5:22 am
Jeff Moden (3/6/2008)
Grant Fritchey (3/5/2008)
What this is doing is using the temp table in place of a join or joins. That's bad.
Ummm... I gotta say, "Not always". I've...
March 6, 2008 at 12:54 pm
Rishi Girdhar (3/6/2008)
For example
select max(a.closedate) as closedate, a.offerid...
March 6, 2008 at 12:29 pm
I'm impressed if you can write the TSQL so that it fully performs and returns all the correct data out of the gate. It usually takes me a pass or...
March 6, 2008 at 12:25 pm
Speaking only for myself, I won't be applying for that position.
:smooooth:
March 6, 2008 at 12:15 pm
You can run the query and capture the actual execution plan. There's a button on the default tool bar, look for the tool tip that says "Include Actual Execution Plan"...
March 6, 2008 at 12:09 pm
Well, back in the day... 6.5, 7.0, that was true, to a degree. But it hasn't been true at all for years & years now. Here's an introduction to performance...
March 6, 2008 at 11:20 am
Yeah, sorry about that.
I sent an email to the group this morning. Did you get it?
March 6, 2008 at 10:47 am
Profiler and Perfmon are your bestest friends. There are also a number of dynamic management views available in 2005 that list missing indexes, etc.
March 6, 2008 at 10:41 am
That's called RBAR (reebar) processing and means Row-By-Agonizing-Row. It's definately not the way to go in most cases.
Instead, you need to focus on the results that you want as a...
March 6, 2008 at 10:28 am
Viewing 15 posts - 20,896 through 20,910 (of 22,202 total)