Whatever topic has been discussed on this blog is my own finding and views, not necessary match with others. I strongly recommend you to do a test before you implement the piece of advice given at my blog.
Tuesday, March 19, 2013
Package
create or replace package exc as
some_exc exception;
pragma exception_init(some_exc, -20005);
procedure raise_exc;
end exc;
/
create or replace package body exc as
procedure raise_exc is begin
raise some_exc;
end raise_exc;
end exc;
/
No comments:
Post a Comment