Home » RDBMS Server » Server Administration » How to Find the Temporary Tables
How to Find the Temporary Tables [message #221738] Wed, 28 February 2007 04:30 Go to next message
irfanr
Messages: 11
Registered: December 2006
Location: india
Junior Member
Hello,

How to find the Temporary tables in one schema and then entire database.

Thanks
Re: How to Find the Temporary Tables [message #221742 is a reply to message #221738] Wed, 28 February 2007 04:40 Go to previous messageGo to next message
Mahesh Rajendran
Messages: 10707
Registered: March 2002
Location: oracleDocoVille
Senior Member
Account Moderator
You mean GTT?
Just check user_tables/dba_tables
SCOTT > create table x (c1 number);

Table created.

SCOTT > create global temporary table gtt (c1 number);

Table created.

SCOTT > select table_name,temporary from user_tables;

TABLE_NAME                     T
------------------------------ -
X                              N
GTT                            Y

[Updated on: Wed, 28 February 2007 04:40]

Report message to a moderator

Re: How to Find the Temporary Tables [message #222129 is a reply to message #221738] Fri, 02 March 2007 00:06 Go to previous message
irfanr
Messages: 11
Registered: December 2006
Location: india
Junior Member
Hi,

thank you very much.

Regards
Previous Topic: performance tuning redo logs
Next Topic: performance tuning redo logs (10g standard)
Goto Forum:
  


Current Time: Fri Sep 20 04:58:51 CDT 2024