Editing Person.Contact (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 1: Line 1:
Hi there,
+
== wikibot ==
  
We run an Instagram growth service, which increases your number of followers both safely and practically.  
+
{| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse"
 +
|- valign="top"
 +
| '''Table
 +
| Person.Contact
 +
|- valign="top"
 +
| '''Description
 +
| Names of each employee, customer contact, and vendor contact.
 +
|}
  
- Guaranteed: We guarantee to gain you 400-1200+ followers per month.
+
=== Columns ===
- Real, human followers: People follow you because they are interested in your business or niche.
+
{| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse"
- Safe: All actions are made manually. We do not use any bots.
+
|- style="background:silver"
 +
| '''Column
 +
| '''Data Type
 +
| '''Nullable
 +
| '''Default
 +
| '''Description
  
The price is just $60 (USD) per month, and we can start immediately.
+
|- valign="top"
 +
| ContactID
 +
| int
 +
| not null
 +
|
 +
| Primary key for Contact records.
 +
|- valign="top"
 +
| NameStyle
 +
| dbo.NameStyle
 +
| not null
 +
| ((0))
 +
| 0 = The data in FirstName and LastName are stored in western style (first name, last name) order.  1 = Eastern style (last name, first name) order.
 +
|- valign="top"
 +
| Title
 +
| nvarchar(8)
 +
| null
 +
|
 +
| A courtesy title. For example, Mr. or Ms.
 +
|- valign="top"
 +
| FirstName
 +
| dbo.Name
 +
| not null
 +
|
 +
| First name of the person.
 +
|- valign="top"
 +
| MiddleName
 +
| dbo.Name
 +
| null
 +
|
 +
| Middle name or middle initial of the person.
 +
|- valign="top"
 +
| LastName
 +
| dbo.Name
 +
| not null
 +
|
 +
| Last name of the person.
 +
|- valign="top"
 +
| Suffix
 +
| nvarchar(10)
 +
| null
 +
|
 +
| Surname suffix. For example, Sr. or Jr.
 +
|- valign="top"
 +
| EmailAddress
 +
| nvarchar(50)
 +
| null
 +
|
 +
| E-mail address for the person.
 +
|- valign="top"
 +
| EmailPromotion
 +
| int
 +
| not null
 +
| ((0))
 +
| 0 = Contact does not wish to receive e-mail promotions, 1 = Contact does wish to receive e-mail promotions from AdventureWorks, 2 = Contact does wish to receive e-mail promotions from AdventureWorks and selected partners.
 +
|- valign="top"
 +
| Phone
 +
| dbo.Phone
 +
| null
 +
|
 +
| Phone number associated with the person.
 +
|- valign="top"
 +
| PasswordHash
 +
| varchar(128)
 +
| not null
 +
|
 +
| Password for the e-mail account.
 +
|- valign="top"
 +
| PasswordSalt
 +
| varchar(10)
 +
| not null
 +
|
 +
| Random value concatenated with the password string before the password is hashed.
 +
|- valign="top"
 +
| AdditionalContactInfo
 +
| xml
 +
| null
 +
|
 +
| Additional contact information about the person stored in xml format.
 +
|- valign="top"
 +
| rowguid
 +
| uniqueidentifier
 +
| not null
 +
| (newid())
 +
| ROWGUIDCOL number uniquely identifying the record. Used to support a merge replication sample.
 +
|- valign="top"
 +
| ModifiedDate
 +
| datetime
 +
| not null
 +
| (getdate())
 +
| Date and time the record was last updated.
 +
|}
  
If you are interested, and would like to see some of our previous work, let me know and we can discuss further.
+
=== Primary Key ===
 +
{| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse"
 +
|- style="background:silver"
 +
| '''Primary Key
 +
| '''Columns
 +
|- valign="top"
 +
| PK_Contact_ContactID
 +
| ContactID
 +
|}
  
Kind Regards,
+
=== Indexes ===
Megan
+
{| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse"
 +
|- style="background:silver"
 +
| '''Index
 +
| '''Type
 +
| '''Columns
  
To unsubscribe: https://removeme.click/unsubscribe.php?d=dbshelp.devio.at
+
|- valign="top"
 +
| AK_Contact_rowguid
 +
| Unique
 +
| rowguid
 +
|- valign="top"
 +
| IX_Contact_EmailAddress
 +
|
 +
| EmailAddress
 +
|- valign="top"
 +
| PXML_Contact_AddContact
 +
|
 +
| AdditionalContactInfo
 +
|}
 +
 
 +
=== Check Constraints ===
 +
{| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse"
 +
|- style="background:silver"
 +
| '''Check Constraint
 +
| '''Expression
 +
| '''Description
 +
 
 +
|- valign="top"
 +
| CK_Contact_EmailPromotion
 +
| ([EmailPromotion]>=(0) AND [EmailPromotion]<=(2))
 +
| Check constraint [EmailPromotion] >= (0) AND [EmailPromotion] <= (2)
 +
|}
 +
 
 +
=== Detail Tables ===
 +
{| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse"
 +
|- style="background:silver"
 +
| '''Detail Table
 +
| '''Column
 +
| '''Referencing Column
 +
 
 +
|- valign="top"
 +
| [[Sales.ContactCreditCard_(table)|Sales.ContactCreditCard]]
 +
| ContactID
 +
| ContactID
 +
|- valign="top"
 +
| [[HumanResources.Employee_(table)|HumanResources.Employee]]
 +
| ContactID
 +
| ContactID
 +
|- valign="top"
 +
| [[Sales.Individual_(table)|Sales.Individual]]
 +
| ContactID
 +
| ContactID
 +
|- valign="top"
 +
| [[Sales.SalesOrderHeader_(table)|Sales.SalesOrderHeader]]
 +
| ContactID
 +
| ContactID
 +
|- valign="top"
 +
| [[Sales.StoreContact_(table)|Sales.StoreContact]]
 +
| ContactID
 +
| ContactID
 +
|- valign="top"
 +
| [[Purchasing.VendorContact_(table)|Purchasing.VendorContact]]
 +
| ContactID
 +
| ContactID
 +
|}
 +
 
 +
=== References ===
 +
{| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse"
 +
|- style="background:silver"
 +
| '''Dependency Type
 +
| '''Object Type
 +
| '''Referenced Object
 +
 
 +
|- valign="top"
 +
| Data Type
 +
| Type
 +
| [[dbo.Name_(type)|dbo.Name]]
 +
 
 +
|- valign="top"
 +
| Data Type
 +
| Type
 +
| [[dbo.NameStyle_(type)|dbo.NameStyle]]
 +
 
 +
|- valign="top"
 +
| Data Type
 +
| Type
 +
| [[dbo.Phone_(type)|dbo.Phone]]
 +
 
 +
|- valign="top"
 +
| Schema
 +
| Schema
 +
| [[Person_(schema)|Person]]
 +
 
 +
|- valign="top"
 +
| Data Type
 +
| XML Schema Collection
 +
| [[Person.AdditionalContactInfoSchemaCollection_(xml schema collection)|Person.AdditionalContactInfoSchemaCollection]]
 +
 
 +
|}
 +
 
 +
=== Dependencies ===
 +
{| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse"
 +
|- style="background:silver"
 +
| '''Reference Type
 +
| '''Object Type
 +
| '''Referencing Object
 +
 
 +
|- valign="top"
 +
| Select
 +
| View
 +
| [[HumanResources.vEmployee_(view)|HumanResources.vEmployee]]
 +
 
 +
|- valign="top"
 +
| Select
 +
| View
 +
| [[HumanResources.vEmployeeDepartment_(view)|HumanResources.vEmployeeDepartment]]
 +
 
 +
|- valign="top"
 +
| Select
 +
| View
 +
| [[HumanResources.vEmployeeDepartmentHistory_(view)|HumanResources.vEmployeeDepartmentHistory]]
 +
 
 +
|- valign="top"
 +
| Select
 +
| View
 +
| [[Person.vAdditionalContactInfo_(view)|Person.vAdditionalContactInfo]]
 +
 
 +
|- valign="top"
 +
| Select
 +
| View
 +
| [[Purchasing.vVendor_(view)|Purchasing.vVendor]]
 +
 
 +
|- valign="top"
 +
| Select
 +
| View
 +
| [[Sales.vIndividualCustomer_(view)|Sales.vIndividualCustomer]]
 +
 
 +
|- valign="top"
 +
| Select
 +
| View
 +
| [[Sales.vSalesPerson_(view)|Sales.vSalesPerson]]
 +
 
 +
|- valign="top"
 +
| Select
 +
| View
 +
| [[Sales.vSalesPersonSalesByFiscalYears_(view)|Sales.vSalesPersonSalesByFiscalYears]]
 +
 
 +
|- valign="top"
 +
| Select
 +
| View
 +
| [[Sales.vStoreWithDemographics_(view)|Sales.vStoreWithDemographics]]
 +
 
 +
|- valign="top"
 +
| Select
 +
| Procedure
 +
| [[dbo.uspGetEmployeeManagers_(procedure)|dbo.uspGetEmployeeManagers]]
 +
 
 +
|- valign="top"
 +
| Select
 +
| Procedure
 +
| [[dbo.uspGetManagerEmployees_(procedure)|dbo.uspGetManagerEmployees]]
 +
 
 +
|- valign="top"
 +
| Select
 +
| SQL table-valued-function
 +
| [[dbo.ufnGetContactInformation_(function)|dbo.ufnGetContactInformation]]
 +
 
 +
|}
 +
 
 +
 
 +
== automatically generated ==
 +
 
 +
{| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse"
 +
|-
 +
| '''Table
 +
| Person.Contact
 +
|- valign="top"
 +
| '''Description
 +
| Names of each employee, customer contact, and vendor contact.
 +
|-
 +
|}
 +
 
 +
 
 +
{| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse"
 +
|- style="background:silver"
 +
| '''Column
 +
| '''Data Type
 +
| '''Nullable
 +
| '''Default
 +
| '''Description / PK / Index
 +
 +
|- valign="top"
 +
| ContactID
 +
| int
 +
| not null
 +
|
 +
| Primary key for Contact records.<br />PK_Contact_ContactID
 +
|- valign="top"
 +
| NameStyle
 +
| NameStyle
 +
| not null
 +
| (0)
 +
| 0 = The data in FirstName and LastName are stored in western style (first name, last name) order. 1 = Eastern style (last name, first name) order.<br />
 +
|- valign="top"
 +
| Title
 +
| nvarchar(8)
 +
| null
 +
|
 +
| A courtesy title. For example, Mr. or Ms.<br />
 +
|- valign="top"
 +
| FirstName
 +
| Name
 +
| not null
 +
|
 +
| First name of the person.<br />
 +
|- valign="top"
 +
| MiddleName
 +
| Name
 +
| null
 +
|
 +
| Middle name or middle initial of the person.<br />
 +
|- valign="top"
 +
| LastName
 +
| Name
 +
| not null
 +
|
 +
| Last name of the person.<br />
 +
|- valign="top"
 +
| Suffix
 +
| nvarchar(10)
 +
| null
 +
|
 +
| Surname suffix. For example, Sr. or Jr.<br />
 +
|- valign="top"
 +
| EmailAddress
 +
| nvarchar(50)
 +
| null
 +
|
 +
| E-mail address for the person.<br />IX_Contact_EmailAddress
 +
|- valign="top"
 +
| EmailPromotion
 +
| int
 +
| not null
 +
| (0)
 +
| 0 = Contact does not wish to receive e-mail promotions, 1 = Contact does wish to receive e-mail promotions from AdventureWorks, 2 = Contact does wish to receive e-mail promotions from AdventureWorks and selected partners. <br />
 +
|- valign="top"
 +
| Phone
 +
| Phone
 +
| null
 +
|
 +
| Phone number associated with the person.<br />
 +
|- valign="top"
 +
| PasswordHash
 +
| varchar(128)
 +
| not null
 +
|
 +
| Password for the e-mail account.<br />
 +
|- valign="top"
 +
| PasswordSalt
 +
| varchar(10)
 +
| not null
 +
|
 +
| Random value concatenated with the password string before the password is hashed.<br />
 +
|- valign="top"
 +
| AdditionalContactInfo
 +
| XML
 +
| null
 +
|
 +
| Additional contact information about the person stored in xml format. <br />PXML_Contact_AddContact
 +
|- valign="top"
 +
| rowguid
 +
| uniqueidentifier
 +
| not null
 +
| (NEWID())
 +
| ROWGUIDCOL number uniquely identifying the record. Used to support a merge replication sample.<br />AK_Contact_rowguid
 +
|- valign="top"
 +
| ModifiedDate
 +
| datetime
 +
| not null
 +
| (GETDATE())
 +
| Date and time the record was last updated.<br />
 +
|}
 +
 
 +
 
 +
 
 +
{| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse"
 +
|- style="background:silver"
 +
| '''Detail Table
 +
| '''Column
 +
| '''Referencing Column
 +
 +
|-
 +
| [[Sales.ContactCreditCard_(table)|Sales.ContactCreditCard]]
 +
| ContactID
 +
| ContactID
 +
|-
 +
| [[HumanResources.Employee_(table)|HumanResources.Employee]]
 +
| ContactID
 +
| ContactID
 +
|-
 +
| [[Sales.Individual_(table)|Sales.Individual]]
 +
| ContactID
 +
| ContactID
 +
|-
 +
| [[Sales.SalesOrderHeader_(table)|Sales.SalesOrderHeader]]
 +
| ContactID
 +
| ContactID
 +
|-
 +
| [[Sales.StoreContact_(table)|Sales.StoreContact]]
 +
| ContactID
 +
| ContactID
 +
|-
 +
| [[Purchasing.VendorContact_(table)|Purchasing.VendorContact]]
 +
| ContactID
 +
| ContactID
 +
|}
 +
 
 +
 
 +
{| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse"
 +
|- style="background:silver"
 +
| '''Dependency Type
 +
| '''Object Type
 +
| '''Referenced Object
 +
 
 +
|-
 +
| Data Type
 +
| Type
 +
| [[dbo.Name_(type)|dbo.Name]]
 +
 
 +
|-
 +
| Data Type
 +
| Type
 +
| [[dbo.NameStyle_(type)|dbo.NameStyle]]
 +
 
 +
|-
 +
| Data Type
 +
| Type
 +
| [[dbo.Phone_(type)|dbo.Phone]]
 +
 
 +
|-
 +
| Schema
 +
| Schema
 +
| [[Person_(schema)|Person]]
 +
 
 +
|-
 +
| Data Type
 +
| XML Schema Collection
 +
| [[Person.AdditionalContactInfoSchemaCollection_(xml_schema_collection)|Person.AdditionalContactInfoSchemaCollection]]
 +
 
 +
|}
 +
 
 +
 
 +
{| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse"
 +
|- style="background:silver"
 +
| '''Reference Type
 +
| '''Object Type
 +
| '''Referencing Object
 +
 
 +
|-
 +
| Select
 +
| View
 +
| [[HumanResources.vEmployee_(view)|HumanResources.vEmployee]]
 +
 
 +
|-
 +
| Select
 +
| View
 +
| [[HumanResources.vEmployeeDepartment_(view)|HumanResources.vEmployeeDepartment]]
 +
 
 +
|-
 +
| Select
 +
| View
 +
| [[HumanResources.vEmployeeDepartmentHistory_(view)|HumanResources.vEmployeeDepartmentHistory]]
 +
 
 +
|-
 +
| Select
 +
| View
 +
| [[Person.vAdditionalContactInfo_(view)|Person.vAdditionalContactInfo]]
 +
 
 +
|-
 +
| Select
 +
| View
 +
| [[Purchasing.vVendor_(view)|Purchasing.vVendor]]
 +
 
 +
|-
 +
| Select
 +
| View
 +
| [[Sales.vIndividualCustomer_(view)|Sales.vIndividualCustomer]]
 +
 
 +
|-
 +
| Select
 +
| View
 +
| [[Sales.vSalesPerson_(view)|Sales.vSalesPerson]]
 +
 
 +
|-
 +
| Select
 +
| View
 +
| [[Sales.vSalesPersonSalesByFiscalYears_(view)|Sales.vSalesPersonSalesByFiscalYears]]
 +
 
 +
|-
 +
| Select
 +
| View
 +
| [[Sales.vStoreWithDemographics_(view)|Sales.vStoreWithDemographics]]
 +
 
 +
|-
 +
| Select
 +
| Procedure
 +
| [[dbo.uspGetEmployeeManagers_(procedure)|dbo.uspGetEmployeeManagers]]
 +
 
 +
|-
 +
| Select
 +
| Procedure
 +
| [[dbo.uspGetManagerEmployees_(procedure)|dbo.uspGetManagerEmployees]]
 +
 
 +
|-
 +
| Select
 +
| SQL table-valued-function
 +
| [[dbo.ufnGetContactInformation_(function)|dbo.ufnGetContactInformation]]
 +
 
 +
|}

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)