- 论坛徽章:
- 0
|
有个表,每个月生成的数据级别很大,而且要存放N多年的帐单明细。
结构如下面这个样子(在此只列出其中三个字段)
create table detail_bill
(
income number(12,2),
month varchar2(8),
user_no varchar2(12)
)
我想按月份即 month字段分区 重建一表,以提高读取速度,可我只有一个表空间可用
不知这样建分区还有没有意义
create table detail_bill
(income number(12,2), month varchar2(8),user_no varchar2(20))
partition by rang(month)
(partition 200701 values less than(200702) table space my_table_space,
partition 200702 values less than(200703) table space my_table_space,
partition 200703 values less than(200704) table space my_table_space,
partition 200705 values less than(200706) table space my_table_space,
partition 200706 values less than(200707) table space my_table_space,
....................................................................
partition 200801 values less than(200802) table space my_table_space
);
然后建立以month和user_no联合的索引
create index detail_bill_user_no_month on detail_bill(month,user_no);
1)、我想既然数据放在一个表空间,用分区还有没有意义?我对partition不太了解,
只看了网上几篇文单,知之不多。
2)、如果我有三个表空间可用,我把这么多的分区分散到这三个表空间中,然后再建索引,那又会如何呢?
请帮忙解答,谢谢!!
3)、create index detail_bill_user_no_month on detail_bill(month,user_no);
建立的索引是什么样子的?是对各分区分别索引还是全表索引?
4、create index detail_bill_user_no_month on detail_bill(user_no);
这样子的索引是不是对各分其分别建立对user_no的索引呢?
[ 本帖最后由 cviolet 于 2007-8-17 23:31 编辑 ] |
|