Forum Replies Created

Viewing 15 posts - 496 through 510 (of 728 total)

  • RE: Coalesce and Conversion

    Great question, must say. +1

  • RE: T-SQL

    I just got confused with "NULL value(S)". The last S made it plural and made my guess wrong. 🙁

    Good question. Just needed extra attention. 🙂

  • RE: DBCC Commands

    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...

  • RE: TSQL 2012 #1

    Great question. Got to know about this DMV from this question. Got just 1 point but it was worth.

  • RE: RAID

    Thanks for making the last day of the year by giving an easy +1.

    Happy New Year to all.

  • RE: DBCC Commands

    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...

  • RE: Problem related to transaction

    Perfectly described Lynn.

  • RE: Sp performence.

    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...

  • RE: Renaming a procedure

    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...

  • RE: SQL find maximum of table generated with select

    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

  • RE: Optimization of stored procedures

    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...

  • RE: Thanksgiving 2012

    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...

  • RE: Performance Issue

    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...

  • RE: Performance Issue

    """""""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...

  • RE: Backups changes table stats ?

    Thanks for confirming that Gail. 🙂

Viewing 15 posts - 496 through 510 (of 728 total)