SQL Server 2000:查询分析器中的服务器内存/CPU 参数

发布于 2024-07-08 15:09:36 字数 66 浏览 9 评论 0原文

SQL Server 2000:有没有办法在查询分析器中找出服务器内存/CPU参数?

SQL Server 2000: Is there a way to find out server memory / CPU parameters in Query Analyzer?

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

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

发布评论

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

评论(3

九八野马 2024-07-15 15:09:36

select * from sysperfinfo

它拥有 perfmon 拥有的所有内容。 另外,请确保通过运行 sp_configure 检查所有 sql 配置参数。 还运行 xp_msver 显示有关 sql server 实例的更多信息。

在这三者之间我不知道你还想知道什么。

select * from sysperfinfo

it has everything in there that perfmon has. plus make sure you check out all the sql configuration parameters by running sp_configure. also running xp_msver shows a bunch more info about the sql server instance.

between those three i don't know what else you'd want to know.

娇俏 2024-07-15 15:09:36

从来没听说过。 您必须查看perfmon

Not that I know of. You'll have to look in perfmon.

神回复 2024-07-15 15:09:36

尝试:

SELECT *
FROM sys.dm_os_sys_info

抱歉,这只是 2005 年的情况。 在 2000 年,您可以使用 xp_cmdshell 外部工具或通过 sp_OA 使用 COM 对象。

Try:

SELECT *
FROM sys.dm_os_sys_info

Sorry, that's 2005 only. In 2000, you can xp_cmdshell out to an external tool or use a COM object through sp_OA.

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