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 are sql functions? Describe the different types of sql functions?
What are inner and outer joins examples of both?
How does pl sql work?
Mention what plvcmt and plvrb does in pl/sql?
Explain aggregate functions are available there in sql?
Compare sql & pl/sql
Can sql developer connect to db2?
What is difference between left and right outer join?
ERROR:Insert or update on table"accnt" violates foreign key constraints "acct_to_curr_symbol" DETAILS:KEY(accnt_curr_id)(-2)is not present in the table "curr_symbol" ......solve The Problem..
Enlist the characteristics of pl/sql?
what is 'mysqlimport'? : Sql dba
How would you pass hints to the sql processor?
Define select, insert, create, delete, update, drop keywords
How can you select unique records from a table?
What are all the common sql functions?