如何使用SQLServer数据库按月创建表分区
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何使用SQLServer数据库按月创建表分区相关的知识,希望对你有一定的参考价值。
参考技术A create table xxx(id number,time date)parttion by range(time)
(partion part1 values less than (to_date('2012-01-31','yyyy-mm-dd')) tablespace tb1,
partion part 2 vales less than(to_date('2012-01-31','yyyy-mm-dd')) tablespace tb2);
以上是关于如何使用SQLServer数据库按月创建表分区的主要内容,如果未能解决你的问题,请参考以下文章