Esiste una query semplice che richiederebbe> 2 secondi per poter testare il logger di query lento?
Sto cercando qualcosa come una dichiarazione generica ricorsiva o iterativa.
Esiste una query semplice che richiederebbe> 2 secondi per poter testare il logger di query lento?
Sto cercando qualcosa come una dichiarazione generica ricorsiva o iterativa.
Risposte:
Una semplice query sarebbe:
SELECT SLEEP(2);
Vuoi iterarlo?
DELIMITER $$
DROP FUNCTION IF EXISTS `iterateSleep` $$
CREATE FUNCTION `iterateSleep` (iterations INT)
RETURNS INT DETERMINISTIC
BEGIN
DECLARE remainder INT;
SET remainder = iterations;
read_loop: LOOP
IF remainder=0 THEN
LEAVE read_loop;
END IF;
SELECT SLEEP(2) INTO @test;
SET remainder = remainder - 1;
END LOOP;
RETURN iterations;
END $$
DELIMITER ;
-- TO TEST IT OUT
mysql> SELECT iterateSleep(2);
+-----------------+
| iterateSleep(2) |
+-----------------+
| 2 |
+-----------------+
1 row in set (4.01 sec)
In alternativa, se desideri solo testare slow_query_log, modifica " long_query_time " su 0 (per registrare tutte le query):
SET long_query_time=0;
SELECT sleep(2)
non ha aggiunto nulla al registro lento, ma SET GLOBAL long_query_time=0
mi ha dato un rapido input da testare. Grazie.
Ecco una domanda piuttosto orribile. È un prodotto cartesiano che utilizza un join di stile non ansi.
use master
select * from sys.objects, sys.indexes
WAITFOR DELAY '00:00:02'