当前位置:网站首页>The difference between oracle temporary table and pg temporary table
The difference between oracle temporary table and pg temporary table
2022-08-04 06:06:00 【Big Yellow Cat No. 1】
After joining the job, the master asked to query the difference between the pg temporary table and the oracle global temporary table, as well as the idea of transforming the oracle temporary table to pg, all of which are based on their own practice, and welcome comments and corrections if there are mistakes...
Pg temporary table: The pg temporary table is divided into session-level and transactionallevel.
Session level:Data can be saved throughout the life cycle of the session table, if the current session is ended,Then clear the data in the table and delete the table.During this session, you can directly make changes to the fields and data of the table, and other sessions cannot access the current temporary table.
Transaction level:(1) on commit delete rows: You can create temporary in a session with this commandtable, and change the table fields before and after starting the transaction, You can use the dml statement before the transaction starts, but the content of the table does not change substantially,
(2) On commit drop: It can only be created in a transaction, and the table is automatically deleted after the transaction is ended.
Oracle temp table:span>Oracle temporary tables are divided into session level and transaction level.
Session level:Data can be maintained at the entire session level.
Transaction level:The data in the table will be cleared after commit and rollback
The difference between Pg temporary table and oracle temporary table:
Pg temporary table only exists in the current session, other sessions cannot access the temporary table, and ending the session will delete the temporary table.After the Oracle temporary table is created, although the data between each session is isolated from each other, that is, one session cannot see the data of other sessions, but the defined fields are shared.And the definition of the table will still exist after the session is ended, but the data in the table will be cleared.
Changes to Oracle temporary table fields can only be made when all current sessions do not perform dml operations on the table.If one of the sessions changes the data in the table, the ddl operation is not possible.
Deletion of Oracle temporary table:
Transaction level: Only when all sessions are fully committed can they be deleted.
Session level: All sessions can only be deleted before executing the dml statement on the table.
The idea of oracle temporary table to pg temporary table: first, you need to lock the table so that only the current session can access the temporary table, and you need to release other locks in the table (feelingOracle temporary tables are locked so that the definition of the fields in the table cannot be changed after the data in the field is changed, it is not clear whether there is or what lock is added), and the temporary table should be automatically deleted at the end of the session.(This part is an idea, because it cannot be practically operated for some reasons)
边栏推荐
- 剑指 Offer 2022/7/12
- 剑指 Offer 2022/7/5
- 【树 图 科 技 头 条】2022年6月28日 星期二 伊能静做客树图社区
- flink on yarn指定第三方jar包
- Kubernetes基础入门(完整版)
- MySQL最左前缀原则【我看懂了hh】
- Jupyter Notebook installed library;ModuleNotFoundError: No module named 'plotly' solution.
- 属性动画的用法 以及ButterKnife的用法
- lmxcms1.4
- [Deep Learning 21 Days Learning Challenge] 1. My handwriting was successfully recognized by the model - CNN implements mnist handwritten digit recognition model study notes
猜你喜欢
随机推荐
线性回归02---波士顿房价预测
AIDL communication between two APPs
Dictionary feature extraction, text feature extraction.
flink-sql查询配置与性能优化参数详解
WARNING: sql version 9.2, server version 11.0.Some psql features might not work.
Lombok的一些使用心得
Postgresql 快照
yolov3中数据读入(一)
[Deep Learning 21 Days Learning Challenge] 2. Complex sample classification and recognition - convolutional neural network (CNN) clothing image classification
逻辑回归---简介、API简介、案例:癌症分类预测、分类评估法以及ROC曲线和AUC指标
【深度学习21天学习挑战赛】2、复杂样本分类识别——卷积神经网络(CNN)服装图像分类
ISCC-2022
SQL练习 2022/7/4
pgsql函数中的return类型
8.30难题留坑:计数器问题和素数等差数列问题
k3s-轻量级Kubernetes
字典特征提取,文本特征提取。
ThinkPHP5.0.x 反序列化分析
flink on yarn指定第三方jar包
剑指 Offer 2022/7/1









