Question : Is there a user_packages table synonymous to the user_tables table?

Is there a user_packages table synonymous to the user_tables table?

I want to create a query of all the packages available to the user from command prompt.

Thanks

Answer : Is there a user_packages table synonymous to the user_tables table?

>>all the packages available

Use ALL_ views not the USER_ views

select distinct name,type from all_source where type in ('PROCEDURE','PACKAGE')
/
Random Solutions  
 
programming4us programming4us