Is there a query in SQL Server 2005 I can use to get the server's IP or name?
|
feedback
|
|
You can get the[hostname]\[instancename] by:
To get only the hostname when you have hostname\instance name format:
Alternatively as @GilM pointed out:
You can get the actual IP address using this:
| ||||
|
feedback
|
|
It's in the @@SERVERNAME variable;
| ||||
|
feedback
|
|
A simpler way to get the machine name without the \InstanceName is:
| |||
|
feedback
|
|
The server might have multiple IP addresses that it is listening on. If your connection has the VIEW SERVER STATE server permission granted to it, you can run this query to get the address you have connected to SQL Server:
This solution does not require you to shell out to the OS via xp_cmdshell, which is a technique that should be disabled (or at least strictly secured) on a production server. It may require you to grant VIEW SERVER STATE to the appropriate login, but that is a far smaller security risk than running xp_cmdshell. The technique mentioned by GilM for the server name is the preferred one:
| |||
feedback
|