| Field Name | Data Type | Size | Original Type | Default | Nullable | Description | Check |
|---|---|---|---|---|---|---|---|
| ProductDescriptionID | int identity | int | Not null | Primary key for ProductDescription records. | |||
| Description | nvarchar | 400 | Not null | Description of the product. | |||
| 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_ProductDescription_ProductDescriptionID | ProductDescriptionID |
| Index Name | Description | Clustered | Unique | Fields |
|---|---|---|---|---|
| PK_ProductDescription_ProductDescriptionID | Clustered index created by a primary key constraint. | Yes | Yes | ProductDescriptionID |
| AK_ProductDescription_rowguid | Unique nonclustered index. Used to support replication samples. | No | Yes | rowguid |
| Name | Description | Type | Enabled |
|---|---|---|---|
| uProductDescription | AFTER UPDATE trigger setting the ModifiedDate column in the ProductDescription table to the current date. | after Update | Yes |
| Object Name | Type | Field Name |
|---|---|---|
| Production.uProductDescription | trigger | N/A |
| Production.vProductAndDescription | view | N/A |