Viewing 15 posts - 496 through 510 (of 728 total)
Correctly said Gail, these two were the DBCC commands which I had used a lot during those days and were really a blessing while looking for optimization. Though now there...
January 2, 2013 at 3:15 am
Great question. Got to know about this DMV from this question. Got just 1 point but it was worth.
December 31, 2012 at 3:16 am
I definitely use DBCC INPUTBUFFER(spid) and DBCC OPENTRAN the most and at times DBCC SQLPERF. These are the most basic, effective and commonly used DBCC commands.
Apart from that I've used...
December 28, 2012 at 3:20 am
e4d4 (12/9/2012)
If stats are accurate, then most probably you encounter problem with http://sqlinthewild.co.za/index.php/2007/11/27/parameter-sniffing/%5B/url%5D
+1. Excellent link.
Nitin, I've faced such situations in real time scenarios. I tried a lot, moved from here...
December 24, 2012 at 5:06 am
sanket kokane (12/11/2012)
How to modify SP name in Alter Proc script ?
Good Point... 🙂 However since the four options provided did not had any "Error" option, the obvious thought came...
December 14, 2012 at 7:29 am
Will this help:
SELECT c1
FROM(SELECT c1, SUM(c2) AS 'Adding',(ROW_NUMBER() OVER (ORDER BY SUM(c2) DESC)) AS 'Row'
FROM Table1 t1
GROUP BY c1) a
WHERE Row = 1
November 23, 2012 at 10:53 pm
Jeff Moden (11/22/2012)
I have to seriously disagree with that. There are usually (I've seen 1 exception) no performance settings or tricks with partitioning disks (there used to be 1...
November 23, 2012 at 10:16 pm
May your stuffing be tasty
May your turkey plump,
May your potatoes and gravy
have nary a lump.
May your yams be delicious
and your pies take the prize,
and may your Thanksgiving dinner
stay off your...
November 22, 2012 at 3:26 am
Test , are you getting same delaey .slow response from same backed up data EVERYTIME ????????
Thats what I said. I got that DB restored to my test environment and found...
November 20, 2012 at 1:28 am
"""""""I removed back that MAXDOP option and rather created clustered index on the temporary table (I know it should have been there in the very first place). Now it worked...
November 20, 2012 at 12:05 am
Viewing 15 posts - 496 through 510 (of 728 total)