#Enter into mysql console:
mysql
#Then...
#Access to full query:
SELECT * from INFORMATION_SCHEMA.PROCESSLIST where db = 'your_database_name_here'
#Simplest list
show [full] processlist;
SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST
# Full query
SELECT * from INFORMATION_SCHEMA.PROCESSLIST where db = 'database_name';
# Running MySQL queries
show [full] processlist;
# Detailed information
SELECT * FROM information_schema.PROCESSLIST p;
SELECT * FROM performance_schema.threads t;
select * from INFORMATION_SCHEMA.PROCESSLIST where db = 'your_database_name_here';
Code Example |
---|
Sql :: sql select divide column by number |
Sql :: sql string starts with |
Sql :: désinstaller postgresql linux |
Sql :: oracle add proxy |
Sql :: backup postgres database |
Sql :: mysql parse int |
Sql :: mysql python |
Sql :: safe mysql |
Sql :: sql update all rows |
Sql :: search db for table name |
Sql :: oracle db get table sizes |
Sql :: update with join sql server |
Sql :: mysql get random data |
Sql :: create database collation |
Sql :: xml path sql server |
Sql :: add column not null with default value postgres |
Sql :: postgres alter table owner |
Sql :: oracle saurce code |
Sql :: sql delete caracter list |
Sql :: sql check double value |
Sql :: mysql first day of month date |
Sql :: mysql query first character |
Sql :: oracle difference between two dates in seconds |
Sql :: change row in sql |
Sql :: select row from mysql where date more than 30 days |
Sql :: count mysql |
Sql :: sql decimal vs float |
Sql :: inner join sql oracle |
Sql :: sql_calc_found_rows |
Sql :: mysql create view full table |