I have 3 ASP.MVC App on one Server (hostname), hence, I have 3 different AppPool. Also, I have one SQL Server DB and each of application using it.
My question: Is it possible kill only these processes derived from one ASP.MVC App?
I have 3 ASP.MVC App on one Server (hostname), hence, I have 3 different AppPool. Also, I have one SQL Server DB and each of application using it.
My question: Is it possible kill only these processes derived from one ASP.MVC App?
This might help you safely determine the SPIDs to kill:
select spid, program_name
from sys.sysprocesses
order by program_name