Primary Key Field Type
 ID uniqueidentifier

Field Field Type Null Notes Description
 NAME nvarchar(255)   Default = '' Name of the merge task spec.
 DESCRIPTION nvarchar(1000)   Default = '' Description of the merge task spec.
 SPNAME nvarchar(100)   Default = '' SQL stored procedure used to perform the merge task.
 UIFOLDER nvarchar(255)   Default = '' The folder path where the merge task catalog item will be displayed when presented in a UI tree view.
 SPECXML xml   The XML which represents the merge task spec.
 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
 RECORDTYPEID uniqueidentifier   RECORDTYPE.ID The type of record upon which the merge task should operate
 ADDEDBYID uniqueidentifier   CHANGEAGENT.ID FK to CHANGEAGENT.
 CHANGEDBYID uniqueidentifier   CHANGEAGENT.ID FK to CHANGEAGENT.

Index Name Field(s) Unique Primary Clustered
 IX_MERGETASKCATALOG_DATEADDED DATEADDED    
 IX_MERGETASKCATALOG_DATECHANGED DATECHANGED      
 PK_MERGETASKCATALOG ID  
 UC_MERGETASKCATALOG_NAME NAME    
 UC_MERGETASKCATALOG_SPNAME SPNAME    

Trigger Name Description
 TR_MERGETASKCATALOG_AUDIT_UPDATE
 TR_MERGETASKCATALOG_AUDIT_DELETE

Entity-Relationship diagram of this table