I would like to know to know how to read uncommitted data. I have an application which is saving an entry into table1 and then tries to read some entry from same table. I am unable to do that because the data gets locked between begin transaction and end transaction.
I read up on the net and I feel that by seting isolationlevel= ReadUnCommitted, I should be able to handle it. But It doesn't seem to work.
Please refer to my earlier post to get more details: StackOverflow post