Tagged Questions
The processlist tag has no wiki summary.
14
votes
4answers
14k views
how to customize `show processlist` in mysql?
I want to order by Time,but seems no way to do that ?
mysql> show processlist;
...
3
votes
3answers
2k views
Processlist
How do I get a process list of all running processes from Python, on Unix, containing then name of the command/process and process id, so I can filter and kill processes.
2
votes
2answers
88 views
show running applications (alt-tab program list)
Found the solution here: http://blogs.msdn.com/b/oldnewthing/archive/2007/10/08/5351207.aspx
I'm trying to go a list of running applications, i found on several forums this solution:
Process[] ...
0
votes
1answer
468 views
Is there any way to hide a process from the Windows Task Manager? (<ctrl>+<alt>+<del> task list) [closed]
Possible Duplicates:
How do I hide a process in Task Manager in C#?
how to create a process which is not visible in task manager or services list.
I was wondering if it is possible to ...
0
votes
0answers
39 views
mysql — users and connections errors
I have python scripts that just arbitrarily keeps losing connections, which coincide with server crashes. There are no super long queries or results. Also note that the error occurs after different ...
0
votes
2answers
644 views
Understanding the result of `SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST`
I want to make sure my php code and my website does not use permanent connections.
I use the sql query below to check but I don't quite understand the output,
$sql = "SELECT * FROM ...
0
votes
2answers
414 views
How to get cpu usage % in C# for each running process
I use System.Diagnostics.Process.GetProcesses() to get process list.
I found TotalProcessorTime property for each process - it is TimeSpan.
But how to get relative values of CPU usage, i. e. i need % ...
0
votes
2answers
297 views
Is there an equivalent to 'mysqladmin processlist' for SQL Server?
I've been trying to formulate a query to help myself identify resource-heavy queries/database/users using SQL Server and haven't gotten it down quite yet. I want to build a query that will do what ...