Adaptive Server Anywhere Server Version 9.0.2.3951 How do I get the date time that the database was started? Via sql command / function or something. |
SELECT PROPERTY ( 'StartTime' ); PROPERTY('StartTime') '2013-09-27 15:21:06.152' 3
Note that the property StartTime is when the server was started. There is not an equivalent property for when the database file was started as far as I know.
(27 Sep '13, 15:24)
Chris Keating
|
The SYSHISTORY table should have this information. Look for the LAST_START operation. Ok...thank you!
(27 Sep '13, 14:39)
Walmir Taques
|
Note: SYSHISTORY has been introduced in ASA 9.0.1. Generally, and for older versions, you can also query the according server property via SELECT property('StartTime'); That's even easier IMHO. 1
Very strange, but the system view SYSHISTORY shows yesterday:
(18 Oct '17, 04:46)
Ilia63
Replies hidden
For current versions, I think SYSHISTORY entries for "START" and "LAST_START" seem to get refreshed only when a new version has been applied and not for general starts of the database. In my case, a v12.0.1 database has been started a few days ago but the last_time of the "LAST_START" row lists a date in 2016 when the last EBF had been applied...
(23 Oct '17, 03:52)
Volker Barth
|