Owner: | dbo |
Creation Date: | 08/06/2000 |
Located On: | PRIMARY |
Data Size KB: | 8 |
Index Size KB: | 24 |
Rows: | 4 |
Description: |
Name | Data Type | Length | NULL | Default | IsIdentity | IsGUID | Description | ||
|
RegionID | int | 4 |
|
|
|
|||
|
RegionDescription | nchar | 100 |
|
|
|
Index | Primary | Unique | Description | |
|
PK_Region |
|
|
Table | Foreign Key | Primary Key or Unique Constraint | |
|
dbo.Territories | FK_Territories_Region | PK_Region |
Objects that depend on [dbo].[Region]
Object Name | Owner | Object Type | Dep Level | |
|
Territories | dbo | Table | 1 |
|
EmployeeTerritories | dbo | Table | 2 |
CREATE TABLE [Region] (
[RegionID] [int] NOT NULL ,
[RegionDescription] [nchar] (50) COLLATE Cyrillic_General_CI_AS NOT NULL ,
CONSTRAINT [PK_Region] PRIMARY KEY NONCLUSTERED
(
[RegionID]
) ON [PRIMARY]
) ON [PRIMARY]
GO
See Also
List of tables