Viewing 15 posts - 4,411 through 4,425 (of 5,843 total)
1) Confio
2) SQL Sentry Performance Advisor
The best one is actually ME! 😎
November 14, 2009 at 10:18 am
Let me see if I have this right: you are dumping 120K relatively fat rows into a TEMPORARY TABLE then selecting those rows back out and it is taking...
November 14, 2009 at 10:16 am
Guess we will have to agree to disagree on this one. In my world, 93.7% of the developers will take the easiest way to slap code together as quick...
November 14, 2009 at 10:10 am
Consider it job security! That view (especially these days) makes all kinds of things seem more acceptable!
Hope the refactor really smokes the original version!
November 13, 2009 at 1:06 pm
shannonjk (11/13/2009)
That solution crossed my mind a few times, the problem is I would have to rewrite the query I have which is over 200...
November 13, 2009 at 12:40 pm
The 'best' way to get the optimal plan for most everything covered in this thread is dynamic sql. Yep, you pay a small price for this in compilations and...
November 13, 2009 at 7:26 am
Please note my email address for future reference if you intend to have any scale to systems you develop with ANY ORM. You WILL be needing my performance...
November 13, 2009 at 7:19 am
Read, and REALLY understand, this and the 2 subsequent blog posts. They constitute the Bible of Deadlock Troubleshooting: http://blogs.msdn.com/bartd/archive/2006/09/09/Deadlock-Troubleshooting_2C00_-Part-1.aspx
November 13, 2009 at 7:17 am
sajid.mohd (11/12/2009)
TheSQLGuru (11/12/2009)
November 13, 2009 at 7:10 am
Not sure I follow exactly, but this query is much more efficient from a read perspective, but it doesn't seem to give the same output as what you have. ...
November 12, 2009 at 6:19 pm
CirquedeSQLeil (11/12/2009)
Just ran into a query here @ SSC that has 36 table joins - asking for tips to improve.
Can you give whomever is asking my contact information please? ...
November 12, 2009 at 6:06 pm
1) Buy more CPUs
2) Buy more RAM
3) Put TempDB on SSDs (or at least VERY fast IO subsystem), because it is getting CRUSHED by the sorting/grouping
4) do file IO stall...
November 12, 2009 at 8:03 am
How about simply stepping outside the box (litterally and figuratively) and simply prevent the loading of more than one file of data at a time?? VOILA!! No more...
November 12, 2009 at 8:00 am
there certainly are ways to answer aggregate queries without OVER, but they can be significantly LESS performant. As Lynn said, we need tables, data information, queries, and query plans...
November 12, 2009 at 7:57 am
Can you please describe EXACTLY what behavior you are observing (CPU, IO, paging, etc)? How exactly did you identify this command/spid as the one causing the problem? if...
November 12, 2009 at 7:55 am
Viewing 15 posts - 4,411 through 4,425 (of 5,843 total)