Editing Production.ProductInventory (table)

Jump to: navigation, search

Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then save the changes below to finish undoing the edit.
Latest revision Your text
Line 2: Line 2:
  
 
{| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse"
 
{| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse"
|- valign="top"
+
|-
 
| '''Table
 
| '''Table
 
| Production.ProductInventory
 
| Production.ProductInventory
|- valign="top"
+
|-
| '''Description
 
| Product inventory information.
 
 
|}
 
|}
  
=== 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 17: Line 15:
 
| '''Nullable
 
| '''Nullable
 
| '''Default
 
| '''Default
| '''Description
+
| '''PK
 
+
| '''Index
|- valign="top"
+
 +
|-
 
| ProductID
 
| ProductID
 
| int
 
| int
 
| not null
 
| not null
 
|  
 
|  
| 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.
+
| PK_ProductInventory_ProductID_LocationID
|- valign="top"
+
|
 +
|-
 
| Shelf
 
| Shelf
 
| nvarchar(10)
 
| nvarchar(10)
 
| not null
 
| not null
 
|  
 
|  
| Storage compartment within an inventory location.
+
|  
|- valign="top"
+
|
 +
|-
 
| Bin
 
| Bin
 
| tinyint
 
| tinyint
 
| not null
 
| not null
 
|  
 
|  
| Storage container on a shelf in an inventory location.
+
|  
|- valign="top"
+
|
 +
|-
 
| Quantity
 
| Quantity
 
| smallint
 
| smallint
 
| not null
 
| not null
 
| ((0))
 
| ((0))
| Quantity of products in the inventory location.
+
|  
|- valign="top"
+
|
 +
|-
 
| rowguid
 
| rowguid
 
| uniqueidentifier
 
| uniqueidentifier
 
| not null
 
| not null
 
| (newid())
 
| (newid())
| ROWGUIDCOL number uniquely identifying the record. Used to support a merge replication sample.
+
|  
|- valign="top"
+
|
 +
|-
 
| ModifiedDate
 
| ModifiedDate
 
| datetime
 
| datetime
 
| not null
 
| not null
 
| (getdate())
 
| (getdate())
| 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
 
|- valign="top"
 
| PK_ProductInventory_ProductID_LocationID
 
| ProductID, LocationID
 
 
|}
 
|}
  
=== Check Constraints ===
 
{| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse"
 
|- style="background:silver"
 
| '''Check Constraint
 
| '''Expression
 
| '''Description
 
  
|- valign="top"
 
| CK_ProductInventory_Bin
 
| ([Bin]>=(0) AND [Bin]<=(100))
 
| Check constraint [Bin] BETWEEN (0) AND (100)
 
|- valign="top"
 
| CK_ProductInventory_Shelf
 
| ([Shelf] like '[A-Za-z]' OR [Shelf]='N/A')
 
| Check constraint [Shelf] like '[A-Za-z]' OR [Shelf]='N/A'
 
|}
 
  
=== Foreign Keys ===
 
 
{| 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 96: Line 76:
 
| '''Column
 
| '''Column
 
| '''Referenced Column
 
| '''Referenced Column
 
+
|- valign="top"
+
|-
 
| [[Production.Location_(table)|Production.Location]]
 
| [[Production.Location_(table)|Production.Location]]
 
| LocationID
 
| LocationID
 
| LocationID
 
| LocationID
|- valign="top"
+
|-
 
| [[Production.Product_(table)|Production.Product]]
 
| [[Production.Product_(table)|Production.Product]]
 
| ProductID
 
| ProductID
 
| ProductID
 
| ProductID
 
|}
 
|}
 
=== References ===
 
{| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse"
 
|- style="background:silver"
 
| '''Dependency Type
 
| '''Object Type
 
| '''Referenced Object
 
 
|- valign="top"
 
| Schema
 
| Schema
 
| [[Production_(schema)|Production]]
 
 
|}
 
 
=== Dependencies ===
 
{| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse"
 
|- style="background:silver"
 
| '''Reference Type
 
| '''Object Type
 
| '''Referencing Object
 
 
|- valign="top"
 
| Select
 
| Function
 
| [[dbo.ufnGetStock_(function)|dbo.ufnGetStock]]
 
 
|}
 
 
  
 
== automatically generated ==
 
== automatically generated ==
Line 142: Line 93:
 
| '''Table
 
| '''Table
 
| Production.ProductInventory
 
| Production.ProductInventory
|- valign="top"
+
|-
 +
 
 
| '''Description
 
| '''Description
 
| Product inventory information.
 
| Product inventory information.
 
|-
 
|-
 +
 
|}
 
|}
  
Line 155: Line 108:
 
| '''Nullable
 
| '''Nullable
 
| '''Default
 
| '''Default
| '''Description / PK / Index
+
| '''Description
 +
| '''PK / Index
 
 
|- valign="top"
+
|-
 
| ProductID
 
| ProductID
 
| int
 
| int
 
| not null
 
| not null
 
|  
 
|  
| Product identification number. Foreign key to Product.ProductID.<br />PK_ProductInventory_ProductID_LocationID
+
| Product identification number. Foreign key to Product.ProductID.
|- valign="top"
+
| PK_ProductInventory_ProductID_LocationID
 +
|-
 
| LocationID
 
| LocationID
 
| smallint
 
| smallint
 
| not null
 
| not null
 
|  
 
|  
| Inventory location identification number. Foreign key to Location.LocationID. <br />PK_ProductInventory_ProductID_LocationID
+
| Inventory location identification number. Foreign key to Location.LocationID.  
|- valign="top"
+
| PK_ProductInventory_ProductID_LocationID
 +
|-
 
| Shelf
 
| Shelf
 
| nvarchar(10)
 
| nvarchar(10)
 
| not null
 
| not null
 
|  
 
|  
| Storage compartment within an inventory location.<br />
+
| Storage compartment within an inventory location.
|- valign="top"
+
|
 +
|-
 
| Bin
 
| Bin
 
| tinyint
 
| tinyint
 
| not null
 
| not null
 
|  
 
|  
| Storage container on a shelf in an inventory location.<br />
+
| Storage container on a shelf in an inventory location.
|- valign="top"
+
|
 +
|-
 
| Quantity
 
| Quantity
 
| smallint
 
| smallint
 
| not null
 
| not null
 
| (0)
 
| (0)
| Quantity of products in the inventory location.<br />
+
| Quantity of products in the inventory location.
|- valign="top"
+
|
 +
|-
 
| rowguid
 
| rowguid
 
| uniqueidentifier
 
| uniqueidentifier
 
| not null
 
| not null
 
| (NEWID())
 
| (NEWID())
| ROWGUIDCOL number uniquely identifying the record. Used to support a merge replication sample.<br />
+
| ROWGUIDCOL number uniquely identifying the record. Used to support a merge replication sample.
|- valign="top"
+
|
 +
|-
 
| ModifiedDate
 
| ModifiedDate
 
| datetime
 
| datetime
 
| not null
 
| not null
 
| (GETDATE())
 
| (GETDATE())
| Date and time the record was last updated.<br />
+
| Date and time the record was last updated.
 +
|
 
|}
 
|}
  
Line 217: Line 178:
 
| ProductID
 
| ProductID
 
| ProductID
 
| ProductID
|}
 
 
 
{| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse"
 
|- style="background:silver"
 
| '''Dependency Type
 
| '''Object Type
 
| '''Referenced Object
 
 
|-
 
| Schema
 
| Schema
 
| [[Production_(schema)|Production]]
 
 
|}
 
 
 
{| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse"
 
|- style="background:silver"
 
| '''Reference Type
 
| '''Object Type
 
| '''Referencing Object
 
 
|-
 
| Select
 
| Function
 
| [[dbo.ufnGetStock_(function)|dbo.ufnGetStock]]
 
 
 
|}
 
|}

Please note that all contributions to dbscript Online Help may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see Project:Copyrights for details). Do not submit copyrighted work without permission!

Cancel | Editing help (opens in new window)