what is global table
Answers were Sorted based on User's Feedback
Answer / pooja
Global temporary tables
All data stored in a global temporary table is private to
the session that has inserted (or updated) it.
Other sessions can't see this data. Global temporary tables
come in two flavors:
on commit preserve rows and on commit delete rows.
DDLs (such as drop table) on a on commit preserve rows lead
to a ORA-14452
when the session has already made a DML on the table.
Object tables
Is This Answer Correct ? | 12 Yes | 1 No |
Answer / rk
Global temporary tables are distinct within SQL sessions.
The basic syntax is:
CREATE GLOBAL TEMPORARY TABLE table_name ( ...);
Is This Answer Correct ? | 9 Yes | 0 No |
Answer / naresh reddy
The statement to create a global temporary table (GTT) is similar to the definition of an ordinary table with the addition of the keywords GLOBAL TEMPORARY. In the clause ON COMMIT, you specify if a table is bound to a transaction (DELETE ROWS) or to a session
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / vijay
1.global temporary table is a schema object
2.global temporary table record is store in session level but not store in database
3.global temporary table structure of the table is store in database but record not store in database
4.global temporary table record not shown one session to another session level
5.it is used reporting purpose temporarily record saved in session level
Two types
1.on commit delete rows( all records deleted structure of table only shown)
2.on commit preserve rows(record saved in session level (once login &logout record gone)
create global temporary table table_name on commit preserve rows as select * from employees;
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / subhendu
Features:
1. 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.
2. Data in temporary tables is automatically delete at the
end of the database session, even if it ends abnormally.
3. 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.
4. Views can be created against temporary tables and
combinations of temporary and permanent tables.
5. 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.
Is This Answer Correct ? | 5 Yes | 7 No |
Answer / rajeev kumar
A global table is a dummy table. which is available until
the sql server is on.
Is This Answer Correct ? | 0 Yes | 7 No |
What is normalization in sql?
What are pl sql procedures?
Cite the differences between execution of triggers and stored procedures?
What is composite data type in pl sql?
Can we connect to postgresql using sql developer?
How to write pl sql program in mysql command prompt?
Is sql a backend?
how to install mysql? : Sql dba
can sql servers linked to other servers like oracle? : Sql dba
How do I run a sql query?
If a cursor is open, how can we find in a pl/sql block?
How can you tell the difference between an index and a view?