temp表學習筆記
temp表學習筆記:
create global temporary table temp_table_session
on commit preserve rows
as
select * from scott.emp where 1=0
create global temporary table temp_table_transaction
on commit delete rows
as
select * from scott.emp where 1=0
/
insert into temp_table_session select * from scott.emp;
insert into temp_table_transaction select * from scott.emp;
select session_cnt, transaction_cnt
from ( select count(*) session_cnt from temp_table_session ),
( select count(*) transaction_cnt from temp_table_transaction );
HR 30-1月 -08 >select session_cnt, transaction_cnt
2 from ( select count(*) session_cnt from temp_table_session ),
3 ( select count(*) transaction_cnt from temp_table_transaction );
SESSION_CNT TRANSACTION_CNT
----------- ---------------
14 0
HR 30-1月 -08 >disc
從 Personal Oracle Database 10g Release 10.1.0.2.0 - Production
With the Partitioning, OLAP and Data Mining options 斷開
30-1月 -08 >conn hr/hr
已連線。
HR 30-1月 -08 >select session_cnt, transaction_cnt
2 from ( select count(*) session_cnt from temp_table_session ),
3 ( select count(*) transaction_cnt from temp_table_transaction );
SESSION_CNT TRANSACTION_CNT
----------- ---------------
0 0
意思自己理解,只是將學習的東西記錄下來。回頭有指令碼可看。
[@more@]來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/564597/viewspace-998742/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- CUUG 外部表學習筆記筆記
- 分割槽表學習筆記筆記
- R學習-知識點記錄(Temp)
- python學習-知識點記錄(Temp)Python
- Flutter學習筆記(13)--表單元件Flutter筆記元件
- mysql修改表欄位學習筆記MySql筆記
- MySql 學習筆記四:表的拆分MySql筆記
- Ext學習筆記9-表單筆記
- numpy的學習筆記\pandas學習筆記筆記
- hive學習筆記之四:分割槽表Hive筆記
- django book2 表單學習筆記Django筆記
- angular學習筆記(二十)-表單驗證Angular筆記
- Symfony2學習筆記之表單筆記
- Ext學習筆記10-表單續筆記
- 表的聯結、運算子學習筆記筆記
- DB2學習筆記 - 表空間DB2筆記
- hive學習筆記之三:內部表和外部表Hive筆記
- IT學習筆記筆記
- 學習筆記筆記
- <react學習筆記(9)>表單控制元件React筆記控制元件
- 資料庫學習筆記之查詢表資料庫筆記
- Activiti學習筆記一:建立資料庫表筆記資料庫
- HTML5 學習筆記 表單屬性HTML筆記
- bootstrap學習筆記一 登入水平表單boot筆記
- 學習筆記:InnoDB表和索引結構(二)筆記索引
- 學習筆記:InnoDB表和索引結構(一)筆記索引
- 【學習筆記】數學筆記
- 《JAVA學習指南》學習筆記Java筆記
- GeoServer學習筆記-2、基本使用(釋出PostGIS表)Server筆記
- Elasticsearch學習筆記Elasticsearch筆記
- Scala學習筆記筆記
- MySql學習筆記MySql筆記
- jQuery 學習筆記jQuery筆記
- react學習筆記React筆記
- 學習筆記(4.3)筆記
- 學習筆記(4.4)筆記
- 學習筆記(3.29)筆記
- 學習筆記(4.1)筆記