Primary Key Field Type
 ID uniqueidentifier

Field Field Type Null Notes Description
 QUANTITY smallint   Default = ((0)) Quantity of tickets for specific hold
 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
 HOLDCODEID uniqueidentifier HOLDCODE.ID FK to HOLDCODE
 HOLDLISTID uniqueidentifier HOLDLIST.ID FK to HOLDLIST
 ADDEDBYID uniqueidentifier   CHANGEAGENT.ID FK to CHANGEAGENT.
 CHANGEDBYID uniqueidentifier   CHANGEAGENT.ID FK to CHANGEAGENT.

Index Name Field(s) Unique Primary Clustered
 IX_HOLD_DATEADDED DATEADDED    
 IX_HOLD_DATECHANGED DATECHANGED      
 PK_HOLD ID  
 UIX_HOLD_HOLDCODEID_HOLDLISTID HOLDCODEID, HOLDLISTID    

Trigger Name Description
 TR_HOLD_AUDIT_UPDATE
 TR_HOLD_AUDIT_DELETE

Referenced by Field
 TICKET HOLDID

Entity-Relationship diagram of this table