vote up 1 vote down star

How can I read the value of a system environment variable in a T-SQL script?

This is to run on SQL Server 2005.

flag

5 Answers

vote up 1 vote down check

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.

link|flag
vote up 2 vote down

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.

link|flag
I agree about xp_cmdshell but since it is already enabled I can use it in this instance – benPearce May 13 at 5:08
the undocumented proc xp_regread could also probably be used by reading the registry – SQLMenace May 13 at 20:21
vote up 1 vote down

Hey, if you want to get the server name, just call SELECT @@SERVERNAME

link|flag
vote up 0 vote down

Thanks for the answers. They helped me get to a working solution, although this is probably not the most advanced method:

declare @val varchar(50)
create table #tbl (h varchar(50))
insert into #tbl exec master..xp_cmdshell 'echo %computername%'
set @val = (select top 1 h from #tbl)
drop table #tbl

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.

link|flag
Does that return something different than "select \@\@servername"? – Ron Savage Oct 27 at 17:57
vote up 0 vote down

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:

Print '$(TEMP)'

:r $(Temp)\Member.sql
go

I'm not sure how this is done outside of "SQL Management Studio" but it should be hard to find out.

link|flag

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.