-2

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?

1 Answers1

1

This might help you safely determine the SPIDs to kill:

 select spid, program_name
 from sys.sysprocesses
 order by program_name
T.H.
  • 819
  • 5
  • 4