Skip to content

Instantly share code, notes, and snippets.

@nimdasx
Last active January 14, 2020 08:56
Show Gist options
  • Save nimdasx/4ee77fff7cf5263dc87d5fe1e174f0b3 to your computer and use it in GitHub Desktop.
Save nimdasx/4ee77fff7cf5263dc87d5fe1e174f0b3 to your computer and use it in GitHub Desktop.
kill query mysql macet
SELECT
GROUP_CONCAT(CONCAT('KILL ', id, ';') SEPARATOR ' ') KillQuery
FROM information_schema.processlist
WHERE user <> 'root'
AND time >= 100;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment