当前位置: 代码迷 >> Oracle开发 >> 这段代码该怎么理解?(表分区的)
  详细解决方案

这段代码该怎么理解?(表分区的)

热度:111   发布时间:2016-04-24 07:59:45.0
这段代码该如何理解??(表分区的)
partition   by   range   (PART)
(
    partition   PART_0   values   less   than   ( '1 ')
        tablespace   REP_INFO_DATA000
        pctfree   10
        initrans   1
        maxtrans   255
        storage
        (
            initial   1M
            next   1M
            minextents   1
            maxextents   unlimited
            pctincrease   0
        ),
    partition   PART_1   values   less   than   ( '2 ')
        tablespace   REP_INFO_DATA000
        pctfree   10
        initrans   1
        maxtrans   255
        storage
        (
            initial   1M
            next   1M
            minextents   1
            maxextents   unlimited
            pctincrease   0
        )
)

------解决方案--------------------
晕死 楼主怎么了??
  相关解决方案