HI,
I would create the following table on Informix 9.4:
create table table_client_mappings (
principal integer not null,
sync_source varchar(128) not null,
luid varchar(200) not null,
guid varchar(200) not null,
primary key (principal,sync_source,luid,guid)
constraint pk_clientmapping
);
but the creation of the pk_clientMapping constraint fails because it exceeds the maximum key length.
How could I create the table with that PK?
Is there a max length for PK?
Thanks in advance
Luigia
I would create the following table on Informix 9.4:
create table table_client_mappings (
principal integer not null,
sync_source varchar(128) not null,
luid varchar(200) not null,
guid varchar(200) not null,
primary key (principal,sync_source,luid,guid)
constraint pk_clientmapping
);
but the creation of the pk_clientMapping constraint fails because it exceeds the maximum key length.
How could I create the table with that PK?
Is there a max length for PK?
Thanks in advance
Luigia