Link to home
Start Free TrialLog in
Avatar of anushahanna
anushahannaFlag for United States of America

asked on

Hardware congifuration of SQL Server

How do I check SQL Server (Windows 2003)'s hardware configuration?

Are there t-sql commands to check that?

If not, where in the server can I go to understand what kind of SAN, RAID we have on the server.

Thanks.
Avatar of Pavel Celba
Pavel Celba
Flag of Czechia image

1) Right click Computer and select Properties. If the properties window appear click on Device Manager.
2) Execute Sysinfo32.EXE

Device Manager needs admin rights. Sysinfo32 is not necessarily present on each computer.
ASKER CERTIFIED SOLUTION
Avatar of Pavel Celba
Pavel Celba
Flag of Czechia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of anushahanna

ASKER

that worked, thanks
so, there's no t-sql commands for checking on hardware, right?
The t-sql command for device listing is not a standard but you could call .NET assembly as user defined function directly from SQL 2005/2008. The hardware enumeration is a standard Windows API call.

Some example is e.g. here: http://www.developer.com/net/csharp/article.php/3399881 and here: http://www.codeproject.com/KB/system/DevMgr.aspx