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 pl/sql table? Why it is used?
what is data manipulation language? : Sql dba
List the various privileges that a user can grant to another user?
What are the uses of sysdate and user keywords?
Is ms sql is free?
Do stored procedures prevent sql injection?
What is lookup table in sql?
What is the difference between truncate and drop statements?
How to write a query to show the details of a student from students table whose
What is an invalid partition table?
What is cascade in sql?
How do you update a sql procedure?
How do I truncate a word?
how does a local variable is defined using t-sql? : Transact sql
How do I run sql profiler?