What is GLOBAL TEMPORARY TABLE and It's significance ?
Answer Posted / 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 |
Post New Answer View All Answers
What is a flexfield? List out its types.
In support project one ticket alloted which steps follows manualy tell me ?
How can a process be deployed in soa?
A program must be written which accepts date parameter. The date parameter will accept data in the format DD/MM/YYYY. This data has to be validated and post validation, the following details have to be displayed for this date parameter 1. Input date must be defaulted to sysdate, It can be overridden by any other date. 2. Financial year should be displayed for this date parameter. Eg: If the input date is 30/11/2010, the financial year must be displayed as 1. From Date : 01-Aprr-2010 To Date: 31-Mar-2011 3. Calendar year and Calendar month must also be displayed. 4. The next payment cycle (say for EB), must be displayed based on this date parameter. 5. The previous payment must also be displayed based on this date.
q)what are the validations in sql*loader
How do you register report in oracle apps?
can we get profile values in report without using user exists is it possible how?
where to define interorganization transaction charges and what are the different options?
How can we import the data into a database using sql * loader?
WHAT IS CUSTOM VIEW AND CUSTOM COMPONENT?
What do you understand by soa and what are the benefits of using this architecture?
what are the balancing segments in AR?
What is count(*) from po_vendors(any table)?
How can you achieve loose coupling in soa framework?
Pls tel me the best text book for Oracle Apps 11i Tech? & I want D2K Text book also?