Editing Sales.SpecialOffer (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
 
| Sales.SpecialOffer
 
| Sales.SpecialOffer
|- valign="top"
+
|-
| '''Description
 
| Sale discounts lookup table.
 
 
|}
 
|}
  
=== 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"
+
 +
|-
 
| SpecialOfferID
 
| SpecialOfferID
 
| int
 
| int
 
| not null
 
| not null
 
|  
 
|  
| Primary key for SpecialOffer records.
+
| PK_SpecialOffer_SpecialOfferID
|- valign="top"
+
|
 +
|-
 
| Description
 
| Description
 
| nvarchar(255)
 
| nvarchar(255)
 
| not null
 
| not null
 
|  
 
|  
| Discount description.
+
|  
|- valign="top"
+
|
 +
|-
 
| DiscountPct
 
| DiscountPct
 
| smallmoney
 
| smallmoney
 
| not null
 
| not null
 
| ((0.00))
 
| ((0.00))
| Discount precentage.
+
|  
|- valign="top"
+
|
 +
|-
 
| Type
 
| Type
 
| nvarchar(50)
 
| nvarchar(50)
 
| not null
 
| not null
 
|  
 
|  
| Discount type category.
+
|  
|- valign="top"
+
|
 +
|-
 
| Category
 
| Category
 
| nvarchar(50)
 
| nvarchar(50)
 
| not null
 
| not null
 
|  
 
|  
| Group the discount applies to such as Reseller or Customer.
+
|  
|- valign="top"
+
|
 +
|-
 
| StartDate
 
| StartDate
 
| datetime
 
| datetime
 
| not null
 
| not null
 
|  
 
|  
| Discount start date.
+
|  
|- valign="top"
+
|
 +
|-
 
| EndDate
 
| EndDate
 
| datetime
 
| datetime
 
| not null
 
| not null
 
|  
 
|  
| Discount end date.
+
|  
|- valign="top"
+
|
 +
|-
 
| MinQty
 
| MinQty
 
| int
 
| int
 
| not null
 
| not null
 
| ((0))
 
| ((0))
| Minimum discount percent allowed.
+
|  
|- valign="top"
+
|
 +
|-
 
| MaxQty
 
| MaxQty
 
| int
 
| int
 
| null
 
| null
 
|  
 
|  
| Maximum discount percent allowed.
+
|  
|- 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"
+
| AK_SpecialOffer_rowguid
 +
|-
 
| 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_SpecialOffer_SpecialOfferID
 
| SpecialOfferID
 
|}
 
  
=== Indexes ===
 
{| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse"
 
|- style="background:silver"
 
| '''Index
 
| '''Type
 
| '''Columns
 
  
|- valign="top"
 
| AK_SpecialOffer_rowguid
 
| Unique
 
| rowguid
 
|}
 
 
=== Check Constraints ===
 
{| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse"
 
|- style="background:silver"
 
| '''Check Constraint
 
| '''Expression
 
| '''Description
 
 
|- valign="top"
 
| CK_SpecialOffer_DiscountPct
 
| ([DiscountPct]>=(0.00))
 
| Check constraint [DiscountPct] >= (0.00)
 
|- valign="top"
 
| CK_SpecialOffer_EndDate
 
| ([EndDate]>=[StartDate])
 
| Check constraint [EndDate] >= [StartDate]
 
|- valign="top"
 
| CK_SpecialOffer_MaxQty
 
| ([MaxQty]>=(0))
 
| Check constraint [MaxQty] >= (0)
 
|- valign="top"
 
| CK_SpecialOffer_MinQty
 
| ([MinQty]>=(0))
 
| Check constraint [MinQty] >= (0)
 
|}
 
 
=== 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 141: Line 104:
 
| '''Column
 
| '''Column
 
| '''Referencing Column
 
| '''Referencing Column
 
+
|- valign="top"
+
|-
 
| [[Sales.SpecialOfferProduct_(table)|Sales.SpecialOfferProduct]]
 
| [[Sales.SpecialOfferProduct_(table)|Sales.SpecialOfferProduct]]
 
| SpecialOfferID
 
| SpecialOfferID
 
| SpecialOfferID
 
| SpecialOfferID
 
|}
 
|}
 
=== References ===
 
{| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse"
 
|- style="background:silver"
 
| '''Dependency Type
 
| '''Object Type
 
| '''Referenced Object
 
 
|- valign="top"
 
| Schema
 
| Schema
 
| [[Sales_(schema)|Sales]]
 
 
|}
 
 
 
 
== automatically generated ==
 
