临时表空间
Posted cyf18
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了临时表空间相关的知识,希望对你有一定的参考价值。
查看表空间使用:select USERNAME,TABLESPACE,BLOCKS from v$sort_usage where USERNAME=‘SCOTT‘;
临时表创建:
1.事务级临时表:事务结束,数据消失
create global tempoary table temp as select * from t_user;
2.会话级临时表:会话结束,数据消失
create global tempoary table temp2 on commit preserve rows as select * from t_user;
以上是关于临时表空间的主要内容,如果未能解决你的问题,请参考以下文章