VastbaseE100

基于开源技术的HTAP数据库管理系统。性能优异,稳定可靠,提供诸多专属领域特性。

Menu

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