BDG Scenario 3

GradeScale.sql

If Exists (Select * From sysobjects Where name = N'GradeScale' And user_name(uid) = N'dbo')
    Drop Table dbo.GradeScale
Go

Create Table dbo.GradeScale
    (
    GradeScaleId int Not Null Identity (1, 1),
    Name nvarchar(32) Not Null,
    Description nvarchar(128) Null
    )
Go
Alter Table dbo.GradeScale Add Constraint
    PK_GradeScale Primary Key Nonclustered
    (
    GradeScaleId
    )
Go