How do you troubleshoot if your tempdb gets filled
Answer Posted / vineet pal
1. check error log to find the tempdb full.
2. find out the space free in tempdb usin select lct_admin('logsegment_freepages'dbid)
3. dum tran with truncate only if still full than..
4.dump tran with no_log still full than..
5.find process from syslogshold/sysprocesses. inform user about condition ask for killing if he says yes then
6 kill the preocess
if user says no than alter the tempdb
7 you can also use lct_admin('abort',0,2) to kill all suspended trans.
or last on recomendation restart the server
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
Explain locking. List its types.
What happen when we delete the table using trigger?
How do I set a password to be null?
How to swap a db device with another?
Can I partition any table in sybase ?
How configure sybase odbc connection?
How do I bcp null dates in sybase?
When you change a database option when will it come into effect?
How can I execute dynamic sql with ase in sybase?
List similarities and differences between oracle & sybase.
Is sybase free?
Is sybase relational database?
Is there any advantage of last_name varchar(50) over this last_name varchar(255)?
How to pad with leading zeros an int or smallint in sybase?
Given a table which contains some rows with duplicate keys, how would you remove the duplicates?