Viewing 15 posts - 18,856 through 18,870 (of 22,214 total)
One question, you wouldn't have an outer join to the customer table would you? You have to have a customer to have a call right?
If so, this should work just...
January 6, 2009 at 8:37 am
From what you're saying, dynamic TSQL is probably the way to go.
In a system where anything can be queried, any way, at any time, performance is usually an issue. It's...
January 6, 2009 at 8:26 am
I would run a server side trace (which can be generated through the Profiler tool, but shouldn't be run through it) to capture the calls against the database. Once I...
January 6, 2009 at 8:21 am
GilaMonster (1/6/2009)
Chris Morris (1/6/2009)
GilaMonster (1/6/2009)
I recommend a 20-sided dice.Six is sufficient...http://en.wikipedia.org/wiki/The_Dice_Man
Maybe for you. 😉 I play D&D. The 20-sided dice is the most important one.
I have 4, 6, 8, 10...
January 6, 2009 at 8:12 am
Jeff Moden (1/6/2009)
Grant Fritchey (1/5/2009)
RBarryYoung (1/5/2009)
Actually, I heard from someone at PASS that WITH RECOMPILE does not work reliably for this problem in SQL2005, but "is fixed" in SQL 2008.
WITH...
January 6, 2009 at 6:30 am
URGENT!
How do you pick indexes... Oh lordy
http://www.sqlservercentral.com/Forums/Topic630357-360-1.aspx
January 6, 2009 at 6:23 am
I didn't see anyone mention it, but if you're moving scheduled Agent jobs, just script them out on the first server and you can run them on the second. Edit...
January 6, 2009 at 6:22 am
nairsanthu1977 (1/6/2009)
Can anyone give me some tips on creating indexes in sql server 2005. when to created index on single/multiple columsn etc...
I...
January 6, 2009 at 6:19 am
There are some stress tools out there for when you get past the basics of query performance troubleshooting. Quest offers one called Benchmark Factory. Idera used to have one, but...
January 6, 2009 at 6:12 am
nitinpatel31 (1/6/2009)
Any way here is the...
January 6, 2009 at 6:05 am
My rule of thumb is the same as Jeff's with one exception.
I've found some queries that are only, ever, doing a full scan of the temp table can run faster...
January 6, 2009 at 5:48 am
If you think these queries are bad, you should see the stuff coming out of nHibernate. I've only seen a few so far, but they're pretty horrifying. It does implicit...
January 5, 2009 at 6:25 pm
I expected it to perform the join inside a sub-select and then select from the result set as a single set of values. That would have helped explain why it...
January 5, 2009 at 11:55 am
I'm not sure, I haven't worked with Entity Framework much. What does it do when it has to do a JOIN between two tables?
January 5, 2009 at 11:33 am
I'll bet the execution plan for both is the same.
It's a messy way to write procedures, at least for really simple things like this, but it's not going to add...
January 5, 2009 at 11:00 am
Viewing 15 posts - 18,856 through 18,870 (of 22,214 total)