Difference between revisions of "Purchasing.ProductVendor (table)"

From dbscript Online Help
Jump to: navigation, search
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 / PK / Index
+
| '''Description
 
 
 
|- valign="top"
 
|- valign="top"
Line 25: Line 26:
 
| not null
 
| not null
 
|  
 
|  
| Primary key. Foreign key to Product.ProductID.<br />PK_ProductVendor_ProductID_VendorID
+
| Primary key. Foreign key to Product.ProductID.
 
|- valign="top"
 
|- valign="top"
 
| VendorID
 
| VendorID
Line 31: Line 32:
 
| not null
 
| not null
 
|  
 
|  
| Primary key. Foreign key to Vendor.VendorID.<br />PK_ProductVendor_ProductID_VendorIDIX_ProductVendor_VendorID
+
| Primary key. Foreign key to Vendor.VendorID.
 
|- valign="top"
 
|- valign="top"
 
| AverageLeadTime
 
| AverageLeadTime
Line 37: Line 38:
 
| not null
 
| not null
 
|  
 
|  
| The average span of time (in days) between placing an order with the vendor and receiving the purchased product.<br />
+
| The average span of time (in days) between placing an order with the vendor and receiving the purchased product.
 
|- valign="top"
 
|- valign="top"
 
| StandardPrice
 
| StandardPrice
Line 43: Line 44:
 
| not null
 
| not null
 
|  
 
|  
| The vendor's usual selling price.<br />
+
| The vendor's usual selling price.
 
|- valign="top"
 
|- valign="top"
 
| LastReceiptCost
 
| LastReceiptCost
Line 49: Line 50:
 
| null
 
| null
 
|  
 
|  
| The selling price when last purchased.<br />
+
| The selling price when last purchased.
 
|- valign="top"
 
|- valign="top"
 
| LastReceiptDate
 
| LastReceiptDate
Line 55: Line 56:
 
| null
 
| null
 
|  
 
|  
| Date the product was last received by the vendor.<br />
+
| Date the product was last received by the vendor.
 
|- valign="top"
 
|- valign="top"
 
| MinOrderQty
 
| MinOrderQty
Line 61: Line 62:
 
| not null
 
| not null
 
|  
 
|  
| The maximum quantity that should be ordered.<br />
+
| The maximum quantity that should be ordered.
 
|- valign="top"
 
|- valign="top"
 
| MaxOrderQty
 
| MaxOrderQty
Line 67: Line 68:
 
| not null
 
| not null
 
|  
 
|  
| The minimum quantity that should be ordered.<br />
+
| The minimum quantity that should be ordered.
 
|- valign="top"
 
|- valign="top"
 
| OnOrderQty
 
| OnOrderQty
Line 73: Line 74:
 
| null
 
| null
 
|  
 
|  
| The quantity currently on order.<br />
+
| The quantity currently on order.
 
|- valign="top"
 
|- valign="top"
 
| UnitMeasureCode
 
| UnitMeasureCode
Line 79: Line 80:
 
| not null
 
| not null
 
|  
 
|  
| The product's unit of measure.<br />IX_ProductVendor_UnitMeasureCode
+
| The product's unit of measure.
 
|- valign="top"
 
|- valign="top"
 
| ModifiedDate
 
| ModifiedDate
Line 85: Line 86:
 
| not null
 
| not null
 
| (getdate())
 
| (getdate())
| Date and time the record was last updated.<br />
+
| 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_ProductVendor_ProductID_VendorID
 +
| ProductID, VendorID
 +
|}
  
 +
=== Indexes ===
 +
{| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse"
 +
|- style="background:silver"
 +
| '''Index
 +
| '''Type
 +
| '''Columns
 +
 +
|-
 +
| IX_ProductVendor_UnitMeasureCode
 +
|
 +
| UnitMeasureCode
 +
|-
 +
| IX_ProductVendor_VendorID
 +
|
 +
| VendorID
 +
|}
  
 +
