国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 開發 > 綜合 > 正文

臨時表更適合做插入和查詢操作

2024-07-21 02:33:52
字體:
來源:轉載
供稿:網友

  Oracle數據庫除了可以保存永久表外,還可以建立臨時表temporary tables。這些臨時表用來保存一個會話session的數據,或者保存在一個事務中需要的數據。 當會話退出或者用戶提交commit和回滾rollback事務的時候,臨時表的數據自動清空(truncate),但是臨時表的結構以及元數據還存儲在用戶的數據字典中。
  
  1簡介
  
  ORACLE數據庫除了可以保存永久表外,還可以建立臨時表temporary tables。這些臨時表用來保存一個會話SESSION的數據,或者保存在一個事務中需要的數據。當會話退出或者用戶提交commit和回滾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 Oracle9i and Oracle8i.
  
  2具體介紹
  
  Oracle臨時表分為 會話級臨時表 和 事務級臨時表。
  
  會話級臨時表是指臨時表中的數據只在會話生命周期之中存在,當用戶退出會話結束的時候,Oracle自動清除臨時表中數據。
  
  事務級臨時表是指臨時表中的數據只在事務生命周期中存在。當一個事務結束(commit 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 的站點http://www.eygle.com/faq/temp_table.htm
  
  3建立臨時表
  
  臨時表的定義對所有會話SESSION都是可見的,但是表中的數據只對當前的會話或者事務有效.
  
  建立方法:
  
  1) ON COMMIT DELETE ROWS 定義了建立事務級臨時表的方法.
  
  CREATE GLOBAL TEMPORARY TABLE admin_work_area
  
  (startdate DATE,
  
  enddate DATE,
  
  class CHAR(20))
  
  ON COMMIT DELETE ROWS;
  
  EXAMPLE:
  
  SQL> CREATE GLOBAL TEMPORARY TABLE admin_work_area
  
  2     (startdate DATE,
  
  3      enddate DATE,
  
  4      class CHAR(20))
  
  5    ON COMMIT DELETE ROWS;
  
  SQL> create table permernate( a number);
  
  SQL> insert into admin_work_area values(sysdate,sysdate,'temperary table');
  
  SQL> insert into permernate values(1);
  
  SQL> commit;
  
  SQL> select * from admin_work_area;
  
  SQL> select * from permernate;
  
  A
  
  1
  
  2)ON COMMIT PRESERVE ROWS 定義了創建會話級臨時表的方法.
  
  CREATE GLOBAL TEMPORARY TABLE admin_work_area
  
  (startdate DATE,
  
  enddate DATE,
  
  class CHAR(20))
  
  ON COMMIT PRESERVE ROWS;
  
  EXAMPLE:
  
  會話1:
  
  SQL> drop table admin_work_area;
  
  SQL> CREATE GLOBAL TEMPORARY TABLE admin_work_area
  
  2     (startdate DATE,
  
  3      enddate DATE,
  
  4      class CHAR(20))
  
  5    ON COMMIT PRESERVE ROWS;
  
  SQL> insert into permernate values(2);
  
  SQL> insert into admin_work_area values(sysdate,sysdate,'session temperary');
  
  SQL> commit;
  
  SQL> select * from permernate;
  
  A
  
  1
  
  2
  
  SQL> select * from admin_work_area;
  
  STARTDATE ENDDATE  CLASS
  
  17-1?? -03 17-1?? -03 session temperary
  
  會話2:
  
  SQL> select * from permernate;
  
  A
  
  1
  
  2
  
  SQL> select * from admin_work_area;
  
  未選擇行.
  
  會話2看不見會話1中臨時表的數據.
  
  temporary tables -- but they have to support
  
  a) read consistency
  b) rollback
  c) rollback to savepointhttp://asktom.oracle.com/pls/ask/f?p=4950:8:8284619847966507619::NO::F4950_P8_DISPLAYID,F4950_P8_CRITERIA:30774214640787
  
  they definitely -- totally definitely -- generate UNDO.
  
  consider:
  
  ops$tkyte@ORA9IUTF> create global temporary table t ( x int ) on commit preserve
  rows;
  Table created.
  ops$tkyte@ORA9IUTF> insert into t values ( 1 );
  1 row created.
  ops$tkyte@ORA9IUTF> variable x refcursor
  ops$tkyte@ORA9IUTF> exec open :x for select * from t;
  PL/SQL procedure successfully completed.
  
  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@ORA9IUTF> savepoint foo;

  Savepoint created.
  ops$tkyte@ORA9IUTF> insert into t values ( 2 );
  1 row created.
  ops$tkyte@ORA9IUTF> select * from t;
  X
  ----------
  1
  2
  
  that shows we can see two rows -- but
  ops$tkyte@ORA9IUTF> print x
  X
  ----------
  1
  
  that query used UNDO to rol

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 洛隆县| 吴忠市| 普宁市| 仲巴县| 独山县| 东山县| 中西区| 文登市| 尉犁县| 巨鹿县| 砀山县| 瑞金市| 民权县| 沈阳市| 宁晋县| 麦盖提县| 耿马| 增城市| 四子王旗| 沁源县| 米易县| 清流县| 伊吾县| 开原市| 嘉鱼县| 光山县| 东兰县| 井研县| 建昌县| 神池县| 和林格尔县| 浑源县| 澄江县| 长宁区| 绥芬河市| 珠海市| 江都市| 英德市| 彭阳县| 噶尔县| 建瓯市|