Primary Key Field Type
 ID uniqueidentifier

Field Field Type Null Notes Description
 USERNAME nvarchar(100)   Default = ''
 PASSWORD nvarchar(4000)   Default = ''
 ISDEFAULT bit (Computed) case ID when '00000000-0000-0000-0000-000000000000' then convert(bit,1) else convert(bit,0) end Indicates that this row represents the default credentials. It cannot be deleted.
 DESCRIPTION nvarchar(1000)   Default = ''
 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
 ID uniqueidentifier   APPUSER.ID Primary Key.
 ADDEDBYID uniqueidentifier   CHANGEAGENT.ID FK to CHANGEAGENT.
 CHANGEDBYID uniqueidentifier   CHANGEAGENT.ID FK to CHANGEAGENT.

Index Name Field(s) Unique Primary Clustered
 IX_WEALTHPOINTCREDENTIALS_DATEADDED DATEADDED    
 IX_WEALTHPOINTCREDENTIALS_DATECHANGED DATECHANGED      
 PK_WEALTHPOINTCREDENTIALS ID  

Trigger Name Description
 TR_WEALTHPOINTCREDENTIALS_AUDIT_UPDATE
 TR_WEALTHPOINTCREDENTIALS_AUDIT_DELETE

Entity-Relationship diagram of this table