Listing 1: Database Schema for Product Data with Open Content CREATE TABLE [dbo].[Products] ( [ProductID] [int] IDENTITY (1, 1) NOT NULL , [ProductName] [nvarchar] (40) NOT NULL , [UnitPrice] [money] NULL , [Overflow] [text] NULL ) ON [PRIMARY] GO