rpl_loaddata.result
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:4k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. stop slave;
  2. drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
  3. reset master;
  4. reset slave;
  5. drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
  6. start slave;
  7. reset master;
  8. create table t1(a int not null auto_increment, b int, primary key(a) );
  9. load data infile '../../std_data/rpl_loaddata.dat' into table t1;
  10. create temporary table t2 (day date,id int(9),category enum('a','b','c'),name varchar(60));
  11. load data infile '../../std_data/rpl_loaddata2.dat' into table t2 fields terminated by ',' optionally enclosed by '%' escaped by '@' lines terminated by 'n##n' starting by '>' ignore 1 lines;
  12. create table t3 (day date,id int(9),category enum('a','b','c'),name varchar(60));
  13. insert into t3 select * from t2;
  14. select * from t1;
  15. a b
  16. 1 10
  17. 2 15
  18. select * from t3;
  19. day id category name
  20. 2003-02-22 2461 b a a a @ %  ' " a
  21. 2003-03-22 2161 c asdf
  22. 2003-03-22 2416 a bbbbb
  23. show master status;
  24. File Position Binlog_Do_DB Binlog_Ignore_DB
  25. slave-bin.000001 964
  26. drop table t1;
  27. drop table t2;
  28. drop table t3;
  29. create table t1(a int, b int, unique(b));
  30. insert into t1 values(1,10);
  31. load data infile '../../std_data/rpl_loaddata.dat' into table t1;
  32. set global sql_slave_skip_counter=1;
  33. start slave;
  34. show slave status;
  35. Slave_IO_State Master_Host Master_User Master_Port Connect_Retry Master_Log_File Read_Master_Log_Pos Relay_Log_File Relay_Log_Pos Relay_Master_Log_File Slave_IO_Running Slave_SQL_Running Replicate_Do_DB Replicate_Ignore_DB Replicate_Do_Table Replicate_Ignore_Table Replicate_Wild_Do_Table Replicate_Wild_Ignore_Table Last_Errno Last_Error Skip_Counter Exec_Master_Log_Pos Relay_Log_Space Until_Condition Until_Log_File Until_Log_Pos Master_SSL_Allowed Master_SSL_CA_File Master_SSL_CA_Path Master_SSL_Cert Master_SSL_Cipher Master_SSL_Key Seconds_Behind_Master
  36. # 127.0.0.1 root MASTER_PORT 1 master-bin.000001 1311 slave-relay-bin.000002 1355 master-bin.000001 Yes Yes 0 0 1311 1355 None 0 No #
  37. set sql_log_bin=0;
  38. delete from t1;
  39. set sql_log_bin=1;
  40. load data infile '../../std_data/rpl_loaddata.dat' into table t1;
  41. stop slave;
  42. change master to master_user='test';
  43. change master to master_user='root';
  44. show slave status;
  45. Slave_IO_State Master_Host Master_User Master_Port Connect_Retry Master_Log_File Read_Master_Log_Pos Relay_Log_File Relay_Log_Pos Relay_Master_Log_File Slave_IO_Running Slave_SQL_Running Replicate_Do_DB Replicate_Ignore_DB Replicate_Do_Table Replicate_Ignore_Table Replicate_Wild_Do_Table Replicate_Wild_Ignore_Table Last_Errno Last_Error Skip_Counter Exec_Master_Log_Pos Relay_Log_Space Until_Condition Until_Log_File Until_Log_Pos Master_SSL_Allowed Master_SSL_CA_File Master_SSL_CA_Path Master_SSL_Cert Master_SSL_Cipher Master_SSL_Key Seconds_Behind_Master
  46. # 127.0.0.1 root MASTER_PORT 1 master-bin.000001 1419 slave-relay-bin.000001 4 master-bin.000001 No No 0 0 1419 4 None 0 No #
  47. set global sql_slave_skip_counter=1;
  48. start slave;
  49. set sql_log_bin=0;
  50. delete from t1;
  51. set sql_log_bin=1;
  52. load data infile '../../std_data/rpl_loaddata.dat' into table t1;
  53. stop slave;
  54. reset slave;
  55. show slave status;
  56. Slave_IO_State Master_Host Master_User Master_Port Connect_Retry Master_Log_File Read_Master_Log_Pos Relay_Log_File Relay_Log_Pos Relay_Master_Log_File Slave_IO_Running Slave_SQL_Running Replicate_Do_DB Replicate_Ignore_DB Replicate_Do_Table Replicate_Ignore_Table Replicate_Wild_Do_Table Replicate_Wild_Ignore_Table Last_Errno Last_Error Skip_Counter Exec_Master_Log_Pos Relay_Log_Space Until_Condition Until_Log_File Until_Log_Pos Master_SSL_Allowed Master_SSL_CA_File Master_SSL_CA_Path Master_SSL_Cert Master_SSL_Cipher Master_SSL_Key Seconds_Behind_Master
  57. # 127.0.0.1 root MASTER_PORT 1 4 slave-relay-bin.000001 4 No No 0 0 0 4 None 0 No #
  58. reset master;
  59. create table t2 (day date,id int(9),category enum('a','b','c'),name varchar(60),
  60. unique(day));
  61. load data infile '../../std_data/rpl_loaddata2.dat' into table t2 fields
  62. terminated by ',' optionally enclosed by '%' escaped by '@' lines terminated by
  63. 'n##n' starting by '>' ignore 1 lines;
  64. ERROR 23000: Duplicate entry '2003-03-22' for key 1
  65. show master status;
  66. File Position Binlog_Do_DB Binlog_Ignore_DB
  67. master-bin.000001 491
  68. drop table t2;