In table A I have 2 columns:

ID (int, PK)
MaxUsers (int)

In table B I have 2 columns:

ItemID (int)
UserID (int)

The number of records in table A with matching ItemID's cannot exceed the MaxUsers value.

Is it possible to write a T-SQL Table Constraint so that it's not physically possible for this to ever happen?

Cheers! Curt

link|improve this question

What is it that you're trying to solve here? A company that exceeds the number of users it has licenses for or something? – Lasse V. Karlsen Sep 21 '10 at 11:31
what would you do then if someone updated the MaxUsers number to a lower limit? Which records in table B would you remove? – Peter Perháč Sep 21 '10 at 11:35
@Lasse - It's something similar to this yes, thanks. – Curt Sep 21 '10 at 11:51
@Peter - If the MaxUsers value was lowered this would break the constraint, and therefore throw up an exception. – Curt Sep 21 '10 at 11:51
feedback

2 Answers

up vote 3 down vote accepted

You could write an on-insert/update trigger that does a rollback of the query when the conditions are no longer met.

link|improve this answer
this sound very good. You'll need both INSERT trigger on table B and UPDATE trigger on table A – Peter Perháč Sep 21 '10 at 11:35
feedback

You can do this with 'vanilla' constraints e.g. row-level CHECK constraints, UNIQUE constraints, FOREIGN KEYS, making it highly portable e.g.

CREATE TABLE TableA 
(
 ID INTEGER NOT NULL PRIMARY KEY,
 MaxUsers INTEGER NOT NULL CHECK (MaxUsers > 0), 
 UNIQUE (ID, MaxUsers)
);

CREATE TABLE TableB
(
 ID INTEGER NOT NULL,
 MaxUsers INTEGER NOT NULL, 
 FOREIGN KEY (ID, MaxUsers) 
    REFERENCES TableA (ID, MaxUsers), 
 ID_occurrence INTEGER NOT NULL, 
 CHECK (ID_occurrence BETWEEN 1 AND MaxUsers), 
 UNIQUE (ID, ID_occurrence)
);

To maintain the ID_occurrence sequence, you could create a 'helper' stored proc or a trigger.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.