Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7915631
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T14:31:02+00:00 2026-06-03T14:31:02+00:00

I have a unique index set up in tblCombined. It is set up on

  • 0

I have a unique index set up in tblCombined. It is set up on the fields called cyDate, dtlNr, and seq, in that order.

I have another table – a staging table – called tblDailyResults. It has the exact same fields as tblCombined, but no index. Each day, I receive records into this staging table from a feed.

What I’d like to do is setup a “catch” if you will, so that if a duplicate record that violates the unique index, it won’t error out – rather, it will just not be inserted; it will remain in the staging table (I can then send out an alert noting such and manage it from there).

This is what I’ve tried:

   Insert Into tblCombined
    ( 
        cyDate      
        ,dtlNr
        ,seq
        ,chCode
        ,opCode
        ,nrCode

    )

    Select
        cyDate      
        ,dtlNr
        ,seq
        ,chCode
        ,opCode
        ,nrCode

    From tblDailyResults

    Where Not Exists (Select cyDate ,dtlNr ,seq From tblCombined)

But, this doesn’t seem to be working. I tested out a couple of records – changing the fields from what was already inserted, and it still excludes the non-duplicate records. I admit I’m new to using “not exists” so perhaps I’m not using it correctly.

I also tried Where Not In, but that doesn’t seem to work for multiple columns.

Any suggestions is appreciated. Thanks!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-03T14:31:06+00:00Added an answer on June 3, 2026 at 2:31 pm

    you need a where in the not exists part too, like …

    where not exists (select 1 from tblcombined 
      where tblcombined.cydate = tbldailyresults.cydate 
      and tblcombined.dtlnr = tbldailyresults.dtlnr 
      and tblcombined.seq = tbldailyresults.seq)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an SQL database with a set of tables that have Unique Id's.
On one of my PostgreSQL tables, I have a set of two fields that
I have a table with unique index on two columns, id_parent and sort_order to
I have two tables orders and orderdetails table orders (PK = id, UNIQUE index
I have a table with a unique index across two columns user_id and country_id
I know that using the following codes will make each column have unique values,
I'm wondering if it is possible to have unique characters that cannot be seen
I have a unique set-up I am trying to determine if Heroku can accommodate.
I have a unique requirement that I hope is possible with LINQ to SQL.
I have a unique situation where I'm building a site that will call data

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.