I have a large legacy database in which DTC is disabled and I need to enable it to use Transaction Isolation Level "READ UNCOMMITTED", but I'm afraid of the side effects of enabling it.
This is needed for a specific query and won't be used anywhere else.
Does anyone know if this could bring us any problems on the existing legacy systems?
Details:
I'm trying to use TransactionScope in my .NET application with isolation level "READ UNCOMMITTED" in order to not lock my query. This query searches a register that is locked in the database by a transaction of another application.
Maybe there is a way to get it working without changing the configuration of DTC. Any help will be appreciated!