What are the two parts of a procedure ?
Answer Posted / 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 |
Post New Answer View All Answers
Why join is faster than subquery?
Explain raise_application_error.
What are the sql commands?
What does cursor do in sql?
Can we call dml statement in function?
Can you rollback after commit?
Why do we use sql constraints?
Can we call procedure in select statement?
Mention what problem one might face while writing log information to a data-base table in pl/sql?
What is a recursive join sql?
How do I enable sql encryption?
What is substitution variable?
What is coalesce sql?
what are the different type of normalization? : Sql dba
What is sql procedures and functions?