Difference between revisions of "HumanResources.Shift (table)"
| Line 12: | Line 12: | ||
| + | === Columns === | ||
{| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse" | {| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse" | ||
|- style="background:silver" | |- style="background:silver" | ||
| Line 18: | Line 19: | ||
| '''Nullable | | '''Nullable | ||
| '''Default | | '''Default | ||
| − | | '''Description | + | | '''Description |
|- valign="top" | |- valign="top" | ||
| Line 25: | Line 26: | ||
| not null | | not null | ||
| | | | ||
| − | | Primary key for Shift records. | + | | Primary key for Shift records. |
|- valign="top" | |- valign="top" | ||
| Name | | Name | ||
| Line 31: | Line 32: | ||
| not null | | not null | ||
| | | | ||
| − | | Shift description. | + | | Shift description. |
|- valign="top" | |- valign="top" | ||
| StartTime | | StartTime | ||
| Line 37: | Line 38: | ||
| not null | | not null | ||
| | | | ||
| − | | Shift start time. | + | | Shift start time. |
|- valign="top" | |- valign="top" | ||
| EndTime | | EndTime | ||
| Line 43: | Line 44: | ||
| not null | | not null | ||
| | | | ||
| − | | Shift end time. | + | | Shift end time. |
|- valign="top" | |- valign="top" | ||
| ModifiedDate | | ModifiedDate | ||
| Line 49: | Line 50: | ||
| not null | | not null | ||
| (getdate()) | | (getdate()) | ||
| − | | Date and time the record was last updated. | + | | Date and time the record was last updated. |
|} | |} | ||
| + | === Primary Key === | ||
| + | {| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse" | ||
| + | |- style="background:silver" | ||
| + | | '''Primary Key | ||
| + | | '''Columns | ||
| + | |- | ||
| + | | PK_Shift_ShiftID | ||
| + | | ShiftID | ||
| + | |} | ||
| + | === Indexes === | ||
| + | {| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse" | ||
| + | |- style="background:silver" | ||
| + | | '''Index | ||
| + | | '''Type | ||
| + | | '''Columns | ||
| + | |||
| + | |- | ||
| + | | AK_Shift_Name | ||
| + | | Unique | ||
| + | | Name | ||
| + | |- | ||
| + | | AK_Shift_StartTime_EndTime | ||
| + | | Unique | ||
| + | | StartTime, EndTime | ||
| + | |} | ||
| + | === Detail Tables === | ||
{| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse" | {| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse" | ||
|- style="background:silver" | |- style="background:silver" | ||
| Line 66: | Line 93: | ||
|} | |} | ||
| − | + | === References === | |
{| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse" | {| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse" | ||
|- style="background:silver" | |- style="background:silver" | ||
| Line 77: | Line 104: | ||
| Type | | Type | ||
| [[dbo.Name_(type)|dbo.Name]] | | [[dbo.Name_(type)|dbo.Name]] | ||
| + | |||
| + | |- | ||
| + | | Schema | ||
| + | | Schema | ||
| + | | [[HumanResources_(schema)|HumanResources]] | ||
|} | |} | ||
| − | + | === Dependencies === | |
{| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse" | {| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse" | ||
|- style="background:silver" | |- style="background:silver" | ||
| Line 93: | Line 125: | ||
|} | |} | ||
| + | |||
| + | |||
== wikivalues == | == wikivalues == | ||
Revision as of 23:07, 2 February 2010
Contents
wikibot
| Table | HumanResources.Shift |
| Description | Work shift lookup table. |
Columns
| Column | Data Type | Nullable | Default | Description |
| ShiftID | tinyint | not null | Primary key for Shift records. | |
| Name | dbo.Name | not null | Shift description. | |
| StartTime | datetime | not null | Shift start time. | |
| EndTime | datetime | not null | Shift end time. | |
| ModifiedDate | datetime | not null | (getdate()) | Date and time the record was last updated. |
Primary Key
| Primary Key | Columns |
| PK_Shift_ShiftID | ShiftID |
Indexes
| Index | Type | Columns |
| AK_Shift_Name | Unique | Name |
| AK_Shift_StartTime_EndTime | Unique | StartTime, EndTime |
Detail Tables
| Detail Table | Column | Referencing Column |
| HumanResources.EmployeeDepartmentHistory | ShiftID | ShiftID |
References
| Dependency Type | Object Type | Referenced Object |
| Data Type | Type | dbo.Name |
| Schema | Schema | HumanResources |
Dependencies
| Reference Type | Object Type | Referencing Object |
| Select | View | HumanResources.vEmployeeDepartmentHistory |
wikivalues
| Table Values | HumanResources.Shift |
| ShiftID | Name | StartTime | EndTime |
| 1 | Day | 1900-01-01 07:00:00.000 | 1900-01-01 15:00:00.000 |
| 2 | Evening | 1900-01-01 15:00:00.000 | 1900-01-01 23:00:00.000 |
| 3 | Night | 1900-01-01 23:00:00.000 | 1900-01-01 07:00:00.000 |
automatically generated
| Table | HumanResources.Shift |
| Description | Work shift lookup table. |
| Column | Data Type | Nullable | Default | Description / PK / Index |
| ShiftID | tinyint | not null | Primary key for Shift records. PK_Shift_ShiftID | |
| Name | Name | not null | Shift description. AK_Shift_Name | |
| StartTime | datetime | not null | Shift start time. AK_Shift_StartTime_EndTime | |
| EndTime | datetime | not null | Shift end time. AK_Shift_StartTime_EndTime | |
| ModifiedDate | datetime | not null | (GETDATE()) | Date and time the record was last updated. |
| Detail Table | Column | Referencing Column |
| HumanResources.EmployeeDepartmentHistory | ShiftID | ShiftID |
| Dependency Type | Object Type | Referenced Object |
| Data Type | Type | dbo.Name |
| Schema | Schema | HumanResources |
| Reference Type | Object Type | Referencing Object |
| Select | View | HumanResources.vEmployeeDepartmentHistory |