DBMS_UTILITY
- 提供各种实用程序子程序。
函数名 | 参数类型 | 结果类型 | 描述 |
format_call_stack | null | text | 格式化当前调用堆栈 |
do language plpgsql $$
declare
V_ALERTNAME VARCHAR2(30) := 'alert1';
BEGIN
DBMS_ALERT.SIGNAL('alert1', 'hello, this is sending process!');
RAISE NOTICE '%',dbms_utility.format_call_stack();
end;
$$;
atlasdb$# $$;
NOTICE: ----- PL/pgSQL Call Stack -----
object line object
handle number name
0 6 function anonymous object