当前位置: 代码迷 >> Oracle开发 >> 有谁帮小弟我解释一下这段代码?
  详细解决方案

有谁帮小弟我解释一下这段代码?

热度:38   发布时间:2016-04-24 07:59:48.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
        )
)

------解决方案--------------------
我又来了