Field |
Field Type |
Null |
Notes |
Description |
POSITIONCODE |
tinyint |
|
Default = 0 |
The faculty position for which access is being defined. |
POSITION |
nvarchar(8) (Computed) |
 |
CASE [POSITIONCODE] WHEN 0 THEN N'Faculty' WHEN 1 THEN N'Advisors' END |
Provides a translation for the 'POSITIONCODE' field. |
GRADESCODE |
tinyint |
|
Default = 1 |
Determines which students faculty can access grades for. |
GRADES |
nvarchar(17) (Computed) |
 |
CASE [GRADESCODE] WHEN 0 THEN N'All students' WHEN 1 THEN N'Assigned students' END |
Provides a translation for the 'GRADESCODE' field. |
TESTSCORESCODE |
tinyint |
|
Default = 1 |
Determines which students faculty can access test scores for. |
TESTSCORES |
nvarchar(17) (Computed) |
 |
CASE [TESTSCORESCODE] WHEN 0 THEN N'All students' WHEN 1 THEN N'Assigned students' END |
Provides a translation for the 'TESTSCORESCODE' field. |
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. |