Constraint Name | Description |
Primary Key | Column in an object that holds the value unique to a record. It defines the way the insert, update, and delete statements are generated and executed for a data object. Single or multi-part primary key can be defined for an object. |
Foreign Key | Column in an object that holds the relationship to another object. It is mapped to the primary key column of the other object. |
Unique Constraint | Column in an object that ensure uniqueness on non-primary key columns. |
Check Constraint | Constraints that allow database level specification of a particular condition on each row in a table. Note: OneData does not support check constraint on SQL Server. |
Passive Constraint | Constraint used to: Validate the combination of entries being loaded or entered. Restrict the entry of data to valid combinations. |