Difference between revisions of "Production.ProductDescription (table)"

From dbscript Online Help
Jump to: navigation, search
 
(6 intermediate revisions by the same user not shown)
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.ProductDescription
 
| Production.ProductDescription
|-
+
|- valign="top"
 +
| '''Description
 +
| Product descriptions in several languages.
 
|}
 
|}
  
 
+
=== 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 15: Line 17:
 
| '''Nullable
 
| '''Nullable
 
| '''Default
 
| '''Default
| '''PK
+
| '''Description
| '''Index
+
 
+
|- valign="top"
|-
 
 
| ProductDescriptionID
 
| ProductDescriptionID
 
| int
 
| int
 
| not null
 
| not null
 
|  
 
|  
| PK_ProductDescription_ProductDescriptionID
+
| Primary key for ProductDescription records.
|
+
|- valign="top"
|-
 
 
| Description
 
| Description
 
| nvarchar(400)
 
| nvarchar(400)
 
| not null
 
| not null
 
|  
 
|  
|  
+
| Description of the product.
|
+
|- 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.
| AK_ProductDescription_rowguid
+
|- 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_ProductDescription_ProductDescriptionID
 +
| ProductDescriptionID
 
|}
 
|}
  
 +
=== Indexes ===
 +
{| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse"
 +
|- style="background:silver"
 +
| '''Index
 +
| '''Type
 +
| '''Columns
  
 +
|- valign="top"
 +
| AK_ProductDescription_rowguid
 +
| Unique
 +
| rowguid
 +
|}
  
 +
=== 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 55: Line 74:
 
| '''Column
 
| '''Column
 
| '''Referencing Column
 
| '''Referencing Column
+
 
|-
+
|- valign="top"
 
| [[Production.ProductModelProductDescriptionCulture_(table)|Production.ProductModelProductDescriptionCulture]]
 
| [[Production.ProductModelProductDescriptionCulture_(table)|Production.ProductModelProductDescriptionCulture]]
 
| ProductDescriptionID
 
| ProductDescriptionID
 
| ProductDescriptionID
 
| ProductDescriptionID
 
|}
 
|}
 +
 +
=== 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
 +
| View
 +
| [[Production.vProductAndDescription_(view)|Production.vProductAndDescription]]
 +
 +
|}
 +
 +
 
== automatically generated ==
 
== automatically generated ==
  
Line 68: Line 117:
 
| Production.ProductDescription
 
| Production.ProductDescription
 
|- valign="top"
 
|- valign="top"
 
 
| '''Description
 
| '''Description
 
| Product descriptions in several languages.
 
| Product descriptions in several languages.
 
|-
 
|-
 
 
|}
 
|}
  
Line 127: Line 174:
 
{| 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"
| '''Referencing Object
+
| '''Dependency Type
 
| '''Object 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
 
| '''Reference Type
+
| '''Object Type
 +
| '''Referencing Object
 +
 
 
|-
 
|-
 +
| Select
 +
| View
 
| [[Production.vProductAndDescription_(view)|Production.vProductAndDescription]]
 
| [[Production.vProductAndDescription_(view)|Production.vProductAndDescription]]
| View
+
 
| Select
 
 
|}
 
|}

Latest revision as of 00:16, 24 June 2010

wikibot[edit]

Table Production.ProductDescription
Description Product descriptions in several languages.

Columns[edit]

Column Data Type Nullable Default Description
ProductDescriptionID int not null Primary key for ProductDescription records.
Description nvarchar(400) not null Description of the product.
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[edit]

Primary Key Columns
PK_ProductDescription_ProductDescriptionID ProductDescriptionID

Indexes[edit]

Index Type Columns
AK_ProductDescription_rowguid Unique rowguid

Detail Tables[edit]

Detail Table Column Referencing Column
Production.ProductModelProductDescriptionCulture ProductDescriptionID ProductDescriptionID

References[edit]

Dependency Type Object Type Referenced Object
Schema Schema Production

Dependencies[edit]

Reference Type Object Type Referencing Object
Select View Production.vProductAndDescription


automatically generated[edit]

Table Production.ProductDescription
Description Product descriptions in several languages.


Column Data Type Nullable Default Description / PK / Index
ProductDescriptionID int not null Primary key for ProductDescription records.
PK_ProductDescription_ProductDescriptionID
Description nvarchar(400) not null Description of the product.
rowguid uniqueidentifier not null (NEWID()) ROWGUIDCOL number uniquely identifying the record. Used to support a merge replication sample.
AK_ProductDescription_rowguid
ModifiedDate datetime not null (GETDATE()) Date and time the record was last updated.


Detail Table Column Referencing Column
Production.ProductModelProductDescriptionCulture ProductDescriptionID ProductDescriptionID


Dependency Type Object Type Referenced Object
Schema Schema Production


Reference Type Object Type Referencing Object
Select View Production.vProductAndDescription