Estou procurando alternativa para criar índice em coluna longa:
create table line
(
field_key integer not null,
value varchar(4000),
...
);
create index key_value_idx on line (field_key, value);
resultados DB2 SQL Error: SQLCODE=-614, SQLSTATE=54008
. A documentação diz: The sum of the stored lengths of the specified columns must not be greater than 1024
. Para tais casos no MySQL existe a sintaxe :
create index key_value_idx on line (field_key, value(1000));
e o HSQLDB simplesmente funciona sem quaisquer limitações.
Qual é o análogo para DB2?