Mysql
 sql >> Base de Dados >  >> RDS >> Mysql

tabelas de bloqueio de consulta mysql


Se você tiver acesso root ao serviço mysql:
#mysql -uroot
#mysql> SET global log_output = 'table';
#mysql> SET global general_log = 1;

recarregue o site ou faça algo que bloqueie a tabela
#mysql> SET global general_log = 0;

E em seguida inspecione a tabela mysql.general_log

Se você não tiver acesso root ao serviço mysql definido em root/lib/Varien/Db/Adapter/Pdo/Mysql.php :
protected $_debug = true;
protected $_logAllQueries = true;

Após recarregar a página, você obterá o log de consulta em var/debug/pdo_mysql.log