I heard that SQL Server is SELECT causing a lock .
So, I have an MVC application with EF and SQL Server 2008, and it shares the database with another application that very often writes some data. And the MVC application generates some real-time reports based on data coming from another application.
So, given that the scenario, is it possible that when creating a report it locks some tables in which another application will try to write data?
I tried to do some manual inserts and updates while creating the report, and it did a great job. Am I misunderstood something?
source
share