查找global temporary table


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)

);

你可能感兴趣的:(查找global temporary table)