Forum Replies Created

Viewing 15 posts - 991 through 1,005 (of 1,790 total)

  • RE: MOM alert:SQL Server User Connections > 500

    That is referring to the performance counter SQLServer:General Statistics: User Connections

    There must be a threshold configured in MOM that is set to look for that being over 500. If...

    David

    @SQLTentmaker

    “He is no fool who gives what he cannot keep to gain that which he cannot lose” - Jim Elliot

  • RE: Break Views by modifying tables

    From BOL:

    USE AdventureWorks;

    GO

    SELECT DISTINCT 'EXEC sp_refreshview ''' + name + ''''

    FROM sys.objects AS so

    INNER JOIN sys.sql_expression_dependencies AS sed

    ON so.object_id = sed.referencing_id

    WHERE...

    David

    @SQLTentmaker

    “He is no fool who gives what he cannot keep to gain that which he cannot lose” - Jim Elliot

  • RE: Aggregate function

    Jude, if you could provide feedback on which one is more efficient I would appreciate it. You should be able to pull some overall cost from the execution plan and...

    David

    @SQLTentmaker

    “He is no fool who gives what he cannot keep to gain that which he cannot lose” - Jim Elliot

  • RE: Are the posted questions getting worse?

    Yeah, a serious lesson for all to be had in doing unto others...

    David

    @SQLTentmaker

    “He is no fool who gives what he cannot keep to gain that which he cannot lose” - Jim Elliot

  • RE: How do I combine records

    I don't think that not having it in the order by would cause you to have duplicate records. It is the grouping which is going to eliminate the dupes.

    Glad...

    David

    @SQLTentmaker

    “He is no fool who gives what he cannot keep to gain that which he cannot lose” - Jim Elliot

  • RE: Are the posted questions getting worse?

    Jack Corbett (12/26/2008)


    DavidB (12/26/2008)


    Steve Jones - Editor (12/26/2008)


    And they can't remove benefits from retirees. Those were agreed to long ago.

    Can't or shouldn't? 🙁

    I would say can't. This is something...

    David

    @SQLTentmaker

    “He is no fool who gives what he cannot keep to gain that which he cannot lose” - Jim Elliot

  • RE: How do I combine records

    If you add the case statement for Salesman1 in your group by statement you should be all set.

    David

    @SQLTentmaker

    “He is no fool who gives what he cannot keep to gain that which he cannot lose” - Jim Elliot

  • RE: Are the posted questions getting worse?

    Steve Jones - Editor (12/26/2008)


    And they can't remove benefits from retirees. Those were agreed to long ago.

    Can't or shouldn't? 🙁

    David

    @SQLTentmaker

    “He is no fool who gives what he cannot keep to gain that which he cannot lose” - Jim Elliot

  • RE: How do I combine records

    Duplicate post - please refer to http://www.sqlservercentral.com/Forums/Topic625851-145-1.aspx

    David

    @SQLTentmaker

    “He is no fool who gives what he cannot keep to gain that which he cannot lose” - Jim Elliot

  • RE: How do I combine records

    If I understand what you are trying to do, you will need to use the charindex function to find the location of the "-" and the substring function to "trim"...

    David

    @SQLTentmaker

    “He is no fool who gives what he cannot keep to gain that which he cannot lose” - Jim Elliot

  • RE: Performance Counters Missing

    This was something pretty common in 2000 but I haven't seen it with 2005. However, here are a couple of links to review.

    http://decipherinfosys.wordpress.com/2008/06/26/performance-counters-are-missing/

    http://support.microsoft.com/kb/300956

    I would follow the steps in the...

    David

    @SQLTentmaker

    “He is no fool who gives what he cannot keep to gain that which he cannot lose” - Jim Elliot

  • RE: migration from sqlserver to oracle

    Nice Lowell! I haven't worked with Oracle for a few years so, I couldn't pull all those details out like that but glad you were able to! :w00t:

    David

    @SQLTentmaker

    “He is no fool who gives what he cannot keep to gain that which he cannot lose” - Jim Elliot

  • RE: migration from sqlserver to oracle

    Due to the variations between T-SQL and PL\SQL I would be really surprised if you were able to do a straight across migration. I would script out all the stored...

    David

    @SQLTentmaker

    “He is no fool who gives what he cannot keep to gain that which he cannot lose” - Jim Elliot

  • RE: SQL Queries Are Coming To Town

    My wife didn't get it but I was entertained. Thanks! 😉

    David

    @SQLTentmaker

    “He is no fool who gives what he cannot keep to gain that which he cannot lose” - Jim Elliot

  • RE: Missing Indexes

    Wow folks! I'm not a forum moderator (don't know if there are any besides Steve) but, not sure that this thread is profitable for anyone anymore.

    Hopefully we can move...

    David

    @SQLTentmaker

    “He is no fool who gives what he cannot keep to gain that which he cannot lose” - Jim Elliot

Viewing 15 posts - 991 through 1,005 (of 1,790 total)