Properties

Owner: Production 
Creation Date: 04/26/2006 
Located On: PRIMARY 
Data Size KB: 184 
Index Size KB:
Rows:
Description: Bicycle assembly diagrams. 

Columns

Name Data Type Length NULL Default IsIdentity IsGUID Description
    IllustrationID  int          Primary key for Illustration records. 
    Diagram  xml  -1          Illustrations used in manufacturing instructions. Stored as XML. 
    ModifiedDate  datetime    (getdate())      Date and time the record was last updated. 
Total: 3 column(s)

Identity column

Name Seed Increment Not for replication
  IllustrationID   

Indexes

Index Primary Unique Description
  PK_Illustration_IllustrationID      Primary key (clustered) constraint 
Total: 1 index(es)

Referencing Tables

Table Foreign Key Primary Key or Unique Constraint
  Production.ProductModelIllustration  FK_ProductModelIllustration_Illustration_IllustrationID  PK_Illustration_IllustrationID 
Total: 1 table(s)

Objects that depend on [Production].[Illustration]

Object Name Owner Object Type Dep Level
  ProductModelIllustration  Production  Table 
Total: 1 object(s)

SQL

CREATE TABLE [Illustration] (
    [IllustrationID] [int] IDENTITY (1, 1) NOT NULL ,
    [Diagram] [xml] NULL ,
    [ModifiedDate] [datetime] NOT NULL CONSTRAINT [DF_Illustration_ModifiedDate] DEFAULT (getdate()),
    CONSTRAINT [PK_Illustration_IllustrationID] PRIMARY KEY  CLUSTERED
    (
        [IllustrationID]
    )  ON [PRIMARY]
) ON [PRIMARY]
GO


See Also

List of tables