What is GLOBAL TEMPORARY TABLE and It's significance ?
Answers were Sorted based on User's Feedback
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 |
How will U link GL with OU in Multi-org environment.
How we will receive the work from the client? what type of documents we will develop in the entire implementation project? plz tell me the total scinario?
2 Answers Deloitte, Intelligroup,
In interface process we have 1000 records i want to commit every 100 records how? How i can commit every 100 records?
How can u populate data into po_headers_all segment2 column?
while doing the process of conversion if got any data error out what is the next step to reprocess
for report i have to parameters those are from_date and to_date ,so to_date should be greater when compare to from_date ,if we are giving to_date is less then it must shows some error how we willmake
Can u suggest me the best institute for Oracle apps Technical in Hyderabad?
How many types of projects are there in project module?
6 Answers Fujitsu, Tech Mahindra,
q)what are the validations in sql*loader
how can u link a org-id with a responsibility in reports?
how to initialize applications?
What is the difference between base table and multi-org table?