How to find all open/active connections in DB2 (8.x)

后端 未结 4 1719
深忆病人
深忆病人 2020-12-17 20:02

I\'m currently working with Db2 Enterprise Server V 8.2 with FixPak 10

And I want to retrieve list of all the open active connections with an instance.

In O

4条回答
  •  谎友^
    谎友^ (楼主)
    2020-12-17 20:43

    CLP:

    db2 list applications
    

    QUERY:

    SELECT * FROM SYSIBM.APPLICATIONS
    SELECT * FROM SYSIBM.SESSION
    

提交回复
热议问题