Answer Posted / vivek
Global Temporary tables are session dependant tables which
could be used as temporary storage for calculations, sorting
etc. What I mean by Session dependant is, the data being
stored in the Global Temporary table is not written into the
database or stored anywhere. Once the session ends (in which
the Global Temporary table is used), the data also vanishes.
However the structure would still be available even after
the Session is logged out. Also, the structure is available
to other sessions even when one session is using it, but not
the data. i.e multiple sessions could use the same Global
Temporary table without interfering the data. Each session
could insert/update/delete their own data into the same
Global Temporary table as if the table is available to only
that session. Any data inserted in one session is not
available to another.
Now, why do we need Global Temporary tables? Well, imagine a
requirement where you need to fetch some data from the
database, do some kind of calculations, aggregations and
provide the Result Set (many records) to a Front End. Again,
in the Front End, you need to fetch the Result set may
times, for some purpose. Then you could make use of the
Global Temporary table. Until the user gets disconnected
from that Database session, the data is available for him in
the memory.
| Is This Answer Correct ? | 22 Yes | 0 No |
Post New Answer View All Answers
What is dynamic query?
Are stored procedures faster than dynamic sql?
How many types of tables are there?
How many types of primary keys are there?
What is the difference between partitioning and sharding?
What is varray in pl sql?
What happens when a trigger is associated to a view?
Can a key be both primary and foreign?
What is auto increment?
What is difference between stored procedure and trigger?
How global cursor can be declare with dynamic trigger ?
what are the authentication modes in sql server? : Sql dba
How do I order columns in sql?
Mention what is the use of function "module procedure" in pl/sql?
What is dynamic sql in pl sql?