What is GLOBAL TEMPORARY TABLE and It's significance ?

Answers were Sorted based on User's Feedback



What is GLOBAL TEMPORARY TABLE and It's significance ?..

Answer / pradeep

Creation of Global Temporary Tables
The data in a global temporary table is private, such that
data inserted by a session can only be accessed by that
session. The session-specific rows in a global temporary
table can be preserved for the whole session, or just for
the current transaction. The ON COMMIT DELETE ROWS clause
indicates that the data should be deleted at the end of the
transaction.

CREATE GLOBAL TEMPORARY TABLE my_temp_table (
column1 NUMBER,
column2 NUMBER
) ON COMMIT DELETE ROWS;

In contrast, the ON COMMIT PRESERVE ROWS clause indicates
that rows should be preserved until the end of the session.

CREATE GLOBAL TEMPORARY TABLE my_temp_table (
column1 NUMBER,
column2 NUMBER
) ON COMMIT PRESERVE ROWS;

Miscellaneous Features

* If the TRUNCATE statement is issued against a
temporary table, only the session specific data is trucated.
There is no affect on the data of other sessions.
* Data in temporary tables is automatically delete at
the end of the database session, even if it ends abnormally.
* Indexes can be created on temporary tables. The
content of the index and the scope of the index is that same
as the database session.
* Views can be created against temporary tables and
combinations of temporary and permanent tables.
* Temporary tables can have triggers associated with them.
* Export and Import utilities can be used to transfer
the table definitions, but no data rows are processed.
* There are a number of restrictions related to
temporary tables but these are version specific.

Is This Answer Correct ?    19 Yes 1 No

What is GLOBAL TEMPORARY TABLE and It's significance ?..

Answer / sumeet

Well said pradeep. thank you

Is This Answer Correct ?    3 Yes 1 No

What is GLOBAL TEMPORARY TABLE and It's significance ?..

Answer / santhi

Thank u pradeep

Is This Answer Correct ?    0 Yes 1 No

Post New Answer

More Oracle Apps Technical Interview Questions

how can we return morethan one parameters in procedure?

2 Answers  


In a Standard form a DFF is disable?How we can Enable it?

5 Answers   Caritor, TCS,


What r the validation types?

3 Answers  


what is meant by lexical parameter

1 Answers   Wipro,


A file has both header and corresponding lines. Explain design to load this data into respective interface tables.

1 Answers   Satyam,






explain registration steps of a concurrent program.

1 Answers   TCS,


what is back order in OM

4 Answers   IBM, Oracle,


i have 3 parameters like p1,p2,p3.In p1 i have 2 parameters like a,b.if pass parameter 'a' p2 should be enable and p3 should be disable then if pass parameter 'b' the vice versa.

1 Answers   IBM, Sierra Atlantica,


Do you know what are user profiles in apps. Any examples you can give?

0 Answers  


Is it is necessary to create P_CONC_REQUEST_ID parameter in the development of oracle apps reports

2 Answers  


what are stock locators and how to define them? name the tables where the stock locator information is stored. at least two.

3 Answers   Scan Steel,


how to move the one file from one instance to another instance?and ur scripts also?

1 Answers   KPMG,


Categories
  • Oracle Apps Technical Interview Questions Oracle Apps Technical (547)
  • Oracle Apps Financial Interview Questions Oracle Apps Financial (793)
  • Oracle Apps Manufacturing Interview Questions Oracle Apps Manufacturing (53)
  • Oracle Apps HRMS Interview Questions Oracle Apps HRMS (169)
  • Oracle Apps CRM Interview Questions Oracle Apps CRM (9)
  • Oracle Apps SCM Interview Questions Oracle Apps SCM (141)
  • Oracle Install Base Interview Questions Oracle Install Base (62)
  • Oracle Service Contracts Interview Questions Oracle Service Contracts (101)
  • Oracle Apps AllOther Interview Questions Oracle Apps AllOther (114)