Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8344705
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T06:27:18+00:00 2026-06-09T06:27:18+00:00

I have a MySQL transaction id, and a lovely MySQL console. Is there a

  • 0

I have a MySQL transaction id, and a lovely MySQL console. Is there a way, from this, to get a list of the queries that have been run in that transaction?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-09T06:27:19+00:00Added an answer on June 9, 2026 at 6:27 am

    I’m assuming by “transaction id” you mean “thread id”.

    This is only possible if you enable the general query log. That logs every query run on the server. It adds enough overhead that most people do not use it in production. However if you do happen to use general_log = 'ON' and log_output = 'TABLE' in your environment then you can look at the query history for a given thread id like this:

    select * 
    from mysql.general_log
    where thread_id = <your_thread_id>
    order by event_time desc
    

    The ids eventually roll over, so you should probably limit your query to an appropriate time wondow (the past hour, past day, etc.) For example to limit it to the past day:

    select * 
    from mysql.general_log
    where thread_id = <your_thread_id>
    and event_time >= now() - interval 1 day
    order by event_time desc
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

My scenario is that I have some payment transaction data in MySQL and some
Does this cause a race condition with MySQL (InnoDB): Start Transaction. Try to get
I have a mysql transaction with three queries In the third query I am
I read this tutorial . I try, but i get error. We have Mysql
I have a MySQL stored procedure that is executed from Python (wrapped in Django).
I have MySQL query like this SELECT `transaction`.id, CONCAT(contact.`name`, , contact.last_name) as fullName, (SELECT
I have a number of tests that run against a MySQL database which is
I have a question about testing the queries in a transaction. I've been using
I tried this with MySQL Server 5.5: 1) ensured that transaction isolation level is
I have MySQL InnoDB table utf-8 encoded. This table has only id and name

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.