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
Is sql a scripting language?
What is view? Can we update view
How to read xml file in oracle pl sql?
What are % type and % rowtype?
What are hotfixes and patches?
How can you load microsoft excel data into oracle? : aql loader
How do temporal tables work?
What is database sql?
what is the use of set statement in tsql? : Transact sql
What does rownum mean in sql?
Why do we use joins in sql?
List and explain the different types of join clauses supported in ansi-standard sql?
Can we delete column in sql?
How do I audit the sql sent to the server?
How can I tell if sql is running?