Sybase - 自 ASE 启动以来获得时间的方法?

发布于 2024-11-19 06:36:26 字数 42 浏览 2 评论 0原文

Sybase ASE 有没有办法获取自 ASE 服务器启动以来的时间?

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

你的往事 2024-11-26 06:36:26

有一个全局变量@@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.

也只是曾经 2024-11-26 06:36:26

您是在谈论 ASE 服务器正常运行时间吗? 查询找到它,因为 tempdb 是在启动时重新创建的。

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

如果是,那么您可能可以使用将返回启动时间的

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文