Hi...Can anyone help me with my question....
Ok... I have a SQL tranaction say T1 with default Isolation level.....
In that Transaction T1 ... I have say 5 insert statements inserting thousands of records into say tables TBL_1,TBL_2,TBL _3,TBL_4,TBL_5.
I have a seperate C# web page (method which has it's own transaction)... which tries to insert records into say TBL_3 when the
transaction T1 is running....
My problem is that the inserts from the C# Web Page are blocked until the transaction T1 is committed....
Is there any way.. I can do both inserts without one blocking the other by changing the Isolation level of the transaction....
Obviously... I do not want inserted records to be selectable until the Transaction is committed....
Regards,
Ok... I have a SQL tranaction say T1 with default Isolation level.....
In that Transaction T1 ... I have say 5 insert statements inserting thousands of records into say tables TBL_1,TBL_2,TBL _3,TBL_4,TBL_5.
I have a seperate C# web page (method which has it's own transaction)... which tries to insert records into say TBL_3 when the
transaction T1 is running....
My problem is that the inserts from the C# Web Page are blocked until the transaction T1 is committed....
Is there any way.. I can do both inserts without one blocking the other by changing the Isolation level of the transaction....
Obviously... I do not want inserted records to be selectable until the Transaction is committed....
Regards,
Comment