All,
I have created the patitioning like the one which I have attached.
My question is why partitioning on Varchar field is not reliable. The 200 and 2000 fall under the same partition.
How to solve this problem
Any inputs much Appreciated
Thanks
Sen
create partition function pt_fn_test( varchar(10))
as range right for values('100' , '200' , '300' , '400', '500',
'600', '700' , '800' , '900', '1000')
create partition scheme pt_sh_test
as partition pt_fn_test
to (
Partition1,Partition2, Partition3,Partition4,Partition5,
Partition6,Partition7,Partition8,Partition9,Partition10,
Partition11)
create table test_varchar
(eno varchar(10),
ename varchar(100))
on pt_sh_test(eno)
insert into test_varchar values ('10', 'A')
insert into test_varchar values ('100', 'A')
insert into test_varchar values ('200', 'A')
insert into test_varchar values ('300', 'A')
insert into test_varchar values ('400', 'A')
insert into test_varchar values ('500', 'A')
insert into test_varchar values ('600', 'A')
insert into test_varchar values ('700', 'A')
insert into test_varchar values ('800', 'A')
insert into test_varchar values ('900', 'A')
insert into test_varchar values ('1000', 'A')
insert into test_varchar values ('1999', 'A')
insert into test_varchar values ('2000', 'A')
select $PARTITION.pt_fn_test ('10') 1
select $PARTITION.pt_fn_test ('100') 2
select $PARTITION.pt_fn_test ('200') 4
select $PARTITION.pt_fn_test ('300') 5
select $PARTITION.pt_fn_test ('400') 6
select $PARTITION.pt_fn_test ('500') 7
select $PARTITION.pt_fn_test ('600') 8
select $PARTITION.pt_fn_test ('700') 9
select $PARTITION.pt_fn_test ('800') 10
select $PARTITION.pt_fn_test ('900') 11
select $PARTITION.pt_fn_test ('1000') 3
select $PARTITION.pt_fn_test ('2000') 4
select $PARTITION.pt_fn_test ('3000') 5
select $PARTITION.pt_fn_test ('4000') 6
I have created the patitioning like the one which I have attached.
My question is why partitioning on Varchar field is not reliable. The 200 and 2000 fall under the same partition.
How to solve this problem
Any inputs much Appreciated
Thanks
Sen
create partition function pt_fn_test( varchar(10))
as range right for values('100' , '200' , '300' , '400', '500',
'600', '700' , '800' , '900', '1000')
create partition scheme pt_sh_test
as partition pt_fn_test
to (
Partition1,Partition2, Partition3,Partition4,Partition5,
Partition6,Partition7,Partition8,Partition9,Partition10,
Partition11)
create table test_varchar
(eno varchar(10),
ename varchar(100))
on pt_sh_test(eno)
insert into test_varchar values ('10', 'A')
insert into test_varchar values ('100', 'A')
insert into test_varchar values ('200', 'A')
insert into test_varchar values ('300', 'A')
insert into test_varchar values ('400', 'A')
insert into test_varchar values ('500', 'A')
insert into test_varchar values ('600', 'A')
insert into test_varchar values ('700', 'A')
insert into test_varchar values ('800', 'A')
insert into test_varchar values ('900', 'A')
insert into test_varchar values ('1000', 'A')
insert into test_varchar values ('1999', 'A')
insert into test_varchar values ('2000', 'A')
select $PARTITION.pt_fn_test ('10') 1
select $PARTITION.pt_fn_test ('100') 2
select $PARTITION.pt_fn_test ('200') 4
select $PARTITION.pt_fn_test ('300') 5
select $PARTITION.pt_fn_test ('400') 6
select $PARTITION.pt_fn_test ('500') 7
select $PARTITION.pt_fn_test ('600') 8
select $PARTITION.pt_fn_test ('700') 9
select $PARTITION.pt_fn_test ('800') 10
select $PARTITION.pt_fn_test ('900') 11
select $PARTITION.pt_fn_test ('1000') 3
select $PARTITION.pt_fn_test ('2000') 4
select $PARTITION.pt_fn_test ('3000') 5
select $PARTITION.pt_fn_test ('4000') 6