I’m using Entity Framework and Sql Server 2012. I have to remove in one Transaction
a lot of items from database about 200 GB. I’m deleting the data now directly this is very fast!
The problem if the deleting process is failed the database will be defected that why I’m thinking to use Transactionscope
. When the process failed I will Rollback
the database.
Is Transactionscope
good to handle a lot of data or we have to make some consideration about the performance. Anyone have some benchmark data or experience with this problem?
Any help would be greatly appreciated