Column | Data Type | Nullable | Default | Description |
CustomerID | int | not null | | Primary key. Foreign key to Customer.CustomerID. |
Name | dbo.Name | not null | | Name of the store. |
SalesPersonID | int | null | | ID of the sales person assigned to the customer. Foreign key to SalesPerson.SalesPersonID. |
Demographics | xml | null | | Demographic informationg about the store such as the number of employees, annual sales and store type. |
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. |