I need to determine which tables in my schema are global temporary tables . After the script returns the names of all my tables, but I can not determine which of them are GTT and which are not.
SELECT OBJECT_NAME FROM ALL_OBJECTS WHERE OBJECT_TYPE IN ('TABLE') AND OWNER='owner_name';
Thanks!
source share