oracle on commit delete rows 和on commit preserve rows的区别

前端之家收集整理的这篇文章主要介绍了oracle on commit delete rows 和on commit preserve rows的区别前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
文档讲此二者皆用于temporary table,delete rows用于事务相关,也就在事务结束后truncate data in the temporary table. preserve rows表示在会话结束后清除临时表的数据 前者在事务提交后数据就已经清除了. 后者在会话中止时或者导常退出时数据都会被清除掉. 原文链接:https://www.f2er.com/oracle/211283.html

猜你在找的Oracle相关文章