what is the difference between stored procedure and packaged
procedure



what is the difference between stored procedure and packaged procedure..

Answer / sanjeev verma

A Storeprocedure is a Set of transactionl SQL statements
which will do some operation. Storedprocedure is
precomplied . When we use sp's in our application it will
reduce network traffic because we need to just call the sp
from our appliaction by using the name of the sp and the
parameters, and no need of writing queries in the code.

A package is a collection of storedprocedures. A package
should have a declaration part and a body part. The
declaration part is used to declarte the stored procedures
and the body part is used to implement the storedprocedures.

Is This Answer Correct ?    9 Yes 4 No

Post New Answer

More SQL PLSQL Interview Questions

What is the plv (pl/vision) package offers?

0 Answers  


What happens if a procedure that updates a column of table X is called in a database trigger of the same table ?

1 Answers  


How do you modify a table in sql?

0 Answers  


What is using in sql?

0 Answers  


what is data integrity

3 Answers   Fidelity, TCS,






How delete all records from table in sql?

0 Answers  


how do you control the max size of a heap table? : Sql dba

0 Answers  


explain what is mysql? : Sql dba

0 Answers  


How do I start sql profiler?

0 Answers  


What are the types of variables use in pl sql?

0 Answers  


Is foreign key mandatory?

0 Answers  


Is sql pronounced sequel or sql?

0 Answers  


Categories