Production.Culture Table

Information

NameCulture
SchemaProduction
Row Count0
Data Size 
Index Size 
Reserved Size 
Unused Size 
Created29.3.2010. 21:58:18
Modified29.3.2010. 21:58:54

Extended Properties

NameTypeProperty NameValue
CultureTABLEMS_DescriptionLookup table containing the languages in which some AdventureWorks data is stored.

Columns

PKKeyIdentityNameData TypeAllow NullsCollationReferencesDefaultComputedCompute Expression
   CultureIDnchar(6) SQL_Latin1_General_CP1_CI_AS 
 
 
 
   Namenvarchar(50) SQL_Latin1_General_CP1_CI_AS 
 
 
 
   ModifiedDatedatetime   
(getdate())
 
 

Indexes

NameTypePrimaryUniqueColumns
PK_Culture_CultureIDClustered  CultureID
AK_Culture_NameNonClustered  Name

SQL Script

CREATE TABLE [Production].[Culture] (
    [CultureID] nchar(6) NOT NULL,
    [Name] nvarchar(50) NOT NULL,
    [ModifiedDate] datetime NOT NULL DEFAULT (getdate())
);
CREATE UNIQUE INDEX [AK_Culture_Name] on [Production].[Culture]([Name]);