web.sql 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. --------------------------------------------------
  2. -- Export file for user GJUTIS --
  3. -- Created by OpenValue on 2014-07-31, 10:29:14 --
  4. --------------------------------------------------
  5. spool web.log
  6. prompt
  7. prompt Creating table TB_ST_DAY_CONN_CCTV
  8. prompt ==================================
  9. prompt
  10. create table GJUTIS.TB_ST_DAY_CONN_CCTV
  11. (
  12. statmonth VARCHAR2(6) not null,
  13. statday VARCHAR2(2) not null,
  14. cctvid VARCHAR2(7) not null,
  15. conntp CHAR(1) default 'W',
  16. weekday VARCHAR2(1) default 1,
  17. conncnt NUMBER(8) default 0
  18. )
  19. tablespace ITS_HIST_DATA
  20. pctfree 10
  21. initrans 1
  22. maxtrans 255
  23. nologging;
  24. prompt
  25. prompt Creating table TB_ST_DAY_CONN_WEB
  26. prompt =================================
  27. prompt
  28. create table GJUTIS.TB_ST_DAY_CONN_WEB
  29. (
  30. statmonth VARCHAR2(6) not null,
  31. statday VARCHAR2(2) not null,
  32. pageid VARCHAR2(4) not null,
  33. weekday VARCHAR2(1) default 1,
  34. conncnt NUMBER(8) default 0
  35. )
  36. tablespace ITS_HIST_DATA
  37. pctfree 10
  38. initrans 1
  39. maxtrans 255
  40. storage
  41. (
  42. initial 64K
  43. next 1M
  44. minextents 1
  45. maxextents unlimited
  46. )
  47. nologging;
  48. prompt
  49. prompt Creating table TB_ST_HOUR_CONN_CCTV
  50. prompt ===================================
  51. prompt
  52. create table GJUTIS.TB_ST_HOUR_CONN_CCTV
  53. (
  54. statdate VARCHAR2(8) not null,
  55. stathour VARCHAR2(2) not null,
  56. cctvid VARCHAR2(7) not null,
  57. conntp CHAR(1) default 'W',
  58. weekday VARCHAR2(1) default 1,
  59. conncnt NUMBER(8) default 0
  60. )
  61. tablespace ITS_HIST_DATA
  62. pctfree 10
  63. initrans 1
  64. maxtrans 255
  65. nologging;
  66. prompt
  67. prompt Creating table TB_ST_HOUR_CONN_WEB
  68. prompt ==================================
  69. prompt
  70. create table GJUTIS.TB_ST_HOUR_CONN_WEB
  71. (
  72. statdate VARCHAR2(8) not null,
  73. stathour VARCHAR2(2) not null,
  74. pageid VARCHAR2(4) not null,
  75. weekday VARCHAR2(1) default 1,
  76. conncnt NUMBER(8) default 0
  77. )
  78. tablespace ITS_HIST_DATA
  79. pctfree 10
  80. initrans 1
  81. maxtrans 255
  82. storage
  83. (
  84. initial 64K
  85. next 1M
  86. minextents 1
  87. maxextents unlimited
  88. )
  89. nologging;
  90. prompt
  91. prompt Creating table TB_ST_MON_CONN_CCTV
  92. prompt ==================================
  93. prompt
  94. create table GJUTIS.TB_ST_MON_CONN_CCTV
  95. (
  96. statyear VARCHAR2(4) not null,
  97. statmon VARCHAR2(2) not null,
  98. cctvid VARCHAR2(7) not null,
  99. conntp CHAR(1) default 'W',
  100. conncnt NUMBER(8) default 0
  101. )
  102. tablespace ITS_HIST_DATA
  103. pctfree 10
  104. initrans 1
  105. maxtrans 255
  106. nologging;
  107. prompt
  108. prompt Creating table TB_ST_MON_CONN_WEB
  109. prompt =================================
  110. prompt
  111. create table GJUTIS.TB_ST_MON_CONN_WEB
  112. (
  113. statyear VARCHAR2(4) not null,
  114. statmon VARCHAR2(2) not null,
  115. pageid VARCHAR2(4) not null,
  116. conncnt NUMBER(8) default 0
  117. )
  118. tablespace ITS_HIST_DATA
  119. pctfree 10
  120. initrans 1
  121. maxtrans 255
  122. storage
  123. (
  124. initial 64K
  125. next 1M
  126. minextents 1
  127. maxextents unlimited
  128. )
  129. nologging;
  130. spool off