| Compile a package/package body |
Packages:
-- compile only the body of the package
alter package {owner.package} compile body;
-- compile both the package and the body
alter package {owner.package} compile package;
alter package {owner.package} compile;
|