Thursday, January 28, 2010

How DDL works

How DDL works

DDL is executed logically like this:
begin
COMMIT;
do the ddl;
COMMIT;
exception
when others then
ROLLBACK;
RAISE;
end;

No comments: