Properties

Owner: dbo 
Creation Date: 08/06/2000 
Located On: PRIMARY 
Data Size KB: 112 
Index Size KB: 32 
Rows:
Description:  

Columns

Name Data Type Length NULL Default IsIdentity IsGUID Description
    CategoryID  int           
    CategoryName  nvarchar  30           
    Description  ntext  16           
    Picture  image  16           
Total: 4 column(s)

Identity column

Name Seed Increment Not for replication
  CategoryID   

Indexes

Index Primary Unique Description
  PK_Categories       
  CategoryName       
Total: 2 index(es)

Referencing Tables

Table Foreign Key Primary Key or Unique Constraint
  dbo.Products  FK_Products_Categories  PK_Categories 
Total: 1 table(s)

Objects that depend on [dbo].[Categories]

Object Name Owner Object Type Dep Level
  Products  dbo  Table 
  Alphabetical list of products  dbo  View 
  Current Product List  dbo  View 
  Products Above Average Price  dbo  View 
  Products by Category  dbo  View 
  Order Details  dbo  Table 
  Ten Most Expensive Products  dbo  Procedure 
  Invoices  dbo  View 
  Order Details Extended  dbo  View 
  Order Subtotals  dbo  View 
  Product Sales for 1997  dbo  View 
  CustOrderHist  dbo  Procedure 
  CustOrdersDetail  dbo  Procedure 
  SalesByCategory  dbo  Procedure 
  Category Sales for 1997  dbo  View 
  Sales by Category  dbo  View 
  Sales Totals by Amount  dbo  View 
  Summary of Sales by Quarter  dbo  View 
  Summary of Sales by Year  dbo  View 
  Employee Sales by Country  dbo  Procedure 
  Sales by Year  dbo  Procedure 
Total: 21 object(s)

SQL

CREATE TABLE [Categories] (
    [CategoryID] [int] IDENTITY (1, 1) NOT NULL ,
    [CategoryName] [nvarchar] (15) COLLATE Cyrillic_General_CI_AS NOT NULL ,
    [Description] [ntext] COLLATE Cyrillic_General_CI_AS NULL ,
    [Picture] [image] NULL ,
    CONSTRAINT [PK_Categories] PRIMARY KEY  CLUSTERED
    (
        [CategoryID]
    )  ON [PRIMARY]
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
GO


See Also

List of tables