/ Published in: SQL
List all Package Names owned by me
Expand |
Embed | Plain Text
SELECT OBJECT_NAME AS PACKAGE_NAME FROM all_objects WHERE owner = USER AND object_type = 'PACKAGE' ORDER BY object_name ;
You need to login to post a comment.
