Possible Duplicate:
How to create a temporary table in Oracle
I have a SQL query that produces a table that I would like to reuse several times. In T-SQL I would create a temporary table (#temp), what is the equivalent in Oracle SQL?
Thanks.
Possible Duplicate:
How to create a temporary table in Oracle
I have a SQL query that produces a table that I would like to reuse several times. In T-SQL I would create a temporary table (#temp), what is the equivalent in Oracle SQL?
Thanks.
Temporary tables work differently in oracle than in sql server. I would recommend to read the corresponding chapter in the oracle documentation. To reuse the the contents of the table use the "preserve rows" clause on commit.