Sybase - 自 ASE 启动以来获得时间的方法?
Sybase ASE 有没有办法获取自 ASE 服务器启动以来的时间?
Is there a way on Sybase ASE to get the time since the ASE server was started?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有一个全局变量@@boottime,可用于查找 ASE 服务器启动的时间。只需使用 -
select @@boottime 即可获取服务器启动的时间。
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.
您是在谈论 ASE 服务器正常运行时间吗? 查询找到它,因为
tempdb
是在启动时重新创建的。如果是,那么您可能可以使用将返回启动时间的
Are you talking about ASE server uptime; if yes, then probably you can find so using the query
which will return the boot time, as
tempdb
is recreated at boot.