此文將給出在使用Oracle臨時表的過程中需要注意的事項,并對這些特點進行驗證。
①臨時表不支持物化視圖
②可以在臨時表上創建索引
③可以基于臨時表創建視圖
④臨時表結構可被導出,但內容不可以被導出
⑤臨時表通常是創建在用戶的臨時表空間中的,不同用戶可以有自己的獨立的臨時表空間
⑥不同的session不可以互相訪問對方的臨時表數據
⑦臨時表數據將不會上DML(Data Manipulation Language)鎖
1.臨時表不支持物化視圖
1)環境準備
(1)創建基于會話的臨時表
sec@ora10g> create global temporary table t_temp_session (x int) on commit preserve rows;
Table created.
sec@ora10g> col TABLE_NAME for a30
sec@ora10g> col TEMPORARY for a10
sec@ora10g> select TABLE_NAME,TEMPORARY from user_tables where table_name = 'T_TEMP_SESSION';
TABLE_NAME TEMPORARY
------------------------------ ----------
T_TEMP_SESSION Y
(2)初始化兩條數據
sec@ora10g> insert into t_temp_session values (1);
1 row created.
sec@ora10g> insert into t_temp_session values (2);
1 row created.
sec@ora10g> commit;
Commit complete.
sec@ora10g> select * from t_temp_session;
X
----------
1
2
(3)在臨時表T_TEMP_SESSION上添加主鍵
sec@ora10g> alter table T_TEMP_SESSION add constraint PK_T_TEMP_SESSION primary key(x);
Table altered.
2)在臨時表T_TEMP_SESSION上創建物化視圖
(1)創建物化視圖日志日志
sec@ora10g> create materialized view log on T_TEMP_SESSION with sequence, rowid (x) including new values;
create materialized view log on T_TEMP_SESSION with sequence, rowid (x) including new values
*
ERROR at line 1:
ORA-14451: unsupported feature with temporary table
可見,在創建物化視圖時便提示,臨時表上無法創建物化視圖日志。
(2)創建物化視圖
sec@ora10g> create materialized view mv_T_TEMP_SESSION build immediate refresh fast on commit enable query rewrite as select * from T_TEMP_SESSION;
create materialized view mv_T_TEMP_SESSION build immediate refresh fast on commit enable query rewrite as select * from T_TEMP_SESSION
*
ERROR at line 1:
ORA-23413: table "SEC"."T_TEMP_SESSION" does not have a materialized view log
由于物化視圖日志沒有創建成功,因此顯然物化視圖亦無法創建。
2.在臨時表上創建索引
sec@ora10g> create index i_t_temp_session on t_temp_session (x);
Index created.
臨時表上索引創建成功。
3.基于臨時表創建視圖
sec@ora10g> create view v_t_temp_session as select * from t_temp_session where x<100;
View created.
基于臨時表的視圖創建成功。
4.臨時表結構可被導出,但內容不可以被導出
1)使用exp工具備份臨時表
ora10g@secdb /home/oracle$ exp sec/sec file=t_temp_session.dmp log=t_temp_session.log tables=t_temp_session
Export: Release 10.2.0.1.0 - Production on Wed Jun 29 22:06:43 2011
Copyright (c) 1982, 2005, Oracle. All rights reserved.
Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
With the Partitioning, OLAP and Data Mining options
Export done in WE8ISO8859P1 character set and AL16UTF16 NCHAR character set
About to export specified tables via Conventional Path ...
. . exporting table T_TEMP_SESSION
Export terminated successfully without warnings.
可見在備份過程中,沒有顯示有數據被導出。
2)使用imp工具的show選項查看備份介質中的SQL內容
ora10g@secdb /home/oracle$ imp sec/sec file=t_temp_session.dmp full=y show=y
Import: Release 10.2.0.1.0 - Production on Wed Jun 29 22:06:57 2011
Copyright (c) 1982, 2005, Oracle. All rights reserved.
Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
With the Partitioning, OLAP and Data Mining options
Export file created by EXPORT:V10.02.01 via conventional path
import done in WE8ISO8859P1 character set and AL16UTF16 NCHAR character set
. importing SEC's objects into SEC
. importing SEC's objects into SEC
"CREATE GLOBAL TEMPORARY TABLE "T_TEMP_SESSION" ("X" NUMBER(*,0)) ON COMMIT "
"PRESERVE ROWS "
"CREATE INDEX "I_T_TEMP_SESSION" ON "T_TEMP_SESSION" ("X" ) "
Import terminated successfully without warnings.
這里體現了創建臨時表和索引的語句,因此臨時表的結構數據是可以被導出的。
3)嘗試導入數據
ora10g@secdb /home/oracle$ imp sec/sec file=t_temp_session.dmp full=y ignore=y
Import: Release 10.2.0.1.0 - Production on Wed Jun 29 22:07:16 2011
Copyright (c) 1982, 2005, Oracle. All rights reserved.
Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
With the Partitioning, OLAP and Data Mining options
Export file created by EXPORT:V10.02.01 via conventional path
import done in WE8ISO8859P1 character set and AL16UTF16 NCHAR character set
. importing SEC's objects into SEC
. importing SEC's objects into SEC
Import terminated successfully without warnings.
依然顯示沒有記錄被導入。
5.查看臨時表空間的使用情況
可以通過查詢V$SORT_USAGE視圖獲得相關信息。
sec@ora10g> select username,tablespace,session_num sid,sqladdr,sqlhash,segtype,extents,blocks from v$sort_usage;
USERNAME TABLESPACE SID SQLADDR SQLHASH SEGTYPE EXTENTS BLOCKS
-------- ---------- ------- -------- ---------- ------- ------- -------
SEC TEMP 370 389AEC58 1029988163 DATA 1 128
SEC TEMP 370 389AEC58 1029988163 INDEX 1 128
可見SEC用戶中創建的臨時表以及其上的索引均存放在TEMP臨時表空間中。
在創建用戶的時候,可以指定用戶的默認臨時表空間,這樣不同用戶在創建臨時表的時候便可以使用各自的臨時表空間,互不干擾。
6.不同的session不可以互相訪問對方的臨時表數據
1)在第一個session中查看臨時表數據
sec@ora10g> select * from t_temp_session;
X
----------
1
2
此數據為初始化環境時候插入的數據。
2)在單獨開啟一個session,查看臨時表數據。
ora10g@secdb /home/oracle$ sqlplus sec/sec
SQL*Plus: Release 10.2.0.1.0 - Production on Wed Jun 29 22:30:05 2011
Copyright (c) 1982, 2005, Oracle. All rights reserved.
Connected to:
Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
With the Partitioning, OLAP and Data Mining options
sec@ora10g> select * from t_temp_session;
no rows selected
說明不同的session擁有各自獨立的臨時表操作特點,不同的session之間是不能互相訪問數據。
7.臨時表數據將不會上DML(Data Manipulation Language)鎖
1)在新session中查看SEC用戶下鎖信息
sec@ora10g> col username for a8
sec@ora10g> select
2 b.username,
3 a.sid,
4 b.serial#,
5 a.type "lock type",
6 a.id1,
7 a.id2,
8 a.lmode
9 from v$lock a, v$session b
10 where a.sid=b.sid and b.username = 'SEC'
11 order by username,a.sid,serial#,a.type;
no rows selected
不存在任何鎖信息。
2)向臨時表中插入數據,查看鎖信息
(1)插入數據
sec@ora10g> insert into t_temp_session values (1);
1 row created.
(2)查看鎖信息
sec@ora10g> select
2 b.username,
3 a.sid,
4 b.serial#,
5 a.type "lock type",
6 a.id1,
7 a.id2,
8 a.lmode
9 from v$lock a, v$session b
10 where a.sid=b.sid and b.username = 'SEC'
11 order by username,a.sid,serial#,a.type;
lock lock
USERNAME SID SERIAL# type id1 id2 mode
-------- ---------- ---------- ------ ----------- ----------- ---------
SEC 142 425 TO 12125 1 3
SEC 142 425 TX 65554 446 6
此時出現TO和TX類型鎖。
(3)提交數據后再次查看鎖信息
sec@ora10g> commit;
Commit complete.
sec@ora10g> select
2 b.username,
3 a.sid,
4 b.serial#,
5 a.type "lock type",
6 a.id1,
7 a.id2,
8 a.lmode
9 from v$lock a, v$session b
10 where a.sid=b.sid and b.username = 'SEC'
11 order by username,a.sid,serial#,a.type;
lock lock
USERNAME SID SERIAL# type id1 id2 mode
-------- ---------- ---------- ------ ----------- ----------- ---------
SEC 142 425 TO 12125 1 3
事務所TX被釋放。TO鎖保留。
3)測試更新數據場景下鎖信息變化
(1)更新臨時表數據
sec@ora10g> update t_temp_session set x=100;
1 row updated.
(2)鎖信息如下
lock lock
USERNAME SID SERIAL# type id1 id2 mode
-------- ---------- ---------- ------ ----------- ----------- ---------
SEC 142 425 TO 12125 1 3
SEC 142 425 TX 524317 464 6
(3)提交數據
sec@ora10g> commit;
Commit complete.
(4)鎖信息情況
lock lock
USERNAME SID SERIAL# type id1 id2 mode
-------- ---------- ---------- ------ ----------- ----------- ---------
SEC 142 425 TO 12125 1 3
4)測試刪除數據場景下鎖信息變化
(1)刪除臨時表數據
sec@ora10g> delete from t_temp_session;
1 row deleted.
(2)查看鎖信息
lock lock
USERNAME SID SERIAL# type id1 id2 mode
-------- ---------- ---------- ------ ----------- ----------- ---------
SEC 142 425 TO 12125 1 3
SEC 142 425 TX 327713 462 6
(3)提交數據
sec@ora10g> commit;
Commit complete.
(4)鎖信息情況
lock lock
USERNAME SID SERIAL# type id1 id2 mode
-------- ---------- ---------- ------ ----------- ----------- ---------
SEC 142 425 TO 12125 1 3
5)總結
在臨時表上的增刪改等DML操作都會產生TO鎖和TX事務所。TO鎖會從插入數據開始一直存在。
但整個過程中都不會產生DML的TM級別鎖。
8.小結
本文就臨時表使用過程中常見的問題和特點進行了介紹。臨時表作為Oracle的數據庫對象,如果能夠在理解這些特性基礎上加以利用將會極大地改善系統性能。
Good luck.
secooler
11.06.29
-- The End --
當前題目:【TEMPORARYTABLE】Oracle臨時表使用注意事項
瀏覽地址:http://vcdvsql.cn/article26/gjdpcg.html
成都網站建設公司_創新互聯,為您提供靜態網站、網站建設、做網站、面包屑導航、虛擬主機、品牌網站設計
廣告
聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源:
創新互聯