browse: forums | FAQ
Connecting Tech Pros Worldwide

Hey there! Do you need Oracle Database help?

Get answers from our community of Oracle Database experts on BYTES! It's free.

Global Temporary Table

sajithamol
Guest
 
Posts: n/a
#1: Jul 11 '07
From which data dictionary table we can get the information of global temporary table?



debasisdas's Avatar
Moderator
 
Join Date: Dec 2006
Location: Bangalore ,India
Posts: 7,578
#2: Jul 12 '07

re: Global Temporary Table


U can get it from USER_TABLES.

u can use the following query

Expand|Select|Wrap|Line Numbers
  1. select TABLE_NAME from  user_tables where GLOBAL_STATS ='NO';
Reply