Production.ProductDescription Table
Information
| Name | ProductDescription |
| Schema | Production |
| Row Count | 0 |
| Data Size | |
| Index Size | |
| Reserved Size | |
| Unused Size | |
| Created | 29.3.2010. 21:58:18 |
| Modified | 29.3.2010. 21:58:56 |
Extended Properties
| Name | Type | Property Name | Value |
| ProductDescription | TABLE | MS_Description | Product descriptions in several languages. |
Columns
| PK | Key | Identity | Name | Data Type | Allow Nulls | Collation | References | Default | Computed | Compute Expression |
|   |   |   | ProductDescriptionID | int |   | | | |   | |
| |   |   | Description | nvarchar(400) |   | SQL_Latin1_General_CP1_CI_AS | | |   | |
| |   |   | rowguid | uniqueidentifier |   | | | (newid()) |   | |
| |   |   | ModifiedDate | datetime |   | | | (getdate()) |   | |
Indexes
SQL Script
CREATE TABLE [Production].[ProductDescription] (
[ProductDescriptionID] int NOT NULL IDENTITY,
[Description] nvarchar(400) NOT NULL,
[rowguid] uniqueidentifier NOT NULL DEFAULT (newid()),
[ModifiedDate] datetime NOT NULL DEFAULT (getdate())
);
CREATE UNIQUE INDEX [AK_ProductDescription_rowguid] on [Production].[ProductDescription]([rowguid]);