what is the difference between trigger and storedprocedures

Answers were Sorted based on User's Feedback



what is the difference between trigger and storedprocedures..

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

what is the difference between trigger and storedprocedures..

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

what is the difference between trigger and storedprocedures..

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

what is the difference between trigger and storedprocedures..

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

what is the difference between trigger and storedprocedures..

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

what is the difference between trigger and storedprocedures..

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

Post New Answer

More SQL PLSQL Interview Questions

What are the types pl/sql code blocks?

0 Answers  


how to concatenate two character strings? : Sql dba

0 Answers  


what is meant by urlencode and urldocode? : Sql dba

0 Answers  


How to place comments in pl/sql?

0 Answers  


What is embedded sql with example?

0 Answers  






What version is sql?

0 Answers  


explain commit and rollback in mysql : sql dba

0 Answers  


Explain the usage of WHERE CURRENT OF clause in cursors ?

3 Answers  


What is orm in sql?

0 Answers  


My select statement is not working as expected, So, to overcome from such issues what are the steps needed to be taken care?

2 Answers   CG,


How do I upgrade sql?

0 Answers  


what happens when the column is set to auto increment and you reach the maximum value for that table? : Sql dba

0 Answers  


Categories