Primary Key Field Type
 ID uniqueidentifier

Field Field Type Null Notes Description
 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.
 ORIGINCODE tinyint   Default = 0 Defines where the address originated.
 ORIGIN nvarchar(9) (Computed) CASE [ORIGINCODE] WHEN 0 THEN N'User' WHEN 1 THEN N'Web Forms' END Provides a translation for the 'ORIGINCODE' field.

Foreign Key Field Type Null Notes Description
 ID uniqueidentifier   CONSTITUENT.LOCALID Primary Key.
 INFOSOURCECODEID uniqueidentifier INFOSOURCECODE.ID FK to INFOSOURCECODE
 ADDEDBYID uniqueidentifier   CHANGEAGENT.ID FK to CHANGEAGENT.
 CHANGEDBYID uniqueidentifier   CHANGEAGENT.ID FK to CHANGEAGENT.
 REVENUEID uniqueidentifier FINANCIALTRANSACTION.ID FK to REVENUE

Index Name Field(s) Unique Primary Clustered
 IX_CONSTITUENTORIGINATION_DATEADDED DATEADDED    
 IX_CONSTITUENTORIGINATION_DATECHANGED DATECHANGED      
 IX_CONSTITUENTORIGINATION_ID ID      
 PK_CONSTITUENTORIGINATION ID  
 UIX_CONSTITUENTORIGINATION_REVENUEID REVENUEID    

Trigger Name Description
 TR_CONSTITUENTORIGINATION_AUDIT_UPDATE
 TR_CONSTITUENTORIGINATION_AUDIT_DELETE

Entity-Relationship diagram of this table