what is the difference between trigger and storedprocedures
Answers were Sorted based on User's Feedback
Answer / bhanu verma
Actually triger in action which is performed automatically
before or after a event occur and stored procedure is a
procedure which is executed when the it is called.
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / monika nargotra
triggers can't accept parameters from users whereas stored
procedures can accept parameters from users.
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / srikanth
Trigger will fire when the condition arises but the stored
procedure will execute when the user or main programme
wants its need.
triggers can't accept parameters from users whereas stored
procedures can accept parameters from users.
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / nandkumar
There are bascis 3 difference between them
1> trigger invokes implicitly while we need to invoke
procedure explicitly.
2> We cant pass values from user to trigger but we can pass
values into procedure.
3> Trigger cant return value procedure can return value.
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / sharma.dharmpal
One more difference is that Trigger is compiled code where
as stroed procedure is not.
Is This Answer Correct ? | 4 Yes | 16 No |
Answer / sam katwal
Both are Same
Triggers are special Stored Producedures which are created
by User whereas Stored Procedures are created by the System.
Is This Answer Correct ? | 2 Yes | 20 No |
What are the types pl/sql code blocks?
how to concatenate two character strings? : Sql dba
what is meant by urlencode and urldocode? : Sql dba
How to place comments in pl/sql?
What is embedded sql with example?
What version is sql?
explain commit and rollback in mysql : sql dba
Explain the usage of WHERE CURRENT OF clause in cursors ?
What is orm in sql?
My select statement is not working as expected, So, to overcome from such issues what are the steps needed to be taken care?
How do I upgrade sql?
what happens when the column is set to auto increment and you reach the maximum value for that table? : Sql dba