Understanding Table Properties

In the Database Help system, each table has properties. The properties options are:

Key Indicators

The primary key serves as a unique identifier to the table and is used when searching or retrieving data. Primary keys do not allow null values. Foreign keys form relationships between the table that contains them and the table for which they are the primary key.  When viewing Infor CRMtables:

Data Types

Data is stored in a predefined format called a data type. A data type is an attribute that specifies what type of information can be stored in a column, parameter, or value. System-supplied data types are provided by Microsoft SQL Server and have base data types.

User-defined data types can be used with Microsoft SQL Server databases when several tables must store the same type of data in a column. You must also ensure that these columns have the same data type, length, and nullability. User-defined data types are derived from base data types.

Indexes

Indexes allow the database to find and sort records faster, which improves performance. In a clustered index, the physical order of the rows in the table is the same as the logical order of the index key values. A unique index ensures that the indexed column contains no duplicate values. Other indexes, known as secondary indexes, may also be used to locate data, and are listed with each table. When viewing tables:

Related Topics

Understanding Table Relationships