Which is better in performance - CONSTRAINT or TRIGGER over
a column which restricts say an input of particular value
in a column of a table?
Answers were Sorted based on User's Feedback
Answer / jerry joseph
Restricting the input using CONSTRAINT will have better
performance but there is a limit to the types of constraints
which we can provide..
With TRIGGERS you have more flexibility and provide a more
variety restrictions to the input.. for example you can
prevent a normal delete and make it a soft delete by setting
an IsDeleted flag using trigger.. we cant have that kind of
flexibility using Constraints..
Is This Answer Correct ? | 6 Yes | 1 No |
Answer / monal
Constraints gets evaluated before statement can be either
inserted or deleted or updated. While trigger executes
after or at the same time statement is executing. So if you
have to roll back transactio because transaction not
meeting condition there is no overhead when you are using
constraint ,but if you have to roll back transaction and
you have a trigger on that table or column either 1
transaction goes through before rolling back. So basically
trigger consumes more resources.
Is This Answer Correct ? | 7 Yes | 3 No |
Answer / guest
Constraint is better in terms of performance for same
operation. Why??
Is This Answer Correct ? | 0 Yes | 3 No |
How to list all schemas in a database?
How to create logins using windows Authentication mode?
How we can compare two database data?
create index a on employee(dno) In this,which index was created?
how do u find least salary in a table
What is a mixed extent?
What is resource governor?
Where do you find the default Index fill factor and how to change it?
What are the differences between triggers and stored procedures?
What is xdr?
how we can count records as a group of days like sum of records for(four mondays),(four tuesday)........ in a month. group the column for weekdays.
What is Schema? and why we use schemas?