Owner: | Production |
Creation Date: | 04/26/2006 |
Located On: | PRIMARY |
Data Size KB: | 8 |
Index Size KB: | 24 |
Rows: | 14 |
Description: | Product inventory and manufacturing locations. |
Name | Data Type | Length | NULL | Default | IsIdentity | IsGUID | Description | ||
|
LocationID | smallint | 2 |
|
|
|
Primary key for Location records. | ||
|
Name | Name | 100 |
|
|
|
Location description. | ||
|
CostRate | smallmoney | 4 |
|
((0.00)) |
|
|
Standard hourly cost of the manufacturing location. | |
|
Availability | decimal | 5 |
|
((0.00)) |
|
|
Work capacity (in hours) of the manufacturing location. | |
|
ModifiedDate | datetime | 8 |
|
(getdate()) |
|
|
Date and time the record was last updated. |
Name | Seed | Increment | Not for replication | |
|
LocationID | 1 | 1 |
|
Index | Primary | Unique | Description | |
|
PK_Location_LocationID |
|
|
Primary key (clustered) constraint |
|
AK_Location_Name |
|
|
Unique nonclustered index. |
Name | Expression | |
|
CK_Location_Availability | ([Availability]>=(0.00)) |
|
CK_Location_CostRate | ([CostRate]>=(0.00)) |
Table | Foreign Key | Primary Key or Unique Constraint | |
|
Production.ProductInventory | FK_ProductInventory_Location_LocationID | PK_Location_LocationID |
|
Production.WorkOrderRouting | FK_WorkOrderRouting_Location_LocationID | PK_Location_LocationID |
Objects that [Production].[Location] depends on
Object Name | Owner | Object Type | Dep Level | |
|
Name | dbo | User Defined type | 1 |
Objects that depend on [Production].[Location]
Object Name | Owner | Object Type | Dep Level | |
|
ProductInventory | Production | Table | 1 |
|
WorkOrderRouting | Production | Table | 1 |
|
ufnGetStock | dbo | Function | 2 |
CREATE TABLE [Location] (
[LocationID] [smallint] IDENTITY (1, 1) NOT NULL ,
[Name] [Name] NOT NULL ,
[CostRate] [smallmoney] NOT NULL CONSTRAINT [DF_Location_CostRate] DEFAULT ((0.00)),
[Availability] [decimal](8, 2) NOT NULL CONSTRAINT [DF_Location_Availability] DEFAULT ((0.00)),
[ModifiedDate] [datetime] NOT NULL CONSTRAINT [DF_Location_ModifiedDate] DEFAULT (getdate()),
CONSTRAINT [PK_Location_LocationID] PRIMARY KEY CLUSTERED
(
[LocationID]
) ON [PRIMARY] ,
CONSTRAINT [CK_Location_Availability] CHECK ([Availability]>=(0.00)),
CONSTRAINT [CK_Location_CostRate] CHECK ([CostRate]>=(0.00))
) ON [PRIMARY]
GO
See Also
List of tables