Difference between revisions of "Sales.SalesTerritory (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 for SalesTerritory records.<br />PK_SalesTerritory_TerritoryID
+
| Primary key for SalesTerritory records.
 
|- valign="top"
 
|- valign="top"
 
| Name
 
| Name
Line 31: Line 32:
 
| not null
 
| not null
 
|  
 
|  
| Sales territory description<br />AK_SalesTerritory_Name
+
| Sales territory description
 
|- valign="top"
 
|- valign="top"
 
| CountryRegionCode
 
| CountryRegionCode
Line 37: Line 38:
 
| not null
 
| not null
 
|  
 
|  
| ISO standard country or region code. Foreign key to CountryRegion.CountryRegionCode. <br />
+
| ISO standard country or region code. Foreign key to CountryRegion.CountryRegionCode.  
 
|- valign="top"
 
|- valign="top"
 
| Group
 
| Group
Line 43: Line 44:
 
| not null
 
| not null
 
|  
 
|  
| Geographic area to which the sales territory belong.<br />
+
| Geographic area to which the sales territory belong.
 
|- valign="top"
 
|- valign="top"
 
| SalesYTD
 
| SalesYTD
Line 49: Line 50:
 
| not null
 
| not null
 
| ((0.00))
 
| ((0.00))
| Sales in the territory year to date.<br />
+
| Sales in the territory year to date.
 
|- valign="top"
 
|- valign="top"
 
| SalesLastYear
 
| SalesLastYear
Line 55: Line 56:
 
| not null
 
| not null
 
| ((0.00))
 
| ((0.00))
| Sales in the territory the previous year.<br />
+
| Sales in the territory the previous year.
 
|- valign="top"
 
|- valign="top"
 
| CostYTD
 
| CostYTD
Line 61: Line 62:
 
| not null
 
| not null
 
| ((0.00))
 
| ((0.00))
| Business costs in the territory year to date.<br />
+
| Business costs in the territory year to date.
 
|- valign="top"
 
|- valign="top"
 
| CostLastYear
 
| CostLastYear
Line 67: Line 68:
 
| not null
 
| not null
 
| ((0.00))
 
| ((0.00))
| Business costs in the territory the previous year.<br />
+
| Business costs in the territory the previous year.
 
|- valign="top"
 
|- valign="top"
 
| rowguid
 
| rowguid
Line 73: Line 74:
 
| not null
 
| not null
 
| (newid())
 
| (newid())
| ROWGUIDCOL number uniquely identifying the record. Used to support a merge replication sample.<br />AK_SalesTerritory_rowguid
+
| ROWGUIDCOL number uniquely identifying the record. Used to support a merge replication sample.
 
|- valign="top"
 
|- valign="top"
 
| ModifiedDate
 
| ModifiedDate
Line 79: Line 80:
 
| 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_SalesTerritory_TerritoryID
 +
| TerritoryID
 +
|}
 +
 +
=== Indexes ===
 +
{| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse"
 +
|- style="background:silver"
 +
| '''Index
 +
| '''Type
 +
| '''Columns
 +
 +
|-
 +
| AK_SalesTerritory_Name
 +
| Unique
 +
| Name
 +
|-
 +
| AK_SalesTerritory_rowguid
 +
| Unique
 +
| rowguid
 +
|}
  
 +
=== Check Constraints ===
 +
{| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse"
 +
|- style="background:silver"
 +
| '''Check Constraint
 +
| '''Expression
 +
| '''Description
 +
 +
|-
 +
| CK_SalesTerritory_CostLastYear
 +
| ([CostLastYear]>=(0.00))
 +
| Check constraint [CostLastYear] >= (0.00)
 +
|-
 +
| CK_SalesTerritory_CostYTD
 +
| ([CostYTD]>=(0.00))
 +
| Check constraint [CostYTD] >= (0.00)
 +
|-
 +
| CK_SalesTerritory_SalesLastYear
 +
| ([SalesLastYear]>=(0.00))
 +
| Check constraint [SalesLastYear] >= (0.00)
 +
|-
 +
| CK_SalesTerritory_SalesYTD
 +
| ([SalesYTD]>=(0.00))
 +
| Check constraint [SalesYTD] >= (0.00)
 +
|}
  
 +
=== 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 112: Line 164:
 
|}
 
|}
  
 
+
=== 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 123: Line 175:
 
| Type
 
| Type
 
| [[dbo.Name_(type)|dbo.Name]]
 
| [[dbo.Name_(type)|dbo.Name]]
 +
 +
|-
 +
| Schema
 +
| Schema
 +
| [[Sales_(schema)|Sales]]
  
 
|}
 
