What is Global temporary table in oracle? and what are the benefits of it?GLOBAL TEMPORARY TABLE is used to store temporary data in scenarios where complex calculation is involved. The data in this table is session specific. This means that the data in temporary table cannot be shared with other sessions and is valid only until session is active. It is most useful when the table structure of an application is not known or the data in the temporary table is needed only while using the application.
|