Guest_imported
New member
- Jan 1, 1970
- 0
Is there a command for executing all packages / functions?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
SELECT 'alter '||object_type||' '||object_name||' compile;'
FROM user_objects
WHERE object_type='PROCEDURE' or object_type='FUNCTION'
UNION
SELECT 'alter package '||object_name||' compile;'
FROM user_objects
WHERE object_type='PACKAGE BODY';