Reputation: 4951
Is it possible to log changes only on a specific table using mysql bin log?
Upvotes: 3
Views: 1325
Reputation: 40001
It is possible to have just one (or several) databases go into the bin log with --binlog-do-db on the master.
It is also possible to have the slave replicate only tables that match a certain string with --replication-wild-do-table
Upvotes: 1