Sales.Currency Table
Information
| Name | Currency |
| Schema | Sales |
| 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 |
| Currency | TABLE | MS_Description | Lookup table containing standard ISO currencies. |
Columns
| PK | Key | Identity | Name | Data Type | Allow Nulls | Collation | References | Default | Computed | Compute Expression |
|   |   |   | CurrencyCode | 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 [Sales].[Currency] (
[CurrencyCode] nchar(3) NOT NULL,
[Name] nvarchar(50) NOT NULL,
[ModifiedDate] datetime NOT NULL DEFAULT (getdate())
);
CREATE UNIQUE INDEX [AK_Currency_Name] on [Sales].[Currency]([Name]);