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 / ramesh
Nothing Happend package body created with no errors.
Ex:
create or replace package jan
is
procedure sp1;
procedure sp2;
end;
PACKAGE CREATED
create or replace package body jan as
procedure sp1 as
begin
dbms_output.put_line('hello');
end;
procedure sp2 as
begin
dbms_output.put_line('how are you');
end;
procedure sp3 as
begin
dbms_output.put_line('ok');
end sp3;
procedure sp4 as
begin
dbms_output.put_line('ramesh');
end sp4;
end;
PACKAGE BODY CREATED
| Is This Answer Correct ? | 14 Yes | 2 No |
Post New Answer View All Answers
What is trigger explain with example?
How do we use distinct statement? What is its use?
Should I use mbr or gpt?
How do I remove all records from a table?
How to return multiple rows from the stored procedure?
How does left join work in sql?
What are the possible values that can be stored in a boolean data field?
How can we solve sql error: ora-00904: invalid identifier?
Can unique keys be null?
Is the primary key an index?
How do you modify a trigger?
Why do we use sql constraints? Which constraints we can use while creating database in sql?
Can we use distinct and group by together?
What is a temp table?
what is an execution plan? When would you use it? How would you view the execution plan? : Sql dba