Forum Replies Created

Viewing 15 posts - 3,571 through 3,585 (of 5,685 total)

  • RE: RAID 5 Parity

    Cat, it's for both, and same purpose. In a RAID 5, for each section of disk (I forget the break out) in say a 4 disk array, 3 have...

  • RE: Part-Time SQL Contract Work for Intermediate/Borderline Newbie - Does It Exist?

    Polymorphist (3/24/2011)


    Most part-time development jobs want open source knowledge such as PHP, MySQL, etc.

    Primarily because most clients who use open source are either small, so they don't have...

  • RE: LEFT OUTER JOIN if True INNER JOIN if False

    CELKO (3/24/2011)


    <snip>

    SELECT A.column_a, A.column_b

    FROM TableA AS A

    LEFT OUTER JOIN

    Flagged_Records AS FR

    ...

  • RE: Help required please.

    Try this:

    SELECT

    drv.ClientID,

    ca.*

    FROM

    (SELECT DISTINCT ClientID from tIdentity) AS drv

    CROSS APPLY

    (SELECT TOP 1

    i.ClientID,

    ds.DocSummaryKey,

    -- picked a few random fields here, choose what you want to return...

    ds.DocKey,

    ds.DateExpiry

    FROM

    tDocSummary AS ds

    JOIN

    tIdentity AS...

  • RE: Help required please.

    Can you supply the ddl for the tables and a little sample data?

    I was in the middle of providing a pretty quick (usually) cross apply solution, and then realized I...

  • RE: Help required please.

    Couple of things, and no, you don't want a cursor if I understand you right.

    phil.layzell (3/24/2011)


    and convert(varchar(10),I1.DateExpiry,120) >= convert(varchar(10),GetDate(),120)

    This can't index seek, it's considered non-SARGable, because you've wrapped DateExpiry in...

  • RE: View with many tables and poor performance

    The most important point first:

    dji (3/24/2011)


    I hope I haven't wasted anyones time with this, all the help is most appreciated.

    You haven't Jake. This is an excellent example to learn...

  • RE: Are the posted questions getting worse?

    Craig Farrell (3/24/2011)


    Craig Farrell (3/24/2011)


    Craig Farrell (3/24/2011)


    Craig Farrell (3/24/2011)


    WayneS (3/24/2011)


    Almost at 25,000 posts here on The Thread! At today's rate, we'll hit it tonight.

    Edit: 36 posts to go. (Watch Alvin...

  • RE: Are the posted questions getting worse?

    Craig Farrell (3/24/2011)


    Craig Farrell (3/24/2011)


    Craig Farrell (3/24/2011)


    WayneS (3/24/2011)


    Almost at 25,000 posts here on The Thread! At today's rate, we'll hit it tonight.

    Edit: 36 posts to go. (Watch Alvin post the...

  • RE: Are the posted questions getting worse?

    Craig Farrell (3/24/2011)


    Craig Farrell (3/24/2011)


    WayneS (3/24/2011)


    Almost at 25,000 posts here on The Thread! At today's rate, we'll hit it tonight.

    Edit: 36 posts to go. (Watch Alvin post the next 36...

  • RE: Are the posted questions getting worse?

    Craig Farrell (3/24/2011)


    WayneS (3/24/2011)


    Almost at 25,000 posts here on The Thread! At today's rate, we'll hit it tonight.

    Edit: 36 posts to go. (Watch Alvin post the next 36 messages...)

    Now,

    two

  • RE: Are the posted questions getting worse?

    WayneS (3/24/2011)


    Almost at 25,000 posts here on The Thread! At today's rate, we'll hit it tonight.

    Edit: 36 posts to go. (Watch Alvin post the next 36 messages...)

    Now,

  • RE: View with many tables and poor performance

    A couple of first glance notes with the right query.

    First, your SQLPlan, which you have to go to the XML to see this, has this problem:

    <StmtSimple StatementCompId="1" StatementEstRows="89912" StatementId="1" StatementOptmLevel="FULL"...

  • RE: View with many tables and poor performance

    Ah hah! I must have missed that when I re-scanned the thread. That makes more sense as to his earlier observations. I do remember thinking to myself...

  • RE: Are the posted questions getting worse?

    CirquedeSQLeil (3/24/2011)


    jcrawf02 (3/24/2011)


    GilaMonster (3/24/2011)


    Stefan Krzywicki (3/24/2011)


    I'm also not a fan of the Harry Potter books. The movie seemed like a study in ADD, nothing was really connected to anything else...

Viewing 15 posts - 3,571 through 3,585 (of 5,685 total)