Oracle臨時表使用注意事項
此文將給出在使用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的資料庫物件,如果能夠在理解這些特性基礎上加以利用將會極大地改善系統效能。
相關文章
- 【TEMPORARY TABLE】Oracle臨時表使用注意事項Oracle
- 在T-SQL中使用臨時表的注意事項SQL
- removeChild使用時注意事項REM
- Oracle使用*的注意事項Oracle
- Oracle資料庫表設計時的注意事項Oracle資料庫
- 更改當前資料庫預設臨時表空間注意事項資料庫
- Oracle 重建表(rename)注意事項總結Oracle
- Oracle 重建表(rename)注意事項小結Oracle
- oracle 臨時表的使用Oracle
- 【TABLE】oracle表線上重定義注意事項Oracle
- 【YEP】專案Oracle考卷使用注意事項Oracle
- Oracle10g使用ASM注意事項OracleASM
- oracle臨時表Oracle
- Oracle 臨時表Oracle
- 使用parallel注意事項Parallel
- 使用代理IP時,有什麼注意事項?
- mybatis中使用in查詢時的注意事項MyBatis
- webbrowser控制元件使用時的注意事項Web控制元件
- (轉) oracle 臨時表(事務級、會話級)Oracle會話
- ORACLE臨時表和SQLSERVER臨時表異同OracleSQLServer
- Oracle Outline的使用及注意事項Oracle
- MySQL使用Amoeba作為Proxy時的注意事項MySql
- Oracle的臨時表Oracle
- 使用Google Fonts注意事項Go
- Go 切片使用注意事項Go
- 使用CocosBuilder注意事項UI
- 用xmanager 客戶端安裝oracle時注意事項客戶端Oracle
- oracle 轉pg 的注意事項Oracle
- oracle移植到mysql注意事項OracleMySql
- 轉:Oracle Outline的使用及注意事項Oracle
- MySQL 查詢大表注意事項MySql
- Mysql大表查詢注意事項MySql
- Oracle vs PostgreSQL,研發注意事項(1)-查詢鎖表OracleSQL
- Oracle Temporary Tables(Oracle 臨時表)Oracle
- 畫PCB板時的注意事項
- 使用regulator_get時的一個小注意事項
- Oracle事務臨時表的一個隱藏問題Oracle
- ORACLE分割槽表梳理系列(一)- 分割槽表概述、分類、使用方法及注意事項Oracle