共计 1614 个字符,预计需要花费 5 分钟才能阅读完成。
这篇文章主要介绍“oracle 产生事务的方法有哪些”,在日常操作中,相信很多人在 oracle 产生事务的方法有哪些问题上存在疑惑,丸趣 TV 小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”oracle 产生事务的方法有哪些”的疑惑有所帮助!接下来,请跟着丸趣 TV 小编一起来学习吧!
产生事务的几种方法
dml 未提交产生事务
select for update 产生事务
set transaction 产生事务
dbms_transaction 产生事务
示例代码
dml 未提交事务
SQL create table t_tran(a int);
Table created.
SQL insert into t_tran select 1 from dual;
1 row created.
SQL col sql_text for a50
SQL set linesize 300
SID TADDR SQL_ID PREV_SQL_ID SQL_TEXT
---------- ---------------- ------------- ------------- --------------------------------------------------
50 0000000084201938 2un55p68csz4r insert into t_tran select 1 from dual
select for update 产生事务
SQL select * from t_tran for update;
A
----------
1
SQL /
SID TADDR SQL_ID PREV_SQL_ID SQL_TEXT
---------- ---------------- ------------- ------------- --------------------------------------------------
50 0000000084201938 gmd5z3754t8km select * from t_tran for update
set transaction 产生事务
SQL set transaction name tran1
Transaction set.
SQL select * from t_tran;
A
----------
1
SQL /
SID TADDR SQL_ID PREV_SQL_ID SQL_TEXT
---------- ---------------- ------------- ------------- --------------------------------------------------
50 0000000084201938 3rfg8vk38qhcq select * from t_tran
dbms_transaction 产生事务
SQL exec dbms_transaction.read_only;
PL/SQL procedure successfully completed.
SQL /
SID TADDR SQL_ID PREV_SQL_ID SQL_TEXT
---------- ---------------- ------------- ------------- --------------------------------------------------
50 0000000084201938 7j2qb5qfzk4hu BEGIN dbms_transaction.read_only; END;
到此,关于“oracle 产生事务的方法有哪些”的学习就结束了,希望能够解决大家的疑惑。理论与实践的搭配能更好的帮助大家学习,快去试试吧!若想继续学习更多相关知识,请继续关注丸趣 TV 网站,丸趣 TV 小编会继续努力为大家带来更多实用的文章!
正文完