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.
 ISRESOURCE bit   Default = 0

Foreign Key Field Type Null Notes Description
 FACULTYID uniqueidentifier   FACULTY.ID A foreign key to the faculty table.
 COURSEID uniqueidentifier   COURSE.ID A foreign key to the course table.
 ADDEDBYID uniqueidentifier   CHANGEAGENT.ID FK to CHANGEAGENT.
 CHANGEDBYID uniqueidentifier   CHANGEAGENT.ID FK to CHANGEAGENT.

Index Name Field(s) Unique Primary Clustered
 IX_FACULTYCOURSE_DATEADDED DATEADDED    
 IX_FACULTYCOURSE_DATECHANGED DATECHANGED      
 PK_FACULTYCOURSE ID  
 UIX_FACULTYCOURSE_FACULTYID_COURSEID FACULTYID, COURSEID    

Trigger Name Description
 TR_FACULTYCOURSE_AUDIT_UPDATE
 TR_FACULTYCOURSE_AUDIT_DELETE

Referenced by Field
 FACULTYCLASSMEETINGGROUP FACULTYCOURSEID

Entity-Relationship diagram of this table