Mysql query logging for a specific table

Is it possible to only log changes to a specific table using the mysql bin log?

+3
source share
1 answer

Perhaps only one (or several) databases will go into the bin log with - binlog-do-db on the main one.

It is also possible for subordinates to replicate only tables that match a specific row, with - replication-wild-do-table

+1
source

All Articles