STUDENTCOURSEREQUEST
This table contains information about student requests for courses.
Primary Key
| Primary Key |
Field Type |
| ID |
uniqueidentifier |
Fields
| Field |
Field Type |
Null |
Notes |
Description |
| STARTDATE |
date |
|
|
The start date for the period within which the course being requested should be scheduled. When using academic years, this is the session start date. |
| 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. |
| ENDDATE |
date |
|
|
The end date for the period within which the course being requested should be scheduled. When using academic years, this is the session end date. |
| CLASSSTARTDATE |
date |
yes |
|
The start date the student is requesting for the course. When using academic years, this is the class term start date. |
Foreign Keys
Indexes
| Index Name |
Fields |
Unique |
Primary |
Clustered |
| IX_STUDENTCOURSEREQUEST_DATEADDED |
DATEADDED |
|
|
yes |
| IX_STUDENTCOURSEREQUEST_DATECHANGED |
DATECHANGED |
|
|
|
| PK_STUDENTCOURSEREQUEST |
ID |
yes |
yes |
|
Triggers