Table constraints
Informix®
Informix supports primary key, unique, foreign key, default and check constraints.
The constraint naming syntax is different in Informix and most other databases: Informix expects the constraint name after the constraint definition:
CREATE TABLE emp (
...
emp_code CHAR(10) UNIQUE CONSTRAINT pk_emp,
...
)
CREATE TABLE emp (
...
emp_code CHAR(10) CONSTRAINT pk_emp UNIQUE,
...
)
SAP HANA®
SAP HANA supports primary key, unique, foreign key, default and check constraints.
Constraint naming
The constraint naming clause must be placed before the constraint specification.
Primary keys
Like Informix, SAP HANA creates an index to enforce PRIMARY KEY
constraints (some RDBMS do
not create indexes for constraints). Using CREATE UNIQUE INDEX
to define unique
constraints is obsolete (use primary keys or a secondary key instead).
Unique constraints
Like Informix, SAP HANA creates an index to enforce UNIQUE
constraints (some RDBMS do not
create indexes for constraints).
NOT NULL
. Foreign keys
Both Informix and SAP HANA support the ON DELETE CASCADE
option.
Check constraints
Informix supports CHECK
constraints,
but this feature is not available in SAP HANA.
Null constraints
Informix and SAP
HANA support NOT NULL
constraints.
Solution
Constraint naming syntax: The database interface does not convert constraint naming expressions when creating tables from BDL programs. Review the database creation scripts to adapt the constraint naming clauses for SAP HANA .