up vote 10 down vote favorite
3
share [g+] share [fb]

Can PL/SQL procedure in Oracle know it's own name?

Let me explain:

CREATE OR REPLACE procedure some_procedure is
    v_procedure_name varchar2(32);
begin
    v_procedure_name := %%something%%;
end;

After %%something%% executes, variable v_procedure_name should contain 'SOME_PROCEDURE'. It is also OK if it contains object_id of that procedure, so I can look up name in all_objects.

link|improve this question
feedback

2 Answers

up vote 10 down vote accepted

Try:

v_procedure_name := $$PLSQL_UNIT;

There's also $$PLSQL_LINE if you want to know which line number you are on.

link|improve this answer
1  
Only returns the procedure name for stand alone procedures and functions, if called from a packaged procedure it returns the package name. – pablo Nov 13 '08 at 9:30
Indeed. Slightly irritating. – cagcowboy Nov 13 '08 at 9:50
feedback

If you are pre-10g, you can 'dig' (parse) it out of dbms_utility.format_call_stack Procedures/functions in packages can be overloaded (and nested), so the package name/line number is normally better than the name.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.