mysql.general_log Table

You are viewing an old version of this article. View the current version here.

The mysql.general_log table stores the contents of the General Query Log if general logging is active and the output is being written to table (see Writing logs into tables).

It contains the following fields:

FieldTypeNullKeyDefaultDescription
event_timetimestamp(6)NOCURRENT_TIMESTAMP(6)Time the query was executed.
user_hostmediumtextNONULLUser and host combination.
thread_idint(11)NONULLThread id.
server_idint(10) unsignedNONULLServer id.
command_typevarchar(64)NONULLType of command.
argumentmediumtextNONULLFull query.

Example

SELECT * FROM mysql.general_log\G
*************************** 1. row ***************************
  event_time: 2014-11-11 08:40:04.117177
   user_host: root[root] @ localhost []
   thread_id: 74
   server_id: 1
command_type: Query
    argument: SELECT * FROM test.s
*************************** 2. row ***************************
  event_time: 2014-11-11 08:40:10.501131
   user_host: root[root] @ localhost []
   thread_id: 74
   server_id: 1
command_type: Query
    argument: SELECT * FROM mysql.general_log
...

Comments

Comments loading...
Content reproduced on this site is the property of its respective owners, and this content is not reviewed in advance by MariaDB. The views, information and opinions expressed by this content do not necessarily represent those of MariaDB or any other party.