Page 1 of 1

Microsoft SQL Server and Transaction

PostPosted: Mon Aug 28, 2017 10:16 pm
by marco.rossi
Hi all,

some years ago, there was danger in using the command databaseManager.startTransaction() on a SQLServer database:
if one person killed a servoy session while a transaction was open, the entire servoy server freeze and no one could work.

Can anyone tell me if this kind of issue is already fixed?

Best regards and thank you for your time.

Marco

Re: Microsoft SQL Server and Transaction

PostPosted: Wed Aug 30, 2017 8:54 am
by murmi
Hi Marco
We had similar Problems with Transactions on a 2008/R2 Server. We issued
ALTER DATABASE DBName SET READ_COMMITTED_SNAPSHOT ON
ALTER DATABASE DBName SET ALLOW_SNAPSHOT_ISOLATION ON
on each Database and got rid of the problem. Everything works smooth since then.
Maybe it helps on your problem as well.

Fritz

Re: Microsoft SQL Server and Transaction

PostPosted: Wed Aug 30, 2017 11:41 am
by marco.rossi
Hi Fritz,

we will try to adopt your solution.
Thanks for your answer and for your time.

Best regards

Marco Rossi