What type of JDBC connections are reported as NoTxBusy in JDBC Pool Statistics?
Applications can obtain non-transactional connections from the BES JDBC Connection pool, that is each connection is obtained outside the scope of a global transaction. As such these connections appear with a state of NoTxBusy in JDBC Pool Statistics for as long as the application has a handle to them. It is the responsibility of the application to eventually release these connections back to the Connection pool, through a close() operation. Unlike transactional connections, non-transactional connections are not subject to busyTimeout or idleTimeout timeouts and are therefore not automatically discarded or returned to the pool.