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

Popular posts from this blog

php - How to pass multiple values from url -

xslt - DocBook 5 to PDF transform failing with error: "fo:flow" is missing child elements. Required content model: marker* -

database - php search bar when I press submit with nothing in the search bar it shows all the data -