can you give me the syntax of named procedure??

Answers were Sorted based on User's Feedback



can you give me the syntax of named procedure??..

Answer / manoj

DECLARE
v_date DATE;
v_char VARCHAR2(10);
v_number NUMBER;
BEGIN
NULL;
END;

Is This Answer Correct ?    3 Yes 0 No

can you give me the syntax of named procedure??..

Answer / anuram

CREATE OR REPLACE PROCEDURE PROCEDURENAME{(PARAMETERSLIST)}
AUTHID|CURRENT_USER
IS/AS
DECLARATION OF VARIABLES;
BEGIN
STATEMENTS;
EXCEPTION
STATEMENTS;
END PROCEDURENAME;

Is This Answer Correct ?    2 Yes 0 No

Post New Answer

More DB Development Interview Questions

The count() function always returns a int value type what should you do if you need to count rows from a query which you know will return a value that is too large for an int value type?

0 Answers  


what is the use of foreginkey

2 Answers  


If a column is an image value type, how you can compare column values? How can you use this column in join clause?

0 Answers  


Write the fastest query to find out how many rows exist in a table?

0 Answers  


How do you implement one-to-one, one-to-many and many-to- many relationships while designing tables?

1 Answers   Flextronics, Hexaware, SQL Star,






Write the difference between case version and decode version.

2 Answers  


What are cursors? Explain different types of cursors?

6 Answers  


Explain about normal forms?

0 Answers  


I have a few records all are same structures data, I want to store data in multiple targets how

0 Answers   CTR, Infosys, Polaris,


I HAVE A PI ON COL A THE NEXT DAY I WANT CHANGE THE PI ON COL B? PLS SEND ME THE ANS

0 Answers   IBM,


What is an application role and explain a scenario when you would use one?

0 Answers  


What is database design and development?

0 Answers  


Categories