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


Please Help Members By Posting Answers For Below Questions

Can we join same table in sql?

516


How to run pl/sql statements in sql*plus?

582


How does a trigger work?

529


what is union, minus and interact commands? : Sql dba

648


What is the purpose of normalization?

529






Write a sql select query that only returns each name only once from a table?

555


What is sql rowcount?

548


What is use of term?

614


Can you have a foreign key without a primary key?

505


What is inner join in sql?

578


Does view store data in sql?

525


How do you optimize a stored procedure in sql?

494


What is varchar used for?

527


Why indexing is needed?

509


How do I access sql anywhere database?

489