How can I read the value of a system environment variable in a T-SQL script?
This is to run on SQL Server 2005.
|
|
How can I read the value of a system environment variable in a T-SQL script? This is to run on SQL Server 2005.
|
||
|
|
|
|
This should give you a list (provided you allow people to execute xp_cmdshell) exec master..xp_cmdshell 'set' Note: xp_cmdshell is a security hazard ... You could also do this with a managed stored proc an extended stored proc or via a com component. |
||
|
|
|
|
xp_cmdshell is generally best avoided for security reasons. You're better off using a CLR assembly. Here's a good introduction to creating a CLR assembly. You can use System.Environment.GetEnvironmentVariable() in C# - you'll find more info on how to do that here. |
||
|
|
Hey, if you want to get the server name, just call |
||
|
|
|
|
Thanks for the answers. They helped me get to a working solution, although this is probably not the most advanced method:
Specifically I was trying to get the hostname, the echo %computername% could be replaced with the hostname system command. But this now works for any environment variable. |
||
|
|
|
To "read the value of a system environment variable in a T-SQL script" you can set SQL Management Studio to use "sqlcmd Mode". Then you can use like this:
I'm not sure how this is done outside of "SQL Management Studio" but it should be hard to find out. |
||
|
|