Table:
Northwind.dbo.CustomerDemographics
Table Properties
| Name | Value |
| Owner | dbo |
| Creation Date | 12/13/2004 |
| ID | 869578136 |
| Located On | PRIMARY |
| Data Size KB | 0 KB |
| Index Size KB | 0 KB |
| Rows | 0 |
Creation Options
| Name | Value |
| QUOTED_IDENTIFIER | ON |
| ANSI_NULLS | ON |
| ANSI_PADDING | ON |
Columns
| Name | Description | Data Type | Max Length | Nullable | Default | IsGUID | |
| CustomerTypeID | nchar | 10 | ![]() |
![]() |
||
| CustomerDesc | ntext | 1073741823 | ![]() |
![]() |
Indexes
| Index | Primary | Unique | |
![]() |
PK_CustomerDemographics | ![]() |
![]() |
Fulltext Index
Statistics
Check Constraints
Identity Column
Referencing Tables
| Table | Foreign Key | Primary Key or Unique Constraint | |
![]() |
CustomerCustomerDemo | FK_CustomerCustomerDemo | PK_CustomerDemographics |
Referenced Tables
Objects that depend on CustomerDemographics
| Object Name | Object Type | Dep Level | |
![]() |
CustomerCustomerDemo | Table | 1 |
Objects that CustomerDemographics depends on
Column Level Dependencies
Graphical Dependencies
Extended Properties
Permissions
Table Options
| Name | Value |
| Pintable | OFF |
| Table lock on bulk load | OFF |
| Insert row lock | OFF |
| Text in row | 0 |
| Large value types out of row | 0 |
SQL
SET ANSI_NULLS ON SET QUOTED_IDENTIFIER ON SET ANSI_PADDING ON GO CREATE TABLE [dbo].[CustomerDemographics] ( [CustomerTypeID] nchar(10) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL, [CustomerDesc] ntext COLLATE SQL_Latin1_General_CP1_CI_AS NULL ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO ALTER TABLE [dbo].[CustomerDemographics] ADD CONSTRAINT [PK_CustomerDemographics] PRIMARY KEY NONCLUSTERED ([CustomerTypeID]) ON [PRIMARY] GO |
See also