I have a process in which I do some updations to different tables and these uncommitted tables have to be read again for some other updations. My problem is that each time I use a "Select" I get the previous comitted data instead of the uncomitted data which I need.
I Understand one option is to do a Uncomitted Read on the table. Do I have any other alternative to this problem.
Please assist