Check the status for all stored procedures is by using the Oracle data dictionary view USER_OBJECTS : user_objects « System Tables Data Dictionary « Oracle PL/SQL Tutorial
30. 90. 4. Check the status for all stored procedures is by using the Oracle data dictionary view USER_OBJECTS
select object_type, object_name, status from user_objects where object_type in ('FUNCTION','PROCEDURE','PACKAGE','PACKAGE BODY','TRIGGER')
order by object_type,object_name;