I am new to using PL/SQL and I am trying to create a new stored procedure in an existing package. I realize that there is "CREATE OR REPLACE PACKAGE BODY," but does this mean that the entire body will be deleted once I add my new proc, or will it just append it on? (My proc name does not have the same name as any of the current procs).
Share
Unfortunately, to add a new procudure or function to an existing package, you must modify the original package and resubmit as a create or replace.
there is no method currently for adding to or removing from a package without modifying and resubmitting the whole package code.
http://forums.oracle.com/forums/thread.jspa?threadID=380898