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

  • Home
  • SEARCH
  • 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 202673
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T17:18:38+00:00 2026-05-11T17:18:38+00:00

I have a situation where i need to enforce a unique constraint on a

  • 0

I have a situation where i need to enforce a unique constraint on a set of columns, but only for one value of a column.

So for example I have a table like Table(ID, Name, RecordStatus).

RecordStatus can only have a value 1 or 2 (active or deleted), and I want to create a unique constraint on (ID, RecordStatus) only when RecordStatus = 1, since I don’t care if there are multiple deleted records with the same ID.

Apart from writing triggers, can I do that?

I am using SQL Server 2005.

  • 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-05-11T17:18:38+00:00Added an answer on May 11, 2026 at 5:18 pm

    Add a check constraint like this. The difference is, you’ll return false if Status = 1 and Count > 0.

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

    CREATE TABLE CheckConstraint
    (
      Id TINYINT,
      Name VARCHAR(50),
      RecordStatus TINYINT
    )
    GO
    
    CREATE FUNCTION CheckActiveCount(
      @Id INT
    ) RETURNS INT AS BEGIN
    
      DECLARE @ret INT;
      SELECT @ret = COUNT(*) FROM CheckConstraint WHERE Id = @Id AND RecordStatus = 1;
      RETURN @ret;
    
    END;
    GO
    
    ALTER TABLE CheckConstraint
      ADD CONSTRAINT CheckActiveCountConstraint CHECK (NOT (dbo.CheckActiveCount(Id) > 1 AND RecordStatus = 1));
    
    INSERT INTO CheckConstraint VALUES (1, 'No Problems', 2);
    INSERT INTO CheckConstraint VALUES (1, 'No Problems', 2);
    INSERT INTO CheckConstraint VALUES (1, 'No Problems', 2);
    INSERT INTO CheckConstraint VALUES (1, 'No Problems', 1);
    
    INSERT INTO CheckConstraint VALUES (2, 'Oh no!', 1);
    INSERT INTO CheckConstraint VALUES (2, 'Oh no!', 2);
    -- Msg 547, Level 16, State 0, Line 14
    -- The INSERT statement conflicted with the CHECK constraint "CheckActiveCountConstraint". The conflict occurred in database "TestSchema", table "dbo.CheckConstraint".
    INSERT INTO CheckConstraint VALUES (2, 'Oh no!', 1);
    
    SELECT * FROM CheckConstraint;
    -- Id   Name         RecordStatus
    -- ---- ------------ ------------
    -- 1    No Problems  2
    -- 1    No Problems  2
    -- 1    No Problems  2
    -- 1    No Problems  1
    -- 2    Oh no!       1
    -- 2    Oh no!       2
    
    ALTER TABLE CheckConstraint
      DROP CONSTRAINT CheckActiveCountConstraint;
    
    DROP FUNCTION CheckActiveCount;
    DROP TABLE CheckConstraint;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 243k
  • Answers 243k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer In the controller method that serves up the "success" view… May 13, 2026 at 7:46 am
  • Editorial Team
    Editorial Team added an answer no. but it's possible to implement it on GWT. not… May 13, 2026 at 7:46 am
  • Editorial Team
    Editorial Team added an answer The reason this is happening is that dialog is actually… May 13, 2026 at 7:46 am

Related Questions

I'm trying to enforce a time limit on queries in python MySQLDB. I have
Possible Duplicate: How do I create unique constraint that also allows nulls in sql
I have a situation where I need to be able to load assemblies in
I have a situation where I need to work with a datagrid and adding

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.