Forum Replies Created

Viewing 15 posts - 15,571 through 15,585 (of 26,486 total)

  • RE: help using getdate function

    Slightly confused, exactly what are you looking for here, a count of records for today, yesterday, and the past 7 days excluding today?

  • RE: Getting the last result for each account

    As this is in a SQL Server 2008 forum, another option:

    with Latest_Transactions as (

    select

    row_number() over (partition by AcctNum order by TransactionDate desc) as rownum,

    ...

  • RE: SQL Server DBA Fights a Demon

    Have to agree, it would have been nice if there had been more on creating the WMI alert. Others (like me) may have benefitted from the information.

  • RE: Today's Random Word!

    crookj (5/6/2010)


    sing4you (5/6/2010)


    crookj (5/6/2010)


    CirquedeSQLeil (5/6/2010)


    bcsims 90437 (5/6/2010)


    El Paso? Salsa... it's almost lunchtime.

    Jalapenos

    Chili Cookoff (New Mexico or Arizona style!)

    Joe

    Don't forget Texas. It may be hell to...

  • RE: Getting the last result for each account

    kuyaglenn (5/6/2010)


    Figured out. Thread closed

    If you figured it out, proper forum ediquette would have you post your solution. Others may have a similar problem, and your solution may...

  • RE: Are the posted questions getting worse?

    GilaMonster (5/6/2010)


    Lynn Pettis (5/6/2010)


    GilaMonster (5/6/2010)


    Lynn Pettis (5/6/2010)


    I have asked questions for clarification and not come back, but usually it's because others have jumped in and helped, just not needed then...

  • RE: Training for Managers

    CirquedeSQLeil (5/6/2010)


    Lynn Pettis (5/6/2010)


    Jeff Moden (5/5/2010)


    Something that people either aren't aware of or have forgotten... the option of in-house training by the resident experts is a powerful tool that's...

  • RE: Training for Managers

    Jeff Moden (5/5/2010)


    Something that people either aren't aware of or have forgotten... the option of in-house training by the resident experts is a powerful tool that's frequently over looked....

  • RE: SQL Version, Licensing?!?

    MeltonDBA (5/6/2010)


    I would start with this matrix of SQL Server 2008 features:

    http://msdn.microsoft.com/en-us/library/cc645993.aspx

    (1) SQL Standard edition if you want the BI and SSIS tools.

    (2) With the small number of users I...

  • RE: Select tbl1.a if exists otherwise tbl2.a

    True, but looking at the Sales and SalesOverride tables, just made sense to qualify it so that it was clearer.

    I use a similar technique for permissions overrides in a process...

  • RE: Today's Random Word!

    crookj (5/6/2010)


    Lynn Pettis (5/6/2010)


    crookj (5/6/2010)


    CirquedeSQLeil (5/6/2010)


    bcsims 90437 (5/6/2010)


    CirquedeSQLeil (5/6/2010)


    Lynn Pettis (5/6/2010)


    Actually, the problem is I'll need a vacation from the vacation. A week from Sunday will be 14+ hours...

  • RE: Are the posted questions getting worse?

    GilaMonster (5/6/2010)


    Lynn Pettis (5/6/2010)


    I have asked questions for clarification and not come back, but usually it's because others have jumped in and helped, just not needed then usually.

    Same, sometimes because...

  • RE: Today's Random Word!

    crookj (5/6/2010)


    CirquedeSQLeil (5/6/2010)


    bcsims 90437 (5/6/2010)


    CirquedeSQLeil (5/6/2010)


    Lynn Pettis (5/6/2010)


    Actually, the problem is I'll need a vacation from the vacation. A week from Sunday will be 14+ hours of driving (coming...

  • RE: Select tbl1.a if exists otherwise tbl2.a

    Lowell (5/6/2010)


    -- COALESCE returns the first non-null value from the list provided; it is a param array, so an large number of arguments can be passed to check for non-nulls.

    SELECT...

  • RE: Today's Random Word!

    CirquedeSQLeil (5/6/2010)


    bcsims 90437 (5/6/2010)


    CirquedeSQLeil (5/6/2010)


    Lynn Pettis (5/6/2010)


    Actually, the problem is I'll need a vacation from the vacation. A week from Sunday will be 14+ hours of driving (coming home...

Viewing 15 posts - 15,571 through 15,585 (of 26,486 total)