Primary Key Field Type
 ID uniqueidentifier

Field Field Type Null Notes Description
 GENDERCODE tinyint   Default = 0 0=Unknown, 1=Male, 2=Female
 GENDER nvarchar(7) (Computed) CASE [GENDERCODE] WHEN 0 THEN N'Unknown' WHEN 1 THEN N'Male' WHEN 2 THEN N'Female' END Provides a translation for the 'GENDERCODE' field.
 DATEADDED datetime   Default = getdate() Indicates the date this record was added.
 DATECHANGED datetime   Default = getdate() Indicates the date this record was last changed.
 TS timestamp   Timestamp.
 TSLONG bigint (Computed) CONVERT(bigint, TS) Numeric representation of the timestamp.

Foreign Key Field Type Null Notes Description
 TITLECODEID uniqueidentifier TITLECODE.LOCALID FK to TITLECODE
 ADDEDBYID uniqueidentifier   CHANGEAGENT.ID FK to CHANGEAGENT.
 CHANGEDBYID uniqueidentifier   CHANGEAGENT.ID FK to CHANGEAGENT.

Index Name Field(s) Unique Primary Clustered
 IX_TITLECODECONFIGURATION_DATEADDED DATEADDED    
 IX_TITLECODECONFIGURATION_DATECHANGED DATECHANGED      
 PK_TITLECODECONFIGURATION ID  

Trigger Name Description
 TR_TITLECODECONFIGURATION_AUDIT_UPDATE
 TR_TITLECODECONFIGURATION_AUDIT_DELETE

Entity-Relationship diagram of this table