Global Temporary Table

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • sajithamol

    Global Temporary Table

    From which data dictionary table we can get the information of global temporary table?
  • debasisdas
    Recognized Expert Expert
    • Dec 2006
    • 8119

    #2
    U can get it from USER_TABLES.

    u can use the following query

    [CODE=oracle]select TABLE_NAME from user_tables where GLOBAL_STATS ='NO';[/CODE]

    Comment

    Working...