GRADINGSCALE
Table of grading scales used for grading assignments in gradebook.
Primary Key
| Primary Key |
Field Type |
| ID |
uniqueidentifier |
Fields
| Field |
Field Type |
Null |
Notes |
Description |
| NAME |
nvarchar(60) |
|
Default = '' |
The name of the grading scale. |
| ISACTIVE |
bit |
|
Default = 1 |
Indicates if the grading scale is active. |
| DESCRIPTION |
nvarchar(150) |
|
Default = '' |
The description of the grading scale. |
| ISREGISTRARCREATED |
bit |
|
Default = 0 |
Indicates if the grading scale was created by a registrar. |
| 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) |
yes |
CONVERT(bigint, TS) |
Numeric representation of the timestamp. |
Foreign Keys
| Foreign Key |
Field Type |
Null |
Notes |
Description |
| FACULTYID |
uniqueidentifier |
yes |
FACULTY.ID
|
The faculty who created the grading scale for non-registrar grading scales. |
| ADDEDBYID |
uniqueidentifier |
|
CHANGEAGENT.ID
|
FK to CHANGEAGENT. |
| CHANGEDBYID |
uniqueidentifier |
|
CHANGEAGENT.ID
|
FK to CHANGEAGENT. |
Indexes
| Index Name |
Fields |
Unique |
Primary |
Clustered |
| IX_GRADINGSCALE_DATEADDED |
DATEADDED |
|
|
yes |
| IX_GRADINGSCALE_DATECHANGED |
DATECHANGED |
|
|
|
| PK_GRADINGSCALE |
ID |
yes |
yes |
|
Triggers
Referenced by