I execute follow procedure:

-----------------------------------------------------------
 create procedure test_transation_rollback()
 begin
   start transaction;
   create table t_34d (c1 int,c2 char(30));
   rollback;
 end
------------------------------------------------------------

After execute this procedure,i find the table "t_34d" in my schema.Why?

Reply via email to