Description
Lookup table containing the languages in which some AdventureWorks data is stored.
Table properties
| name | value |
|---|
| name | [Production].[Culture] |
| created | Mar 19 2009 9:08PM |
| modified | Mar 19 2009 9:08PM
|
| ansi nulls | on
|
| quoted identifier | on
|
| row count | 8 |
| Size of data | 8 kb |
| Size of indexes | 24 kb |
| Maximum size of a single row | 232 bytes |
Columns
| column | datatype | length | bytes | default | nulls | PK | FK | UQ | computed | comment |
|---|
| CultureID | nchar(6) | 6 | 24 | | no
| yes
| |
| no
| Primary key for Culture records.
|
| Name | Name | 50 | 200 | | no
|
| |
| no
| Culture description.
|
| ModifiedDate | datetime | 23 | 8 | (getdate()) | no
|
| |
| no
| Date and time the record was last updated.
|
Indexes
| name | description | column | comment |
|---|
| AK_Culture_Name | nonclustered, unique located on PRIMARY | Name | Unique nonclustered index.
|
| PK_Culture_CultureID | clustered, unique, primary key located on PRIMARY | CultureID | Clustered index created by a primary key constraint.
|
Referenced by
Foreign key graph
Defaults
Dependency graph
Objects that [Production].[Culture] depends on
| name | object type | level |
|---|
| Name | type | 1 |
Sample rows
| CultureID | Name | ModifiedDate |
|---|
|
| 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]