Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

temporary global table in Oracle and a new session

Status
Not open for further replies.

akotmaale

Programmer
Nov 5, 2003
7
0
0
DE
HI *,

my problem: I've got a working mapping and try to improve performance. There is a table in my staging area, which is basicly needed only for this mapping. So I've switched it to
temporary table:
create GLOBAL TEMPORARY table staging_table ......
ON COMMIT PRESERVE ROWS;.
And the performance is fine - the loading time reduced to 60%. :).

BUT, I've got a lookup in my mapping, wich retriews date from my staging_table. But this table is empty.
REASON - a lookup creates a NEW SESSION in Oracle.

HELP. Iw would like to keep my staging table as temporary (performance !!!) but I need my lookup also.
Is there a possibilty to tell the lookup, not to opena a new session.


akotmaale

 
Hi, I am really confused, I would give you a clear view about improving your mapping performance if I know exactly what are you trying to do with.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top