知识大全 临时表更适合做插入和查询操作

Posted

篇首语:任何你的不足,在你成功的那刻,都会被人说为特色。所以,坚持做你自己。本文由小常识网(cha138.com)小编为大家整理,主要介绍了知识大全 临时表更适合做插入和查询操作相关的知识,希望对你有一定的参考价值。

  ORACLE数据库除了可以保存永久表外 还可以建立临时表temporary tables 这些临时表用来保存一个会话SESSION的数据 或者保存在一个事务中需要的数据 当会话退出或者用户提交mit和回滚rollback事务的时候 临时表的数据自动清空(truncate) 但是临时表的结构以及元数据还存储在用户的数据字典中      简介    ORACLE数据库除了可以保存永久表外 还可以建立临时表temporary tables 这些临时表用来保存一个会话SESSION的数据 或者保存在一个事务中需要的数据 当会话退出或者用户提交mit和回滚rollback事务的时候 临时表的数据自动清空(truncate) 但是临时表的结构以及元数据还存储在用户的数据字典中     In addition to permanent tables Oracle can create temporary tables to hold session private data that exists only for the duration of a transaction or session     Temporary tables are supported by Oracle i and Oracle i      详细介绍    Oracle临时表分为 会话级临时表 和 事务级临时表     会话级临时表是指临时表中的数据只在会话生命周期之中存在 当用户退出会话结束的时候 Oracle自动清除临时表中数据     事务级临时表是指临时表中的数据只在事务生命周期中存在 当一个事务结束(mit or rollback) Oracle自动清除临时表中数据     临时表中的数据只对当前Session有效 每个Session都有自己的临时数据 并且不能访问其它Session的临时表中的数据 因此 临时表不需要DML锁     The CREATE GLOBAL TEMPORARY TABLE statement creates a temporary table that can be transaction specific or session specific For transaction specific temporary tables data exists for the duration of the transaction For session specific temporary tables data exists for the duration of the session Data in a temporary table is private to the session Each session can only see and modify its own data DML locks are not acquired on the data of the temporary tables The LOCK statement has no effect on a temporary table because each session has its own private data     DML操作的临时表不产生redo log重作日志 但会产生回滚日志Undo log Undo的产生(rollback segment)会产生Redo log     DML statements on temporary tables do not generate redo logs for the data changes However undo logs for the data and redo logs for the undo logs are generated     当一个会话结束(用户正常退出 用户不正常退出 ORACLE实例崩溃)或者一个事务结束的时候 Oracle对这个会话的表执行 TRUNCATE 语句清空临时表数据 但不会清空其它会话临时表中的数据     A TRUNCATE statement issued on a session specific temporary table truncates data in its own session It does not truncate the data of other sessions that are using the same table     DML statements on temporary tables do not generate redo logs for the data changes However undo logs for the data and redo logs for the undo logs are generated Data from the temporary table is automatically dropped in the case of session termination either when the user logs off or when the session terminates abnormally such as during a session or instance failure     你可以索引临时表和在临时表基础上建立视图 同样 建立在临时表上的索引也是临时的 也是只对当前会话或者事务有效   临时表可以拥有触发器     You can create indexes for temporary tables using the CREATE INDEX statement Indexes created on temporary tables are also temporary and the data in the index has the same session or transaction scope as the data in the temporary table     You can create views that access both temporary and permanent tables You can also create triggers on temporary tables     空间分配Segment Allocation(v$sort_usage)    Temporary tables use temporary segments Unlike permanent tables temporary tables and their indexes do not automatically allocate a segment when they are created Instead segments are allocated when the first INSERT (or CREATE TABLE AS SELECT) is performed This means that if a SELECT UPDATE or DELETE is performed before the first INSERT then the table appears to be empty     Temporary segments are deallocated at the end of the transaction for transaction specific temporary tables and at the end of the session for session specific temporary tables     临时表在一些版本中存在BUG可能产生过多的REDO LOG eygle 的站点     建立临时表    临时表的定义对所有会话SESSION都是可见的 但是表中的数据只对当前的会话或者事务有效     建立方法:     ) ON MIT DELETE ROWS 定义了建立事务级临时表的方法     CREATE GLOBAL TEMPORARY TABLE admin_work_area    (startdate DATE     enddate DATE     class CHAR( ))    ON MIT DELETE ROWS;    EXAMPLE:    SQL> CREATE GLOBAL TEMPORARY TABLE admin_work_area          (startdate DATE            enddate DATE            class CHAR( ))         ON MIT DELETE ROWS;    SQL> create table permernate( a number);    SQL> insert into admin_work_area values(sysdate sysdate temperary table );    SQL> insert into permernate values( );    SQL> mit;    SQL> select * from admin_work_area;    SQL> select * from permernate;    A          )ON MIT PRESERVE ROWS 定义了创建会话级临时表的方法     CREATE GLOBAL TEMPORARY TABLE admin_work_area    (startdate DATE     enddate DATE     class CHAR( ))    ON MIT PRESERVE ROWS;    EXAMPLE:    会话 :    SQL> drop table admin_work_area;    SQL> CREATE GLOBAL TEMPORARY TABLE admin_work_area          (startdate DATE            enddate DATE            class CHAR( ))         ON MIT PRESERVE ROWS;    SQL> insert into permernate values( );    SQL> insert into admin_work_area values(sysdate sysdate session temperary );    SQL> mit;    SQL> select * from permernate;    A              SQL> select * from admin_work_area;    STARTDATE ENDDATE  CLASS     ?? ?? session temperary    会话 :    SQL> select * from permernate;    A              SQL> select * from admin_work_area;    未选择行     会话 看不见会话 中临时表的数据     temporary tables but they have to support    a) read consistency  b) rollback  c) rollback to savepoint _P _DISPLAYID F _P _CRITERIA:     they definitely totally definitely generate UNDO     consider:    ops$tkyte@ORA IUTF> create global temporary table t ( x int ) on mit preserve  rows;  Table created   ops$tkyte@ORA IUTF> insert into t values ( );   row created   ops$tkyte@ORA IUTF> variable x refcursor  ops$tkyte@ORA IUTF> exec open :x for select * from t;  PL/SQL procedure successfully pleted     that is (as always) a read consitent result set it is pre ordained we  haven t fetched a single row of data yet NO IO HAS BEEN performed the result  set is not copied somewhere just like any other query      ops$tkyte@ORA IUTF> savepoint foo;  Savepoint created   ops$tkyte@ORA IUTF> insert into t values ( );   row created   ops$tkyte@ORA IUTF> select * from t;  X             that shows we can see o rows but  ops$tkyte@ORA IUTF> print x  X          that query used UNDO to rol cha138/Article/program/Oracle/201311/18639

