DBA > Job Interview Questions > Sybase Interview Questions and Answers

How can I tell the datetime my Server started?

More DBA job interview questions and answers at http://dba.fyicenter.com/Interview-Questions/

(Continued from previous question...)

How can I tell the datetime my Server started?

Method #1
The normal way would be to look at the errorlog, but this is not always convenient or even possible. From a SQL session you find out the server startup time to within a few seconds using:
select "Server Start Time" = crdate
from master..sysdatabases
where name = "tempdb"


Method #2
Another useful query is:
select * from sysengines
which gives the address and port number at which the server is listening.

(Continued on next question...)

Other Job Interview Questions