Tagged Questions
2
votes
6answers
4k views
SQL Server: Kill Process using Stored Procedure
I want to modify the following as it doesn't seem to kill processes - I think its supposed to disconnect users (is this the same?). I want to be able to kill all process for a particular database - ...
2
votes
4answers
2k views
How to tell if a MySQL process is stuck?
I have a long-running process in MySQL. It has been running for a week. There is one other connection, to a replication master, but I have halted slave processing so there's effectively nothing else ...
1
vote
1answer
129 views
Query doesn't work on c# but work on powershell
Anyone know why my query "select Name, ProcessID, Caption from Win32_Process where ProcessId='" + processIds[index] + "'" return
Column 'Name' does not belong to table Win32_Process
in my program ...
0
votes
2answers
38 views
Linux process activities
Is there possibility to show what's going on under specified process in Linux?
For example, i run SQL query -> select evil_function();
and notice that process under Linux uses all cpu.
So is there ...