Is there a query in SQL Server 2005 I can use to get the server's IP or name?
|
|
|
|
|
|
|
A simpler way to get the machine name without the \InstanceName is:
|
||
|
|
|
|
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:
|
|||
|
|
|
|
It's in the @@SERVERNAME variable;
|
|||
|
|
|
|
|
|||
|
|
