ACADEMICCATALOGSUBDEPARTMENT
An academic catalog sub department is represented by a row in this table.
Primary Key
| Primary Key |
Field Type |
| ID |
uniqueidentifier |
Fields
| Field |
Field Type |
Null |
Notes |
Description |
| USERID |
nvarchar(50) |
|
Default = '' |
The unique user defined ID. |
| NAME |
nvarchar(150) |
|
Default = '' |
The name of the department. |
| CURRENTID |
uniqueidentifier |
yes |
|
The most current department record. |
| DATEFROM |
UDT_FUZZYDATE |
|
Default = '00000000' |
The date the department began. |
| DATETO |
UDT_FUZZYDATE |
|
Default = '00000000' |
The date the department became historical. |
| COMMENT |
nvarchar(500) |
|
Default = '' |
Comments about the department being historical. |
| ISHISTORICAL |
bit |
|
Default = 0 |
Indicates if this department has been made historical. |
| 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 |
| ACADEMICCATALOGDEPARTMENTID |
uniqueidentifier |
|
ACADEMICCATALOGDEPARTMENT.ID
|
A foreign key to the academic catalog department table. |
| ADDEDBYID |
uniqueidentifier |
|
CHANGEAGENT.ID
|
FK to CHANGEAGENT. |
| CHANGEDBYID |
uniqueidentifier |
|
CHANGEAGENT.ID
|
FK to CHANGEAGENT. |
Indexes
| Index Name |
Fields |
Unique |
Primary |
Clustered |
| IX_ACADEMICCATALOGSUBDEPARTMENT_DATEADDED |
DATEADDED |
|
|
yes |
| IX_ACADEMICCATALOGSUBDEPARTMENT_DATECHANGED |
DATECHANGED |
|
|
|
| PK_ACADEMICCATALOGSUBDEPARTMENT |
ID |
yes |
yes |
|
| UIX_ACADEMICCATALOGSUBDEPARTMENT_ACADEMICCATALOGDEPARTMENTID_USERID |
ACADEMICCATALOGDEPARTMENTID, USERID |
yes |
|
|
Triggers
Referenced by