全部博文(136)
分类: Oracle
2008-06-08 08:19:25
-- session 1
SQL> set transaction read only;
事务处理集。
SQL> select * from test1;
A B
-------------------- ---------- test1 99 test1 1010 test1 1111 test1 1212 test1 1313 tianyc 6666 已选择6行。 |
-- session 2
SQL> insert into test1 values('new', 9999);
已创建 1 行。
SQL> commit;
提交完成。
SQL> select * from test1;
A B
-------------------- ---------- test1 99 test1 1010 test1 1111 test1 1212 test1 1313 tianyc 6666 new 9999 已选择7行。 |
-- session 1
SQL> set transaction read only;
事务处理集。
SQL> select * from test1;
A B
-------------------- ---------- test1 99 test1 1010 test1 1111 test1 1212 test1 1313 tianyc 6666 已选择6行。 |