| Field Name | Data Type | Size | Original Type | Default | Nullable | Description | Check |
|---|---|---|---|---|---|---|---|
| AddressTypeID | int identity | int | Not null | Primary key for AddressType records. | |||
| Name | Name | nvarchar(50) | Not null | Address type description. For example, Billing, Home, or Shipping. | |||
| rowguid | uniqueidentifier | newid() | Not null | ROWGUIDCOL number uniquely identifying the record. Used to support a merge replication sample. | |||
| ModifiedDate | datetime | getdate() | Not null | Date and time the record was last updated. |
The object has no extended properties.
| Primary Key Name | Field Name |
|---|---|
| PK_AddressType_AddressTypeID | AddressTypeID |
| Index Name | Description | Clustered | Unique | Fields |
|---|---|---|---|---|
| PK_AddressType_AddressTypeID | Clustered index created by a primary key constraint. | Yes | Yes | AddressTypeID |
| AK_AddressType_Name | Unique nonclustered index. | No | Yes | Name |
| AK_AddressType_rowguid | Unique nonclustered index. Used to support replication samples. | No | Yes | rowguid |
| Name | Description | Type | Enabled |
|---|---|---|---|
| uAddressType | AFTER UPDATE trigger setting the ModifiedDate column in the AddressType table to the current date. | after Update | Yes |
| Object Name | Type | Field Name |
|---|---|---|
| Person.uAddressType | trigger | N/A |
| Sales.vIndividualCustomer | view | N/A |
| Sales.vStoreWithDemographics | view | N/A |