dthibi
Member
In the Program Window, is there a way to only compile the Package Spec or Package Body?
For example if I have file mypackage.pck:
The Program Window splits it into 3 tabs Spec, Body, and "?". When I compile I get an error because of the "SHOW ERRORS" at the end. Can I make this work?
For example if I have file mypackage.pck:
SQL:
set DEFINE OFF
create or replace package PKG_TEST is
end PKG_TEST;
/
create or replace package body PKG_TEST is
begin
null;
end PKG_TEST;
/
SHOW ERRORS
The Program Window splits it into 3 tabs Spec, Body, and "?". When I compile I get an error because of the "SHOW ERRORS" at the end. Can I make this work?