hi
I am having a issue
i have to insert Table A and Update Table B with say ID=3
If there is any error then i have to rollback all transaction
and insert into Table C as Rollback transaction for Id=3
insert into TableA
Select 3,'hi'
Update TableB set values='hi' where Id=3
if the above fails then ONLY i need to insert a Value in Table C i dont want to insert every record in TableC other than Failure only failure is recorded, only if i am going to Rollbcak Tran then only i need to Insert value in TableC
Thanks
Parthi