What are the blocks in stored procedure?
Answers were Sorted based on User's Feedback
Answer / swapnareddy
Declaration Block(optional)
Begin
Executable Block
exception Block(optional)
end;
| Is This Answer Correct ? | 15 Yes | 3 No |
Answer / manojbatra071
whenever we create stored procedure the syntax is:
CREATE OR REPLACE PROCEDURE proc_name
AS/IS
(declare variables inside this block)
BEGIN
perform whatever u want in stored procedure
EXCEPTION
(perform the steps if any errors occur than what to do )
END;
therefore the blocks are as/is , begin,exception and end
| Is This Answer Correct ? | 11 Yes | 2 No |
Answer / pronobesh
Actually there are 3 blocks
1) Declartion Block - Starts with AS right after CREATE
PROCEDURE <Proc Name>
2) Execution Block - Starts with BEGIN and ends with END
ahere the actual execution happen.
3) Exception Block - Where we catch the procedure error.
Hope this clarifies.
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / guest
Begin
--This section must contain atleast one executiable
statment.
Exception
end ;
| Is This Answer Correct ? | 3 Yes | 2 No |
Answer / sachin
create /alter proc nameof procedure
as/is
beging
statment
EXCEPTION
end
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / eshwer
Declaration block
Execution block
Exception block
| Is This Answer Correct ? | 0 Yes | 0 No |
What are the different dml commands in sql?
What is the purpose of primary key?
How many types of literals are available in pl sql?
Can sql developer connect to db2?
Are left and right joins the same?
Create a procedure to delete certain records from a table and display the total number of records deleted in this process. (Condition for deletion can be of ur choice, for instance delete all records where eid='')
What Is a Trigger? How Do You Use It?
what is bcp? When is it used?
how can you see all indexes defined for a table? : Sql dba
write a query to delete similar records in particular fields(columns) in different tables
How is data stored on a disk?
What is Difference between StoredProcedure and function?
Oracle (3259)
SQL Server (4518)
MS Access (429)
MySQL (1402)
Postgre (483)
Sybase (267)
DB Architecture (141)
DB Administration (291)
DB Development (113)
SQL PLSQL (3330)
MongoDB (502)
IBM Informix (50)
Neo4j (82)
InfluxDB (0)
Apache CouchDB (44)
Firebird (5)
Database Management (1411)
Databases AllOther (288)