Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想通过 SQL 检索当前连接的应用程序句柄,但是我找不到这样做的方法。
有一个名为APPLICATION_ID的标量函数检索当前连接的 ID,但不检索句柄。
特殊寄存器也不检索。
我想在 SQL 中检索它以在存储过程中使用它。
您可以查询其中一个监视器视图,例如
select application_handle from sysibmadm.mon_connection_summary where application_id = application_id()
在 DB2 10.5 中,有一个专门用于此的函数: MON_GET_APPLICATION_HANDLE()
MON_GET_APPLICATION_HANDLE()