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

MySQL数据库

开发平台:

Visual C++

  1. set SQL_LOG_BIN=0;
  2. drop table if exists t1, t2, t3;
  3. create table t4(n int);
  4. backup table t4 to '../bogus';
  5. Table Op Msg_type Msg_text
  6. test.t4 backup error Failed copying .frm file (errno: X)
  7. test.t4 backup status Operation failed
  8. backup table t4 to '../tmp';
  9. Table Op Msg_type Msg_text
  10. test.t4 backup status OK
  11. backup table t4 to '../tmp';
  12. Table Op Msg_type Msg_text
  13. test.t4 backup error Failed copying .frm file (errno: X)
  14. test.t4 backup status Operation failed
  15. drop table t4;
  16. restore table t4 from '../tmp';
  17. Table Op Msg_type Msg_text
  18. test.t4 restore status OK
  19. select count(*) from t4;
  20. count(*)
  21. 0
  22. create table t1(n int);
  23. insert into t1 values (23),(45),(67);
  24. backup table t1 to '../tmp';
  25. Table Op Msg_type Msg_text
  26. test.t1 backup status OK
  27. drop table t1;
  28. restore table t1 from '../bogus';
  29. Table Op Msg_type Msg_text
  30. t1 restore error Failed copying .frm file
  31. restore table t1 from '../tmp';
  32. Table Op Msg_type Msg_text
  33. test.t1 restore status OK
  34. select n from t1;
  35. n
  36. 23
  37. 45
  38. 67
  39. create table t2(m int not null primary key);
  40. create table t3(k int not null primary key);
  41. insert into t2 values (123),(145),(167);
  42. insert into t3 values (223),(245),(267);
  43. backup table t2,t3 to '../tmp';
  44. Table Op Msg_type Msg_text
  45. test.t2 backup status OK
  46. test.t3 backup status OK
  47. drop table t1,t2,t3;
  48. restore table t1,t2,t3 from '../tmp';
  49. Table Op Msg_type Msg_text
  50. test.t1 restore status OK
  51. test.t2 restore status OK
  52. test.t3 restore status OK
  53. select n from t1;
  54. n
  55. 23
  56. 45
  57. 67
  58. select m from t2;
  59. m
  60. 123
  61. 145
  62. 167
  63. select k from t3;
  64. k
  65. 223
  66. 245
  67. 267
  68. drop table t1,t2,t3,t4;
  69. restore table t1 from '../tmp';
  70. Table Op Msg_type Msg_text
  71. test.t1 restore status OK
  72. rename table t1 to t5;
  73. lock tables t5 write;
  74. backup table t5 to '../tmp';
  75. unlock tables;
  76. Table Op Msg_type Msg_text
  77. test.t5 backup status OK
  78. drop table t5;