LoginSignup
1
0

More than 5 years have passed since last update.

MySQL 5.6 -- トランザクションID、取得、SQL

Posted at

以下のSQLで、確認できます。

    SELECT
      CONCAT('Call function CONNECTION_ID:', CONNECTION_ID(),
        ' Trx_IDs:', GROUP_CONCAT(trx_id SEPARATOR ','),
        ' thread_IDs:', GROUP_CONCAT(trx_mysql_thread_id SEPARATOR ',')
      ) AS infos
    FROM information_schema.INNODB_TRX
    ORDER BY trx_id
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0