Neoview Messages Manual (Volume 1) (R2.4)

Cause The DDL statement coded in unicode contains non-ISO88591 characters. The HP
Neoview database software does not support arbitrary unicode characters.
Effect The operation fails.
Recovery Remove non-ISO88591 characters and resubmit.
SQL 3409
3409 Declaring a cursor on an embedded INSERT statement is not yet
supported.
Cause You attempted to declare a cursor on an embedded INSERT statement.
Effect The operation fails.
Recovery Modify the statement and resubmit.
SQL 3411
3411 Expressions are not allowed as IDENTITY column values. Specify
DEFAULT or supply a numeric value.
Cause You tried to specify an expression in place of a constant numeric value or DEFAULT.
Effect The operation failed.
Recovery Specify DEFAULT or supply a numeric value.
SQL 3412
3412 IDENTITY column column-name must be the primary key or must have
a unique index on it.
column-name
is the name of the IDENTITY column.
Cause You tried to INSERT a system-generated value for the IDENTITY column that does
not have a unique index on it.
Effect The operation failed.
Recovery Create a unique index on the IDENTITY column. Note that the unique index must
be only on the IDENTITY column.
SQL 3413
3413 The NOT NULL constraint on IDENTITY column column-name must be NOT
DROPPABLE.
column-name
is the name of the IDENTITY column.
Cause You specified the DROPPABLE attribute on the NOT NULL constraint on the
IDENTITY column.
Effect The operation failed.
Recovery Specify the NOT DROPPABLE attribute on the NOT NULL constraint on the
IDENTITY column.
SQL 3414
3414 For an IDENTITY column column-name, the tuple list cannot have
mixed user specified and DEFAULT values. Specify values for all or
specify DEFAULT for all.
column-name
is the name of the IDENTITY column.
Cause You provided mixed user-specified values and DEFAULT values in a tuple list for
the IDENTITY column.
Effect The operation failed.
121