|}
  
 
+
=== 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 158: Line 215:
 
| uSalesOrderHeader
 
| uSalesOrderHeader
 
|}
 
|}
 +
 +
 
== wikivalues ==
 
== wikivalues ==
  

Revision as of 00:07, 3 February 2010

wikibot

Table Sales.SalesTerritory
Description Sales territory lookup table.


Columns

Column Data Type Nullable Default Description
TerritoryID int not null Primary key for SalesTerritory records.
Name dbo.Name not null Sales territory description
CountryRegionCode nvarchar(3) not null ISO standard country or region code. Foreign key to CountryRegion.CountryRegionCode.
Group nvarchar(50) not null Geographic area to which the sales territory belong.
SalesYTD money not null ((0.00)) Sales in the territory year to date.
SalesLastYear money not null ((0.00)) Sales in the territory the previous year.
CostYTD money not null ((0.00)) Business costs in the territory year to date.
CostLastYear money not null ((0.00)) Business costs in the territory the previous year.
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.

Primary Key

Primary Key Columns
PK_SalesTerritory_TerritoryID TerritoryID

Indexes

Index Type Columns
AK_SalesTerritory_Name Unique Name
AK_SalesTerritory_rowguid Unique rowguid

Check Constraints

Check Constraint Expression Description
CK_SalesTerritory_CostLastYear ([CostLastYear]>=(0.00)) Check constraint [CostLastYear] >= (0.00)
CK_SalesTerritory_CostYTD ([CostYTD]>=(0.00)) Check constraint [CostYTD] >= (0.00)
CK_SalesTerritory_SalesLastYear ([SalesLastYear]>=(0.00)) Check constraint [SalesLastYear] >= (0.00)
CK_SalesTerritory_SalesYTD ([SalesYTD]>=(0.00)) Check constraint [SalesYTD] >= (0.00)

Detail Tables

Detail Table Column Referencing Column
Sales.Customer TerritoryID TerritoryID
Sales.SalesOrderHeader TerritoryID TerritoryID
Sales.SalesPerson TerritoryID TerritoryID
Sales.SalesTerritoryHistory TerritoryID TerritoryID
Person.StateProvince TerritoryID TerritoryID

References

Dependency Type Object Type Referenced Object
Data Type Type dbo.Name
Schema Schema Sales

Dependencies

Reference Type Object Type Referencing Object Child Type Child Object
Select View Sales.vSalesPerson
Select View Sales.vSalesPersonSalesByFiscalYears
Update Table Sales.SalesOrderHeader Trigger uSalesOrderHeader


wikivalues

Table Values Sales.SalesTerritory


TerritoryID Name CountryRegionCode Group
1 Northwest US North America
2 Northeast US North America
3 Central US North America
4 Southwest US North America
5 Southeast US North America
6 Canada CA North America
7 France FR Europe
8 Germany DE Europe
9 Australia AU Pacific
10 United Kingdom GB Europe

automatically generated

Table Sales.SalesTerritory
Description Sales territory lookup table.


Column Data Type Nullable Default Description / PK / Index
TerritoryID int not null Primary key for SalesTerritory records.
PK_SalesTerritory_TerritoryID
Name Name not null Sales territory description
AK_SalesTerritory_Name
CountryRegionCode nvarchar(3) not null ISO standard country or region code. Foreign key to CountryRegion.CountryRegionCode.
Group nvarchar(50) not null Geographic area to which the sales territory belong.
SalesYTD money not null (0.00) Sales in the territory year to date.
SalesLastYear money not null (0.00) Sales in the territory the previous year.
CostYTD money not null (0.00) Business costs in the territory year to date.
CostLastYear money not null (0.00) Business costs in the territory the previous year.
rowguid uniqueidentifier not null (NEWID()) ROWGUIDCOL number uniquely identifying the record. Used to support a merge replication sample.
AK_SalesTerritory_rowguid
ModifiedDate datetime not null (GETDATE()) Date and time the record was last updated.


Detail Table Column Referencing Column
Sales.Customer TerritoryID TerritoryID
Sales.SalesOrderHeader TerritoryID TerritoryID
Sales.SalesPerson TerritoryID TerritoryID
Sales.SalesTerritoryHistory TerritoryID TerritoryID
Person.StateProvince TerritoryID TerritoryID


Dependency Type Object Type Referenced Object
Data Type Type dbo.Name
Schema Schema Sales


Reference Type Object Type Referencing Object Child Type Child Object
Select View Sales.vSalesPerson
Select View Sales.vSalesPersonSalesByFiscalYears
Update Table Sales.SalesOrderHeader Trigger uSalesOrderHeader