4

I am using SQL Server Profiler to view my database activities. In that, I want to find out which Client Process ID is associate with which machine (From where application is running). because there are multiple instance of my application are running on different machines. So I want to identify them. So is there any way to find out ClientProcessID?

Brijesh Patel
  • 2,901
  • 15
  • 50
  • 73

1 Answers1

8

you can use hostname in profiler, it is the same as the host_name() function in T-SQL

run this in a query window

SELECT host_name()

In profiler it is hostname, you have to check "show all columns" to see it

SQLMenace
  • 132,095
  • 25
  • 206
  • 225