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

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. set SQL_LOG_BIN=0;
  8. create table t1 (word char(20) not null, index(word));
  9. load data infile '../../std_data/words.dat' into table t1;
  10. create table t2 (word char(20) not null);
  11. load data infile '../../std_data/words.dat' into table t2;
  12. create table t3 (word char(20) not null primary key);
  13. load table t1 from master;
  14. load table t2 from master;
  15. load table t3 from master;
  16. check table t1;
  17. Table Op Msg_type Msg_text
  18. test.t1 check status OK
  19. select count(*) from t2;
  20. count(*)
  21. 70
  22. select count(*) from t3;
  23. count(*)
  24. 0
  25. set SQL_LOG_BIN=1;
  26. drop table if exists t1,t2,t3;
  27. create table t1(n int);
  28. drop table t1;