Best option would be to refactor those applications.
Natural mode for FB/IB would be to have two parallel transactions.
#1 would be read-only read-commited, never-closing, it would be only used for reading data.
#2 would be opened/commited with short bursts to actually apply changes. Any data "in editing" would not be opening transaction per se.
Long-living editing transaction are affecting database by blocking garbage collection and forcing it (and indices) to contain lot of bogus data.
I dunno if you can do this via IBX + IBQuery + some kind of custom update quieries like TUpdateSQL was in bDE times. 3rd-party FB connection libs usually have some support for bi-transactional mode.
In modern Firebird you can forcibly drop transactions, if you have database admin/owner role. Read about Monitoring tables. Note that there were bugs in 2.5.1 so you'd probably wait for 2.5.2 release.
However if you'd forcibly rollback those transaction - how would applications behave ? the user would still be editing just to suddenly discover most of his changes were lost.
PS. http://www.sql.ru/forum/actualthread.aspx?tid=910920 this code uses mon$transactions to map transaction to connection and then forcibly disconnects offending application. If direct delete from mon$transactions where... would not be available, then that would be the option left.
WHERE BLK <> 0) – Mark Rotteveel Oct 9 '12 at 14:17