oracle 臨時表的使用

好名字可以讓你的朋友更容易記住你發表於2019-02-15

在oracle中,臨時表分為會話級別(session)和事務級別(transaction)兩種。

會話級的臨時表在整個會話期間都存在,直到會話結束;事務級別的臨時表資料在transaction結束後消失,即commit/rollback或結束會話時,會清除臨時表資料。

  1、事務級臨時表  on commit delete rows;      當COMMIT的時候刪除資料(預設情況)
  2、會話級臨時表  on commit preserve rows;  當COMMIT的時候保留資料,當會話結束刪除資料

 

1.會話級別臨時表

會話級臨時表是指臨時表中的資料只在會話生命週期之中存在,當使用者退出會話結束的時候,Oracle自動清除臨時表中資料。

建立方式1:

create global temporary table temp1(id number) on commit PRESERVE rows;

insert into temp1values(100);

select * from temp1;

建立方式2:

create global temporary table temp1 ON COMMIT PRESERVE ROWS    as  select id from 另一個表;

select * from temp1;

這個時候,在當前會話查詢資料就可以查詢到了,但是再新開一個會話視窗查詢,就會發現temp1是空表。

2.事務級別的臨時表

建立方式1:

create global temporary table temp2(id number) on commit delete rows;

insert into temp2 values(200);

select * from temp2;

建立方式2:

create global temporary table temp2 as select  id  from 另一個表;(預設建立的就是事務級別的)

select * from temp2;

這時當你執行了commit和rollback操作的話,再次查詢表內的資料就查不到了。

 

3.oracle的臨時表建立完就是真實存在的,無需每次都建立。

若要刪除臨時表可以:

truncate table 臨時表名;
drop table 臨時表名;

 

相關文章