I set the save point in toad for sql server like below
begin tran
clck1 save tran p1
delete from table_name where s_no>100;
Then i started running java program to take remaining data from table_name
and to do process. But java waiting for long time and no moment. When I rolledback from editor by
rollback tran p1
then java program is running. Can anyone tell what is problem with java or save point.