Dynamic table partitioning in Oracle

前端 未结 4 1164
灰色年华
灰色年华 2021-02-14 18:24

I\'m in the process of building a database storage for my app consisting on a single table with a huge data volume (hundreds of millions of records). I\'m planning on having an

4条回答
  •  轻奢々
    轻奢々 (楼主)
    2021-02-14 19:07

    In 11g we can define INTERVAL partitions, and Oracle will automatically create new partitions when it gets new records whose keys don't fit in any of the existing ranges. This is a very cool feature. Find out more.

    One thing to bear in mind is that Partitioning is a chargeable extra on top of the Enterprise Edition license. So it is not cheap to use.

提交回复
热议问题