Is there a way in SQLPLUS to get information about certain package when it was created and all that. For example if there is a package name Pack_Employee.. how can I get date of creation, size etc
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Use the ALL_OBJECTS or USER_OBJECTS table that describes all objects accessible to the current user.
Oracle Reference Documentation
ALL_OBJECTS
select object_name, object_type, last_ddl_time, timestamp, status, created
from user_objects
where object_name IN (‘Pack_Employee’);