=== Check Constraints ===
 +
{| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse"
 +
|- style="background:silver"
 +
| '''Check Constraint
 +
| '''Expression
 +
| '''Description
 +
 +
|-
 +
| CK_ProductVendor_AverageLeadTime
 +
| ([AverageLeadTime]>=(1))
 +
| Check constraint [AverageLeadTime] >= (1)
 +
|-
 +
| CK_ProductVendor_LastReceiptCost
 +
| ([LastReceiptCost]>(0.00))
 +
| Check constraint [LastReceiptCost] > (0.00)
 +
|-
 +
| CK_ProductVendor_MaxOrderQty
 +
| ([MaxOrderQty]>=(1))
 +
| Check constraint [MaxOrderQty] >= (1)
 +
|-
 +
| CK_ProductVendor_MinOrderQty
 +
| ([MinOrderQty]>=(1))
 +
| Check constraint [MinOrderQty] >= (1)
 +
|-
 +
| CK_ProductVendor_OnOrderQty
 +
| ([OnOrderQty]>=(0))
 +
| Check constraint [OnOrderQty] >= (0)
 +
|-
 +
| CK_ProductVendor_StandardPrice
 +
| ([StandardPrice]>(0.00))
 +
| Check constraint [StandardPrice] > (0.00)
 +
|}
 +
 +
=== 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 110: Line 170:
 
|}
 
|}
  
 +
=== References ===
 +
{| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse"
 +
|- style="background:silver"
 +
| '''Dependency Type
 +
| '''Object Type
 +
| '''Referenced Object
 +
 +
|-
 +
| Schema
 +
| Schema
 +
| [[Purchasing_(schema)|Purchasing]]
 +
 +
|}
  
  

Revision as of 00:05, 3 February 2010

wikibot

Table Purchasing.ProductVendor
Description Cross-reference table mapping vendors with the products they supply.


Columns

Column Data Type Nullable Default Description
ProductID int not null Primary key. Foreign key to Product.ProductID.
VendorID int not null Primary key. Foreign key to Vendor.VendorID.
AverageLeadTime int not null The average span of time (in days) between placing an order with the vendor and receiving the purchased product.
StandardPrice money not null The vendor's usual selling price.
LastReceiptCost money null The selling price when last purchased.
LastReceiptDate datetime null Date the product was last received by the vendor.
MinOrderQty int not null The maximum quantity that should be ordered.
MaxOrderQty int not null The minimum quantity that should be ordered.
OnOrderQty int null The quantity currently on order.
UnitMeasureCode nchar(3) not null The product's unit of measure.
ModifiedDate datetime not null (getdate()) Date and time the record was last updated.

Primary Key

Primary Key Columns
PK_ProductVendor_ProductID_VendorID ProductID, VendorID

Indexes

Index Type Columns
IX_ProductVendor_UnitMeasureCode UnitMeasureCode
IX_ProductVendor_VendorID VendorID

Check Constraints

Check Constraint Expression Description
CK_ProductVendor_AverageLeadTime ([AverageLeadTime]>=(1)) Check constraint [AverageLeadTime] >= (1)
CK_ProductVendor_LastReceiptCost ([LastReceiptCost]>(0.00)) Check constraint [LastReceiptCost] > (0.00)
CK_ProductVendor_MaxOrderQty ([MaxOrderQty]>=(1)) Check constraint [MaxOrderQty] >= (1)
CK_ProductVendor_MinOrderQty ([MinOrderQty]>=(1)) Check constraint [MinOrderQty] >= (1)
CK_ProductVendor_OnOrderQty ([OnOrderQty]>=(0)) Check constraint [OnOrderQty] >= (0)
CK_ProductVendor_StandardPrice ([StandardPrice]>(0.00)) Check constraint [StandardPrice] > (0.00)

Foreign Keys

Relation Column Referenced Column
Production.Product ProductID ProductID
Production.UnitMeasure UnitMeasureCode UnitMeasureCode
Purchasing.Vendor VendorID VendorID

References

Dependency Type Object Type Referenced Object
Schema Schema Purchasing


automatically generated

Table Purchasing.ProductVendor
Description Cross-reference table mapping vendors with the products they supply.


Column Data Type Nullable Default Description / PK / Index
ProductID int not null Primary key. Foreign key to Product.ProductID.
PK_ProductVendor_ProductID_VendorID
VendorID int not null Primary key. Foreign key to Vendor.VendorID.
PK_ProductVendor_ProductID_VendorIDIX_ProductVendor_VendorID
AverageLeadTime int not null The average span of time (in days) between placing an order with the vendor and receiving the purchased product.
StandardPrice money not null The vendor's usual selling price.
LastReceiptCost money null The selling price when last purchased.
LastReceiptDate datetime null Date the product was last received by the vendor.
MinOrderQty int not null The maximum quantity that should be ordered.
MaxOrderQty int not null The minimum quantity that should be ordered.
OnOrderQty int null The quantity currently on order.
UnitMeasureCode nchar(3) not null The product's unit of measure.
IX_ProductVendor_UnitMeasureCode
ModifiedDate datetime not null (GETDATE()) Date and time the record was last updated.


Relation Column Referenced Column
Production.Product ProductID ProductID
Production.UnitMeasure UnitMeasureCode UnitMeasureCode
Purchasing.Vendor VendorID VendorID


Dependency Type Object Type Referenced Object
Schema Schema Purchasing