Production.UnitMeasure Table
Information
| Name | UnitMeasure |
| 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:54 |
Extended Properties
| Name | Type | Property Name | Value |
| UnitMeasure | TABLE | MS_Description | Unit of measure lookup table. |
Columns
| PK | Key | Identity | Name | Data Type | Allow Nulls | Collation | References | Default | Computed | Compute Expression |
|   |   |   | UnitMeasureCode | nchar(3) |   | SQL_Latin1_General_CP1_CI_AS | | |   | |
| |   |   | Name | nvarchar(50) |   | SQL_Latin1_General_CP1_CI_AS | | |   | |
| |   |   | ModifiedDate | datetime |   | | | (getdate()) |   | |
Indexes
SQL Script
CREATE TABLE [Production].[UnitMeasure] (
[UnitMeasureCode] nchar(3) NOT NULL,
[Name] nvarchar(50) NOT NULL,
[ModifiedDate] datetime NOT NULL DEFAULT (getdate())
);
CREATE UNIQUE INDEX [AK_UnitMeasure_Name] on [Production].[UnitMeasure]([Name]);