How could I set a constraint on a table so that only one of the records has its isDefault bit field set to 1?
The constraint is not table scope, but one default per set of rows, specified by a FormID.
|
1
|
How could I set a constraint on a table so that only one of the records has its The constraint is not table scope, but one default per set of rows, specified by a FormID.
|
|||
|
|
|
|
Here's a modification of Damien_The_Unbeliever's solution that allows one default per FormID.
But the serious relational folks will tell you this information should just be in another table.
|
|||
|
|
|
|
From a normalization perspective, this would be an inefficient way of storing a single fact. I would opt to hold this information at a higher level, by storing (in a different table) a foreign key to the identifier of the row which is considered to be the default.
|
||||||||
|
|
|
You could do it through an instead of trigger, or if you want it as a constraint create a constraint that references a function that checks for a row that has the default set to 1 EDIT oops, needs to be <=
|
||
|
|
|
|
You could use an insert/update trigger. Within the trigger after an insert or update, if the count of rows with isDefault = 1 is more than 1, then rollback the transaction. |
||
|
|
|
|
I don't know about SQLServer.But if it supports Function-Based Indexes like in Oracle, I hope this can be translated, if not, sorry. You can do an index like this on suposed that default value is
This sentence create an unique index indexing |
||
|
|
|
|
This is a fairly complex process that cannot be handled through a simple constraint. We do this through a trigger. However before you write the trigger you need to be able to answer several things: do we want to fail the insert if a default exists, change it to 0 instead of 1 or change the existing default to 0 and leave this one as 1? what do we want to do if the default record is deleted and other non default records are still there? Do we make one the default, if so how do we determine which one? You will also need to be very, very careful to make the trigger handle multiple row processing. For instance a client might decide that all of the records of a particular type should be the default. You wouldn't change a million records one at a time, so this trigger needs to be able to handle that. It also needs to handle that without looping or the use of a cursor (you really don't want the type of transaction discussed above to take hours locking up the table the whole time). You also need a very extensive tesing scenario for this trigger before it goes live. You need to test: adding a record with no default and it is the first record for that customer adding a record with a default and it is the first record for that customer adding a record with no default and it is the not the first record for that customer adding a record with a default and it is the not the first record for that customer Updating a record to have the default when no other record has it (assuming you don't require one record to always be set as the deafault) Updating a record to remove the default Deleting the record with the deafult Deleting a record without the default Performing a mass insert with multiple situations in the data including two records which both have isdefault set to 1 and all of the situations tested when running individual record inserts Performing a mass update with multiple situations in the data including two records which both have isdefault set to 1 and all of the situations tested when running individual record updates Performing a mass delete with multiple situations in the data including two records which both have isdefault set to 1 and all of the situations tested when running individual record deletes |
||
|
|
|
|
You'll need to have the right ANSI settings turned on for this. |
||||||
|
|
|
@Andy Jones gave an answer above closest to mine, but bearing in mind the Rule of Three, I placed the logic directly in the stored proc that updates this table. This was my simple solution. If I need to update the table from elsewhere, I will move the logic to a trigger. The one default rule applies to each set of records specified by a FormID and a ConfigID:
|
||||
|