SQL Server 2000 - Before Commiting the transaction.
Hi All,
I am using CF7 along with SQL Server 2000.
And I am in a situation where I need to update some set of data to make sure that the changes are getting reflected in the front end.
My approach is like, trying some update statements inside "Begin Tran" block.
It goes like this,
begin tran
update table1 set field1='value' where cond='condition';
And I am just refreshing my application (in the browser). But unusually it takes a bit time to load, and no records are being pulled out after that..
My question is, do I need to perform a "Commit" to avoid this hanging kinda behaviour?.
Any ideas?.
