Tow kinds of temp table data keep method.
One is delete when commit
Anothe one is preseve when commit.
E.g:
create global temporary table TABLE_ABC
(
NUMBER NUMBER(10) NULL
)on commit preserve rows;
But data in temp table is connection in-dependent。
作用类似数据库里面开内存,访问表更方便。
因为数据是connection 独立的,所以一个问题需要注意的是:如果多线程使用不用的 DB connection 是无法数据互通的