Hello all,
We are using Powerbuilder 2019 with SqlServer 2016 and we noticed that when connect to the database the application is always starting a new transaction (without any insert/delete or update)
if we execute the following select:
select open_transaction_count
from sys.dm_exec_sessions
it returns 1, which means there is a transaction open.
For us, when verifying opened transactions on the server might result on wrong number pending commits/rollbacks.
So, is this behavior correct?
Thanks and regards,