What is a temp table? how to denote temp table?
Answer Posted / pavan
Hi, This answer is with respect Sybase ASE database
# temp-table
A temp table is created with a prefix of #. These are
session specific. That means if user-1 creates some temp
tables with #<some name> and logs out and then logs-in into
the database, he will not be able to see the #<table> which
he created.
Shareable temp-table
In turn, if the user creates tables in tempdb without
any "#" , then the table becomes shareable temp table.
These will remain in tempdb till the ASE is rebooted. If
the user logs-out and then logs-in , even in second
sessioin he can still access these table.
- Pavan
| Is This Answer Correct ? | 16 Yes | 0 No |
Post New Answer View All Answers
List the types of locking?
How do I pipe the output of isql to a file in sybase?
Tempdb is full. How would you clear it?
Explanation about replication server software?
Can I use a named pipe to bcp/dump data out or in in sybase?
How do I move tempdb off of the master device?
Must I use multiple devices to take advantage of partitions in sybase?
Explain about the features of sybase iq?
How do I find the oldest open transaction in sybase?
How would you improve throughput in sybase?
How to connect sybase database from python?
How to view the log files in sybase?
How to restore sybase database in sap?
What are the different types of (all page) locks in sybase?
What is an advantage to using a stored procedure as opposed to passing an sql query from an application ?