How to determine a PL/SQL function's schema from within the function - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T22:32:15Z http://stackoverflow.com/feeds/question/1034731 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1034731/how-to-determine-a-pl-sql-functions-schema-from-within-the-function 0 How to determine a PL/SQL function's schema from within the function jbourque 2009-06-23T19:41:05Z 2009-06-23T22:43:09Z <p>I have a PL/SQL package in an Oracle 10g database and I want to write a function that returns the name of the schema that the package (and hence the function) is defined in. Anyone know how to do this?</p> http://stackoverflow.com/questions/1034731/how-to-determine-a-pl-sql-functions-schema-from-within-the-function/1035188#1035188 0 Answer by darreljnz for How to determine a PL/SQL function's schema from within the function darreljnz 2009-06-23T20:59:59Z 2009-06-23T20:59:59Z <p>There is probably an easier way but you could use <code>dbms_utility.format_call_stack</code> and parse the results to get the schema name. This works in Oracle 9i.</p> http://stackoverflow.com/questions/1034731/how-to-determine-a-pl-sql-functions-schema-from-within-the-function/1035652#1035652 2 Answer by Gary for How to determine a PL/SQL function's schema from within the function Gary 2009-06-23T22:43:09Z 2009-06-23T22:43:09Z <pre><code>create function xcurr return varchar2 is v_curr varchar2(32); begin SELECT SYS_CONTEXT ('USERENV', 'CURRENT_USER') into v_curr from dual; return v_curr; end; </code></pre> <p>This will work as long as the PL/SQL object doesn't have AUTHID CURRENT_USER.</p>