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

How many sql commands are there?

849


What is synchronized subquery?

822


How many joins in sql?

736


In what condition is it good to disable a trigger?

741


What is the difference between mdf and ndf files?

778






Is ms sql traffic encrypted?

681


What are sql indexes?

740


what is collation? : Sql dba

799


What is clause?

791


What is crud stand for?

746


What are the rules to be applied to nulls whilst doing comparisons?

983


Why truncate is used in sql?

720


what is the difference between char_length and length? : Sql dba

786


What is sp_helptext?

772


What are the most important characteristics of pl/sql?

782