Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


What is the different between Stored Procedure and Procedure?

Answers were Sorted based on User's Feedback



What is the different between Stored Procedure and Procedure?..

Answer / 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

What is the different between Stored Procedure and Procedure?..

Answer / k.deepthi

Yes,Store Procedure/Procedure are one and the same.We have
to Create Procedure and Compile it in Data base,once
compiled it will be stored and we can use the same when
ever required in various other Procedures.

Procedure Usually used to perform set of actions based on
conditions.

Is This Answer Correct ?    5 Yes 2 No

What is the different between Stored Procedure and Procedure?..

Answer / roshan kumar

Procedure-

A procedure is a specified series of actions,acts or operations which have to be executed in the same mannner in order to always obtain the same result under the same circumstances.

Stored Procedure-

A stored procedure is a subroutine available to applicATIONS accessing a Relational database system.stored procedures(sometimes called as proc,sproc or sp) are actually stored in database dictionary.

Is This Answer Correct ?    0 Yes 0 No

What is the different between Stored Procedure and Procedure?..

Answer / v.v.s.vamshi krishna

In Procedures we give the functions and parameters to be
used instantly. this scenario goes similar to that of
instant food. This happens when the complexity is less. But
as far as the stored procedures are concerned they provide
much reusability and can complexity can be handled with
much ease.

Is This Answer Correct ?    2 Yes 3 No

What is the different between Stored Procedure and Procedure?..

Answer / abhishek

Stored procedure is a subprogram in oracle and procedure is an anoyomous block. Stored procedure can be caled by exec at any time wen the user require it for execution..Procedure are created for temporary execution and they are not stored

Is This Answer Correct ?    0 Yes 1 No

What is the different between Stored Procedure and Procedure?..

Answer / pramod janjirala

Two are same.Once the procedure is created and compiled ,it
is stored in database permanently.That's why it is called as
stored procedure.

Is This Answer Correct ?    6 Yes 8 No

What is the different between Stored Procedure and Procedure?..

Answer / rasmita basantia

if we are writing a procedure with create or replace
syntax ,then its a procedure.if its compiled and stored in
the data base then its called stored procedure.

Is This Answer Correct ?    1 Yes 5 No

Post New Answer

More SQL PLSQL Interview Questions

What are the datatypes available in pl/sql ?

0 Answers  


What is insert command in sql?

0 Answers  


how to insert the data through views? The view is depending upon more than two tables? how to update materalized views?

3 Answers   3i Infotech,


What are sql functions? Describe in brief different types of sql functions?

0 Answers  


i don't want the message as 14 rows updated just it should update what it will do

4 Answers  


What is a CTE (Common Table Expression), and how is it different from a subquery?

3 Answers  


how to Update table Sales_summary with max(sales) data from table sales_dataTable 1. sales_data table Table 2. Sales_summary Region sales Region sales N 500 N 0 N 800 W 0 N 600 W 899 W 458 W 900 I want the Sales_summary After Update like this Region Sales N 800 W 900

8 Answers  


what is user defined functions? : Sql dba

0 Answers  


What are tuples in sql?

0 Answers  


Explain correlated query work?

0 Answers  


HP Interview -2016 Unix 1) grep command in unix 2) what is set command

1 Answers   HCL,


Is there any restriction on the use of union in embedded sql?

0 Answers  


Categories