摘要: 1 select * from session_privs;--查看当前用户的所有权限2 select * from tab where tabtype='TABLE';--查看当前用户下的所有表3 4 commit; --结束上一个事务 并且开始一个新的事务5 update student set sal = null where xh =1000;6 savepoint c111;7 insert into student(xh,name,sex) values (1004,'MIKE','男');8 rollback to c111; -- 阅读全文
posted @ 2012-08-03 11:32 vinsonLu 阅读(577) 评论(0) 推荐(0) 编辑