include/master-slave.inc Warnings: Note #### Sending passwords in plain text without SSL/TLS is extremely insecure. Note #### Storing MySQL user name or password information in the master info repository is not secure and is therefore not recommended. Please consider using the USER and PASSWORD connection options for START SLAVE; see the 'START SLAVE Syntax' in the MySQL Manual for more information. [connection master] create table t1 (s1 char(10)); set lc_time_names= 'de_DE'; insert into t1 values (date_format('2001-01-01','%W')); set lc_time_names= 'en_US'; insert into t1 values (date_format('2001-01-01','%W')); select * from t1; s1 Montag Monday include/sync_slave_sql_with_master.inc select * from t1; s1 Montag Monday drop table t1; include/sync_slave_sql_with_master.inc include/rpl_end.inc