What is the different between Stored Procedure and Procedure?
Answer Posted / sachin fulari
In Layman tounge -
---------------
Whenever any named block in PL/SQL is created using CREATE
OR REPLACE clause, and as we compile it will get stored in
database, henceforth other code snippets can call/use this
block which ulimately resides in database after creation
i.e. "stored in database". And thus will move along
database if ever we move the database.
In oracle way -
---------------
A stored procedure is created and stored in the database as
a schema object. Once created and compiled, it is a named
object that can be run without recompiling. Additionally,
dependency information is stored in the data dictionary to
guarantee the validity of each stored procedure.
| Is This Answer Correct ? | 15 Yes | 1 No |
Post New Answer View All Answers
What is difference between sql and mysql?
Can we create view in stored procedure?
Explain the insert into statements in sql?
What is integrity in sql?
what are sequences
What are different types of triggers?
What is example of database?
How can we debug in PL/SQL?
How do I add a primary key to a table?
Why trigger is used in sql?
How do I view a sql trace file?
Is pl sql different from sql?
What is a Mapplet?
Can we use having without group by in sql?
Can a table contain multiple foreign key’s?