jones
jones

Reputation: 21

Log file for mysql database

How can I create a log file for mysql, and maintain the log for each database transaction?

Upvotes: 2

Views: 2307

Answers (1)

John Parker
John Parker

Reputation: 54445

There are a variety of MySQL logs. If you're just after a record of changes, the binary log should be ideal for your requirements.

Information on log maintenance is also reference from the page linked above.

Upvotes: 1

Related Questions