We have just gone over to V2R5.
I have created a table with a partioned primary index:
CREATE TABLE Syntax_Test
(
ID INTEGER,
Dte integer,
Prdcd INTEGER COMPRESS (12 ,1044 ,200 ),
Bal DECIMAL(15,2))
PRIMARY INDEX ( Prdid )
PARTITION by Dte;
When I execute an insert
insert into Syntax_Test
Select
1234 ID
,1030401 Dte
,null Prdcd
,null Bal
I get the message Partitioning Violation for Table Syntax_Test.
This occurs with a single row and a multi insert, though I cannot see how number of rows would be affected.
I have tried to use a unique partitioned index, but again our TD box doesn't like it.
Does anyone have any helpfull hints?
Thanks,
Liam1
I have created a table with a partioned primary index:
CREATE TABLE Syntax_Test
(
ID INTEGER,
Dte integer,
Prdcd INTEGER COMPRESS (12 ,1044 ,200 ),
Bal DECIMAL(15,2))
PRIMARY INDEX ( Prdid )
PARTITION by Dte;
When I execute an insert
insert into Syntax_Test
Select
1234 ID
,1030401 Dte
,null Prdcd
,null Bal
I get the message Partitioning Violation for Table Syntax_Test.
This occurs with a single row and a multi insert, though I cannot see how number of rows would be affected.
I have tried to use a unique partitioned index, but again our TD box doesn't like it.
Does anyone have any helpfull hints?
Thanks,
Liam1