Is there a way on Sybase ASE to get the time since the ASE server was started?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

There is a global variable @@boottime which can be used to find the time when the ASE server was started. Simply use -

select @@boottime to get the time when the server was started.

link|improve this answer
Ha ha - I'll pay that. – hawkeye Sep 14 '11 at 22:43
feedback

Are you talking about ASE server uptime; if yes, then probably you can find so using the query

select crdate from master..sysdatabases where name = 'tempdb'

which will return the boot time, as tempdb is recreated at boot.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.