How can one view all the procedures,functions,triggers and packages created by the user

Showing Answers 1 - 6 of 6 Answers

Niti

  • May 3rd, 2006
 

Use the query Select object_name,object_type from all_objects where owner = 'username';

  Was this answer useful?  Yes

Kala

  • May 4th, 2006
 

Use the below query

select object_name, object_type from user_objects

where object_type in ('PACKAGE','PROCEDURE','FUNCTION','TRIGGER')

Sphurti

  • Aug 14th, 2006
 

Basically, here USER_OBJECTS will have all the objects which are created/own by a particular user whereas ALL_OBJECTS will have information of the objects for which a user has access, it may or may not be created by that user.

  Was this answer useful?  Yes

g_sidhu

  • Feb 1st, 2008
 

SELECT object_name, object_type

FROM user_objects

WHERE object_type in ('PROCEDURE','FUNCTION')

ORDER BY object_name;

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions