hello,
my database has column defined as GENERATED ALWAYS:
TXT_VERMITTLERN R VARCHAR(10) NOT NULL GENERATED ALWAYS AS
(RTRIM(CAST(ID_ VERMITTLER AS CHAR(10))))
ID_VERMITTLER is:
ID_VERMITTLER INTEGER NOT NULL GENERATED BY DEFAULT AS
IDENTITY
I try using LOAD column to import data, but I can't find appropriate
modifier:
- GENERATEDOVERRI DE crashes with SQL3526N reason code 9 and suggest to use
identityoverrid e,
- IDENTITYOVERRID E crashes with SQL3526N reason code 5
It is possible to use GENERATEDIGNORE , but I strongly prefer to override to
overwrite content of generated column
Some suggestions?
regards
S.
my database has column defined as GENERATED ALWAYS:
TXT_VERMITTLERN R VARCHAR(10) NOT NULL GENERATED ALWAYS AS
(RTRIM(CAST(ID_ VERMITTLER AS CHAR(10))))
ID_VERMITTLER is:
ID_VERMITTLER INTEGER NOT NULL GENERATED BY DEFAULT AS
IDENTITY
I try using LOAD column to import data, but I can't find appropriate
modifier:
- GENERATEDOVERRI DE crashes with SQL3526N reason code 9 and suggest to use
identityoverrid e,
- IDENTITYOVERRID E crashes with SQL3526N reason code 5
It is possible to use GENERATEDIGNORE , but I strongly prefer to override to
overwrite content of generated column
Some suggestions?
regards
S.
Comment