Temporary intermediate table
Posted
by user289429
on Stack Overflow
See other posts from Stack Overflow
or by user289429
Published on 2010-03-24T15:38:13Z
Indexed on
2010/03/24
16:33 UTC
Read the original article
Hit count: 241
In our project to generate massive reports in oracle we use some permanent table to hold intermediate results. For example to generate one report we run few queries and populate the table, at the final step we join the intermediate table with huge application tables. These intermediate tables are cleared for next report run. We have few concerns in performance areas.
These intermediate tables are transactional and don't have statistics. Is it good idea to join these with application tables which are partitioned and have up to date statistics.
We need these results stored in the intermediate tables to be available across requests from UI hence we are not in a position to use oracle provided temporary tables.
Any thoughts on what could be done would be appreciated.
© Stack Overflow or respective owner