What is the Diff b/w Constraints and Trigeer
Answers were Sorted based on User's Feedback
Answer / saraswathi muthuraman
TO apply business rule we are using Constraints and trigger.
If we have any computation and validation over the
calculated value we have choose "trigger".
Direct validation like the column should not contain null
values then you can choose Constraints.
Constraints : NOT NULL,UNIQUE,PRIMARY KEY,CHECK,REFERENCE
Trigger effected only those row after which trigger applied
but constraint effected all row of table .
Is This Answer Correct ? | 24 Yes | 0 No |
Answer / mohanbabu
Constraints are used to limit the type of data that can go
into a table.
Constraints can be specified when a table is created or
after the table is created.
A trigger is a fragment of code that you tell Oracle to run
before or after table is modified.
Is This Answer Correct ? | 13 Yes | 3 No |
Answer / shekar
Triggers: It checks the condition and Performs some action
eg: it checks and fires before or after insert or update
or delete
Constriants: it checks the condition
eg: suppose NotNull constraint.It jst doesn't allow null
values.
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / manoranan sethy
Constraints are restrict the invalid data before invoke into the database whereas trigger restrict the invalid transaction.
Is This Answer Correct ? | 1 Yes | 0 No |
what is difference between procedure and function, procedure and trigger?
Explain 3 basic parts of a trigger.
mail-id table contains two columns(email_id,userid) it contains different types of mail-ids,and no of users. here username length is differ na,(ex- tamil@yahoo.com,joshua@hotmail.com like) now i want to fetch the email-ids only starting from '@' (ex-@gmail.com,@yahoo.com,@hotmail.com
Why left join is used in sql?
use of IN/ANY/ALL
How do you update sql?
what are the differences among these table level lock modes - IN SHARE MODE, IN SHARE UPDATE MODE, IN EXCLUSIVE MODE ?
How to read/write files from pl/sql?
what are the types of join and explain each? : Sql dba
Does a primary key have to be a number?
what is an execution plan? When would you use it? How would you view the execution plan? : Sql dba
Explain the difference between sql and mysql.