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
How to manually drop a table in sybase?
What data types does sybase support?
We have lost the sa password, what can we do?
Explain index covering? List its merits.
Explain intimate shared memory(ism)
How can I improve throughput in sybase?
How can I tell the datetime my server started?
Explain coalesce. What is the equivalent of oracle/db2 coalesce function in sybase?
What is coalesce in sybase?
Explain coalesce.
How do I configure identities in sybase?
Is sybase owned by sap?
What mandatory options are required for bcp command utility?
You need to remove the affected rows and dashes. How would you do that?
Is sybase open source?