You enable binary logging on MySQL Server with the configuration:
binlog-format=STATEMENT
log-bin
Which database updates are logged on the master server to the binary log by default?
all updates except to the TEMPDB database
all updates except to the PERFORMANCE_SCHEMA database
all updates not involving temporary tables
all updates to the default database, except temporary tables
all updates to all databases
Submit