"DP" <di****@postmark.net> wrote in message
news:57**************************@posting.google.c om...
Is there any command exists as "commit transaction" ?
begin transaction
< DML1 stmts >
begin transaction
< DML2 stmts >
rollback transaction
commit transaction
which set of DML will be commites to the database or none ?
Transactions start or end with commit or rollback. eg
commit;
dml;
dml;
dml;
commit;
or
commit;
dml;
dml;
....
rollback;
AFAIK in Oracle anything after the commit is ignored as a label. eg commit
mytrans;
Jim