Using Temp Tables in Oracle 8i
Oracle 8i introduces the concept of temp tables. This feature long since enjoyed by SQL Server developers enables data to be visible on a Session or Transaction basis. To create an Oracle 8i temp table use the following syntax:
Create global temporary table tempTable
(
id number,
value number
);
This creates a table that is visible to all sessions, but only the data placed in the table is visible for the current working session. The temp table is resident until the session that created it is closed.
Additionally, temp tables can be created for use on a per-transaction basis. The following syntax creates a temp table that purges all data once a transaction is committed. Or to preserve data once a transaction has been committed, use the "on commit preserve rows" syntax.
Create global temporary table tempTable
(
id number,
value number
) on commit delete rows;
Oracle8i临时表使用
本文介绍了Oracle8i中引入的临时表特性,包括如何创建会话级和事务级的临时表,并提供了具体的语法示例。
3727

被折叠的 条评论
为什么被折叠?



