I am connected to my company's SQL 2005 server over LAN.
How do I find out the host?
I am connected to my company's SQL 2005 server over LAN.
How do I find out the host?
Start -> Run
then type:
cmd
in a command window type:
netstat -o -a
Then switch to taskmanager and find PID of your application, so you can then search this pid in netstat output. I think there will be enough details for you.
In command prompt type in
netstat -a
This should give you the list of all current TCP connections. You should be able to see the one connected to a server on the mssql port.