global temporary table 没有表空间, 所以用下面的sql可以查找出来
select * from all_tables where owner = 'IAMP' and tablespace_name is null;
create global temporary table TEMP_FOLLOW_UP_LIST
(
NAME VARCHAR2(10)
);
本文介绍了一种方法来查找那些未分配特定表空间的全局临时表,并提供了一个具体的SQL查询实例。通过该查询,可以找出指定所有者下表空间为空的全局临时表。
global temporary table 没有表空间, 所以用下面的sql可以查找出来
select * from all_tables where owner = 'IAMP' and tablespace_name is null;
create global temporary table TEMP_FOLLOW_UP_LIST
(
NAME VARCHAR2(10)
);
179
2505

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