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 low level language?
What do you understand by pl/sql cursors?
Is it possible to remove child records without removing master table records...the two having pk,fk relationship?
i have 2 table table one 4 columns respective values a1 7,a2 6,a3 8 ,a4 12 & table two 4 colums respective values a1 7,a2 6,a3 8,a4 15.if table one & table two 3 colums same then 4th column values 1)Qes diff >5 then print 5 * diff value 2)Que diff <5 print 5
What are the types of variable use in pl sql?
How do I save the results of sql query in a file?
What is dml statement?
Is inner join faster than left join?
How do you explain an index number?
What is #table in sql?
Which join is like inner join?
What is procedure explain with program?
What is a pdo connection?
how many triggers are allowed in mysql table? : Sql dba
how can we take a backup of a mysql table and how can we restore it. ? : Sql dba