Answer Posted / 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 |
Post New Answer View All Answers
What are the types of records?
What are the sql commands?
Does sqlite need a server?
What is the usage of when clause in trigger?
How is sql used in oracle?
explain advantages of innodb over myisam. : Sql dba
What is sql in java?
How do you sort in sql?
What is Histogram?
tell us something about heap tables. : Sql dba
What is the difference between Union and Union all. Which is faster.
What are the built in functions of sql?
How does an execution block start and end in pl sql?
what are the properties and different types of sub-queries? : Sql dba
what is a cursor? : Sql dba