How to determine a PL/SQL function's schema from within the function - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T22:32:15Zhttp://stackoverflow.com/feeds/question/1034731http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1034731/how-to-determine-a-pl-sql-functions-schema-from-within-the-function0How to determine a PL/SQL function's schema from within the functionjbourque2009-06-23T19:41:05Z2009-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#10351880Answer by darreljnz for How to determine a PL/SQL function's schema from within the functiondarreljnz2009-06-23T20:59:59Z2009-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#10356522Answer by Gary for How to determine a PL/SQL function's schema from within the functionGary2009-06-23T22:43:09Z2009-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>