Click to See Complete Forum and Search --> : Poerformance Issue


sarovb
12-14-2005, 06:44 AM
hi
Our oracle reports application uses 150 temporary tables. Temp tables impact database performance? Am i right?

Kindly suggest or give some alternative solution for global temporary tables.

tamilselvan
12-14-2005, 07:36 AM
Are they "global temporary tables"?

Tamil

gamyers
12-14-2005, 05:50 PM
"Temp tables impact database performance?"
Yes. By dropping all your temporary tables before you query them, the query ends very quickly. The only drawback is that is ends with an error saying the table does not exist.

Seriously, temporary table do a job. You use them when they are appropriate, and don't use them when they are not appropriate. What performance problems are you having, and why do you think temporary tables are causing them ?