Skip to content

Instantly share code, notes, and snippets.

@johnl
Created July 8, 2013 09:29
Show Gist options
  • Save johnl/5947461 to your computer and use it in GitHub Desktop.
Save johnl/5947461 to your computer and use it in GitHub Desktop.
mysql general log example
mysql> select * from general_log;
+---------------------+---------------------------+-----------+-----------+--------------+-------------------------------------+
| event_time | user_host | thread_id | server_id | command_type | argument |
+---------------------+---------------------------+-----------+-----------+--------------+-------------------------------------+
| 2013-07-08 10:27:30 | root[root] @ localhost [] | 37 | 0 | Query | create table databasea (id integer) |
| 2013-07-08 10:27:35 | root[root] @ localhost [] | 37 | 0 | Query | insert into databasea values (1) |
| 2013-07-08 10:27:36 | root[root] @ localhost [] | 37 | 0 | Query | insert into databasea values (2) |
| 2013-07-08 10:27:37 | root[root] @ localhost [] | 37 | 0 | Query | insert into databasea values (3) |
| 2013-07-08 10:27:38 | root[root] @ localhost [] | 37 | 0 | Query | insert into databasea values (4) |
| 2013-07-08 10:27:43 | root[root] @ localhost [] | 37 | 0 | Query | select * from databasea |
| 2013-07-08 10:27:50 | root[root] @ localhost [] | 37 | 0 | Query | drop table databasea |
| 2013-07-08 10:27:52 | root[root] @ localhost [] | 37 | 0 | Query | set global general_log = off |
+---------------------+---------------------------+-----------+-----------+--------------+-------------------------------------+
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment