列出 Apache Derby 活动连接
是否可以查询 Apache Derby 以获取当前连接/活动会话的列表? 有系统表等吗?
Is it possible to query Apache Derby for a list of current connections/active sessions?
Any system tables etc?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
SYSCS_DIAG 表将让您获得活动事务的列表,但这与连接或会话的列表不同。
通过使用 JMX bean 访问网络服务器,您可以在某种程度上接近您想要的结果。这里有一些文档: http://wiki.apache.org/db-derby/DerbyJMXQuickStart
如果当前的 JMX beans 不能提供您需要的一切,您可以增强它们以提供更多信息。
The SYSCS_DIAG tables will let you get a list of the active transactions, but that's not the same as the list of connections or sessions.
You can get somewhat close to what you want by using the JMX beans to access the Network Server. There's some docs here: http://wiki.apache.org/db-derby/DerbyJMXQuickStart
If the current JMX beans don't give you everything you need, you can enhance them to provide more information.