Query last too long

  • Hello,

     

    I have this execution plan and the query last   24 h. How we can improve it?

    Thanks,

    Hadrian

  • aureliu wrote:

    Hello,I have this execution plan and the query last   24 h. How we can improve it?

    Thanks,

    Hadrian

    Which execution plan?

    If you haven't even tried to resolve your issue, please don't expect the hard-working volunteers here to waste their time providing links to answers which you could easily have found yourself.

  • Hi,It was rejected once.

  • It's just XML. Try renaming to .txt and uploading again.

    Edit: or .XML.

    • This reply was modified 3 years, 10 months ago by  Phil Parkin.
    • This reply was modified 3 years, 10 months ago by  Phil Parkin.
    Attachments:
    You must be logged in to view attached files.

    If you haven't even tried to resolve your issue, please don't expect the hard-working volunteers here to waste their time providing links to answers which you could easily have found yourself.

  • Or upload it to Paste the Plan and share the link.

    Thom~

    Excuse my typos and sometimes awful grammar. My fingers work faster than my brain does.
    Larnu.uk

  • now? Thanks,H

  • sorry,now?

  • aureliu wrote:

    sorry,now?

    Nope, the report will clearly show if there's an attachement when you're sending it:

    Perhaps you'll be better off using Paste the Plan as you appear to be struggling here.

    (You can ignore the attached image, was just a random one on my PC)

    Attachments:
    You must be logged in to view attached files.

    Thom~

    Excuse my typos and sometimes awful grammar. My fingers work faster than my brain does.
    Larnu.uk

  • maybe now

    Attachments:
    You must be logged in to view attached files.
  • A quick note, the clause pbRecordId NOT IN (SELECT DISTINCT pbRecordId FROM staging.sfSurveillanceRecordHeaderUpdated) doesn't need that (possibly expensive) DISTINCT. both 1 NOT IN (1,2,3,4,1,1,2,4) and 1 NOT IN (1,2,3,4) are gong to result in the same exclusions.

    Also, if you do have any NULL values for the column pbRecordId then that isn't going to work as you expect; it's why I prefer NOT EXISTS.

    On a related note, I strongly advise qualifying your column names for a clause like that. If for no other reason than for what Gail explains here: No, this is not a bug in T-SQL

    • This reply was modified 3 years, 10 months ago by  Thom A.

    Thom~

    Excuse my typos and sometimes awful grammar. My fingers work faster than my brain does.
    Larnu.uk

  • I would change the WHERE in the last query to:

      FROM staging.sfSurveillanceRecordHeader s1
    WHERE NOT EXISTS (SELECT *
    FROM staging.sfSurveillanceRecordHeaderUpdated s2
    WHERE s2.pbRecordId = s1.pbRecordId);

    I think the following index will help:

     CREATE INDEX IX_sfSurveillanceRecordHeader_pbRecordId 
    ON staging.sfSurveillanceRecordHeader(pbRecordId)
    INCLUDE (currentVersion,validTo);

    If that doesn't make a difference drop it:

    DROP INDEX IX_sfSurveillanceRecordHeader_pbRecordId ON staging.sfSurveillanceRecordHeader;

    and try this one instead:

    CREATE INDEX IX_sfSurveillanceRecordHeaderUpdated_pbRecordId 
    ON staging.sfSurveillanceRecordHeaderUpdated(pbRecordId);

     

     

     

Viewing 11 posts - 1 through 10 (of 10 total)

You must be logged in to reply to this topic. Login to reply