Database reference - AdventureWorks2008

AdventureWorks2008 -  tables -  [Production].[Culture]

Description

Lookup table containing the languages in which some AdventureWorks data is stored. 

Table properties

namevalue
name[Production].[Culture]
createdMar 19 2009 9:09PM
modifiedMar 19 2009 9:10PM 
ansi nullson 
quoted identifieron 
row count8
Size of data8 kb
Size of indexes24 kb
Maximum size of a single row232 bytes

Columns

columndatatypelengthbytesdefaultnullsPKFKUQcomputedcomment
CultureIDnchar(6)624 no  yes    no  Primary key for Culture records. 
NameName50200 no      no  Culture description. 
ModifiedDatedatetime238(getdate())no      no  Date and time the record was last updated. 

Indexes

namedescriptioncolumncomment
AK_Culture_Namenonclustered, unique located on PRIMARYNameUnique nonclustered index. 
PK_Culture_CultureIDclustered, unique, primary key located on PRIMARYCultureIDClustered index created by a primary key constraint. 

Referenced by

name
ProductModelProductDescriptionCulture

Foreign key graph

CultureProductModelProductDescriptionCulture...

Defaults

default namecolumncomment
DF_Culture_ModifiedDateModifiedDateDefault constraint value of GETDATE() 

Dependency graph

DF_Culture_ModifiedDateNameCultureAK_Culture_NamePK_Culture_CultureID

Objects that [Production].[Culture] depends on

nameobject typedatabaseserverlevel
NametypeAdventureWorks2008SPRING\KATMAI1

Sample rows

CultureIDNameModifiedDate
  Invariant Language (Invariant Country)  6/1/1998 12:00:00 AM 
ar   Arabic  6/1/1998 12:00:00 AM 
en   English  6/1/1998 12:00:00 AM 
es   Spanish  6/1/1998 12:00:00 AM 
fr   French  6/1/1998 12:00:00 AM 
he   Hebrew  6/1/1998 12:00:00 AM 
th   Thai  6/1/1998 12:00:00 AM 
zh-cht  Chinese  6/1/1998 12:00:00 AM 

Code

CREATE TABLE [Production].[Culture](
    [CultureID] [nchar](6) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
    [Name] [dbo].[Name] NOT NULL,
    [CultureID] [nchar](6) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
    [ModifiedDate] [datetime] NOT NULL,
 CONSTRAINT [PK_Culture_CultureID] PRIMARY KEY CLUSTERED 
(
    [CultureID] ASC
)WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON) ON [PRIMARY]
) ON [PRIMARY]

ALTER TABLE [Production].[Culture] ADD  CONSTRAINT [DF_Culture_ModifiedDate]  DEFAULT (getdate()) FOR [ModifiedDate]



Documentation generated by SqlSpec