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

link|improve this question
Can you be more specific about what you're asking for? When you say "parameters", I think you might mean "settings". Are you trying to find out information from SP_Configure, or exactly what kind of parameters are you looking for? – Brent Ozar Nov 15 '08 at 12:36
feedback

3 Answers

up vote 2 down vote accepted

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.

link|improve this answer
feedback

not that i know of. you'll have to look in perfmon.

link|improve this answer
feedback

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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown