SQL to create "tblInstitutionsWithKey":
USE [YourDBName]
GO
/****** Object: Table [dbo].[tblInstitutionsWithKey] ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[tblInstitutionsWithKey](
[InstitutionID] [int] NOT NULL,
[InstitutionDesc] [nvarchar](255) NULL,
[IsMonthlyBill] [bit] NOT NULL,
[IsFixedCredit] [bit] NOT NULL,
[FixedCredit] [float] NULL,
[IsFixedDebit] [bit] NOT NULL,
[FixedDebit] [float] NULL,
[SortOrder] [int] NULL,
[Balance] [float] NULL,
PRIMARY KEY CLUSTERED
(
[InstitutionID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO