Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
AskSQLTeam
Ask SQLTeam Question
0 Posts |
Posted - 2006-08-11 : 08:56:33
|
Nihat writes "How can i get SQL Server HDD Serial Number with t-sql" |
|
robvolk
Most Valuable Yak
15732 Posts |
Posted - 2006-08-11 : 08:59:17
|
If there is a command-line utility that can get that information, you can use xp_cmdshell to run it in T-SQL:EXEC master..xp_cmdshell 'getHardDriveSerialNo c:'You can also use the SQL Server job system to execute ActiveX and command-line tasks as well. I don't know much about WMI but I think you can run WMI scripts via ActiveX and/or command-line utilities. Other than that, I'm not aware of any internal SQL Server functions to get hardware specifics. |
 |
|
|
|
|