What is a temp table? how to denote temp table?
Answer Posted / jayakumar
Temporary tables are created in the tempdb database. To
create a temporary table, you must have created table
permission in tempdb.
You can create temp tables in 2 ways :
1. Create table #tablename
2. Create table tempdb..tablename
a).If you create the table as per the above mentioned ways,
the table will get dropped automatically when the
session/procedure ends or you drop it manually.
b).If you don’t use the above mentioned ways and use
only "create table table name" command in tempdb the table
will stay there as long as you drop in manually.
c).If you create a table in any other database other than
tempdb, it will not be a temp table.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
Differentiate between replication server and sql remote?
Explain coalesce. What is the equivalent of oracle/db2 coalesce function in sybase?
How do I choose which tables to partition in sybase?
How to remove row affected and dashes?
How do I force an index to be used in sybase?
What is the drawbacks of normalization?
Is there any advantage of last_name varchar(50) over this last_name varchar(255)?
Must I use multiple devices to take advantage of partitions in sybase?
What is replication server? What is its role in sybase?
Alternative to row at a time processing in sybase?
How would you replicate col = col + 1 in sybase?
How do the blocker processes exist internally in sybase?
How to manually drop a table in sybase?
Is sybase open source?
What is open server in sybase?