HELP...
Sure it's something very simple I'm not doing but begin transaction command not working:
begin transaction
insert into tmc_counter values ('','',11)
delete from tmc_counter1
where counter_num = 11
commit transaction
it performs the insert then gives an error for delete because of the misspelled tablename. I thought the whole point of Begin/Commit statement was to all succeed or all fail. Why is it not failing the insert statement as well?
Please help the newbie...thanks
Sure it's something very simple I'm not doing but begin transaction command not working:
begin transaction
insert into tmc_counter values ('','',11)
delete from tmc_counter1
where counter_num = 11
commit transaction
it performs the insert then gives an error for delete because of the misspelled tablename. I thought the whole point of Begin/Commit statement was to all succeed or all fail. Why is it not failing the insert statement as well?
Please help the newbie...thanks