1. 程式人生 > >Oracle下查詢儲存過程和包的語句

Oracle下查詢儲存過程和包的語句

查詢某些包:

select * From all_objects where object_type = 'PACKAGE' and object_name like '%DRB%'

查詢某些儲存過程:

select * From all_objects where object_type = 'PROCEDURE' and object_name like '%DRB%'