相关参考

知识大全 Oracle临时表 优化查询速度

Oracle临时表优化查询速度  以下文字资料是由(全榜网网www.cha138.com)小编为大家搜集整理后发布的内容,让我们赶快一起来看一下吧!  前言    目前所

插入线的操作策略

插入线的操作策略1、低位“插入线”是非常可信的见底信号,应大胆操作。2、“插入线”的操作方法与“切入线”相同,注意辨别它们所处的位置就行了。只有处在高位和低位的插入线才具有实用价值:处在高位显示见顶信

知识大全 找到无用的索引

  DML性能低下其中最严重的原因之一是无用索引的存在所有SQL的插入更新和删除操作在它们需要在每一行数据被改变时修改大量索引的时候会变得更慢    许多Oracle管理人员只要看见在一个SQL查询的

知识大全 链队列

链队列链队列的定义  队列的链式存储结构简称为链队列它是限制仅在表头删除和表尾插入的单链表链队列的结构类型说明 注意  增加指向链表上的最后一个结点的尾指针便于在表尾做插入操作  链队列示意图见上图图

用家兔做热原检查时注射药液后部分家兔体温下降的原因有哪些?

1.由于试验时操作不恰当所致,如体温表未涂润滑剂,插入动作不慎划破血管引起家兔肛门出血,可出现先降温后升温的现象;也可因温度计插入肛门的深度不够使测温不准确而致,一般应插入3cm~4cm。  2.寒冷

知识大全 栈和队列 - 队列 - 链队列

  链队列的定义  队列的链式存储结构简称为链队列它是限制仅在表头删除和表尾插入的单链表  链队列的结构类型说明  >  注意  增加指向链表上的最后一个结点的尾指针便于在表尾做插入操作  链队列示意

知识大全 数据结构 10.3 折半插入排序

  希赛教育计算机专业考研专业课辅导招生  希赛教育计算机专业考研专业课辅导视频  希赛教育计算机考研专业课在线测试系统  折半插入排序过程中的折半查找的目的是查询插入点因此不论是否存在和给定值相同的

知识大全 excel表格的基本操作里怎么插入钱符号

excel表格的基本操作里怎么插入钱符号在有货币数字的单元格上单击右键--设着单元格格式---选数字这一组里面---货币,如果是人民币就默认为¥,其余的拉选即可。如何学习excel基本操作excel表

知识大全 jsp连接MySQL实现插入insert操作功能示例

jsp连接MySQL实现插入insert操作功能示例  以下文字资料是由(全榜网网www.cha138.com)小编为大家搜集整理后发布的内容,让我们赶快一起来看一下吧!

知识大全 数据结构 2.2 线性表中插入元素操作

  希赛教育计算机专业考研专业课辅导招生  希赛教育计算机专业考研专业课辅导视频  希赛教育计算机考研专业课在线测试系统  插入元素使线性表的逻辑结构发生什么变化?  假设在线性表的第i个元素之前插入