Forum Replies Created

Viewing 15 posts - 16,531 through 16,545 (of 26,487 total)

  • RE: Denormalization Strategies

    Les Cardwell (3/15/2010)


    In spite of the criticism, it was still a simple example of minimal denormalization to achieve an end result rather than a full-on explosion of wide rows to...

  • RE: Denormalization Strategies

    Les Cardwell (3/15/2010)


    In spite of the criticism, it was still a simple example of minimal denormalization to achieve an end result rather than a full-on explosion of wide rows to...

  • RE: Are the posted questions getting worse?

    Alvin Ramard (3/15/2010)


    Anybody else see a problem with this statement?

    DECLARE @selectDate = getdate()-365

    Yes, in SQL Server 2008 it is missing the data type. Should be:

    DECLARE @selectDate datetime = getdate()...

  • RE: How to set the proper wait time for SPID's

    When a process is sleeping it simply means this:

    Sleeping - Currently running no requests

  • RE: How to set the proper wait time for SPID's

    I think you are looking for a solution for a problem that doesn't exist.

  • RE: Are the posted questions getting worse?

    bitbucket-25253 (3/15/2010)


    Lynn Pettis (3/15/2010)


    Grant Fritchey (3/15/2010)


    Lynn Pettis (3/15/2010)


    Grant Fritchey (3/15/2010)


    GSquared (3/15/2010)


    Grant Fritchey (3/15/2010)


    Oh cool, tossed under another bus. Thanks Alvin.

    What year? (My birthday was yesterday, so I'm curious as...

  • RE: date

    Ittech03 (3/15/2010)


    Select

    client_id as Client,

    ApplicantFullName as ClientName,

    CounselorName as Counselor,

    lastapptdatetime,

    tdate,

    TUDCounselor,

    TDDate,

    FUD1,

    FUD2,

    FUD3,

    FUD11,

    FUD21,

    FUD31

    From PDT_Counselor_CO_View

    where coalesce (complete,0) <>1 or coalesce(tud,0) <> 1

    and tdate >= dateadd(dd, datediff(dd, 0, getdate()) - 30, 0)

    Order by client_id desc

    This is...

  • RE: SQL suggesting index on low selectivity field that kills query

    Is the seek on the table or on the index? If you created the requested index on Col4 and included the columns Col1, Col2, Col3 it should be doing...

  • RE: date

    John Rowan (3/15/2010)


    Use a date column from your table in the WHERE clause to limit the # of days you want to bring back.

    For example:

    SELECT

    oh.*

    FROM

    ...

  • RE: Age Calculation not working

    Mark-101232 (3/15/2010)


    Try this

    SELECT DATEDIFF(Year,(@BirthDate,@TargetDate) - CASE WHEN DATEADD(Year, DATEDIFF (Year, (@BirthDate, @TargetDate), (@BirthDate) > @TargetDate THEN 1 ELSE 0 END

    Yes, this will work.

    Different subject, like your tag line.

  • RE: SSIS for Secure FTP connections

    We found an inexpensive sslftp solution that we incorporated using an EXECUTE PROCESS TASK to handle our secure FTP task. Only requirement, we have to maintain that piece of...

  • RE: Are the posted questions getting worse?

    GilaMonster (3/15/2010)


    Lynn Pettis (3/15/2010)


    Grant Fritchey (3/15/2010)


    Lynn Pettis (3/15/2010)


    Grant Fritchey (3/15/2010)


    GSquared (3/15/2010)


    Grant Fritchey (3/15/2010)


    Oh cool, tossed under another bus. Thanks Alvin.

    What year? (My birthday was yesterday, so I'm curious as...

  • RE: Age Calculation not working

    Check out this article[/url]. You may also want to read the discussion that followed.

  • RE: Are the posted questions getting worse?

    Grant Fritchey (3/15/2010)


    Lynn Pettis (3/15/2010)


    Grant Fritchey (3/15/2010)


    GSquared (3/15/2010)


    Grant Fritchey (3/15/2010)


    Oh cool, tossed under another bus. Thanks Alvin.

    What year? (My birthday was yesterday, so I'm curious as to what the...

  • RE: Are the posted questions getting worse?

    Grant Fritchey (3/15/2010)


    GSquared (3/15/2010)


    Grant Fritchey (3/15/2010)


    Oh cool, tossed under another bus. Thanks Alvin.

    What year? (My birthday was yesterday, so I'm curious as to what the actual age difference is.)...

Viewing 15 posts - 16,531 through 16,545 (of 26,487 total)