what are stored procedures?

Answer Posted / rocky-455

1. Store procedure may or may not return a value. If we want to return a value then we need to pass the parameters like INPUT & OUTPUT parameters
2. It can allowed SELECT/INSERT/UPDATE/DELETE Statements. It can be change state of table.
3. It can call Functions, Views, and Procedures inside procedures.

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How to create tables for odbc connection testing?

479


> CREATE OR REPLACE FUNCTION FACTORIAL_1(factstr varchar2 ) 2 RETURN NUMBER AS 3 new_str VARCHAR2(4000) := factstr||'*' ; 4 fact number := 1 ; 5 BEGIN 6 7 WHILE new_str IS NOT NULL 8 LOOP 9 fact := fact * TO_NUMBER(SUBSTR(new_str,1,INSTR(new_str,'*')-1)); 10 new_str := substr( new_str,INSTR(new_str,'*')+1); 11 END LOOP; 12 13 RETURN fact; 14 15 END; explanation Above program?

1552


How to handle a single quote in oracle sql?

581


Explain the use of record length option in exp command.

541


From the following identify the non schema object: packages, triggers, public synonyms, tables and indexes.

575






normally database take to refresh time 2 hours. but client asked iwant to refresh with in 5 min that same database. do you have any option in BO and Oracle? explain me briefly...kavi

1728


interview questions with answer for cts

2070


what is the difference between functional dependecy and multilevel dependency?

1979


What are the arithmetic operations?

569


What is Data Dictionary Cache in Oracle?

645


Explain cascading triggers.

562


why dont we assign not null constraint as table level constraint.

2239


What are the differences between lov and list item?

546


How do we get field detail of a table?

611


What is a nested table and how is it different from a normal table?

562