What are the two parts of a procedure ?
Answers were Sorted based on User's Feedback
Answer / chakri
Syntax of procedure :
CREATE OR REPLACE PROCEDURE proce_name (Arg list)
IS
LOCAL VARIBLE DECLARATION
BEGIN
----------
----------
---------
END;
In the about syntax
Up to IS key word called as Procedure Header and
Remaining Part is called as Procedure Body.
Is This Answer Correct ? | 5 Yes | 0 No |
Answer / kirankumar.vangeti
create or replace procedure procedure_name as
Declare
/* Declarative section: variables, types, and local sub
programs */
Begin
/* Executable section: Procedural and sql statements go
here */
Exception
/* exception handling section: error handling statements go
here */
End;
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / a.jyothsna
Procedure specification: create or replace procedure proc-nm
(agumentlist)
procedure body: is-------------end
Is This Answer Correct ? | 2 Yes | 5 No |
How can you load multi line records? : aql loader
What is the result, when NULL is compared with NULL?
what is bdb (berkeleydb)? : Sql dba
How to order siblings in oracle hierarchy queries?
what is try_catch block in procedure
define different types of trigger. : Sql dba
What are the advantages of indexing?
What is %s in sql?
Why do we use %rowtype & %type in plsql?
What are the blocks in stored procedure?
Are views faster than queries?
How many triggers can be applied to a table?