Is there a way to query the AUTHID property setting for a list of Oracle Stored Packages? -
Is there a way to query the AUTHID property setting for a list of Oracle Stored Packages? -
does 1 know of easy way (short of parsing top of each bundle definition) see authid property settings list of oracle packages?
you can query [dba|all|user]_procedures. specifically, authid column
sql> ed wrote file afiedt.buf 1 create or replace bundle authid_pkg 2 authid current_user 3 4 procedure foo; 5 procedure bar; 6* end; 7 / bundle created. sql> select owner, object_name, procedure_name, authid 2 all_procedures 3 object_name = 'authid_pkg'; owner object_name ------------------------------ ------------------------------ procedure_name authid ------------------------------ ------------ scott authid_pkg foo current_user scott authid_pkg bar current_user scott authid_pkg current_user oracle authid
Comments
Post a Comment