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.
假设一个 oracle 服务正在远程机器上运行,我们想要找到使用它的用户数量,以及该服务的内存状态。如何使用 java 做到这一点。
不要认为有本地 Java API,但您始终可以通过 JDBC 连接并从 V$ 视图中获取信息。V$SESSION 可能是您需要查看连接的一个,对于内存来说它有点复杂 - 查看 V$PROCESS、V$PROCESS_MEMORY、V$SGA、V$SGAINFO、V$SGASTAT 的文档。