Neoview Messages Manual (R2.2)
SQL 3411
3411 Expressions are not allowed as IDENTITY column values. Specify
DEFAULT or supply a largeint value.
Cause You tried to specify an expression in place of a constant largeint value or DEFAULT.
Effect The operation failed.
Recovery Specify DEFAULT or supply a largeint 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.
Recovery Specify values for all the tuples in the list, or specify DEFAULT for all the tuples
in the list.
SQL 3415
3415 The first operand of function name is not valid.
name
is the name of the function.
Cause The first operand you supplied for function name is not an allowed value.
Effect The operation fails.
Recovery Correct the syntax and resubmit.
SQL 3416
The last operand of function name must not be NULL.
121