When I execute
select * from sys.dm_exec_connections
there will be a resulting column connection_id.
Now, I am searching for the connectionstring which corresponds to this connection_id. Can someone help me, where I can find this information?
When I execute
select * from sys.dm_exec_connections
there will be a resulting column connection_id.
Now, I am searching for the connectionstring which corresponds to this connection_id. Can someone help me, where I can find this information?
You can't find connection string info ,like the way it is deployed in web.config..
To identify and isolate connections,you have to use Application name parameter in connection string
So whenever application using connection string like above , makes a connection to SQLServer,you can identify it like below..