Primary Key Field Type
 ID uniqueidentifier

Field Field Type Null Notes Description
 GRADE nvarchar(10)   Default = '' Non-numeric grade for which equivalents will be defined.
 NUMERICEQUIVALENT decimal(14, 2)   Default = 0 Numeric equivalent that should be used when translating from non-numeric grade to numeric.
 CREDITAWARDED bit   Default = 1 Indicates whether credit should be awarded for this grade.
 HIGHESTSCORE decimal(14, 2)   Default = 0 Highest value that translates to this non-numeric grade when translating from numeric to non-numeric.
 LOWESTSCORE decimal(14, 2)   Default = 0 Lowest value that translates to this non-numeric grade when translating from numeric to non-numeric.
 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
 TRANSLATIONTABLEID uniqueidentifier   TRANSLATIONTABLE.ID The translation table to which this grade belongs.
 ADDEDBYID uniqueidentifier   CHANGEAGENT.ID FK to CHANGEAGENT.
 CHANGEDBYID uniqueidentifier   CHANGEAGENT.ID FK to CHANGEAGENT.

Index Name Field(s) Unique Primary Clustered
 IX_TRANSLATIONTABLEGRADE_DATEADDED DATEADDED    
 IX_TRANSLATIONTABLEGRADE_DATECHANGED DATECHANGED      
 PK_TRANSLATIONTABLEGRADE ID  
 UIX_TRANSLATIONTABLEGRADE_TRANSLATIONTABLEID_GRADE TRANSLATIONTABLEID, GRADE    

Trigger Name Description
 TR_TRANSLATIONTABLEGRADE_AUDIT_UPDATE
 TR_TRANSLATIONTABLEGRADE_AUDIT_DELETE
 TR_TRANSLATIONTABLEGRADE_DELETE_DELETENUMERICSTUDENTMARKINGCOLUMNGRADE

Referenced by Field
 STUDENTMARKINGCOLUMNGRADE TRANSLATIONTABLEGRADEID

Entity-Relationship diagram of this table