Difference between revisions of "Production.ProductInventory (table)"
Line 86: | Line 86: | ||
| ProductID | | ProductID | ||
|} | |} | ||
− | |||
== automatically generated == | == automatically generated == | ||
Line 108: | Line 107: | ||
| '''Nullable | | '''Nullable | ||
| '''Default | | '''Default | ||
− | | '''Description | + | | '''Description / PK / Index |
− | |||
− | |- | + | |- valign="top" |
| ProductID | | ProductID | ||
| int | | int | ||
| not null | | not null | ||
| | | | ||
− | | Product identification number. Foreign key to Product.ProductID. | + | | Product identification number. Foreign key to Product.ProductID.PK_ProductInventory_ProductID_LocationID |
− | + | |- valign="top" | |
− | |- | ||
| LocationID | | LocationID | ||
| smallint | | smallint | ||
| not null | | not null | ||
| | | | ||
− | | Inventory location identification number. Foreign key to Location.LocationID. | + | | Inventory location identification number. Foreign key to Location.LocationID. PK_ProductInventory_ProductID_LocationID |
− | + | |- valign="top" | |
− | |- | ||
| Shelf | | Shelf | ||
| nvarchar(10) | | nvarchar(10) | ||
Line 131: | Line 127: | ||
| | | | ||
| Storage compartment within an inventory location. | | Storage compartment within an inventory location. | ||
− | + | |- valign="top" | |
− | |- | ||
| Bin | | Bin | ||
| tinyint | | tinyint | ||
Line 138: | Line 133: | ||
| | | | ||
| Storage container on a shelf in an inventory location. | | Storage container on a shelf in an inventory location. | ||
− | + | |- valign="top" | |
− | |- | ||
| Quantity | | Quantity | ||
| smallint | | smallint | ||
Line 145: | Line 139: | ||
| (0) | | (0) | ||
| Quantity of products in the inventory location. | | Quantity of products in the inventory location. | ||
− | + | |- valign="top" | |
− | |- | ||
| rowguid | | rowguid | ||
| uniqueidentifier | | uniqueidentifier | ||
Line 152: | Line 145: | ||
| (NEWID()) | | (NEWID()) | ||
| ROWGUIDCOL number uniquely identifying the record. Used to support a merge replication sample. | | ROWGUIDCOL number uniquely identifying the record. Used to support a merge replication sample. | ||
− | + | |- valign="top" | |
− | |- | ||
| ModifiedDate | | ModifiedDate | ||
| datetime | | datetime | ||
Line 159: | Line 151: | ||
| (GETDATE()) | | (GETDATE()) | ||
| Date and time the record was last updated. | | Date and time the record was last updated. | ||
− | |||
|} | |} | ||
Line 178: | Line 169: | ||
| ProductID | | ProductID | ||
| ProductID | | ProductID | ||
+ | |} | ||
+ | |||
+ | |||
+ | {| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse" | ||
+ | |- style="background:silver" | ||
+ | | '''Referencing Object | ||
+ | | '''Object Type | ||
+ | | '''Reference Type | ||
+ | |||
+ | |- | ||
+ | | [[dbo.ufnGetStock_(function)|dbo.ufnGetStock]] | ||
+ | | Function | ||
+ | | Select | ||
|} | |} |
Revision as of 23:57, 26 November 2009
wikibot
Table | Production.ProductInventory |
Column | Data Type | Nullable | Default | PK | Index |
ProductID | int | not null | PK_ProductInventory_ProductID_LocationID | ||
LocationID | smallint | not null | PK_ProductInventory_ProductID_LocationID | ||
Shelf | nvarchar(10) | not null | |||
Bin | tinyint | not null | |||
Quantity | smallint | not null | ((0)) | ||
rowguid | uniqueidentifier | not null | (newid()) | ||
ModifiedDate | datetime | not null | (getdate()) |
Relation | Column | Referenced Column |
Production.Location | LocationID | LocationID |
Production.Product | ProductID | ProductID |
automatically generated
Table | Production.ProductInventory |
Description | Product inventory information. |
Column | Data Type | Nullable | Default | Description / PK / Index |
ProductID | int | not null | Product identification number. Foreign key to Product.ProductID.PK_ProductInventory_ProductID_LocationID | |
LocationID | smallint | not null | Inventory location identification number. Foreign key to Location.LocationID. PK_ProductInventory_ProductID_LocationID | |
Shelf | nvarchar(10) | not null | Storage compartment within an inventory location. | |
Bin | tinyint | not null | Storage container on a shelf in an inventory location. | |
Quantity | smallint | not null | (0) | Quantity of products in the inventory location. |
rowguid | uniqueidentifier | not null | (NEWID()) | ROWGUIDCOL number uniquely identifying the record. Used to support a merge replication sample. |
ModifiedDate | datetime | not null | (GETDATE()) | Date and time the record was last updated. |
Relation | Column | Referenced Column |
Production.Location | LocationID | LocationID |
Production.Product | ProductID | ProductID |
Referencing Object | Object Type | Reference Type |
dbo.ufnGetStock | Function | Select |