I Defined SP1, Sp2 (sp=StoreProcedures)In Package Specification but I Implemented Sp1, sp2, sp3, sp4, sp5
then What type of Error You will find????
Answer Posted / ashokram s
As Ramesh said
when creating the package body with procs that are not declared in specification, no error will be throwed. But when executing you cant execute the undeclared procs:
SQL> SET SERVEROUTPUT ON;
SQL> EXEC jan.sp1;
hello
PL/SQL procedure successfully completed.
SQL> EXEC jan.sp2;
how are you
PL/SQL procedure successfully completed.
SQL> EXEC jan.sp3;
BEGIN jan.sp3; END;
*
ERROR at line 1:
ORA-06550: line 1, column 11:
PLS-00302: component 'SP3' must be declared
ORA-06550: line 1, column 7:
PL/SQL: Statement ignored
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
what is an alias command? : Sql dba
What is number function in sql?
What is a sql instance vs database?
What is the difference between sql and mysql?
What is a constraint?
how to enter numeric values as hex numbers? : Sql dba
explain the delete statements in sql
what is dbms? : Sql dba
What is tuple in sql?
How do I partition a table in sql?
What are all the different types of indexes?
What is function and procedure in pl sql?
What is the difference between the implicit and explicit cursors?
What is sql table?
What are the types of views in sql?