== automatically generated ==
  
Line 169: Line 116:
 
| '''Table
 
| '''Table
 
| Sales.SpecialOffer
 
| Sales.SpecialOffer
|- valign="top"
+
|-
 +
 
 
| '''Description
 
| '''Description
 
| Sale discounts lookup table.
 
| Sale discounts lookup table.
 
|-
 
|-
 +
 
|}
 
|}
  
Line 189: Line 138:
 
| not null
 
| not null
 
|  
 
|  
| Primary key for SpecialOffer records.<br />PK_SpecialOffer_SpecialOfferID
+
| Primary key for SpecialOffer records.PK_SpecialOffer_SpecialOfferID
 
|- valign="top"
 
|- valign="top"
 
| Description
 
| Description
Line 195: Line 144:
 
| not null
 
| not null
 
|  
 
|  
| Discount description.<br />
+
| Discount description.
 
|- valign="top"
 
|- valign="top"
 
| DiscountPct
 
| DiscountPct
Line 201: Line 150:
 
| not null
 
| not null
 
| (0.00)
 
| (0.00)
| Discount precentage.<br />
+
| Discount precentage.
 
|- valign="top"
 
|- valign="top"
 
| Type
 
| Type
Line 207: Line 156:
 
| not null
 
| not null
 
|  
 
|  
| Discount type category.<br />
+
| Discount type category.
 
|- valign="top"
 
|- valign="top"
 
| Category
 
| Category
Line 213: Line 162:
 
| not null
 
| not null
 
|  
 
|  
| Group the discount applies to such as Reseller or Customer.<br />
+
| Group the discount applies to such as Reseller or Customer.
 
|- valign="top"
 
|- valign="top"
 
| StartDate
 
| StartDate
Line 219: Line 168:
 
| not null
 
| not null
 
|  
 
|  
| Discount start date.<br />
+
| Discount start date.
 
|- valign="top"
 
|- valign="top"
 
| EndDate
 
| EndDate
Line 225: Line 174:
 
| not null
 
| not null
 
|  
 
|  
| Discount end date.<br />
+
| Discount end date.
 
|- valign="top"
 
|- valign="top"
 
| MinQty
 
| MinQty
Line 231: Line 180:
 
| not null
 
| not null
 
| (0)
 
| (0)
| Minimum discount percent allowed.<br />
+
| Minimum discount percent allowed.
 
|- valign="top"
 
|- valign="top"
 
| MaxQty
 
| MaxQty
Line 237: Line 186:
 
| null
 
| null
 
|  
 
|  
| Maximum discount percent allowed.<br />
+
| Maximum discount percent allowed.
 
|- valign="top"
 
|- valign="top"
 
| rowguid
 
| rowguid
Line 243: Line 192:
 
| not null
 
| not null
 
| (NEWID())
 
| (NEWID())
| ROWGUIDCOL number uniquely identifying the record. Used to support a merge replication sample.<br />AK_SpecialOffer_rowguid
+
| ROWGUIDCOL number uniquely identifying the record. Used to support a merge replication sample.AK_SpecialOffer_rowguid
 
|- valign="top"
 
|- valign="top"
 
| ModifiedDate
 
| ModifiedDate
Line 249: Line 198:
 
| not null
 
| not null
 
| (GETDATE())
 
| (GETDATE())
| Date and time the record was last updated.<br />
+
| Date and time the record was last updated.
 
|}
 
|}
  
Line 264: Line 213:
 
| SpecialOfferID
 
| SpecialOfferID
 
| SpecialOfferID
 
| SpecialOfferID
|}
 
 
 
{| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse"
 
|- style="background:silver"
 
| '''Dependency Type
 
| '''Object Type
 
| '''Referenced Object
 
 
|-
 
| Schema
 
| Schema
 
| [[Sales_(schema)|Sales]]
 
 
 
|}
 
|}

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)