LEft Outer Join (Returns More Rows than expected)

  • HI Guys,

    Please review the code below and I have pasted the DDL for it. The left outer returns more rows than the that in the left row itself and is kind of messing up my calculations.

    select pr.ID 'Project_Code'

    FROM dbo.View_Data_Names1 AS v LEFT OUTER JOIN

    dbo.TBL_DIMPC_PROJECT_CODE AS pr ON pr.Name = v.Project_Name

    USE [Test]

    GO

    /****** Object: Table [dbo].[View_Data_Names1] Script Date: 06/20/2013 15:39:33 ******/

    SET ANSI_NULLS ON

    GO

    SET QUOTED_IDENTIFIER ON

    GO

    SET ANSI_PADDING ON

    GO

    CREATE TABLE [dbo].[View_Data_Names1](

    [Project_Key] [int] NULL,

    [Project_Name] [varchar](80) NULL

    ) ON [PRIMARY]

    GO

    SET ANSI_PADDING OFF

    GO

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (56, N'0500')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (19, N'0130')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1178, N'4000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1258, N'4559')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1215, N'4520')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1258, N'4559')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (7, N'0010')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (35, N'0290')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1374, N'7531')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1258, N'4559')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1208, N'4510')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1215, N'4520')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1211, N'4513')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1258, N'4559')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1562, N'9003')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1308, N'4564')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1258, N'4559')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1218, N'4531')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1258, N'4559')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1258, N'4559')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (7, N'0010')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1258, N'4559')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1258, N'4559')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1258, N'4559')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (9, N'0030')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1220, N'4540')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1258, N'4559')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1258, N'4559')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (16, N'0100')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1451, N'4572')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1258, N'4559')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1178, N'4000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (36, N'0300')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (19, N'0130')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (43, N'0370')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1213, N'4515')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (9, N'0030')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    GO

    print 'Processed 100 total records'

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (20, N'0140')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1258, N'4559')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1258, N'4559')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1260, N'9500')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1208, N'4510')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1258, N'4559')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1432, N'8998')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (11, N'0050')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1215, N'4520')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1258, N'4559')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1260, N'9500')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1344, N'7501')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1005, N'8116')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1258, N'4559')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (46, N'0400')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1258, N'4559')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1208, N'4510')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1258, N'4559')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1258, N'4559')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1451, N'4572')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1258, N'4559')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (11, N'0050')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (884, N'0660')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1219, N'4532')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1219, N'4532')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (22, N'0160')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1178, N'4000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1260, N'9500')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (7, N'0010')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1258, N'4559')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1211, N'4513')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (19, N'0130')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (133, N'2308')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1258, N'4559')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1260, N'9500')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1212, N'4514')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1374, N'7531')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1258, N'4559')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (7, N'0010')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1258, N'4559')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1258, N'4559')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (36, N'0300')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1215, N'4520')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1220, N'4540')

    GO

    print 'Processed 200 total records'

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (20, N'0140')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1258, N'4559')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1210, N'4512')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1258, N'4559')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1208, N'4510')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (170, N'2456')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (10, N'0040')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1258, N'4559')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1258, N'4559')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1209, N'4511')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1373, N'7530')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (30, N'0240')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1208, N'4510')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1178, N'4000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (874, N'0560')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (11, N'0050')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (11, N'0050')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1258, N'4559')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1373, N'7530')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (927, N'3844')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1121, N'1500')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1178, N'4000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1356, N'7513')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1258, N'4559')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1258, N'4559')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (11, N'0050')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1219, N'4532')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1258, N'4559')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1208, N'4510')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1208, N'4510')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (7, N'0010')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1209, N'4511')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1589, N'7181')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1088, N'1170')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1258, N'4559')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1215, N'4520')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1258, N'4559')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1258, N'4559')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1258, N'4559')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1260, N'9500')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1258, N'4559')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1258, N'4559')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    GO

    print 'Processed 300 total records'

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (16, N'0100')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1208, N'4510')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1258, N'4559')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1419, N'8994')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1178, N'4000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1529, N'7163')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1354, N'7511')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (7, N'0010')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (7, N'0010')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1213, N'4515')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1260, N'9500')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1258, N'4559')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (11, N'0050')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (11, N'0050')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1260, N'9500')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (14, N'0080')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (27, N'0210')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1215, N'4520')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1208, N'4510')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (17, N'0110')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1208, N'4510')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1258, N'4559')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1258, N'4559')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1258, N'4559')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1215, N'4520')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1214, N'4516')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1258, N'4559')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1258, N'4559')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1208, N'4510')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1601, N'8978')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1258, N'4559')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (61, N'2020')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (7, N'0010')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1258, N'4559')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1215, N'4520')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (882, N'0640')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1258, N'4559')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1258, N'4559')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1258, N'4559')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    GO

    print 'Processed 400 total records'

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (405, N'3396')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1260, N'9500')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1345, N'7502')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1258, N'4559')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (7, N'0010')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (32, N'0260')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1258, N'4559')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1258, N'4559')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1258, N'4559')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (7, N'0010')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (7, N'0010')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1258, N'4559')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1258, N'4559')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (515, N'4008')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1258, N'4559')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1213, N'4515')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1675, N'7549')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1258, N'4559')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1258, N'4559')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1258, N'4559')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1209, N'4511')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (10, N'0040')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (17, N'0110')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (12, N'0060')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (26, N'0200')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (24, N'0180')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1213, N'4515')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (56, N'0500')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1210, N'4512')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (13, N'0070')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1258, N'4559')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1260, N'9500')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1217, N'4530')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (20, N'0140')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1258, N'4559')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (675, N'4168')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (39, N'0330')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1258, N'4559')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (13, N'0070')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1210, N'4512')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1258, N'4559')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1258, N'4559')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1258, N'4559')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1260, N'9500')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1258, N'4559')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (18, N'0120')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1592, N'7499')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1212, N'4514')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1258, N'4559')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1258, N'4559')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1178, N'4000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1, N'0000')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (7, N'0010')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1258, N'4559')

    INSERT [dbo].[View_Data_Names1] ([Project_Key], [Project_Name]) VALUES (1359, N'7516')

    /****** Object: Table [dbo].[TBL_DIMPC_PROJECT_CODE] Script Date: 06/20/2013 15:39:33 ******/

    SET ANSI_NULLS ON

    GO

    SET QUOTED_IDENTIFIER ON

    GO

    SET ANSI_PADDING ON

    GO

    CREATE TABLE [dbo].[TBL_DIMPC_PROJECT_CODE](

    [ID] [int] NOT NULL,

    [Parent_ID] [int] NOT NULL,

    [Name] [varchar](80) NULL,

    [aggregationExpression] [varchar](100) NULL,

    [orderColumn] [numeric](10, 0) NULL,

    [DIMENSION_ORDER] [numeric](10, 0) NULL,

    [Level_0_Description] [varchar](500) NULL,

    [Level_0_Status] [varchar](500) NULL

    ) ON [PRIMARY]

    GO

    SET ANSI_PADDING OFF

    GO

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1, 0, N'0000', N'+', CAST(0 AS Numeric(10, 0)), CAST(0 AS Numeric(10, 0)), N'0000 - Default', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (2, 0, N'Private', N'+', CAST(1 AS Numeric(10, 0)), CAST(1 AS Numeric(10, 0)), N'Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (3, 0, N'School', N'+', CAST(2 AS Numeric(10, 0)), CAST(206 AS Numeric(10, 0)), N'School', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (4, 0, N'Events & Projects', N'+', CAST(4 AS Numeric(10, 0)), CAST(779 AS Numeric(10, 0)), N'Events & Projects', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (5, 0, N'Tech', N'+', CAST(5 AS Numeric(10, 0)), CAST(1119 AS Numeric(10, 0)), N'Technology', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (6, 0, N'NOA', N'+', CAST(6 AS Numeric(10, 0)), CAST(1434 AS Numeric(10, 0)), N'National Office Administration', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (7, 2, N'0010', N'+', CAST(0 AS Numeric(10, 0)), CAST(2 AS Numeric(10, 0)), N'0010 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (8, 2, N'0020', N'+', CAST(1 AS Numeric(10, 0)), CAST(3 AS Numeric(10, 0)), N'0020 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (9, 2, N'0030', N'+', CAST(2 AS Numeric(10, 0)), CAST(4 AS Numeric(10, 0)), N'0030 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (10, 2, N'0040', N'+', CAST(3 AS Numeric(10, 0)), CAST(5 AS Numeric(10, 0)), N'0040 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (11, 2, N'0050', N'+', CAST(6 AS Numeric(10, 0)), CAST(8 AS Numeric(10, 0)), N'0050 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (12, 2, N'0060', N'+', CAST(7 AS Numeric(10, 0)), CAST(9 AS Numeric(10, 0)), N'0060 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (13, 2, N'0070', N'+', CAST(9 AS Numeric(10, 0)), CAST(11 AS Numeric(10, 0)), N'0070 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (14, 2, N'0080', N'+', CAST(10 AS Numeric(10, 0)), CAST(12 AS Numeric(10, 0)), N'0080 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (15, 2, N'0090', N'+', CAST(11 AS Numeric(10, 0)), CAST(13 AS Numeric(10, 0)), N'0090 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (16, 2, N'0100', N'+', CAST(12 AS Numeric(10, 0)), CAST(14 AS Numeric(10, 0)), N'0100 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (17, 2, N'0110', N'+', CAST(13 AS Numeric(10, 0)), CAST(15 AS Numeric(10, 0)), N'0110 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (18, 2, N'0120', N'+', CAST(14 AS Numeric(10, 0)), CAST(16 AS Numeric(10, 0)), N'0120 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (19, 2, N'0130', N'+', CAST(15 AS Numeric(10, 0)), CAST(17 AS Numeric(10, 0)), N'0130 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (20, 2, N'0140', N'+', CAST(16 AS Numeric(10, 0)), CAST(18 AS Numeric(10, 0)), N'0140 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (21, 2, N'0150', N'+', CAST(17 AS Numeric(10, 0)), CAST(19 AS Numeric(10, 0)), N'0150 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (22, 2, N'0160', N'+', CAST(18 AS Numeric(10, 0)), CAST(20 AS Numeric(10, 0)), N'0160 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (23, 2, N'0170', N'+', CAST(19 AS Numeric(10, 0)), CAST(21 AS Numeric(10, 0)), N'0170 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (24, 2, N'0180', N'+', CAST(20 AS Numeric(10, 0)), CAST(22 AS Numeric(10, 0)), N'0180 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (25, 2, N'0190', N'+', CAST(21 AS Numeric(10, 0)), CAST(23 AS Numeric(10, 0)), N'0190 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (26, 2, N'0200', N'+', CAST(22 AS Numeric(10, 0)), CAST(24 AS Numeric(10, 0)), N'0200 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (27, 2, N'0210', N'+', CAST(23 AS Numeric(10, 0)), CAST(25 AS Numeric(10, 0)), N'0210 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (28, 2, N'0220', N'+', CAST(24 AS Numeric(10, 0)), CAST(26 AS Numeric(10, 0)), N'0220 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (29, 2, N'0230', N'+', CAST(25 AS Numeric(10, 0)), CAST(27 AS Numeric(10, 0)), N'0230 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (30, 2, N'0240', N'+', CAST(26 AS Numeric(10, 0)), CAST(28 AS Numeric(10, 0)), N'0240 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (31, 2, N'0250', N'+', CAST(27 AS Numeric(10, 0)), CAST(29 AS Numeric(10, 0)), N'0250 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (32, 2, N'0260', N'+', CAST(28 AS Numeric(10, 0)), CAST(30 AS Numeric(10, 0)), N'0260 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (33, 2, N'0270', N'+', CAST(29 AS Numeric(10, 0)), CAST(31 AS Numeric(10, 0)), N'0270 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (34, 2, N'0280', N'+', CAST(30 AS Numeric(10, 0)), CAST(32 AS Numeric(10, 0)), N'0280 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (35, 2, N'0290', N'+', CAST(31 AS Numeric(10, 0)), CAST(33 AS Numeric(10, 0)), N'0290 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (36, 2, N'0300', N'+', CAST(32 AS Numeric(10, 0)), CAST(34 AS Numeric(10, 0)), N'0300 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (37, 2, N'0310', N'+', CAST(33 AS Numeric(10, 0)), CAST(35 AS Numeric(10, 0)), N'0310 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (38, 2, N'0320', N'+', CAST(34 AS Numeric(10, 0)), CAST(36 AS Numeric(10, 0)), N'0320 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (39, 2, N'0330', N'+', CAST(35 AS Numeric(10, 0)), CAST(37 AS Numeric(10, 0)), N'0330 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (40, 2, N'0340', N'+', CAST(36 AS Numeric(10, 0)), CAST(38 AS Numeric(10, 0)), N'0340 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (41, 2, N'0350', N'+', CAST(37 AS Numeric(10, 0)), CAST(39 AS Numeric(10, 0)), N'0350 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (42, 2, N'0360', N'+', CAST(38 AS Numeric(10, 0)), CAST(40 AS Numeric(10, 0)), N'0360 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (43, 2, N'0370', N'+', CAST(39 AS Numeric(10, 0)), CAST(41 AS Numeric(10, 0)), N'0370 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (44, 2, N'0380', N'+', CAST(40 AS Numeric(10, 0)), CAST(42 AS Numeric(10, 0)), N'0380 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (45, 2, N'0390', N'+', CAST(41 AS Numeric(10, 0)), CAST(43 AS Numeric(10, 0)), N'0390 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (46, 2, N'0400', N'+', CAST(42 AS Numeric(10, 0)), CAST(44 AS Numeric(10, 0)), N'0400 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (47, 2, N'0410', N'+', CAST(43 AS Numeric(10, 0)), CAST(45 AS Numeric(10, 0)), N'0410 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (48, 2, N'0420', N'+', CAST(44 AS Numeric(10, 0)), CAST(46 AS Numeric(10, 0)), N'0420 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (49, 2, N'0430', N'+', CAST(45 AS Numeric(10, 0)), CAST(47 AS Numeric(10, 0)), N'0430 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (50, 2, N'0440', N'+', CAST(46 AS Numeric(10, 0)), CAST(48 AS Numeric(10, 0)), N'0440 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (51, 2, N'0450', N'+', CAST(47 AS Numeric(10, 0)), CAST(49 AS Numeric(10, 0)), N'0450 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (52, 2, N'0460', N'+', CAST(48 AS Numeric(10, 0)), CAST(50 AS Numeric(10, 0)), N'0460 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (53, 2, N'0470', N'+', CAST(49 AS Numeric(10, 0)), CAST(51 AS Numeric(10, 0)), N'0470 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (54, 2, N'0480', N'+', CAST(50 AS Numeric(10, 0)), CAST(52 AS Numeric(10, 0)), N'0480 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (55, 2, N'0490', N'+', CAST(51 AS Numeric(10, 0)), CAST(53 AS Numeric(10, 0)), N'0490 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (56, 2, N'0500', N'+', CAST(52 AS Numeric(10, 0)), CAST(54 AS Numeric(10, 0)), N'0500 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (57, 3, N'2004', N'+', CAST(0 AS Numeric(10, 0)), CAST(207 AS Numeric(10, 0)), N'2004 - Abilene Christian U.', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (58, 3, N'2008', N'+', CAST(4 AS Numeric(10, 0)), CAST(211 AS Numeric(10, 0)), N'2008 - Agnes Scott College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (59, 3, N'2012', N'+', CAST(8 AS Numeric(10, 0)), CAST(215 AS Numeric(10, 0)), N'2012 - Albion College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (60, 3, N'2016', N'+', CAST(12 AS Numeric(10, 0)), CAST(219 AS Numeric(10, 0)), N'2016 - Allegheny College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (61, 3, N'2020', N'+', CAST(16 AS Numeric(10, 0)), CAST(223 AS Numeric(10, 0)), N'2020 - Alma College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (62, 3, N'2024', N'+', CAST(20 AS Numeric(10, 0)), CAST(227 AS Numeric(10, 0)), N'2024 - American University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (63, 3, N'2028', N'+', CAST(24 AS Numeric(10, 0)), CAST(231 AS Numeric(10, 0)), N'2028 - Amherst College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (64, 3, N'2032', N'+', CAST(28 AS Numeric(10, 0)), CAST(235 AS Numeric(10, 0)), N'2032 - Andrews University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (65, 3, N'2036', N'+', CAST(32 AS Numeric(10, 0)), CAST(239 AS Numeric(10, 0)), N'2036 - Appalachian State', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (66, 3, N'2040', N'+', CAST(35 AS Numeric(10, 0)), CAST(242 AS Numeric(10, 0)), N'2040 - Arizona State U Main', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (67, 3, N'2044', N'+', CAST(37 AS Numeric(10, 0)), CAST(244 AS Numeric(10, 0)), N'2044 - Auburn University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (68, 3, N'2048', N'+', CAST(38 AS Numeric(10, 0)), CAST(245 AS Numeric(10, 0)), N'2048 - Augustana College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (69, 3, N'2052', N'+', CAST(39 AS Numeric(10, 0)), CAST(246 AS Numeric(10, 0)), N'2052 - Austin College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (70, 3, N'2056', N'+', CAST(40 AS Numeric(10, 0)), CAST(247 AS Numeric(10, 0)), N'2056 - Azusa Pacific University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (71, 3, N'2060', N'+', CAST(41 AS Numeric(10, 0)), CAST(248 AS Numeric(10, 0)), N'2060 - Babson College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (72, 3, N'2064', N'+', CAST(42 AS Numeric(10, 0)), CAST(249 AS Numeric(10, 0)), N'2064 - Ball State University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (73, 3, N'2068', N'+', CAST(43 AS Numeric(10, 0)), CAST(250 AS Numeric(10, 0)), N'2068 - Bard College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (74, 3, N'2072', N'+', CAST(44 AS Numeric(10, 0)), CAST(251 AS Numeric(10, 0)), N'2072 - Barnard College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (75, 3, N'2076', N'+', CAST(45 AS Numeric(10, 0)), CAST(252 AS Numeric(10, 0)), N'2076 - Barry University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (76, 3, N'2080', N'+', CAST(46 AS Numeric(10, 0)), CAST(253 AS Numeric(10, 0)), N'2080 - Bates College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (77, 3, N'2084', N'+', CAST(47 AS Numeric(10, 0)), CAST(254 AS Numeric(10, 0)), N'2084 - Baylor University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (78, 3, N'2088', N'+', CAST(48 AS Numeric(10, 0)), CAST(255 AS Numeric(10, 0)), N'2088 - Belhaven College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (79, 3, N'2092', N'+', CAST(49 AS Numeric(10, 0)), CAST(256 AS Numeric(10, 0)), N'2092 - Beloit College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (80, 3, N'2096', N'+', CAST(50 AS Numeric(10, 0)), CAST(257 AS Numeric(10, 0)), N'2096 - Berea College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (81, 3, N'2100', N'+', CAST(51 AS Numeric(10, 0)), CAST(258 AS Numeric(10, 0)), N'2100 - Bethel University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (82, 3, N'2104', N'+', CAST(52 AS Numeric(10, 0)), CAST(259 AS Numeric(10, 0)), N'2104 - Biola University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (83, 3, N'2108', N'+', CAST(53 AS Numeric(10, 0)), CAST(260 AS Numeric(10, 0)), N'2108 - Birmingham-Southern College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (84, 3, N'2112', N'+', CAST(54 AS Numeric(10, 0)), CAST(261 AS Numeric(10, 0)), N'2112 - Blackburn College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (85, 3, N'2116', N'+', CAST(55 AS Numeric(10, 0)), CAST(262 AS Numeric(10, 0)), N'2116 - Boston College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (86, 3, N'2120', N'+', CAST(56 AS Numeric(10, 0)), CAST(263 AS Numeric(10, 0)), N'2120 - Boston University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (87, 3, N'2124', N'+', CAST(57 AS Numeric(10, 0)), CAST(264 AS Numeric(10, 0)), N'2124 - Bowdoin College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (88, 3, N'2128', N'+', CAST(58 AS Numeric(10, 0)), CAST(265 AS Numeric(10, 0)), N'2128 - Bradley University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (89, 3, N'2132', N'+', CAST(59 AS Numeric(10, 0)), CAST(266 AS Numeric(10, 0)), N'2132 - Brandeis University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (90, 3, N'2136', N'+', CAST(60 AS Numeric(10, 0)), CAST(267 AS Numeric(10, 0)), N'2136 - Brigham Young University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (91, 3, N'2140', N'+', CAST(61 AS Numeric(10, 0)), CAST(268 AS Numeric(10, 0)), N'2140 - Brown University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (92, 3, N'2144', N'+', CAST(64 AS Numeric(10, 0)), CAST(271 AS Numeric(10, 0)), N'2144 - Bryn Mawr College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (93, 3, N'2148', N'+', CAST(65 AS Numeric(10, 0)), CAST(272 AS Numeric(10, 0)), N'2148 - Bucknell University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (94, 3, N'2152', N'+', CAST(67 AS Numeric(10, 0)), CAST(274 AS Numeric(10, 0)), N'2152 - Butler University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (95, 3, N'2156', N'+', CAST(68 AS Numeric(10, 0)), CAST(275 AS Numeric(10, 0)), N'2156 - Cali. Institute ofTech', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (96, 3, N'2160', N'+', CAST(69 AS Numeric(10, 0)), CAST(276 AS Numeric(10, 0)), N'2160 - Cali. Polytech-SanLuisObisp', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (97, 3, N'2164', N'+', CAST(70 AS Numeric(10, 0)), CAST(277 AS Numeric(10, 0)), N'2164 - Cali State Polytec U-Pomona', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (98, 3, N'2168', N'+', CAST(71 AS Numeric(10, 0)), CAST(278 AS Numeric(10, 0)), N'2168 - Cali. State U-Bakersfield', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (99, 3, N'2172', N'+', CAST(73 AS Numeric(10, 0)), CAST(280 AS Numeric(10, 0)), N'2172 - Cali. State U-Dominguez Hil', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (100, 3, N'2176', N'+', CAST(74 AS Numeric(10, 0)), CAST(281 AS Numeric(10, 0)), N'2176 - Cali. State U-East Bay', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (101, 3, N'2180', N'+', CAST(75 AS Numeric(10, 0)), CAST(282 AS Numeric(10, 0)), N'2180 - Cali. State U-Fresno', N'Active')

    GO

    print 'Processed 100 total records'

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (102, 3, N'2184', N'+', CAST(76 AS Numeric(10, 0)), CAST(283 AS Numeric(10, 0)), N'2184 - Cali. State U-Fullerton', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (103, 3, N'2188', N'+', CAST(77 AS Numeric(10, 0)), CAST(284 AS Numeric(10, 0)), N'2188 - Cali. State U-Long Beach', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (104, 3, N'2192', N'+', CAST(78 AS Numeric(10, 0)), CAST(285 AS Numeric(10, 0)), N'2192 - Cali. State U-Los Angeles', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (105, 3, N'2196', N'+', CAST(79 AS Numeric(10, 0)), CAST(286 AS Numeric(10, 0)), N'2196 - Cali. State U-Northridge', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (106, 3, N'2200', N'+', CAST(80 AS Numeric(10, 0)), CAST(287 AS Numeric(10, 0)), N'2200 - Cali. State U-Sacramento', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (107, 3, N'2204', N'+', CAST(81 AS Numeric(10, 0)), CAST(288 AS Numeric(10, 0)), N'2204 - Cali. State U-San Bernardin', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (108, 3, N'2208', N'+', CAST(82 AS Numeric(10, 0)), CAST(289 AS Numeric(10, 0)), N'2208 - Cali. State U-San Marcos', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (109, 3, N'2212', N'+', CAST(83 AS Numeric(10, 0)), CAST(290 AS Numeric(10, 0)), N'2212 - Cali. State U-Stanislaus', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (110, 3, N'2216', N'+', CAST(84 AS Numeric(10, 0)), CAST(291 AS Numeric(10, 0)), N'2216 - Calvin College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (111, 3, N'2220', N'+', CAST(85 AS Numeric(10, 0)), CAST(292 AS Numeric(10, 0)), N'2220 - Campbell University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (112, 3, N'2224', N'+', CAST(86 AS Numeric(10, 0)), CAST(293 AS Numeric(10, 0)), N'2224 - Carleton College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (113, 3, N'2228', N'+', CAST(87 AS Numeric(10, 0)), CAST(294 AS Numeric(10, 0)), N'2228 - Carnegie Mellon University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (114, 3, N'2232', N'+', CAST(88 AS Numeric(10, 0)), CAST(295 AS Numeric(10, 0)), N'2232 - Case Western Reserve', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (115, 3, N'2236', N'+', CAST(89 AS Numeric(10, 0)), CAST(296 AS Numeric(10, 0)), N'2236 - Cedarville University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (116, 3, N'2240', N'+', CAST(90 AS Numeric(10, 0)), CAST(297 AS Numeric(10, 0)), N'2240 - Central Michigan University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (117, 3, N'2244', N'+', CAST(91 AS Numeric(10, 0)), CAST(298 AS Numeric(10, 0)), N'2244 - Centre College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (118, 3, N'2248', N'+', CAST(92 AS Numeric(10, 0)), CAST(299 AS Numeric(10, 0)), N'2248 - Chapman University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (119, 3, N'2252', N'+', CAST(93 AS Numeric(10, 0)), CAST(300 AS Numeric(10, 0)), N'2252 - CUNY Baruch College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (120, 3, N'2256', N'+', CAST(94 AS Numeric(10, 0)), CAST(301 AS Numeric(10, 0)), N'2256 - CUNY Brooklyn College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (121, 3, N'2260', N'+', CAST(95 AS Numeric(10, 0)), CAST(302 AS Numeric(10, 0)), N'2260 - CUNY City College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (122, 3, N'2264', N'+', CAST(96 AS Numeric(10, 0)), CAST(303 AS Numeric(10, 0)), N'2264 - CUNY Hunter College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (123, 3, N'2268', N'+', CAST(97 AS Numeric(10, 0)), CAST(304 AS Numeric(10, 0)), N'2268 - CUNY John Jay College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (124, 3, N'2272', N'+', CAST(98 AS Numeric(10, 0)), CAST(305 AS Numeric(10, 0)), N'2272 - CUNY Queens College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (125, 3, N'2276', N'+', CAST(99 AS Numeric(10, 0)), CAST(306 AS Numeric(10, 0)), N'2276 - Claremont McKenna College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (126, 3, N'2280', N'+', CAST(100 AS Numeric(10, 0)), CAST(307 AS Numeric(10, 0)), N'2280 - Clark Atlanta University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (127, 3, N'2284', N'+', CAST(101 AS Numeric(10, 0)), CAST(308 AS Numeric(10, 0)), N'2284 - Clark University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (128, 3, N'2288', N'+', CAST(102 AS Numeric(10, 0)), CAST(309 AS Numeric(10, 0)), N'2288 - Clarkson University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (129, 3, N'2292', N'+', CAST(103 AS Numeric(10, 0)), CAST(310 AS Numeric(10, 0)), N'2292 - Clemson University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (130, 3, N'2296', N'+', CAST(104 AS Numeric(10, 0)), CAST(311 AS Numeric(10, 0)), N'2296 - Coe College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (131, 3, N'2300', N'+', CAST(105 AS Numeric(10, 0)), CAST(312 AS Numeric(10, 0)), N'2300 - Colby College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (132, 3, N'2304', N'+', CAST(106 AS Numeric(10, 0)), CAST(313 AS Numeric(10, 0)), N'2304 - Colgate University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (133, 3, N'2308', N'+', CAST(107 AS Numeric(10, 0)), CAST(314 AS Numeric(10, 0)), N'2308 - College of Charleston', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (134, 3, N'2312', N'+', CAST(108 AS Numeric(10, 0)), CAST(315 AS Numeric(10, 0)), N'2312 - College of Saint Benedict', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (135, 3, N'2316', N'+', CAST(109 AS Numeric(10, 0)), CAST(316 AS Numeric(10, 0)), N'2316 - College of the Holy Cross', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (136, 3, N'2320', N'+', CAST(110 AS Numeric(10, 0)), CAST(317 AS Numeric(10, 0)), N'2320 - College of William and Mary', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (137, 3, N'2324', N'+', CAST(111 AS Numeric(10, 0)), CAST(318 AS Numeric(10, 0)), N'2324 - Colorado College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (138, 3, N'2328', N'+', CAST(112 AS Numeric(10, 0)), CAST(319 AS Numeric(10, 0)), N'2328 - Colorado State University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (139, 3, N'2332', N'+', CAST(113 AS Numeric(10, 0)), CAST(320 AS Numeric(10, 0)), N'2332 - Columbia College Chicago', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (140, 3, N'2336', N'+', CAST(114 AS Numeric(10, 0)), CAST(321 AS Numeric(10, 0)), N'2336 - Columbia University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (141, 3, N'2340', N'+', CAST(115 AS Numeric(10, 0)), CAST(322 AS Numeric(10, 0)), N'2340 - Concordia College-Moorhead', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (142, 3, N'2344', N'+', CAST(116 AS Numeric(10, 0)), CAST(323 AS Numeric(10, 0)), N'2344 - Connecticut College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (143, 3, N'2348', N'+', CAST(117 AS Numeric(10, 0)), CAST(324 AS Numeric(10, 0)), N'2348 - Cornell College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (144, 3, N'2352', N'+', CAST(118 AS Numeric(10, 0)), CAST(325 AS Numeric(10, 0)), N'2352 - Cornell University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (145, 3, N'2356', N'+', CAST(119 AS Numeric(10, 0)), CAST(326 AS Numeric(10, 0)), N'2356 - Creighton University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (146, 3, N'2360', N'+', CAST(120 AS Numeric(10, 0)), CAST(327 AS Numeric(10, 0)), N'2360 - Dartmouth College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (147, 3, N'2364', N'+', CAST(121 AS Numeric(10, 0)), CAST(328 AS Numeric(10, 0)), N'2364 - Davidson College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (148, 3, N'2368', N'+', CAST(122 AS Numeric(10, 0)), CAST(329 AS Numeric(10, 0)), N'2368 - Denison University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (149, 3, N'2372', N'+', CAST(123 AS Numeric(10, 0)), CAST(330 AS Numeric(10, 0)), N'2372 - DePaul University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (150, 3, N'2376', N'+', CAST(124 AS Numeric(10, 0)), CAST(331 AS Numeric(10, 0)), N'2376 - DePauw University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (151, 3, N'2380', N'+', CAST(125 AS Numeric(10, 0)), CAST(332 AS Numeric(10, 0)), N'2380 - Dickinson College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (152, 3, N'2384', N'+', CAST(126 AS Numeric(10, 0)), CAST(333 AS Numeric(10, 0)), N'2384 - Dillard University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (153, 3, N'2388', N'+', CAST(127 AS Numeric(10, 0)), CAST(334 AS Numeric(10, 0)), N'2388 - Dominican U. of California', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (154, 3, N'2392', N'+', CAST(128 AS Numeric(10, 0)), CAST(335 AS Numeric(10, 0)), N'2392 - Drake University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (155, 3, N'2396', N'+', CAST(129 AS Numeric(10, 0)), CAST(336 AS Numeric(10, 0)), N'2396 - Drew University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (156, 3, N'2400', N'+', CAST(130 AS Numeric(10, 0)), CAST(337 AS Numeric(10, 0)), N'2400 - Drexel University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (157, 3, N'2404', N'+', CAST(131 AS Numeric(10, 0)), CAST(338 AS Numeric(10, 0)), N'2404 - Duke University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (158, 3, N'2408', N'+', CAST(132 AS Numeric(10, 0)), CAST(339 AS Numeric(10, 0)), N'2408 - Duquesne University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (159, 3, N'2412', N'+', CAST(133 AS Numeric(10, 0)), CAST(340 AS Numeric(10, 0)), N'2412 - Earlham College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (160, 3, N'2416', N'+', CAST(134 AS Numeric(10, 0)), CAST(341 AS Numeric(10, 0)), N'2416 - East Carolina University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (161, 3, N'2420', N'+', CAST(135 AS Numeric(10, 0)), CAST(342 AS Numeric(10, 0)), N'2420 - Eastern Michigan University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (162, 3, N'2424', N'+', CAST(136 AS Numeric(10, 0)), CAST(343 AS Numeric(10, 0)), N'2424 - Eckerd College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (163, 3, N'2428', N'+', CAST(137 AS Numeric(10, 0)), CAST(344 AS Numeric(10, 0)), N'2428 - Elizabethtown College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (164, 3, N'2432', N'+', CAST(138 AS Numeric(10, 0)), CAST(345 AS Numeric(10, 0)), N'2432 - Elmhurst College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (165, 3, N'2436', N'+', CAST(139 AS Numeric(10, 0)), CAST(346 AS Numeric(10, 0)), N'2436 - Elmira College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (166, 3, N'2440', N'+', CAST(140 AS Numeric(10, 0)), CAST(347 AS Numeric(10, 0)), N'2440 - Elon University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (167, 3, N'2444', N'+', CAST(141 AS Numeric(10, 0)), CAST(348 AS Numeric(10, 0)), N'2444 - Emerson College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (168, 3, N'2448', N'+', CAST(142 AS Numeric(10, 0)), CAST(349 AS Numeric(10, 0)), N'2448 - Emory University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (169, 3, N'2452', N'+', CAST(143 AS Numeric(10, 0)), CAST(350 AS Numeric(10, 0)), N'2452 - Fairfield University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (170, 3, N'2456', N'+', CAST(144 AS Numeric(10, 0)), CAST(351 AS Numeric(10, 0)), N'2456 - Fisk University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (171, 3, N'2460', N'+', CAST(145 AS Numeric(10, 0)), CAST(352 AS Numeric(10, 0)), N'2460 - Florida Atlantic University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (172, 3, N'2464', N'+', CAST(146 AS Numeric(10, 0)), CAST(353 AS Numeric(10, 0)), N'2464 - Florida Gulf Coast U.', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (173, 3, N'2468', N'+', CAST(147 AS Numeric(10, 0)), CAST(354 AS Numeric(10, 0)), N'2468 - Florida International U.', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (174, 3, N'2472', N'+', CAST(148 AS Numeric(10, 0)), CAST(355 AS Numeric(10, 0)), N'2472 - Florida State University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (175, 3, N'2476', N'+', CAST(149 AS Numeric(10, 0)), CAST(356 AS Numeric(10, 0)), N'2476 - Fordham University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (176, 3, N'2480', N'+', CAST(150 AS Numeric(10, 0)), CAST(357 AS Numeric(10, 0)), N'2480 - Franklin & Marshall College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (177, 3, N'2484', N'+', CAST(151 AS Numeric(10, 0)), CAST(358 AS Numeric(10, 0)), N'2484 - Fresno Pacific University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (178, 3, N'2488', N'+', CAST(152 AS Numeric(10, 0)), CAST(359 AS Numeric(10, 0)), N'2488 - Furman University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (179, 3, N'2492', N'+', CAST(153 AS Numeric(10, 0)), CAST(360 AS Numeric(10, 0)), N'2492 - George Mason University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (180, 3, N'2496', N'+', CAST(154 AS Numeric(10, 0)), CAST(361 AS Numeric(10, 0)), N'2496 - George Washington U.', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (181, 3, N'2500', N'+', CAST(155 AS Numeric(10, 0)), CAST(362 AS Numeric(10, 0)), N'2500 - Georgetown University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (182, 3, N'2504', N'+', CAST(156 AS Numeric(10, 0)), CAST(363 AS Numeric(10, 0)), N'2504 - Georgia Inst of Technology', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (183, 3, N'2508', N'+', CAST(157 AS Numeric(10, 0)), CAST(364 AS Numeric(10, 0)), N'2508 - Georgia State University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (184, 3, N'2512', N'+', CAST(158 AS Numeric(10, 0)), CAST(365 AS Numeric(10, 0)), N'2512 - Gettysburg College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (185, 3, N'2516', N'+', CAST(159 AS Numeric(10, 0)), CAST(366 AS Numeric(10, 0)), N'2516 - Gonzaga University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (186, 3, N'2520', N'+', CAST(160 AS Numeric(10, 0)), CAST(367 AS Numeric(10, 0)), N'2520 - Goshen College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (187, 3, N'2524', N'+', CAST(161 AS Numeric(10, 0)), CAST(368 AS Numeric(10, 0)), N'2524 - Goucher College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (188, 3, N'2528', N'+', CAST(162 AS Numeric(10, 0)), CAST(369 AS Numeric(10, 0)), N'2528 - Grand Valley State', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (189, 3, N'2532', N'+', CAST(163 AS Numeric(10, 0)), CAST(370 AS Numeric(10, 0)), N'2532 - Grinnell College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (190, 3, N'2536', N'+', CAST(164 AS Numeric(10, 0)), CAST(371 AS Numeric(10, 0)), N'2536 - Grove City College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (191, 3, N'2540', N'+', CAST(165 AS Numeric(10, 0)), CAST(372 AS Numeric(10, 0)), N'2540 - Guilford College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (192, 3, N'2544', N'+', CAST(166 AS Numeric(10, 0)), CAST(373 AS Numeric(10, 0)), N'2544 - Gustavus Adolphus College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (193, 3, N'2548', N'+', CAST(167 AS Numeric(10, 0)), CAST(374 AS Numeric(10, 0)), N'2548 - Hamilton College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (194, 3, N'2552', N'+', CAST(168 AS Numeric(10, 0)), CAST(375 AS Numeric(10, 0)), N'2552 - Hamline University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (195, 3, N'2556', N'+', CAST(169 AS Numeric(10, 0)), CAST(376 AS Numeric(10, 0)), N'2556 - Hampton University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (196, 3, N'2560', N'+', CAST(170 AS Numeric(10, 0)), CAST(377 AS Numeric(10, 0)), N'2560 - Harvard University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (197, 3, N'2564', N'+', CAST(171 AS Numeric(10, 0)), CAST(378 AS Numeric(10, 0)), N'2564 - Harvey Mudd College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (198, 3, N'2568', N'+', CAST(172 AS Numeric(10, 0)), CAST(379 AS Numeric(10, 0)), N'2568 - Haverford College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (199, 3, N'2572', N'+', CAST(173 AS Numeric(10, 0)), CAST(380 AS Numeric(10, 0)), N'2572 - Hawaii Pacific University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (200, 3, N'2576', N'+', CAST(174 AS Numeric(10, 0)), CAST(381 AS Numeric(10, 0)), N'2576 - Hendrix College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (201, 3, N'2580', N'+', CAST(175 AS Numeric(10, 0)), CAST(382 AS Numeric(10, 0)), N'2580 - Hobart &WilliamSmithCollege', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (202, 3, N'2584', N'+', CAST(176 AS Numeric(10, 0)), CAST(383 AS Numeric(10, 0)), N'2584 - Hofstra University', N'Active')

    GO

    print 'Processed 200 total records'

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (203, 3, N'2588', N'+', CAST(177 AS Numeric(10, 0)), CAST(384 AS Numeric(10, 0)), N'2588 - Hope College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (204, 3, N'2592', N'+', CAST(178 AS Numeric(10, 0)), CAST(385 AS Numeric(10, 0)), N'2592 - Houghton College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (205, 3, N'2596', N'+', CAST(179 AS Numeric(10, 0)), CAST(386 AS Numeric(10, 0)), N'2596 - Howard University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (206, 3, N'2600', N'+', CAST(180 AS Numeric(10, 0)), CAST(387 AS Numeric(10, 0)), N'2600 - Illinois State University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (207, 3, N'2604', N'+', CAST(181 AS Numeric(10, 0)), CAST(388 AS Numeric(10, 0)), N'2604 - Illinois Wesleyan U.', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (208, 3, N'2608', N'+', CAST(182 AS Numeric(10, 0)), CAST(389 AS Numeric(10, 0)), N'2608 - Indiana U. at Bloomington', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (209, 3, N'2612', N'+', CAST(183 AS Numeric(10, 0)), CAST(390 AS Numeric(10, 0)), N'2612 - Iowa State University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (210, 3, N'2616', N'+', CAST(184 AS Numeric(10, 0)), CAST(391 AS Numeric(10, 0)), N'2616 - Ithaca College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (211, 3, N'2620', N'+', CAST(185 AS Numeric(10, 0)), CAST(392 AS Numeric(10, 0)), N'2620 - James Madison University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (212, 3, N'2624', N'+', CAST(186 AS Numeric(10, 0)), CAST(393 AS Numeric(10, 0)), N'2624 - John Carroll University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (213, 3, N'2628', N'+', CAST(187 AS Numeric(10, 0)), CAST(394 AS Numeric(10, 0)), N'2628 - Johns Hopkins University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (214, 3, N'2632', N'+', CAST(188 AS Numeric(10, 0)), CAST(395 AS Numeric(10, 0)), N'2632 - Johnson C. Smith University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (215, 3, N'2636', N'+', CAST(189 AS Numeric(10, 0)), CAST(396 AS Numeric(10, 0)), N'2636 - Kalamazoo College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (216, 3, N'2640', N'+', CAST(190 AS Numeric(10, 0)), CAST(397 AS Numeric(10, 0)), N'2640 - Kansas State University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (217, 3, N'2644', N'+', CAST(191 AS Numeric(10, 0)), CAST(398 AS Numeric(10, 0)), N'2644 - Kean University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (218, 3, N'2648', N'+', CAST(192 AS Numeric(10, 0)), CAST(399 AS Numeric(10, 0)), N'2648 - Kent State U. Main Campus', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (219, 3, N'2652', N'+', CAST(193 AS Numeric(10, 0)), CAST(400 AS Numeric(10, 0)), N'2652 - Kentucky State University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (220, 3, N'2656', N'+', CAST(194 AS Numeric(10, 0)), CAST(401 AS Numeric(10, 0)), N'2656 - Kenyon College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (221, 3, N'2660', N'+', CAST(195 AS Numeric(10, 0)), CAST(402 AS Numeric(10, 0)), N'2660 - Knox College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (222, 3, N'2664', N'+', CAST(196 AS Numeric(10, 0)), CAST(403 AS Numeric(10, 0)), N'2664 - Lafayette College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (223, 3, N'2668', N'+', CAST(197 AS Numeric(10, 0)), CAST(404 AS Numeric(10, 0)), N'2668 - Lake Forest College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (224, 3, N'2672', N'+', CAST(198 AS Numeric(10, 0)), CAST(405 AS Numeric(10, 0)), N'2672 - Langston University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (225, 3, N'2676', N'+', CAST(199 AS Numeric(10, 0)), CAST(406 AS Numeric(10, 0)), N'2676 - Lawrence University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (226, 3, N'2680', N'+', CAST(200 AS Numeric(10, 0)), CAST(407 AS Numeric(10, 0)), N'2680 - Lehigh University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (227, 3, N'2684', N'+', CAST(201 AS Numeric(10, 0)), CAST(408 AS Numeric(10, 0)), N'2684 - Lewis and Clark College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (228, 3, N'2688', N'+', CAST(202 AS Numeric(10, 0)), CAST(409 AS Numeric(10, 0)), N'2688 - Louisiana State U.', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (229, 3, N'2692', N'+', CAST(203 AS Numeric(10, 0)), CAST(410 AS Numeric(10, 0)), N'2692 - Loyola College in Maryland', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (230, 3, N'2696', N'+', CAST(204 AS Numeric(10, 0)), CAST(411 AS Numeric(10, 0)), N'2696 - Loyola Marymount University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (231, 3, N'2700', N'+', CAST(205 AS Numeric(10, 0)), CAST(412 AS Numeric(10, 0)), N'2700 - Loyola University Chicago', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (232, 3, N'2704', N'+', CAST(206 AS Numeric(10, 0)), CAST(413 AS Numeric(10, 0)), N'2704 - Loyola U. New Orleans', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (233, 3, N'2708', N'+', CAST(207 AS Numeric(10, 0)), CAST(414 AS Numeric(10, 0)), N'2708 - Lubbock Christian U.', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (234, 3, N'2712', N'+', CAST(208 AS Numeric(10, 0)), CAST(415 AS Numeric(10, 0)), N'2712 - Luther College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (235, 3, N'2716', N'+', CAST(209 AS Numeric(10, 0)), CAST(416 AS Numeric(10, 0)), N'2716 - Macalester College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (236, 3, N'2720', N'+', CAST(210 AS Numeric(10, 0)), CAST(417 AS Numeric(10, 0)), N'2720 - Marist College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (237, 3, N'2724', N'+', CAST(211 AS Numeric(10, 0)), CAST(418 AS Numeric(10, 0)), N'2724 - Marquette University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (238, 3, N'2728', N'+', CAST(212 AS Numeric(10, 0)), CAST(419 AS Numeric(10, 0)), N'2728 - Massachusetts Inst of Tech', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (239, 3, N'2732', N'+', CAST(213 AS Numeric(10, 0)), CAST(420 AS Numeric(10, 0)), N'2732 - Mercer University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (240, 3, N'2736', N'+', CAST(214 AS Numeric(10, 0)), CAST(421 AS Numeric(10, 0)), N'2736 - Messiah College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (241, 3, N'2740', N'+', CAST(215 AS Numeric(10, 0)), CAST(422 AS Numeric(10, 0)), N'2740 - Miami University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (242, 3, N'2744', N'+', CAST(216 AS Numeric(10, 0)), CAST(423 AS Numeric(10, 0)), N'2744 - Michigan State University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (243, 3, N'2748', N'+', CAST(217 AS Numeric(10, 0)), CAST(424 AS Numeric(10, 0)), N'2748 - Middlebury College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (244, 3, N'2752', N'+', CAST(218 AS Numeric(10, 0)), CAST(425 AS Numeric(10, 0)), N'2752 - Mills College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (245, 3, N'2756', N'+', CAST(219 AS Numeric(10, 0)), CAST(426 AS Numeric(10, 0)), N'2756 - Mississippi State U.', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (246, 3, N'2760', N'+', CAST(220 AS Numeric(10, 0)), CAST(427 AS Numeric(10, 0)), N'2760 - Mississippi U. for Women', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (247, 3, N'2764', N'+', CAST(221 AS Numeric(10, 0)), CAST(428 AS Numeric(10, 0)), N'2764 - Missouri State University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (248, 3, N'2768', N'+', CAST(222 AS Numeric(10, 0)), CAST(429 AS Numeric(10, 0)), N'2768 - Montana State U. - Bozeman', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (249, 3, N'2772', N'+', CAST(223 AS Numeric(10, 0)), CAST(430 AS Numeric(10, 0)), N'2772 - Montclair State University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (250, 3, N'2776', N'+', CAST(224 AS Numeric(10, 0)), CAST(431 AS Numeric(10, 0)), N'2776 - Morehouse College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (251, 3, N'2780', N'+', CAST(225 AS Numeric(10, 0)), CAST(432 AS Numeric(10, 0)), N'2780 - Morgan State University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (252, 3, N'2784', N'+', CAST(226 AS Numeric(10, 0)), CAST(433 AS Numeric(10, 0)), N'2784 - Mount Holyoke College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (253, 3, N'2788', N'+', CAST(227 AS Numeric(10, 0)), CAST(434 AS Numeric(10, 0)), N'2788 - Mount Saint Mary''s College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (254, 3, N'2792', N'+', CAST(228 AS Numeric(10, 0)), CAST(435 AS Numeric(10, 0)), N'2792 - Muhlenberg College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (255, 3, N'2796', N'+', CAST(229 AS Numeric(10, 0)), CAST(436 AS Numeric(10, 0)), N'2796 - Nebraska Wesleyan U.', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (256, 3, N'2800', N'+', CAST(230 AS Numeric(10, 0)), CAST(437 AS Numeric(10, 0)), N'2800 - New College of Florida', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (257, 3, N'2804', N'+', CAST(231 AS Numeric(10, 0)), CAST(438 AS Numeric(10, 0)), N'2804 - New Jersey City University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (258, 3, N'2808', N'+', CAST(232 AS Numeric(10, 0)), CAST(439 AS Numeric(10, 0)), N'2808 - New Jersey Inst of Tech', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (259, 3, N'2812', N'+', CAST(233 AS Numeric(10, 0)), CAST(440 AS Numeric(10, 0)), N'2812 - New Mexico State U. - Main', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (260, 3, N'2816', N'+', CAST(234 AS Numeric(10, 0)), CAST(441 AS Numeric(10, 0)), N'2816 - New York University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (261, 3, N'2820', N'+', CAST(235 AS Numeric(10, 0)), CAST(442 AS Numeric(10, 0)), N'2820 - North Carolina Agri/Tech U.', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (262, 3, N'2824', N'+', CAST(236 AS Numeric(10, 0)), CAST(443 AS Numeric(10, 0)), N'2824 - North Carolina State U.', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (263, 3, N'2828', N'+', CAST(237 AS Numeric(10, 0)), CAST(444 AS Numeric(10, 0)), N'2828 - North Central College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (264, 3, N'2832', N'+', CAST(238 AS Numeric(10, 0)), CAST(445 AS Numeric(10, 0)), N'2832 - North Dakota State U.', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (265, 3, N'2836', N'+', CAST(239 AS Numeric(10, 0)), CAST(446 AS Numeric(10, 0)), N'2836 - Northeastern Illinois U.', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (266, 3, N'2840', N'+', CAST(240 AS Numeric(10, 0)), CAST(447 AS Numeric(10, 0)), N'2840 - Northeastern University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (267, 3, N'2844', N'+', CAST(242 AS Numeric(10, 0)), CAST(449 AS Numeric(10, 0)), N'2844 - Northern Illinois U.', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (268, 3, N'2848', N'+', CAST(243 AS Numeric(10, 0)), CAST(450 AS Numeric(10, 0)), N'2848 - Northland College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (269, 3, N'2852', N'+', CAST(244 AS Numeric(10, 0)), CAST(451 AS Numeric(10, 0)), N'2852 - Northwestern University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (270, 3, N'2856', N'+', CAST(245 AS Numeric(10, 0)), CAST(452 AS Numeric(10, 0)), N'2856 - Oberlin College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (271, 3, N'2860', N'+', CAST(246 AS Numeric(10, 0)), CAST(453 AS Numeric(10, 0)), N'2860 - Occidental College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (272, 3, N'2864', N'+', CAST(247 AS Numeric(10, 0)), CAST(454 AS Numeric(10, 0)), N'2864 - Oglethorpe University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (273, 3, N'2868', N'+', CAST(248 AS Numeric(10, 0)), CAST(455 AS Numeric(10, 0)), N'2868 - Ohio Northern University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (274, 3, N'2872', N'+', CAST(249 AS Numeric(10, 0)), CAST(456 AS Numeric(10, 0)), N'2872 - Ohio University Main Campus', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (275, 3, N'2876', N'+', CAST(250 AS Numeric(10, 0)), CAST(457 AS Numeric(10, 0)), N'2876 - Ohio Wesleyan University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (276, 3, N'2880', N'+', CAST(251 AS Numeric(10, 0)), CAST(458 AS Numeric(10, 0)), N'2880 - Oklahoma State U', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (277, 3, N'2884', N'+', CAST(252 AS Numeric(10, 0)), CAST(459 AS Numeric(10, 0)), N'2884 - Olivet Nazarene University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (278, 3, N'2888', N'+', CAST(253 AS Numeric(10, 0)), CAST(460 AS Numeric(10, 0)), N'2888 - Oregon State University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (279, 3, N'2892', N'+', CAST(254 AS Numeric(10, 0)), CAST(461 AS Numeric(10, 0)), N'2892 - Pacific Lutheran University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (280, 3, N'2896', N'+', CAST(255 AS Numeric(10, 0)), CAST(462 AS Numeric(10, 0)), N'2896 - Palm Beach Atlantic U.', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (281, 3, N'2900', N'+', CAST(256 AS Numeric(10, 0)), CAST(463 AS Numeric(10, 0)), N'2900 - Penn State University Park', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (282, 3, N'2904', N'+', CAST(257 AS Numeric(10, 0)), CAST(464 AS Numeric(10, 0)), N'2904 - Pepperdine University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (283, 3, N'2908', N'+', CAST(258 AS Numeric(10, 0)), CAST(465 AS Numeric(10, 0)), N'2908 - Pitzer College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (284, 3, N'2912', N'+', CAST(259 AS Numeric(10, 0)), CAST(466 AS Numeric(10, 0)), N'2912 - Polytechnic University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (285, 3, N'2916', N'+', CAST(260 AS Numeric(10, 0)), CAST(467 AS Numeric(10, 0)), N'2916 - Pomona College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (286, 3, N'2920', N'+', CAST(261 AS Numeric(10, 0)), CAST(468 AS Numeric(10, 0)), N'2920 - Portland State University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (287, 3, N'2924', N'+', CAST(262 AS Numeric(10, 0)), CAST(469 AS Numeric(10, 0)), N'2924 - Prairie View A & M', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (288, 3, N'2928', N'+', CAST(263 AS Numeric(10, 0)), CAST(470 AS Numeric(10, 0)), N'2928 - Princeton University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (289, 3, N'2932', N'+', CAST(264 AS Numeric(10, 0)), CAST(471 AS Numeric(10, 0)), N'2932 - Principia College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (290, 3, N'2936', N'+', CAST(265 AS Numeric(10, 0)), CAST(472 AS Numeric(10, 0)), N'2936 - Providence College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (291, 3, N'2940', N'+', CAST(266 AS Numeric(10, 0)), CAST(473 AS Numeric(10, 0)), N'2940 - Purdue U. Main Campus', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (292, 3, N'2944', N'+', CAST(267 AS Numeric(10, 0)), CAST(474 AS Numeric(10, 0)), N'2944 - Quinnipiac University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (293, 3, N'2948', N'+', CAST(268 AS Numeric(10, 0)), CAST(475 AS Numeric(10, 0)), N'2948 - Ramapo College of NJ', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (294, 3, N'2952', N'+', CAST(269 AS Numeric(10, 0)), CAST(476 AS Numeric(10, 0)), N'2952 - Randolph-Macon Woman''s', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (295, 3, N'2956', N'+', CAST(270 AS Numeric(10, 0)), CAST(477 AS Numeric(10, 0)), N'2956 - Reed College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (296, 3, N'2960', N'+', CAST(271 AS Numeric(10, 0)), CAST(478 AS Numeric(10, 0)), N'2960 - Rhodes College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (297, 3, N'2964', N'+', CAST(272 AS Numeric(10, 0)), CAST(479 AS Numeric(10, 0)), N'2964 - Rice University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (298, 3, N'2968', N'+', CAST(273 AS Numeric(10, 0)), CAST(480 AS Numeric(10, 0)), N'2968 - Rochester Inst of Tech', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (299, 3, N'2972', N'+', CAST(274 AS Numeric(10, 0)), CAST(481 AS Numeric(10, 0)), N'2972 - Rockhurst University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (300, 3, N'2976', N'+', CAST(275 AS Numeric(10, 0)), CAST(482 AS Numeric(10, 0)), N'2976 - Rollins College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (301, 3, N'2980', N'+', CAST(276 AS Numeric(10, 0)), CAST(483 AS Numeric(10, 0)), N'2980 - Rose-Hulman Inst of Tech', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (302, 3, N'2984', N'+', CAST(277 AS Numeric(10, 0)), CAST(484 AS Numeric(10, 0)), N'2984 - Rutgers State New Brunswick', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (303, 3, N'2988', N'+', CAST(278 AS Numeric(10, 0)), CAST(485 AS Numeric(10, 0)), N'2988 - Rutgers State Newark', N'Active')

    GO

    print 'Processed 300 total records'

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (304, 3, N'2992', N'+', CAST(279 AS Numeric(10, 0)), CAST(486 AS Numeric(10, 0)), N'2992 - Sacred Heart University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (305, 3, N'2996', N'+', CAST(280 AS Numeric(10, 0)), CAST(487 AS Numeric(10, 0)), N'2996 - Saint John''s - Minnesota', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (306, 3, N'3000', N'+', CAST(281 AS Numeric(10, 0)), CAST(488 AS Numeric(10, 0)), N'3000 - Saint Joseph''s University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (307, 3, N'3004', N'+', CAST(282 AS Numeric(10, 0)), CAST(489 AS Numeric(10, 0)), N'3004 - Saint Louis University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (308, 3, N'3008', N'+', CAST(283 AS Numeric(10, 0)), CAST(490 AS Numeric(10, 0)), N'3008 - Saint Mary''s College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (309, 3, N'3012', N'+', CAST(284 AS Numeric(10, 0)), CAST(491 AS Numeric(10, 0)), N'3012 - Saint Mary''s of California', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (310, 3, N'3016', N'+', CAST(285 AS Numeric(10, 0)), CAST(492 AS Numeric(10, 0)), N'3016 - Saint Norbert College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (311, 3, N'3020', N'+', CAST(286 AS Numeric(10, 0)), CAST(493 AS Numeric(10, 0)), N'3020 - Saint Olaf College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (312, 3, N'3024', N'+', CAST(288 AS Numeric(10, 0)), CAST(495 AS Numeric(10, 0)), N'3024 - Sam Houston State U.', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (313, 3, N'3028', N'+', CAST(289 AS Numeric(10, 0)), CAST(496 AS Numeric(10, 0)), N'3028 - Samford University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (314, 3, N'3032', N'+', CAST(290 AS Numeric(10, 0)), CAST(497 AS Numeric(10, 0)), N'3032 - San Diego State University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (315, 3, N'3036', N'+', CAST(291 AS Numeric(10, 0)), CAST(498 AS Numeric(10, 0)), N'3036 - San Francisco State U.', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (316, 3, N'3040', N'+', CAST(292 AS Numeric(10, 0)), CAST(499 AS Numeric(10, 0)), N'3040 - San Jose State University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (317, 3, N'3044', N'+', CAST(293 AS Numeric(10, 0)), CAST(500 AS Numeric(10, 0)), N'3044 - Santa Clara University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (318, 3, N'3048', N'+', CAST(294 AS Numeric(10, 0)), CAST(501 AS Numeric(10, 0)), N'3048 - Sarah Lawrence College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (319, 3, N'3052', N'+', CAST(295 AS Numeric(10, 0)), CAST(502 AS Numeric(10, 0)), N'3052 - Scripps College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (320, 3, N'3056', N'+', CAST(296 AS Numeric(10, 0)), CAST(503 AS Numeric(10, 0)), N'3056 - Seattle Pacific University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (321, 3, N'3060', N'+', CAST(297 AS Numeric(10, 0)), CAST(504 AS Numeric(10, 0)), N'3060 - Seattle University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (322, 3, N'3064', N'+', CAST(298 AS Numeric(10, 0)), CAST(505 AS Numeric(10, 0)), N'3064 - Seton Hall University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (323, 3, N'3068', N'+', CAST(299 AS Numeric(10, 0)), CAST(506 AS Numeric(10, 0)), N'3068 - Sewanee', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (324, 3, N'3072', N'+', CAST(300 AS Numeric(10, 0)), CAST(507 AS Numeric(10, 0)), N'3072 - Siena College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (325, 3, N'3076', N'+', CAST(301 AS Numeric(10, 0)), CAST(508 AS Numeric(10, 0)), N'3076 - Simmons College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (326, 3, N'3080', N'+', CAST(302 AS Numeric(10, 0)), CAST(509 AS Numeric(10, 0)), N'3080 - Simpson College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (327, 3, N'3084', N'+', CAST(303 AS Numeric(10, 0)), CAST(510 AS Numeric(10, 0)), N'3084 - Skidmore College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (328, 3, N'3088', N'+', CAST(304 AS Numeric(10, 0)), CAST(511 AS Numeric(10, 0)), N'3088 - Smith College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (329, 3, N'3092', N'+', CAST(305 AS Numeric(10, 0)), CAST(512 AS Numeric(10, 0)), N'3092 - Southeastern Louisiana U.', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (330, 3, N'3096', N'+', CAST(306 AS Numeric(10, 0)), CAST(513 AS Numeric(10, 0)), N'3096 - Sthern IllinoisU Carbondale', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (331, 3, N'3100', N'+', CAST(307 AS Numeric(10, 0)), CAST(514 AS Numeric(10, 0)), N'3100 - Southern Methodist U.', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (332, 3, N'3104', N'+', CAST(308 AS Numeric(10, 0)), CAST(515 AS Numeric(10, 0)), N'3104 - Southern U Baton Rouge', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (333, 3, N'3108', N'+', CAST(309 AS Numeric(10, 0)), CAST(516 AS Numeric(10, 0)), N'3108 - Southwestern University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (334, 3, N'3112', N'+', CAST(310 AS Numeric(10, 0)), CAST(517 AS Numeric(10, 0)), N'3112 - Spelman College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (335, 3, N'3116', N'+', CAST(311 AS Numeric(10, 0)), CAST(518 AS Numeric(10, 0)), N'3116 - St. Edward''s University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (336, 3, N'3120', N'+', CAST(312 AS Numeric(10, 0)), CAST(519 AS Numeric(10, 0)), N'3120 - St. John''s U - New York', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (337, 3, N'3124', N'+', CAST(313 AS Numeric(10, 0)), CAST(520 AS Numeric(10, 0)), N'3124 - St. Lawrence University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (338, 3, N'3128', N'+', CAST(314 AS Numeric(10, 0)), CAST(521 AS Numeric(10, 0)), N'3128 - St. Mary''s of Maryland', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (339, 3, N'3132', N'+', CAST(315 AS Numeric(10, 0)), CAST(522 AS Numeric(10, 0)), N'3132 - St. Mary''s University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (340, 3, N'3136', N'+', CAST(316 AS Numeric(10, 0)), CAST(523 AS Numeric(10, 0)), N'3136 - Stanford University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (341, 3, N'3140', N'+', CAST(317 AS Numeric(10, 0)), CAST(524 AS Numeric(10, 0)), N'3140 - SUNY at Albany', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (342, 3, N'3144', N'+', CAST(318 AS Numeric(10, 0)), CAST(525 AS Numeric(10, 0)), N'3144 - SUNY at Binghamton', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (343, 3, N'3148', N'+', CAST(319 AS Numeric(10, 0)), CAST(526 AS Numeric(10, 0)), N'3148 - SUNY at Buffalo', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (344, 3, N'3152', N'+', CAST(320 AS Numeric(10, 0)), CAST(527 AS Numeric(10, 0)), N'3152 - SUNY at New Paltz', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (345, 3, N'3156', N'+', CAST(321 AS Numeric(10, 0)), CAST(528 AS Numeric(10, 0)), N'3156 - SUNY at Stony Brook', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (346, 3, N'3160', N'+', CAST(322 AS Numeric(10, 0)), CAST(529 AS Numeric(10, 0)), N'3160 - SUNY College at Geneseo', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (347, 3, N'3164', N'+', CAST(323 AS Numeric(10, 0)), CAST(530 AS Numeric(10, 0)), N'3164 - Stetson University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (348, 3, N'3168', N'+', CAST(324 AS Numeric(10, 0)), CAST(531 AS Numeric(10, 0)), N'3168 - Stonehill College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (349, 3, N'3172', N'+', CAST(325 AS Numeric(10, 0)), CAST(532 AS Numeric(10, 0)), N'3172 - Susquehanna University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (350, 3, N'3176', N'+', CAST(326 AS Numeric(10, 0)), CAST(533 AS Numeric(10, 0)), N'3176 - Swarthmore College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (351, 3, N'3180', N'+', CAST(327 AS Numeric(10, 0)), CAST(534 AS Numeric(10, 0)), N'3180 - Syracuse University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (352, 3, N'3184', N'+', CAST(328 AS Numeric(10, 0)), CAST(535 AS Numeric(10, 0)), N'3184 - Temple University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (353, 3, N'3188', N'+', CAST(329 AS Numeric(10, 0)), CAST(536 AS Numeric(10, 0)), N'3188 - Tennessee State University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (354, 3, N'3192', N'+', CAST(330 AS Numeric(10, 0)), CAST(537 AS Numeric(10, 0)), N'3192 - Texas A & M International', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (355, 3, N'3196', N'+', CAST(331 AS Numeric(10, 0)), CAST(538 AS Numeric(10, 0)), N'3196 - Texas A & M', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (356, 3, N'3200', N'+', CAST(332 AS Numeric(10, 0)), CAST(539 AS Numeric(10, 0)), N'3200 - Texas A & M -Corpus Christi', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (357, 3, N'3204', N'+', CAST(333 AS Numeric(10, 0)), CAST(540 AS Numeric(10, 0)), N'3204 - Texas A & M - Kingsville', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (358, 3, N'3208', N'+', CAST(334 AS Numeric(10, 0)), CAST(541 AS Numeric(10, 0)), N'3208 - Texas Christian University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (359, 3, N'3212', N'+', CAST(335 AS Numeric(10, 0)), CAST(542 AS Numeric(10, 0)), N'3212 - Texas State University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (360, 3, N'3216', N'+', CAST(336 AS Numeric(10, 0)), CAST(543 AS Numeric(10, 0)), N'3216 - Texas Tech University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (361, 3, N'3220', N'+', CAST(337 AS Numeric(10, 0)), CAST(544 AS Numeric(10, 0)), N'3220 - Catholic U. of America', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (362, 3, N'3224', N'+', CAST(338 AS Numeric(10, 0)), CAST(545 AS Numeric(10, 0)), N'3224 - The College of New Jersey', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (363, 3, N'3228', N'+', CAST(339 AS Numeric(10, 0)), CAST(546 AS Numeric(10, 0)), N'3228 - The College of New Rochelle', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (364, 3, N'3232', N'+', CAST(340 AS Numeric(10, 0)), CAST(547 AS Numeric(10, 0)), N'3232 - The College of Wooster', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (365, 3, N'3236', N'+', CAST(341 AS Numeric(10, 0)), CAST(548 AS Numeric(10, 0)), N'3236 - Master''s College & Seminary', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (366, 3, N'3240', N'+', CAST(342 AS Numeric(10, 0)), CAST(549 AS Numeric(10, 0)), N'3240 - Ohio State Main Campus', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (367, 3, N'3244', N'+', CAST(343 AS Numeric(10, 0)), CAST(550 AS Numeric(10, 0)), N'3244 - The University of Alabama', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (368, 3, N'3248', N'+', CAST(344 AS Numeric(10, 0)), CAST(551 AS Numeric(10, 0)), N'3248 - The University of Memphis', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (369, 3, N'3252', N'+', CAST(345 AS Numeric(10, 0)), CAST(552 AS Numeric(10, 0)), N'3252 - The University of Montana', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (370, 3, N'3256', N'+', CAST(346 AS Numeric(10, 0)), CAST(553 AS Numeric(10, 0)), N'3256 - University of South Dakota', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (371, 3, N'3260', N'+', CAST(347 AS Numeric(10, 0)), CAST(554 AS Numeric(10, 0)), N'3260 - Touro College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (372, 3, N'3264', N'+', CAST(348 AS Numeric(10, 0)), CAST(555 AS Numeric(10, 0)), N'3264 - Towson University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (373, 3, N'3268', N'+', CAST(349 AS Numeric(10, 0)), CAST(556 AS Numeric(10, 0)), N'3268 - Trinity College-Connecticut', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (374, 3, N'3272', N'+', CAST(350 AS Numeric(10, 0)), CAST(557 AS Numeric(10, 0)), N'3272 - Trinity University - Texas', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (375, 3, N'3276', N'+', CAST(351 AS Numeric(10, 0)), CAST(558 AS Numeric(10, 0)), N'3276 - Truman State University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (376, 3, N'3280', N'+', CAST(352 AS Numeric(10, 0)), CAST(559 AS Numeric(10, 0)), N'3280 - Tufts University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (377, 3, N'3284', N'+', CAST(353 AS Numeric(10, 0)), CAST(560 AS Numeric(10, 0)), N'3284 - Tulane University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (378, 3, N'3288', N'+', CAST(354 AS Numeric(10, 0)), CAST(561 AS Numeric(10, 0)), N'3288 - Union College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (379, 3, N'3292', N'+', CAST(355 AS Numeric(10, 0)), CAST(562 AS Numeric(10, 0)), N'3292 - Union University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (380, 3, N'3296', N'+', CAST(356 AS Numeric(10, 0)), CAST(563 AS Numeric(10, 0)), N'3296 - U. of Alabama Birmingham', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (381, 3, N'3300', N'+', CAST(357 AS Numeric(10, 0)), CAST(564 AS Numeric(10, 0)), N'3300 - U. of Alabama in Huntsville', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (382, 3, N'3304', N'+', CAST(358 AS Numeric(10, 0)), CAST(565 AS Numeric(10, 0)), N'3304 - University of Arizona', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (383, 3, N'3308', N'+', CAST(359 AS Numeric(10, 0)), CAST(566 AS Numeric(10, 0)), N'3308 - U. of Arkansas Main Campus', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (384, 3, N'3312', N'+', CAST(360 AS Numeric(10, 0)), CAST(567 AS Numeric(10, 0)), N'3312 - University of Bridgeport', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (385, 3, N'3316', N'+', CAST(361 AS Numeric(10, 0)), CAST(568 AS Numeric(10, 0)), N'3316 - U. of California - Merced ', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (386, 3, N'3320', N'+', CAST(362 AS Numeric(10, 0)), CAST(569 AS Numeric(10, 0)), N'3320 - U. of California-Berkeley', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (387, 3, N'3324', N'+', CAST(363 AS Numeric(10, 0)), CAST(570 AS Numeric(10, 0)), N'3324 - U. of California-Davis', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (388, 3, N'3328', N'+', CAST(364 AS Numeric(10, 0)), CAST(571 AS Numeric(10, 0)), N'3328 - U. of California-Irvine', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (389, 3, N'3332', N'+', CAST(365 AS Numeric(10, 0)), CAST(572 AS Numeric(10, 0)), N'3332 - U. of California-LA', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (390, 3, N'3336', N'+', CAST(366 AS Numeric(10, 0)), CAST(573 AS Numeric(10, 0)), N'3336 - U. of California-Riverside', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (391, 3, N'3340', N'+', CAST(367 AS Numeric(10, 0)), CAST(574 AS Numeric(10, 0)), N'3340 - U. of California-San Diego', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (392, 3, N'3344', N'+', CAST(368 AS Numeric(10, 0)), CAST(575 AS Numeric(10, 0)), N'3344 - U. of California-Santa Barb', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (393, 3, N'3348', N'+', CAST(369 AS Numeric(10, 0)), CAST(576 AS Numeric(10, 0)), N'3348 - U. of California-Santa Cruz', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (394, 3, N'3352', N'+', CAST(370 AS Numeric(10, 0)), CAST(577 AS Numeric(10, 0)), N'3352 - U. of Central Florida', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (395, 3, N'3356', N'+', CAST(371 AS Numeric(10, 0)), CAST(578 AS Numeric(10, 0)), N'3356 - University of Chicago', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (396, 3, N'3360', N'+', CAST(372 AS Numeric(10, 0)), CAST(579 AS Numeric(10, 0)), N'3360 - University of Cincinnati', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (397, 3, N'3364', N'+', CAST(373 AS Numeric(10, 0)), CAST(580 AS Numeric(10, 0)), N'3364 - U Colorado at Boulder', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (398, 3, N'3368', N'+', CAST(374 AS Numeric(10, 0)), CAST(581 AS Numeric(10, 0)), N'3368 - U Colorado Colorado Springs', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (399, 3, N'3372', N'+', CAST(375 AS Numeric(10, 0)), CAST(582 AS Numeric(10, 0)), N'3372 - University of Connecticut', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (400, 3, N'3376', N'+', CAST(376 AS Numeric(10, 0)), CAST(583 AS Numeric(10, 0)), N'3376 - University of Dayton', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (401, 3, N'3380', N'+', CAST(377 AS Numeric(10, 0)), CAST(584 AS Numeric(10, 0)), N'3380 - University of Delaware', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (402, 3, N'3384', N'+', CAST(378 AS Numeric(10, 0)), CAST(585 AS Numeric(10, 0)), N'3384 - University of Denver', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (403, 3, N'3388', N'+', CAST(379 AS Numeric(10, 0)), CAST(586 AS Numeric(10, 0)), N'3388 - University of Evansville', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (404, 3, N'3392', N'+', CAST(380 AS Numeric(10, 0)), CAST(587 AS Numeric(10, 0)), N'3392 - University of Florida', N'Active')

    GO

    print 'Processed 400 total records'

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (405, 3, N'3396', N'+', CAST(381 AS Numeric(10, 0)), CAST(588 AS Numeric(10, 0)), N'3396 - University of Georgia', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (406, 3, N'3400', N'+', CAST(382 AS Numeric(10, 0)), CAST(589 AS Numeric(10, 0)), N'3400 - University of Hartford', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (407, 3, N'3404', N'+', CAST(383 AS Numeric(10, 0)), CAST(590 AS Numeric(10, 0)), N'3404 - U. of Hawaii at Hilo', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (408, 3, N'3408', N'+', CAST(384 AS Numeric(10, 0)), CAST(591 AS Numeric(10, 0)), N'3408 - U. of Hawaii at Manoa', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (409, 3, N'3412', N'+', CAST(385 AS Numeric(10, 0)), CAST(592 AS Numeric(10, 0)), N'3412 - University of Houston', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (410, 3, N'3416', N'+', CAST(386 AS Numeric(10, 0)), CAST(593 AS Numeric(10, 0)), N'3416 - University of Idaho', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (411, 3, N'3420', N'+', CAST(387 AS Numeric(10, 0)), CAST(594 AS Numeric(10, 0)), N'3420 - U. of Illinois Chicago', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (412, 3, N'3424', N'+', CAST(388 AS Numeric(10, 0)), CAST(595 AS Numeric(10, 0)), N'3424 - U. of Illinois Urbana-Champ', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (413, 3, N'3428', N'+', CAST(389 AS Numeric(10, 0)), CAST(596 AS Numeric(10, 0)), N'3428 - University of Iowa', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (414, 3, N'3432', N'+', CAST(390 AS Numeric(10, 0)), CAST(597 AS Numeric(10, 0)), N'3432 - University of Kansas', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (415, 3, N'3436', N'+', CAST(391 AS Numeric(10, 0)), CAST(598 AS Numeric(10, 0)), N'3436 - University of Kentucky', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (416, 3, N'3440', N'+', CAST(392 AS Numeric(10, 0)), CAST(599 AS Numeric(10, 0)), N'3440 - University of LaVerne', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (417, 3, N'3444', N'+', CAST(393 AS Numeric(10, 0)), CAST(600 AS Numeric(10, 0)), N'3444 - University of Louisville', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (418, 3, N'3448', N'+', CAST(394 AS Numeric(10, 0)), CAST(601 AS Numeric(10, 0)), N'3448 - University of Maine', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (419, 3, N'3452', N'+', CAST(395 AS Numeric(10, 0)), CAST(602 AS Numeric(10, 0)), N'3452 - U. of Mary Washington', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (420, 3, N'3456', N'+', CAST(396 AS Numeric(10, 0)), CAST(603 AS Numeric(10, 0)), N'3456 - U. of Maryland Baltimore', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (421, 3, N'3460', N'+', CAST(397 AS Numeric(10, 0)), CAST(604 AS Numeric(10, 0)), N'3460 - U. of Maryland College Park', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (422, 3, N'3464', N'+', CAST(398 AS Numeric(10, 0)), CAST(605 AS Numeric(10, 0)), N'3464 - University of Massachusetts', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (423, 3, N'3468', N'+', CAST(399 AS Numeric(10, 0)), CAST(606 AS Numeric(10, 0)), N'3468 - University of Miami', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (424, 3, N'3472', N'+', CAST(400 AS Numeric(10, 0)), CAST(607 AS Numeric(10, 0)), N'3472 - U. of Michigan-Ann Arbor', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (425, 3, N'3476', N'+', CAST(401 AS Numeric(10, 0)), CAST(608 AS Numeric(10, 0)), N'3476 - U. of Michigan-Dearborn', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (426, 3, N'3480', N'+', CAST(402 AS Numeric(10, 0)), CAST(609 AS Numeric(10, 0)), N'3480 - U. of Minnesota-Twin Cities', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (427, 3, N'3484', N'+', CAST(403 AS Numeric(10, 0)), CAST(610 AS Numeric(10, 0)), N'3484 - U. of Minnesota-Duluth', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (428, 3, N'3488', N'+', CAST(404 AS Numeric(10, 0)), CAST(611 AS Numeric(10, 0)), N'3488 - U. of Minnesota-Morris', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (429, 3, N'3492', N'+', CAST(405 AS Numeric(10, 0)), CAST(612 AS Numeric(10, 0)), N'3492 - University of Mississippi', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (430, 3, N'3496', N'+', CAST(406 AS Numeric(10, 0)), CAST(613 AS Numeric(10, 0)), N'3496 - U. of Missouri - Columbia', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (431, 3, N'3500', N'+', CAST(407 AS Numeric(10, 0)), CAST(614 AS Numeric(10, 0)), N'3500 - U. of Missouri -Kansas City', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (432, 3, N'3504', N'+', CAST(408 AS Numeric(10, 0)), CAST(615 AS Numeric(10, 0)), N'3504 - U. of Missouri -Rolla', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (433, 3, N'3508', N'+', CAST(409 AS Numeric(10, 0)), CAST(616 AS Numeric(10, 0)), N'3508 - U. of Missouri -Saint Louis', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (434, 3, N'3512', N'+', CAST(410 AS Numeric(10, 0)), CAST(617 AS Numeric(10, 0)), N'3512 - U. of Nebraska - Lincoln', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (435, 3, N'3516', N'+', CAST(411 AS Numeric(10, 0)), CAST(618 AS Numeric(10, 0)), N'3516 - "University of Nevada, Reno"', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (436, 3, N'3520', N'+', CAST(412 AS Numeric(10, 0)), CAST(619 AS Numeric(10, 0)), N'3520 - University of New Hampshire', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (437, 3, N'3524', N'+', CAST(413 AS Numeric(10, 0)), CAST(620 AS Numeric(10, 0)), N'3524 - University of New Haven', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (438, 3, N'3528', N'+', CAST(414 AS Numeric(10, 0)), CAST(621 AS Numeric(10, 0)), N'3528 - U of New Mexico', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (439, 3, N'3532', N'+', CAST(415 AS Numeric(10, 0)), CAST(622 AS Numeric(10, 0)), N'3532 - University of New Orleans', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (440, 3, N'3536', N'+', CAST(416 AS Numeric(10, 0)), CAST(623 AS Numeric(10, 0)), N'3536 - U North Carolina Chapel Hil', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (441, 3, N'3540', N'+', CAST(417 AS Numeric(10, 0)), CAST(624 AS Numeric(10, 0)), N'3540 - U North Carolina Charlotte', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (442, 3, N'3544', N'+', CAST(418 AS Numeric(10, 0)), CAST(625 AS Numeric(10, 0)), N'3544 - U North Carolina Greensboro', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (443, 3, N'3548', N'+', CAST(419 AS Numeric(10, 0)), CAST(626 AS Numeric(10, 0)), N'3548 - U North Carolina at Wilming', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (444, 3, N'3552', N'+', CAST(420 AS Numeric(10, 0)), CAST(627 AS Numeric(10, 0)), N'3552 - University of North Florida', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (445, 3, N'3556', N'+', CAST(421 AS Numeric(10, 0)), CAST(628 AS Numeric(10, 0)), N'3556 - University of North Texas', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (446, 3, N'3560', N'+', CAST(422 AS Numeric(10, 0)), CAST(629 AS Numeric(10, 0)), N'3560 - U. of Northern Colorado', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (447, 3, N'3564', N'+', CAST(423 AS Numeric(10, 0)), CAST(630 AS Numeric(10, 0)), N'3564 - University of Notre Dame', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (448, 3, N'3568', N'+', CAST(424 AS Numeric(10, 0)), CAST(631 AS Numeric(10, 0)), N'3568 - U of Oklahoma Norman Campus', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (449, 3, N'3572', N'+', CAST(425 AS Numeric(10, 0)), CAST(632 AS Numeric(10, 0)), N'3572 - University of Oregon', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (450, 3, N'3576', N'+', CAST(426 AS Numeric(10, 0)), CAST(633 AS Numeric(10, 0)), N'3576 - University of Pennsylvania', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (451, 3, N'3580', N'+', CAST(427 AS Numeric(10, 0)), CAST(634 AS Numeric(10, 0)), N'3580 - "U of Pittsburgh, Pittsburgh"', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (452, 3, N'3584', N'+', CAST(428 AS Numeric(10, 0)), CAST(635 AS Numeric(10, 0)), N'3584 - U. of Puerto Rico-Mayaguez', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (453, 3, N'3588', N'+', CAST(429 AS Numeric(10, 0)), CAST(636 AS Numeric(10, 0)), N'3588 - U of Puerto Rico-RioPiedras', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (454, 3, N'3592', N'+', CAST(430 AS Numeric(10, 0)), CAST(637 AS Numeric(10, 0)), N'3592 - University of Puget Sound', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (455, 3, N'3596', N'+', CAST(431 AS Numeric(10, 0)), CAST(638 AS Numeric(10, 0)), N'3596 - University of Redlands', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (456, 3, N'3600', N'+', CAST(432 AS Numeric(10, 0)), CAST(639 AS Numeric(10, 0)), N'3600 - University of Rhode Island', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (457, 3, N'3604', N'+', CAST(433 AS Numeric(10, 0)), CAST(640 AS Numeric(10, 0)), N'3604 - University of Richmond', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (458, 3, N'3608', N'+', CAST(434 AS Numeric(10, 0)), CAST(641 AS Numeric(10, 0)), N'3608 - University of Rochester', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (459, 3, N'3612', N'+', CAST(435 AS Numeric(10, 0)), CAST(642 AS Numeric(10, 0)), N'3612 - University of Saint Thomas', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (460, 3, N'3616', N'+', CAST(436 AS Numeric(10, 0)), CAST(643 AS Numeric(10, 0)), N'3616 - University of San Diego', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (461, 3, N'3620', N'+', CAST(437 AS Numeric(10, 0)), CAST(644 AS Numeric(10, 0)), N'3620 - University of San Francisco', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (462, 3, N'3624', N'+', CAST(438 AS Numeric(10, 0)), CAST(645 AS Numeric(10, 0)), N'3624 - U. South Carolina-Columbia', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (463, 3, N'3628', N'+', CAST(439 AS Numeric(10, 0)), CAST(646 AS Numeric(10, 0)), N'3628 - University of South Florida', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (464, 3, N'3632', N'+', CAST(440 AS Numeric(10, 0)), CAST(647 AS Numeric(10, 0)), N'3632 - U. of Southern California', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (465, 3, N'3636', N'+', CAST(441 AS Numeric(10, 0)), CAST(648 AS Numeric(10, 0)), N'3636 - University of St. Thomas', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (466, 3, N'3640', N'+', CAST(442 AS Numeric(10, 0)), CAST(649 AS Numeric(10, 0)), N'3640 - University of Tennessee', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (467, 3, N'3644', N'+', CAST(443 AS Numeric(10, 0)), CAST(650 AS Numeric(10, 0)), N'3644 - U. of Texas - Pan American', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (468, 3, N'3648', N'+', CAST(444 AS Numeric(10, 0)), CAST(651 AS Numeric(10, 0)), N'3648 - U. of Texas at Arlington', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (469, 3, N'3652', N'+', CAST(445 AS Numeric(10, 0)), CAST(652 AS Numeric(10, 0)), N'3652 - U. of Texas at Austin', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (470, 3, N'3656', N'+', CAST(446 AS Numeric(10, 0)), CAST(653 AS Numeric(10, 0)), N'3656 - U. of Texas at Dallas', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (471, 3, N'3660', N'+', CAST(447 AS Numeric(10, 0)), CAST(654 AS Numeric(10, 0)), N'3660 - U. of Texas at El Paso', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (472, 3, N'3664', N'+', CAST(448 AS Numeric(10, 0)), CAST(655 AS Numeric(10, 0)), N'3664 - U. of Texas at San Antonio', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (473, 3, N'3668', N'+', CAST(449 AS Numeric(10, 0)), CAST(656 AS Numeric(10, 0)), N'3668 - U. of Texas Permian Basin', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (474, 3, N'3672', N'+', CAST(450 AS Numeric(10, 0)), CAST(657 AS Numeric(10, 0)), N'3672 - U. of the Incarnate Word', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (475, 3, N'3676', N'+', CAST(451 AS Numeric(10, 0)), CAST(658 AS Numeric(10, 0)), N'3676 - University of the Pacific', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (476, 3, N'3680', N'+', CAST(452 AS Numeric(10, 0)), CAST(659 AS Numeric(10, 0)), N'3680 - University of Toledo', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (477, 3, N'3684', N'+', CAST(453 AS Numeric(10, 0)), CAST(660 AS Numeric(10, 0)), N'3684 - University of Tulsa', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (478, 3, N'3688', N'+', CAST(454 AS Numeric(10, 0)), CAST(661 AS Numeric(10, 0)), N'3688 - University of Utah', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (479, 3, N'3692', N'+', CAST(455 AS Numeric(10, 0)), CAST(662 AS Numeric(10, 0)), N'3692 - University of Vermont', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (480, 3, N'3696', N'+', CAST(456 AS Numeric(10, 0)), CAST(663 AS Numeric(10, 0)), N'3696 - University of Virginia', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (481, 3, N'3700', N'+', CAST(457 AS Numeric(10, 0)), CAST(664 AS Numeric(10, 0)), N'3700 - U. of Washington - Seattle', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (482, 3, N'3704', N'+', CAST(458 AS Numeric(10, 0)), CAST(665 AS Numeric(10, 0)), N'3704 - U. of Wisconsin-Eau Claire', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (483, 3, N'3708', N'+', CAST(459 AS Numeric(10, 0)), CAST(666 AS Numeric(10, 0)), N'3708 - U. of Wisconsin-La Crosse', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (484, 3, N'3712', N'+', CAST(460 AS Numeric(10, 0)), CAST(667 AS Numeric(10, 0)), N'3712 - U. of Wisconsin-Madison', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (485, 3, N'3716', N'+', CAST(461 AS Numeric(10, 0)), CAST(668 AS Numeric(10, 0)), N'3716 - U. of Wisconsin-Milwaukee', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (486, 3, N'3720', N'+', CAST(462 AS Numeric(10, 0)), CAST(669 AS Numeric(10, 0)), N'3720 - Ursinus College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (487, 3, N'3724', N'+', CAST(463 AS Numeric(10, 0)), CAST(670 AS Numeric(10, 0)), N'3724 - Utah State University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (488, 3, N'3728', N'+', CAST(464 AS Numeric(10, 0)), CAST(671 AS Numeric(10, 0)), N'3728 - Valparaiso University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (489, 3, N'3732', N'+', CAST(465 AS Numeric(10, 0)), CAST(672 AS Numeric(10, 0)), N'3732 - Vanderbilt University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (490, 3, N'3736', N'+', CAST(466 AS Numeric(10, 0)), CAST(673 AS Numeric(10, 0)), N'3736 - Villanova University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (491, 3, N'3740', N'+', CAST(467 AS Numeric(10, 0)), CAST(674 AS Numeric(10, 0)), N'3740 - Virginia Commonwealth', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (492, 3, N'3744', N'+', CAST(468 AS Numeric(10, 0)), CAST(675 AS Numeric(10, 0)), N'3744 - Virginia Polytechnic', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (493, 3, N'3748', N'+', CAST(469 AS Numeric(10, 0)), CAST(676 AS Numeric(10, 0)), N'3748 - Wabash College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (494, 3, N'3752', N'+', CAST(470 AS Numeric(10, 0)), CAST(677 AS Numeric(10, 0)), N'3752 - Wagner College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (495, 3, N'3756', N'+', CAST(471 AS Numeric(10, 0)), CAST(678 AS Numeric(10, 0)), N'3756 - Wake Forest University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (496, 3, N'3760', N'+', CAST(472 AS Numeric(10, 0)), CAST(679 AS Numeric(10, 0)), N'3760 - Warren Wilson College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (497, 3, N'3764', N'+', CAST(473 AS Numeric(10, 0)), CAST(680 AS Numeric(10, 0)), N'3764 - Wartburg College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (498, 3, N'3768', N'+', CAST(474 AS Numeric(10, 0)), CAST(681 AS Numeric(10, 0)), N'3768 - Washington and Lee U.', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (499, 3, N'3772', N'+', CAST(475 AS Numeric(10, 0)), CAST(682 AS Numeric(10, 0)), N'3772 - Washington State University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (500, 3, N'3776', N'+', CAST(476 AS Numeric(10, 0)), CAST(683 AS Numeric(10, 0)), N'3776 - Washington U. in St. Louis', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (501, 3, N'3780', N'+', CAST(477 AS Numeric(10, 0)), CAST(684 AS Numeric(10, 0)), N'3780 - Wayland Baptist University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (502, 3, N'3784', N'+', CAST(478 AS Numeric(10, 0)), CAST(685 AS Numeric(10, 0)), N'3784 - Webster University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (503, 3, N'3788', N'+', CAST(479 AS Numeric(10, 0)), CAST(686 AS Numeric(10, 0)), N'3788 - Wellesley College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (504, 3, N'3792', N'+', CAST(480 AS Numeric(10, 0)), CAST(687 AS Numeric(10, 0)), N'3792 - Wesleyan University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (505, 3, N'3796', N'+', CAST(481 AS Numeric(10, 0)), CAST(688 AS Numeric(10, 0)), N'3796 - West Texas A & M University', N'Active')

    GO

    print 'Processed 500 total records'

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (506, 3, N'3800', N'+', CAST(482 AS Numeric(10, 0)), CAST(689 AS Numeric(10, 0)), N'3800 - West Virginia University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (507, 3, N'3804', N'+', CAST(483 AS Numeric(10, 0)), CAST(690 AS Numeric(10, 0)), N'3804 - Western Michigan University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (508, 4, N'4001', N'+', CAST(0 AS Numeric(10, 0)), CAST(780 AS Numeric(10, 0)), N'4001 - Teaching as Leadership (TAL)', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (509, 4, N'4002', N'+', CAST(1 AS Numeric(10, 0)), CAST(781 AS Numeric(10, 0)), N'4002 - NWEA', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (510, 4, N'4003', N'+', CAST(2 AS Numeric(10, 0)), CAST(782 AS Numeric(10, 0)), N'4003 - Excellent Schools', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (511, 4, N'4004', N'+', CAST(3 AS Numeric(10, 0)), CAST(783 AS Numeric(10, 0)), N'4004 - Student Achievement Toolkit', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (512, 4, N'4005', N'+', CAST(4 AS Numeric(10, 0)), CAST(784 AS Numeric(10, 0)), N'4005 - Institute Student Achievement Toolkit (ISAT)', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (513, 4, N'4006', N'+', CAST(5 AS Numeric(10, 0)), CAST(785 AS Numeric(10, 0)), N'4006 - Alumni Summit #1', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (514, 4, N'4007', N'+', CAST(6 AS Numeric(10, 0)), CAST(786 AS Numeric(10, 0)), N'4007 - Alumni Summit #2', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (515, 4, N'4008', N'+', CAST(7 AS Numeric(10, 0)), CAST(787 AS Numeric(10, 0)), N'4008 - Alumni Summit #3', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (516, 4, N'4009', N'+', CAST(8 AS Numeric(10, 0)), CAST(788 AS Numeric(10, 0)), N'4009 - Alumni Summit #4', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (517, 4, N'4010', N'+', CAST(9 AS Numeric(10, 0)), CAST(789 AS Numeric(10, 0)), N'4010 - Institute: Early Childhood Education ', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (518, 4, N'4011', N'+', CAST(10 AS Numeric(10, 0)), CAST(790 AS Numeric(10, 0)), N'4011 - Institute: All Staff Conference', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (519, 4, N'4012', N'+', CAST(11 AS Numeric(10, 0)), CAST(791 AS Numeric(10, 0)), N'4012 - Institute: Leadership Conference 1', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (520, 4, N'4013', N'+', CAST(12 AS Numeric(10, 0)), CAST(792 AS Numeric(10, 0)), N'4013 - Institute: Leadership Conference 2', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (521, 4, N'4014', N'+', CAST(13 AS Numeric(10, 0)), CAST(793 AS Numeric(10, 0)), N'4014 - TPT - Kick-off Conference ', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (522, 4, N'4015', N'+', CAST(14 AS Numeric(10, 0)), CAST(794 AS Numeric(10, 0)), N'4015 - TPT-Operation Director Conf', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (523, 4, N'4016', N'+', CAST(15 AS Numeric(10, 0)), CAST(795 AS Numeric(10, 0)), N'4016 - Institute: Ethernet Cords ', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (524, 4, N'4017', N'+', CAST(16 AS Numeric(10, 0)), CAST(796 AS Numeric(10, 0)), N'4017 - Institute: District Fees', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (525, 4, N'4018', N'+', CAST(17 AS Numeric(10, 0)), CAST(797 AS Numeric(10, 0)), N'4018 - Institute: Special Event Expenses', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (526, 4, N'4019', N'+', CAST(18 AS Numeric(10, 0)), CAST(798 AS Numeric(10, 0)), N'4019 - Institute: Family Housing', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (527, 4, N'4020', N'+', CAST(19 AS Numeric(10, 0)), CAST(799 AS Numeric(10, 0)), N'4020 - Institute: Lost Keys', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (528, 4, N'4021', N'+', CAST(20 AS Numeric(10, 0)), CAST(800 AS Numeric(10, 0)), N'4021 - Institute: Linen Rental', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (529, 4, N'4022', N'+', CAST(21 AS Numeric(10, 0)), CAST(801 AS Numeric(10, 0)), N'4022 - Institute: Parking Fees', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (530, 4, N'4023', N'+', CAST(22 AS Numeric(10, 0)), CAST(802 AS Numeric(10, 0)), N'4023 - Institute: Diversity, Community, and Achievement (DCA)', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (531, 4, N'4024', N'+', CAST(23 AS Numeric(10, 0)), CAST(803 AS Numeric(10, 0)), N'4024 - Special Education', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (532, 4, N'4025', N'+', CAST(24 AS Numeric(10, 0)), CAST(804 AS Numeric(10, 0)), N'4025 - TPSD Team Leaders Retreat', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (533, 4, N'4026', N'+', CAST(25 AS Numeric(10, 0)), CAST(805 AS Numeric(10, 0)), N'4026 - Cross Team Design Retreat', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (534, 4, N'4027', N'+', CAST(26 AS Numeric(10, 0)), CAST(806 AS Numeric(10, 0)), N'4027 - Institute: Half Staff Conference', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (535, 4, N'4028', N'+', CAST(27 AS Numeric(10, 0)), CAST(807 AS Numeric(10, 0)), N'4028 - Institute: Week Zero Conference', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (536, 4, N'4029', N'+', CAST(28 AS Numeric(10, 0)), CAST(808 AS Numeric(10, 0)), N'4029 - TPT Retreat Week - October', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (537, 4, N'4030', N'+', CAST(29 AS Numeric(10, 0)), CAST(809 AS Numeric(10, 0)), N'4030 - TPT Retreat Week - November', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (538, 4, N'4031', N'+', CAST(30 AS Numeric(10, 0)), CAST(810 AS Numeric(10, 0)), N'4031 - TPT Retreat Week - February', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (539, 4, N'4032', N'+', CAST(31 AS Numeric(10, 0)), CAST(811 AS Numeric(10, 0)), N'4032 - Institute: ADA Services', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (540, 4, N'4033', N'+', CAST(32 AS Numeric(10, 0)), CAST(812 AS Numeric(10, 0)), N'4033 - Mental Health Services', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (541, 4, N'4034', N'+', CAST(33 AS Numeric(10, 0)), CAST(813 AS Numeric(10, 0)), N'4034 - Institute: Other Risk Management', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (542, 4, N'4035', N'+', CAST(34 AS Numeric(10, 0)), CAST(814 AS Numeric(10, 0)), N'4035 - Institute: TPT/Institute Data', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (543, 4, N'4036', N'+', CAST(35 AS Numeric(10, 0)), CAST(815 AS Numeric(10, 0)), N'4036 - Institute: Design Research', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (544, 4, N'4037', N'+', CAST(36 AS Numeric(10, 0)), CAST(816 AS Numeric(10, 0)), N'4037 - Institute: Marketing Orders', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (545, 4, N'4038', N'+', CAST(37 AS Numeric(10, 0)), CAST(817 AS Numeric(10, 0)), N'4038 - Design Retreat - August', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (546, 4, N'4039', N'+', CAST(38 AS Numeric(10, 0)), CAST(818 AS Numeric(10, 0)), N'4039 - IMT Summer Travel Support ', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (547, 4, N'4040', N'+', CAST(39 AS Numeric(10, 0)), CAST(819 AS Numeric(10, 0)), N'4040 - Institute: Equipment', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (548, 4, N'4041', N'+', CAST(40 AS Numeric(10, 0)), CAST(820 AS Numeric(10, 0)), N'4041 - Corps Communications', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (549, 4, N'4042', N'+', CAST(41 AS Numeric(10, 0)), CAST(821 AS Numeric(10, 0)), N'4042 - Institute: All Staff Conference 3', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (550, 4, N'4043', N'+', CAST(42 AS Numeric(10, 0)), CAST(822 AS Numeric(10, 0)), N'4043 - SMDI Retreat 1', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (551, 4, N'4044', N'+', CAST(43 AS Numeric(10, 0)), CAST(823 AS Numeric(10, 0)), N'4044 - SMDI Retreat 2', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (552, 4, N'4045', N'+', CAST(44 AS Numeric(10, 0)), CAST(824 AS Numeric(10, 0)), N'4045 - Institute Pilots', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (553, 4, N'4046', N'+', CAST(45 AS Numeric(10, 0)), CAST(825 AS Numeric(10, 0)), N'4046 - Institute: IMT Facilitators/Contractors', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (554, 4, N'4047', N'+', CAST(46 AS Numeric(10, 0)), CAST(826 AS Numeric(10, 0)), N'4047 - Institute: All Staff Conference 2', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (555, 4, N'4048', N'+', CAST(47 AS Numeric(10, 0)), CAST(827 AS Numeric(10, 0)), N'4048 - TSD Team Retreats', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (556, 4, N'4049', N'+', CAST(48 AS Numeric(10, 0)), CAST(828 AS Numeric(10, 0)), N'4049 - TSD Wing Leader Retreats', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (557, 4, N'4050', N'+', CAST(49 AS Numeric(10, 0)), CAST(829 AS Numeric(10, 0)), N'4050 - TPSD SVP Fund', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (558, 4, N'4051', N'+', CAST(50 AS Numeric(10, 0)), CAST(830 AS Numeric(10, 0)), N'4051 - Mid-Year Program Retreat', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (559, 4, N'4052', N'+', CAST(51 AS Numeric(10, 0)), CAST(831 AS Numeric(10, 0)), N'4052 - April PM Conference', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (560, 4, N'4053', N'+', CAST(52 AS Numeric(10, 0)), CAST(832 AS Numeric(10, 0)), N'4053 - New PD Conferences', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (561, 4, N'4054', N'+', CAST(53 AS Numeric(10, 0)), CAST(833 AS Numeric(10, 0)), N'4054 - New PM Conferences', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (562, 4, N'4055', N'+', CAST(54 AS Numeric(10, 0)), CAST(834 AS Numeric(10, 0)), N'4055 - Fall Program Conferences', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (563, 4, N'4056', N'+', CAST(55 AS Numeric(10, 0)), CAST(835 AS Numeric(10, 0)), N'4056 - Fall Program Conf - Site #1', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (564, 4, N'4057', N'+', CAST(56 AS Numeric(10, 0)), CAST(836 AS Numeric(10, 0)), N'4057 - Fall Program Conf - Site #2', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (565, 4, N'4058', N'+', CAST(57 AS Numeric(10, 0)), CAST(837 AS Numeric(10, 0)), N'4058 - 100k Committee Conference', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (566, 4, N'4059', N'+', CAST(58 AS Numeric(10, 0)), CAST(838 AS Numeric(10, 0)), N'4059 - Fall Program Conference - Sep 2011', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (567, 4, N'4060', N'+', CAST(59 AS Numeric(10, 0)), CAST(839 AS Numeric(10, 0)), N'4060 - RPL Conference', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (568, 4, N'4061', N'+', CAST(60 AS Numeric(10, 0)), CAST(840 AS Numeric(10, 0)), N'4061 - IMT Blackberries & Aircards', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (569, 4, N'4062', N'+', CAST(61 AS Numeric(10, 0)), CAST(841 AS Numeric(10, 0)), N'4062 - IMT Onboarding', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (570, 4, N'4063', N'+', CAST(62 AS Numeric(10, 0)), CAST(842 AS Numeric(10, 0)), N'4063 - MDIP-S Conference', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (571, 4, N'4064', N'+', CAST(63 AS Numeric(10, 0)), CAST(843 AS Numeric(10, 0)), N'4064 - MDIP-D Conference', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (572, 4, N'4065', N'+', CAST(64 AS Numeric(10, 0)), CAST(844 AS Numeric(10, 0)), N'4065 - Train the Trainer Content', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (573, 4, N'4066', N'+', CAST(65 AS Numeric(10, 0)), CAST(845 AS Numeric(10, 0)), N'4066 - Amgen Recruitment Event', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (574, 4, N'4067', N'+', CAST(66 AS Numeric(10, 0)), CAST(846 AS Numeric(10, 0)), N'4067 - Teacher Turnaround Video Project', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (575, 4, N'4068', N'+', CAST(67 AS Numeric(10, 0)), CAST(847 AS Numeric(10, 0)), N'4068 - Diversity Race to the Top', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (576, 4, N'4069', N'+', CAST(68 AS Numeric(10, 0)), CAST(848 AS Numeric(10, 0)), N'4069 - Pre-TAS TPSD Retreats', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (577, 4, N'4070', N'+', CAST(69 AS Numeric(10, 0)), CAST(849 AS Numeric(10, 0)), N'4070 - Teaching & Learning Committ', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (578, 4, N'4071', N'+', CAST(70 AS Numeric(10, 0)), CAST(850 AS Numeric(10, 0)), N'4071 - TPSD Tools', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (579, 4, N'4072', N'+', CAST(71 AS Numeric(10, 0)), CAST(851 AS Numeric(10, 0)), N'4072 - ILE Community Leaders', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (580, 4, N'4073', N'+', CAST(72 AS Numeric(10, 0)), CAST(852 AS Numeric(10, 0)), N'4073 - TPSD Leadership Prof Dev', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (581, 4, N'4074', N'+', CAST(73 AS Numeric(10, 0)), CAST(853 AS Numeric(10, 0)), N'4074 - Copyrights', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (582, 4, N'4075', N'+', CAST(74 AS Numeric(10, 0)), CAST(854 AS Numeric(10, 0)), N'4075 - TPSD Studies', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (583, 4, N'4076', N'+', CAST(75 AS Numeric(10, 0)), CAST(855 AS Numeric(10, 0)), N'4076 - Round Zero Handbooks', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (584, 4, N'4077', N'+', CAST(76 AS Numeric(10, 0)), CAST(856 AS Numeric(10, 0)), N'4077 - Institute: Instructional Staff Conference', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (585, 4, N'4078', N'+', CAST(77 AS Numeric(10, 0)), CAST(857 AS Numeric(10, 0)), N'4078 - DRA', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (586, 4, N'4079', N'+', CAST(78 AS Numeric(10, 0)), CAST(858 AS Numeric(10, 0)), N'4079 - Reading A to Z (RZA)', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (587, 4, N'4080', N'+', CAST(79 AS Numeric(10, 0)), CAST(859 AS Numeric(10, 0)), N'4080 - TSD Equipment', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (588, 4, N'4081', N'+', CAST(80 AS Numeric(10, 0)), CAST(860 AS Numeric(10, 0)), N'4081 - TSD Data', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (589, 4, N'4082', N'+', CAST(81 AS Numeric(10, 0)), CAST(861 AS Numeric(10, 0)), N'4082 - Math-Science Seminar', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (590, 4, N'4083', N'+', CAST(82 AS Numeric(10, 0)), CAST(862 AS Numeric(10, 0)), N'4083 - SVP Regional Sponsored Dinners', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (591, 4, N'4084', N'+', CAST(83 AS Numeric(10, 0)), CAST(863 AS Numeric(10, 0)), N'4084 - Institute: CMAC Conference', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (592, 4, N'4085', N'+', CAST(84 AS Numeric(10, 0)), CAST(864 AS Numeric(10, 0)), N'4085 - TSD Kick-off Conference', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (593, 4, N'4086', N'+', CAST(85 AS Numeric(10, 0)), CAST(865 AS Numeric(10, 0)), N'4086 - Event / Project', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (594, 4, N'4087', N'+', CAST(86 AS Numeric(10, 0)), CAST(866 AS Numeric(10, 0)), N'4087 - Event / Project', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (595, 4, N'4088', N'+', CAST(87 AS Numeric(10, 0)), CAST(867 AS Numeric(10, 0)), N'4088 - PALI Summer Fellows', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (596, 4, N'4089', N'+', CAST(88 AS Numeric(10, 0)), CAST(868 AS Numeric(10, 0)), N'4089 - PLI Joyce Expenses', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (597, 4, N'4090', N'+', CAST(89 AS Numeric(10, 0)), CAST(869 AS Numeric(10, 0)), N'4090 - Anniversary Summit', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (598, 4, N'4091', N'+', CAST(90 AS Numeric(10, 0)), CAST(870 AS Numeric(10, 0)), N'4091 - Alumni Survey', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (599, 4, N'4092', N'+', CAST(91 AS Numeric(10, 0)), CAST(871 AS Numeric(10, 0)), N'4092 - Gates Reshaping Teaching ', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (600, 4, N'4093', N'+', CAST(92 AS Numeric(10, 0)), CAST(872 AS Numeric(10, 0)), N'4093 - PALI', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (601, 4, N'4094', N'+', CAST(93 AS Numeric(10, 0)), CAST(873 AS Numeric(10, 0)), N'4094 - Institute: Charter Site Selection', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (602, 4, N'4095', N'+', CAST(94 AS Numeric(10, 0)), CAST(874 AS Numeric(10, 0)), N'4095 - Southwest Summit', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (603, 4, N'4096', N'+', CAST(95 AS Numeric(10, 0)), CAST(875 AS Numeric(10, 0)), N'4096 - Alumni National Board', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (604, 4, N'4097', N'+', CAST(96 AS Numeric(10, 0)), CAST(876 AS Numeric(10, 0)), N'4097 - Institute: Special Event Meals', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (605, 4, N'4098', N'+', CAST(97 AS Numeric(10, 0)), CAST(877 AS Numeric(10, 0)), N'4098 - Caregiver Expenses', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (606, 4, N'4099', N'+', CAST(98 AS Numeric(10, 0)), CAST(878 AS Numeric(10, 0)), N'4099 - Institute: Prior Fiscal Year Expenses - Reversals/Accruals', N'Active')

    GO

    print 'Processed 600 total records'

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (607, 4, N'4100', N'+', CAST(99 AS Numeric(10, 0)), CAST(879 AS Numeric(10, 0)), N'4100 - Corporate Housing', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (608, 4, N'4101', N'+', CAST(100 AS Numeric(10, 0)), CAST(880 AS Numeric(10, 0)), N'4101 - PD/RD deadline 1 ', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (609, 4, N'4102', N'+', CAST(101 AS Numeric(10, 0)), CAST(881 AS Numeric(10, 0)), N'4102 - PD/RD deadline 2 ', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (610, 4, N'4103', N'+', CAST(102 AS Numeric(10, 0)), CAST(882 AS Numeric(10, 0)), N'4103 - PD/RD deadline 3 ', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (611, 4, N'4104', N'+', CAST(103 AS Numeric(10, 0)), CAST(883 AS Numeric(10, 0)), N'4104 - PD/RD deadline 4 ', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (612, 4, N'4105', N'+', CAST(104 AS Numeric(10, 0)), CAST(884 AS Numeric(10, 0)), N'4105 - PD/RD post deadline hiring', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (613, 4, N'4106', N'+', CAST(105 AS Numeric(10, 0)), CAST(885 AS Numeric(10, 0)), N'4106 - Finalist Interview Travel', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (614, 4, N'4107', N'+', CAST(106 AS Numeric(10, 0)), CAST(886 AS Numeric(10, 0)), N'4107 - Summer Development Conf', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (615, 4, N'4108', N'+', CAST(107 AS Numeric(10, 0)), CAST(887 AS Numeric(10, 0)), N'4108 - PLC Site Visit 1', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (616, 4, N'4109', N'+', CAST(108 AS Numeric(10, 0)), CAST(888 AS Numeric(10, 0)), N'4109 - PLC Site Visit 2', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (617, 4, N'4110', N'+', CAST(109 AS Numeric(10, 0)), CAST(889 AS Numeric(10, 0)), N'4110 - PLC Site Visit Chicago', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (618, 4, N'4111', N'+', CAST(110 AS Numeric(10, 0)), CAST(890 AS Numeric(10, 0)), N'4111 - Event / Project', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (619, 4, N'4112', N'+', CAST(111 AS Numeric(10, 0)), CAST(891 AS Numeric(10, 0)), N'4112 - Event / Project', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (620, 4, N'4113', N'+', CAST(112 AS Numeric(10, 0)), CAST(892 AS Numeric(10, 0)), N'4113 - PLC Site Visit Charlotte', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (621, 4, N'4114', N'+', CAST(113 AS Numeric(10, 0)), CAST(893 AS Numeric(10, 0)), N'4114 - Event / Project', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (622, 4, N'4115', N'+', CAST(114 AS Numeric(10, 0)), CAST(894 AS Numeric(10, 0)), N'4115 - PLC Site Visit 5', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (623, 4, N'4116', N'+', CAST(115 AS Numeric(10, 0)), CAST(895 AS Numeric(10, 0)), N'4116 - PLC Site Visit 6', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (624, 4, N'4117', N'+', CAST(116 AS Numeric(10, 0)), CAST(896 AS Numeric(10, 0)), N'4117 - Spring Dev OC Conf Feb', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (625, 4, N'4118', N'+', CAST(117 AS Numeric(10, 0)), CAST(897 AS Numeric(10, 0)), N'4118 - Managers Conference', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (626, 4, N'4119', N'+', CAST(118 AS Numeric(10, 0)), CAST(898 AS Numeric(10, 0)), N'4119 - New Hire Orientation General', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (627, 4, N'4120', N'+', CAST(119 AS Numeric(10, 0)), CAST(899 AS Numeric(10, 0)), N'4120 - Stage 2 Manager Dev', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (628, 4, N'4121', N'+', CAST(120 AS Numeric(10, 0)), CAST(900 AS Numeric(10, 0)), N'4121 - Stage 3 Manager Dev', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (629, 4, N'4122', N'+', CAST(121 AS Numeric(10, 0)), CAST(901 AS Numeric(10, 0)), N'4122 - BRIO Skill Building', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (630, 4, N'4123', N'+', CAST(122 AS Numeric(10, 0)), CAST(902 AS Numeric(10, 0)), N'4123 - Strategic Skill Building', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (631, 4, N'4124', N'+', CAST(123 AS Numeric(10, 0)), CAST(903 AS Numeric(10, 0)), N'4124 - New Hire Orientation 1', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (632, 4, N'4125', N'+', CAST(124 AS Numeric(10, 0)), CAST(904 AS Numeric(10, 0)), N'4125 - New Hire Orientation 2', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (633, 4, N'4126', N'+', CAST(125 AS Numeric(10, 0)), CAST(905 AS Numeric(10, 0)), N'4126 - New Hire Orientation 3', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (634, 4, N'4127', N'+', CAST(126 AS Numeric(10, 0)), CAST(906 AS Numeric(10, 0)), N'4127 - New Hire Orientation 4', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (635, 4, N'4128', N'+', CAST(127 AS Numeric(10, 0)), CAST(907 AS Numeric(10, 0)), N'4128 - New Hire Orientation 5', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (636, 4, N'4129', N'+', CAST(128 AS Numeric(10, 0)), CAST(908 AS Numeric(10, 0)), N'4129 - New Hire Orientation 6', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (637, 4, N'4130', N'+', CAST(129 AS Numeric(10, 0)), CAST(909 AS Numeric(10, 0)), N'4130 - Diverse Media Initiative', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (638, 4, N'4131', N'+', CAST(130 AS Numeric(10, 0)), CAST(910 AS Numeric(10, 0)), N'4131 - Mini Conference', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (639, 4, N'4132', N'+', CAST(131 AS Numeric(10, 0)), CAST(911 AS Numeric(10, 0)), N'4132 - Diversity Conference', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (640, 4, N'4133', N'+', CAST(132 AS Numeric(10, 0)), CAST(912 AS Numeric(10, 0)), N'4133 - Amgen Grant for MSE bonus', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (641, 4, N'4134', N'+', CAST(133 AS Numeric(10, 0)), CAST(913 AS Numeric(10, 0)), N'4134 - -RD Q3 Stepback (May-NYC)', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (642, 4, N'4135', N'+', CAST(134 AS Numeric(10, 0)), CAST(914 AS Numeric(10, 0)), N'4135 - RD FY10 Planning Retreat', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (643, 4, N'4136', N'+', CAST(135 AS Numeric(10, 0)), CAST(915 AS Numeric(10, 0)), N'4136 - RD Q4 Stepback (Jul-Philly)', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (644, 4, N'4137', N'+', CAST(136 AS Numeric(10, 0)), CAST(916 AS Numeric(10, 0)), N'4137 - Dev Onboarding Site Visit 1', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (645, 4, N'4138', N'+', CAST(137 AS Numeric(10, 0)), CAST(917 AS Numeric(10, 0)), N'4138 - Dev Onboarding Site Visit 2', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (646, 4, N'4139', N'+', CAST(138 AS Numeric(10, 0)), CAST(918 AS Numeric(10, 0)), N'4139 - Fall Dev Conference', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (647, 4, N'4140', N'+', CAST(139 AS Numeric(10, 0)), CAST(919 AS Numeric(10, 0)), N'4140 - Onboarding Site Visits', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (648, 4, N'4141', N'+', CAST(140 AS Numeric(10, 0)), CAST(920 AS Numeric(10, 0)), N'4141 - Extern PT Salary', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (649, 4, N'4142', N'+', CAST(141 AS Numeric(10, 0)), CAST(921 AS Numeric(10, 0)), N'4142 - GSD Summer Gathering', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (650, 4, N'4143', N'+', CAST(142 AS Numeric(10, 0)), CAST(922 AS Numeric(10, 0)), N'4143 - SMD Cohort Retreats', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (651, 4, N'4144', N'+', CAST(143 AS Numeric(10, 0)), CAST(923 AS Numeric(10, 0)), N'4144 - Event / Project', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (652, 4, N'4145', N'+', CAST(144 AS Numeric(10, 0)), CAST(924 AS Numeric(10, 0)), N'4145 - Amgen Innovation Fund', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (653, 4, N'4146', N'+', CAST(145 AS Numeric(10, 0)), CAST(925 AS Numeric(10, 0)), N'4146 - Event / Project', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (654, 4, N'4147', N'+', CAST(146 AS Numeric(10, 0)), CAST(926 AS Numeric(10, 0)), N'4147 - Event / Project', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (655, 4, N'4148', N'+', CAST(147 AS Numeric(10, 0)), CAST(927 AS Numeric(10, 0)), N'4148 - Event / Project', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (656, 4, N'4149', N'+', CAST(148 AS Numeric(10, 0)), CAST(928 AS Numeric(10, 0)), N'4149 - Institutes: District Contingency Fund', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (657, 4, N'4150', N'+', CAST(149 AS Numeric(10, 0)), CAST(929 AS Numeric(10, 0)), N'4150 - National Assessments Pilot', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (658, 4, N'4151', N'+', CAST(150 AS Numeric(10, 0)), CAST(930 AS Numeric(10, 0)), N'4151 - TPT Wing Leaders Retreat', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (659, 4, N'4152', N'+', CAST(151 AS Numeric(10, 0)), CAST(931 AS Numeric(10, 0)), N'4152 - Regional Institute Comm', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (660, 4, N'4153', N'+', CAST(152 AS Numeric(10, 0)), CAST(932 AS Numeric(10, 0)), N'4153 - Institute Procurement: Rental Cars', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (661, 4, N'4154', N'+', CAST(153 AS Numeric(10, 0)), CAST(933 AS Numeric(10, 0)), N'4154 - Institute Procurement: Cell Phones', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (662, 4, N'4155', N'+', CAST(154 AS Numeric(10, 0)), CAST(934 AS Numeric(10, 0)), N'4155 - TPSD Kick-Off Conference', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (663, 4, N'4156', N'+', CAST(155 AS Numeric(10, 0)), CAST(935 AS Numeric(10, 0)), N'4156 - Institute Procurement: Copiers', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (664, 4, N'4157', N'+', CAST(156 AS Numeric(10, 0)), CAST(936 AS Numeric(10, 0)), N'4157 - Institute Procurement: Computer/Printer', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (665, 4, N'4158', N'+', CAST(157 AS Numeric(10, 0)), CAST(937 AS Numeric(10, 0)), N'4158 - Institute Procurement: Office Supplies', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (666, 4, N'4159', N'+', CAST(158 AS Numeric(10, 0)), CAST(938 AS Numeric(10, 0)), N'4159 - Institute: Resource Room Expenses', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (667, 4, N'4160', N'+', CAST(159 AS Numeric(10, 0)), CAST(939 AS Numeric(10, 0)), N'4160 - Charter Institute Search', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (668, 4, N'4161', N'+', CAST(160 AS Numeric(10, 0)), CAST(940 AS Numeric(10, 0)), N'4161 - Institute Procurement: Technology', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (669, 4, N'4162', N'+', CAST(161 AS Numeric(10, 0)), CAST(941 AS Numeric(10, 0)), N'4162 - Institute: Access Cards', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (670, 4, N'4163', N'+', CAST(162 AS Numeric(10, 0)), CAST(942 AS Numeric(10, 0)), N'4163 - Institute: Welcoming & Closing Ceremonies', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (671, 4, N'4164', N'+', CAST(163 AS Numeric(10, 0)), CAST(943 AS Numeric(10, 0)), N'4164 - Institute: Training Calls', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (672, 4, N'4165', N'+', CAST(164 AS Numeric(10, 0)), CAST(944 AS Numeric(10, 0)), N'4165 - Institute: CM Travel To & From Insitute', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (673, 4, N'4166', N'+', CAST(165 AS Numeric(10, 0)), CAST(945 AS Numeric(10, 0)), N'4166 - Institute: Staff Travel To Institute', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (674, 4, N'4167', N'+', CAST(166 AS Numeric(10, 0)), CAST(946 AS Numeric(10, 0)), N'4167 - Institute: Staff Travel From Institute', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (675, 4, N'4168', N'+', CAST(167 AS Numeric(10, 0)), CAST(947 AS Numeric(10, 0)), N'4168 - Institute: Online Payment System', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (676, 4, N'4169', N'+', CAST(168 AS Numeric(10, 0)), CAST(948 AS Numeric(10, 0)), N'4169 - Institute: Bussing & Bussing Contingency Fund', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (677, 4, N'4170', N'+', CAST(169 AS Numeric(10, 0)), CAST(949 AS Numeric(10, 0)), N'4170 - Institute: Summer Cell Phones ', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (678, 4, N'4171', N'+', CAST(170 AS Numeric(10, 0)), CAST(950 AS Numeric(10, 0)), N'4171 - Institute: Staff Laptops', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (679, 4, N'4172', N'+', CAST(171 AS Numeric(10, 0)), CAST(951 AS Numeric(10, 0)), N'4172 - Institute: Computers', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (680, 4, N'4173', N'+', CAST(172 AS Numeric(10, 0)), CAST(952 AS Numeric(10, 0)), N'4173 - Institute: Printers', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (681, 4, N'4174', N'+', CAST(173 AS Numeric(10, 0)), CAST(953 AS Numeric(10, 0)), N'4174 - Institute: Hubs', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (682, 4, N'4175', N'+', CAST(174 AS Numeric(10, 0)), CAST(954 AS Numeric(10, 0)), N'4175 - Institute: Conference Calls', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (683, 4, N'4176', N'+', CAST(175 AS Numeric(10, 0)), CAST(955 AS Numeric(10, 0)), N'4176 - Institute: Copiers (CM & Staff)', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (684, 4, N'4177', N'+', CAST(176 AS Numeric(10, 0)), CAST(956 AS Numeric(10, 0)), N'4177 - Institute: Print Server', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (685, 4, N'4178', N'+', CAST(177 AS Numeric(10, 0)), CAST(957 AS Numeric(10, 0)), N'4178 - Institute: Copy Paper', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (686, 4, N'4179', N'+', CAST(178 AS Numeric(10, 0)), CAST(958 AS Numeric(10, 0)), N'4179 - Institute: Toner', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (687, 4, N'4180', N'+', CAST(179 AS Numeric(10, 0)), CAST(959 AS Numeric(10, 0)), N'4180 - Institute: Rental Cars', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (688, 4, N'4181', N'+', CAST(180 AS Numeric(10, 0)), CAST(960 AS Numeric(10, 0)), N'4181 - Institute: Supplies (CM & Staff)', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (689, 4, N'4182', N'+', CAST(181 AS Numeric(10, 0)), CAST(961 AS Numeric(10, 0)), N'4182 - Institute-Supplies (Staff)', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (690, 4, N'4183', N'+', CAST(182 AS Numeric(10, 0)), CAST(962 AS Numeric(10, 0)), N'4183 - Institute: Flash Drives', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (691, 4, N'4184', N'+', CAST(183 AS Numeric(10, 0)), CAST(963 AS Numeric(10, 0)), N'4184 - Institute: DVD-Mini RW', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (692, 4, N'4185', N'+', CAST(184 AS Numeric(10, 0)), CAST(964 AS Numeric(10, 0)), N'4185 - Institute: Video Camera', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (693, 4, N'4186', N'+', CAST(185 AS Numeric(10, 0)), CAST(965 AS Numeric(10, 0)), N'4186 - Institute: Digital Camera', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (694, 4, N'4187', N'+', CAST(186 AS Numeric(10, 0)), CAST(966 AS Numeric(10, 0)), N'4187 - Institute: LCD Projector', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (695, 4, N'4188', N'+', CAST(187 AS Numeric(10, 0)), CAST(967 AS Numeric(10, 0)), N'4188 - Institute: Office Supplies', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (696, 4, N'4189', N'+', CAST(188 AS Numeric(10, 0)), CAST(968 AS Numeric(10, 0)), N'4189 - Placement Fund', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (697, 4, N'4190', N'+', CAST(189 AS Numeric(10, 0)), CAST(969 AS Numeric(10, 0)), N'4190 - GSD Team Retreat', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (698, 4, N'4191', N'+', CAST(190 AS Numeric(10, 0)), CAST(970 AS Numeric(10, 0)), N'4191 - Resource Groups', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (699, 4, N'4192', N'+', CAST(191 AS Numeric(10, 0)), CAST(971 AS Numeric(10, 0)), N'4192 - African American Manager''s Conf', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (700, 4, N'4193', N'+', CAST(192 AS Numeric(10, 0)), CAST(972 AS Numeric(10, 0)), N'4193 - Talent Acq team conf 1', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (701, 4, N'4194', N'+', CAST(193 AS Numeric(10, 0)), CAST(973 AS Numeric(10, 0)), N'4194 - Talent Acq team conf 2', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (702, 4, N'4195', N'+', CAST(194 AS Numeric(10, 0)), CAST(974 AS Numeric(10, 0)), N'4195 - Talent Acq team conf 3', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (703, 4, N'4196', N'+', CAST(195 AS Numeric(10, 0)), CAST(975 AS Numeric(10, 0)), N'4196 - TPSD Wing Leaders Retreat', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (704, 4, N'4197', N'+', CAST(196 AS Numeric(10, 0)), CAST(976 AS Numeric(10, 0)), N'4197 - RTC - Institute Web Course', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (705, 4, N'4198', N'+', CAST(197 AS Numeric(10, 0)), CAST(977 AS Numeric(10, 0)), N'4198 - GNMB Work on Talon', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (706, 4, N'4199', N'+', CAST(198 AS Numeric(10, 0)), CAST(978 AS Numeric(10, 0)), N'4199 - Event / Project', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (707, 4, N'4200', N'+', CAST(199 AS Numeric(10, 0)), CAST(979 AS Numeric(10, 0)), N'4200 - Home Office Expenses', N'Active')

    GO

    print 'Processed 700 total records'

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (708, 1427, N'7000', N'+', CAST(0 AS Numeric(10, 0)), CAST(1501 AS Numeric(10, 0)), N'7000 - Misc. Improvements /FFE&LHI', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (709, 1427, N'7001', N'+', CAST(1 AS Numeric(10, 0)), CAST(1502 AS Numeric(10, 0)), N'7001 - Durham Buildout', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (710, 1427, N'7002', N'+', CAST(2 AS Numeric(10, 0)), CAST(1503 AS Numeric(10, 0)), N'7002 - Atlanta Buildout', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (711, 1427, N'7003', N'+', CAST(3 AS Numeric(10, 0)), CAST(1504 AS Numeric(10, 0)), N'7003 - Conference Room Project', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (712, 1427, N'7004', N'+', CAST(4 AS Numeric(10, 0)), CAST(1505 AS Numeric(10, 0)), N'7004 - NYC 3rd Floor', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (713, 1427, N'7005', N'+', CAST(5 AS Numeric(10, 0)), CAST(1506 AS Numeric(10, 0)), N'7005 - NYC 7th Floor West', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (714, 1427, N'7006', N'+', CAST(6 AS Numeric(10, 0)), CAST(1507 AS Numeric(10, 0)), N'7006 - NYC 8th Floor Conversion', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (715, 1427, N'7007', N'+', CAST(7 AS Numeric(10, 0)), CAST(1508 AS Numeric(10, 0)), N'7007 - NYC 6th Floor Pantry', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (716, 1427, N'7008', N'+', CAST(8 AS Numeric(10, 0)), CAST(1509 AS Numeric(10, 0)), N'7008 - 5th Floor SW Cnr Buildout', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (717, 1427, N'7009', N'+', CAST(9 AS Numeric(10, 0)), CAST(1510 AS Numeric(10, 0)), N'7009 - 5th Floor Code Compliance', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (718, 1427, N'7010', N'+', CAST(10 AS Numeric(10, 0)), CAST(1511 AS Numeric(10, 0)), N'7010 - NYC Regional OfficeBuildout', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (719, 1427, N'7011', N'+', CAST(11 AS Numeric(10, 0)), CAST(1512 AS Numeric(10, 0)), N'7011 - DC 1411K St 9th Floor', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (720, 1427, N'7012', N'+', CAST(12 AS Numeric(10, 0)), CAST(1513 AS Numeric(10, 0)), N'7012 - Conduit Pull', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (721, 1427, N'7013', N'+', CAST(13 AS Numeric(10, 0)), CAST(1514 AS Numeric(10, 0)), N'7013 - 5th Floor HVAC', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (722, 1427, N'7014', N'+', CAST(14 AS Numeric(10, 0)), CAST(1515 AS Numeric(10, 0)), N'7014 - Server Room HVAC', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (723, 1427, N'7015', N'+', CAST(15 AS Numeric(10, 0)), CAST(1516 AS Numeric(10, 0)), N'7015 - NYC 9th Floor', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (724, 1427, N'7016', N'+', CAST(16 AS Numeric(10, 0)), CAST(1517 AS Numeric(10, 0)), N'7016 - New Haven', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (725, 1427, N'7017', N'+', CAST(17 AS Numeric(10, 0)), CAST(1518 AS Numeric(10, 0)), N'7017 - Newark', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (726, 1427, N'7018', N'+', CAST(18 AS Numeric(10, 0)), CAST(1519 AS Numeric(10, 0)), N'7018 - Los Angeles', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (727, 1427, N'7019', N'+', CAST(19 AS Numeric(10, 0)), CAST(1520 AS Numeric(10, 0)), N'7019 - San Fransisco', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (728, 1427, N'7020', N'+', CAST(20 AS Numeric(10, 0)), CAST(1521 AS Numeric(10, 0)), N'7020 - OPEN', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (729, 1427, N'7021', N'+', CAST(21 AS Numeric(10, 0)), CAST(1522 AS Numeric(10, 0)), N'7021 - Charlotte', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (730, 1427, N'7022', N'+', CAST(22 AS Numeric(10, 0)), CAST(1523 AS Numeric(10, 0)), N'7022 - Denver', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (731, 1427, N'7023', N'+', CAST(23 AS Numeric(10, 0)), CAST(1524 AS Numeric(10, 0)), N'7023 - Philadelphia', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (732, 1427, N'7024', N'+', CAST(24 AS Numeric(10, 0)), CAST(1525 AS Numeric(10, 0)), N'7024 - Greater New Orleans', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (733, 1427, N'7025', N'+', CAST(25 AS Numeric(10, 0)), CAST(1526 AS Numeric(10, 0)), N'7025 - Houston', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (734, 1427, N'7026', N'+', CAST(26 AS Numeric(10, 0)), CAST(1527 AS Numeric(10, 0)), N'7026 - Memphis', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (735, 1427, N'7027', N'+', CAST(27 AS Numeric(10, 0)), CAST(1528 AS Numeric(10, 0)), N'7027 - Jacksonville', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (736, 1427, N'7028', N'+', CAST(28 AS Numeric(10, 0)), CAST(1529 AS Numeric(10, 0)), N'7028 - Kansas City', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (737, 1427, N'7029', N'+', CAST(29 AS Numeric(10, 0)), CAST(1530 AS Numeric(10, 0)), N'7029 - Indianapolis', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (738, 1427, N'7030', N'+', CAST(30 AS Numeric(10, 0)), CAST(1531 AS Numeric(10, 0)), N'7030 - Chicago', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (739, 1427, N'7031', N'+', CAST(31 AS Numeric(10, 0)), CAST(1532 AS Numeric(10, 0)), N'7031 - Phoenix', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (740, 1427, N'7032', N'+', CAST(32 AS Numeric(10, 0)), CAST(1533 AS Numeric(10, 0)), N'7032 - Miami', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (741, 1427, N'7033', N'+', CAST(33 AS Numeric(10, 0)), CAST(1534 AS Numeric(10, 0)), N'7033 - Rio Grand Valley', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (742, 1427, N'7034', N'+', CAST(34 AS Numeric(10, 0)), CAST(1535 AS Numeric(10, 0)), N'7034 - New Mexico', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (743, 1427, N'7035', N'+', CAST(35 AS Numeric(10, 0)), CAST(1536 AS Numeric(10, 0)), N'7035 - South Louisiana', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (744, 1427, N'7036', N'+', CAST(36 AS Numeric(10, 0)), CAST(1537 AS Numeric(10, 0)), N'7036 - South Dakota', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (745, 1427, N'7037', N'+', CAST(37 AS Numeric(10, 0)), CAST(1538 AS Numeric(10, 0)), N'7037 - Minneapolis', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (746, 1427, N'7038', N'+', CAST(38 AS Numeric(10, 0)), CAST(1539 AS Numeric(10, 0)), N'7038 - NYC 7th Floor Pantry', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (747, 1427, N'7039', N'+', CAST(39 AS Numeric(10, 0)), CAST(1540 AS Numeric(10, 0)), N'7039 - Interconnect Project', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (748, 1427, N'7040', N'+', CAST(40 AS Numeric(10, 0)), CAST(1541 AS Numeric(10, 0)), N'7040 - 6th floor HVAC project', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (749, 1427, N'7041', N'+', CAST(41 AS Numeric(10, 0)), CAST(1542 AS Numeric(10, 0)), N'7041 - Exit Signs', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (750, 1427, N'7042', N'+', CAST(42 AS Numeric(10, 0)), CAST(1543 AS Numeric(10, 0)), N'7042 - Tech Lab & Furniture', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (751, 1427, N'7043', N'+', CAST(43 AS Numeric(10, 0)), CAST(1544 AS Numeric(10, 0)), N'7043 - NOA Project', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (752, 1427, N'7044', N'+', CAST(44 AS Numeric(10, 0)), CAST(1545 AS Numeric(10, 0)), N'7044 - NOA Project', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (753, 1427, N'7045', N'+', CAST(45 AS Numeric(10, 0)), CAST(1546 AS Numeric(10, 0)), N'7045 - NOA Project', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (754, 1427, N'7046', N'+', CAST(46 AS Numeric(10, 0)), CAST(1547 AS Numeric(10, 0)), N'7046 - NOA Project', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (755, 1427, N'7047', N'+', CAST(47 AS Numeric(10, 0)), CAST(1548 AS Numeric(10, 0)), N'7047 - NOA Project', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (756, 1427, N'7048', N'+', CAST(48 AS Numeric(10, 0)), CAST(1549 AS Numeric(10, 0)), N'7048 - NOA Project', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (757, 1427, N'7049', N'+', CAST(49 AS Numeric(10, 0)), CAST(1550 AS Numeric(10, 0)), N'7049 - NOA Project', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (758, 1427, N'7050', N'+', CAST(50 AS Numeric(10, 0)), CAST(1551 AS Numeric(10, 0)), N'7050 - Boston (FY 2009)', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (759, 1427, N'7051', N'+', CAST(51 AS Numeric(10, 0)), CAST(1552 AS Numeric(10, 0)), N'7051 - Minneapolis (FY 2009)', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (760, 1427, N'7052', N'+', CAST(52 AS Numeric(10, 0)), CAST(1553 AS Numeric(10, 0)), N'7052 - Milwaukee (FY 2009)', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (761, 1427, N'7053', N'+', CAST(53 AS Numeric(10, 0)), CAST(1554 AS Numeric(10, 0)), N'7053 - Dallas (FY 2009)', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (762, 1427, N'7054', N'+', CAST(54 AS Numeric(10, 0)), CAST(1555 AS Numeric(10, 0)), N'7054 - New Mexico (FY 2009)', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (763, 1427, N'7055', N'+', CAST(55 AS Numeric(10, 0)), CAST(1556 AS Numeric(10, 0)), N'7055 - DC (FY 2009)', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (764, 1427, N'7056', N'+', CAST(56 AS Numeric(10, 0)), CAST(1557 AS Numeric(10, 0)), N'7056 - New Haven (FY 2009)', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (765, 1427, N'7057', N'+', CAST(57 AS Numeric(10, 0)), CAST(1558 AS Numeric(10, 0)), N'7057 - Hawaii (FY 2009)', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (766, 1427, N'7058', N'+', CAST(58 AS Numeric(10, 0)), CAST(1559 AS Numeric(10, 0)), N'7058 - South Louisiana (FY 2009)', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (767, 1427, N'7059', N'+', CAST(59 AS Numeric(10, 0)), CAST(1560 AS Numeric(10, 0)), N'7059 - Chicago (FY 2009)', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (768, 1427, N'7060', N'+', CAST(60 AS Numeric(10, 0)), CAST(1561 AS Numeric(10, 0)), N'7060 - Miami (FY 2009)', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (769, 1416, N'8000', N'+', CAST(0 AS Numeric(10, 0)), CAST(1293 AS Numeric(10, 0)), N'8000 - 841 Non-Project FA', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (770, 1416, N'8001', N'+', CAST(1 AS Numeric(10, 0)), CAST(1294 AS Numeric(10, 0)), N'8001 - Email and Instant Messaging', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (771, 1422, N'8002', N'+', CAST(0 AS Numeric(10, 0)), CAST(1354 AS Numeric(10, 0)), N'8002 - Techology Project', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (772, 1422, N'8003', N'+', CAST(1 AS Numeric(10, 0)), CAST(1355 AS Numeric(10, 0)), N'8003 - Techology Project', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (773, 1416, N'8004', N'+', CAST(2 AS Numeric(10, 0)), CAST(1295 AS Numeric(10, 0)), N'8004 - Upgrade National Network', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (774, 1416, N'8005', N'+', CAST(3 AS Numeric(10, 0)), CAST(1296 AS Numeric(10, 0)), N'8005 - Network switch upgrade NY', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (775, 1410, N'8006', N'+', CAST(0 AS Numeric(10, 0)), CAST(1243 AS Numeric(10, 0)), N'8006 - Centralize biz crtcal svcs', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (776, 1416, N'8007', N'+', CAST(4 AS Numeric(10, 0)), CAST(1297 AS Numeric(10, 0)), N'8007 - Enhance Event-monitoring', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (777, 1416, N'8008', N'+', CAST(5 AS Numeric(10, 0)), CAST(1298 AS Numeric(10, 0)), N'8008 - National Voicemail Switch', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (778, 1416, N'8009', N'+', CAST(6 AS Numeric(10, 0)), CAST(1299 AS Numeric(10, 0)), N'8009 - Improvement of Test Lab', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (779, 1421, N'8010', N'+', CAST(0 AS Numeric(10, 0)), CAST(1342 AS Numeric(10, 0)), N'8010 - Disaster Recovery', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (780, 1422, N'8011', N'+', CAST(2 AS Numeric(10, 0)), CAST(1356 AS Numeric(10, 0)), N'8011 - Techology Project', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (781, 1422, N'8012', N'+', CAST(3 AS Numeric(10, 0)), CAST(1357 AS Numeric(10, 0)), N'8012 - Techology Project', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (782, 1416, N'8013', N'+', CAST(7 AS Numeric(10, 0)), CAST(1300 AS Numeric(10, 0)), N'8013 - Upgrade M&C Design Mac', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (783, 1416, N'8014', N'+', CAST(8 AS Numeric(10, 0)), CAST(1301 AS Numeric(10, 0)), N'8014 - Monitors/keyboards/mice', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (784, 1416, N'8015', N'+', CAST(9 AS Numeric(10, 0)), CAST(1302 AS Numeric(10, 0)), N'8015 - True up Microsoft Licenses', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (785, 1416, N'8016', N'+', CAST(10 AS Numeric(10, 0)), CAST(1303 AS Numeric(10, 0)), N'8016 - Data Center Buildout', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (786, 1405, N'8017', N'+', CAST(0 AS Numeric(10, 0)), CAST(1127 AS Numeric(10, 0)), N'8017 - Org Wide Contact Mgmt', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (787, 1422, N'8018', N'+', CAST(4 AS Numeric(10, 0)), CAST(1358 AS Numeric(10, 0)), N'8018 - Techology Project', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (788, 1410, N'8019', N'+', CAST(1 AS Numeric(10, 0)), CAST(1244 AS Numeric(10, 0)), N'8019 - TFANet Release 1', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (789, 1422, N'8020', N'+', CAST(5 AS Numeric(10, 0)), CAST(1359 AS Numeric(10, 0)), N'8020 - Techology Project', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (790, 1406, N'8021', N'+', CAST(0 AS Numeric(10, 0)), CAST(1151 AS Numeric(10, 0)), N'8021 - Business Objects Upgrade', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (791, 1422, N'8022', N'+', CAST(6 AS Numeric(10, 0)), CAST(1360 AS Numeric(10, 0)), N'8022 - Techology Project', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (792, 1422, N'8023', N'+', CAST(7 AS Numeric(10, 0)), CAST(1361 AS Numeric(10, 0)), N'8023 - Techology Project', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (793, 1422, N'8024', N'+', CAST(8 AS Numeric(10, 0)), CAST(1362 AS Numeric(10, 0)), N'8024 - Techology Project', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (794, 1422, N'8025', N'+', CAST(9 AS Numeric(10, 0)), CAST(1363 AS Numeric(10, 0)), N'8025 - Techology Project', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (795, 1422, N'8026', N'+', CAST(10 AS Numeric(10, 0)), CAST(1364 AS Numeric(10, 0)), N'8026 - Techology Project', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (796, 1426, N'8027', N'+', CAST(0 AS Numeric(10, 0)), CAST(1215 AS Numeric(10, 0)), N'8027 - VMS Integration', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (797, 1426, N'8028', N'+', CAST(1 AS Numeric(10, 0)), CAST(1216 AS Numeric(10, 0)), N'8028 - LEE Member Authorization', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (798, 1406, N'8029', N'+', CAST(1 AS Numeric(10, 0)), CAST(1152 AS Numeric(10, 0)), N'8029 - Lrning Soln/Train''g Website', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (799, 1406, N'8030', N'+', CAST(2 AS Numeric(10, 0)), CAST(1153 AS Numeric(10, 0)), N'8030 - Train''g Doc/Dev-App Systems', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (800, 1422, N'8031', N'+', CAST(11 AS Numeric(10, 0)), CAST(1365 AS Numeric(10, 0)), N'8031 - Techology Project', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (801, 1422, N'8032', N'+', CAST(12 AS Numeric(10, 0)), CAST(1366 AS Numeric(10, 0)), N'8032 - Techology Project', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (802, 1422, N'8033', N'+', CAST(13 AS Numeric(10, 0)), CAST(1367 AS Numeric(10, 0)), N'8033 - Techology Project', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (803, 1422, N'8034', N'+', CAST(14 AS Numeric(10, 0)), CAST(1368 AS Numeric(10, 0)), N'8034 - Techology Project', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (804, 1416, N'8035', N'+', CAST(11 AS Numeric(10, 0)), CAST(1304 AS Numeric(10, 0)), N'8035 - Help Desk Upgrade', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (805, 1406, N'8036', N'+', CAST(3 AS Numeric(10, 0)), CAST(1154 AS Numeric(10, 0)), N'8036 - Performance Management Sys', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (806, 1425, N'8037', N'+', CAST(0 AS Numeric(10, 0)), CAST(1201 AS Numeric(10, 0)), N'8037 - Applicant Portal Develop''t', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (807, 1430, N'8038', N'+', CAST(0 AS Numeric(10, 0)), CAST(1235 AS Numeric(10, 0)), N'8038 - Program Tracker Development', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (808, 1405, N'8039', N'+', CAST(1 AS Numeric(10, 0)), CAST(1128 AS Numeric(10, 0)), N'8039 - Migration to Qlikview', N'Active')

    GO

    print 'Processed 800 total records'

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (809, 1405, N'8040', N'+', CAST(2 AS Numeric(10, 0)), CAST(1129 AS Numeric(10, 0)), N'8040 - SLX Migration to Qlikview', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (810, 1405, N'8041', N'+', CAST(3 AS Numeric(10, 0)), CAST(1130 AS Numeric(10, 0)), N'8041 - SalesLogix Enhancements', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (811, 1430, N'8042', N'+', CAST(1 AS Numeric(10, 0)), CAST(1236 AS Numeric(10, 0)), N'8042 - TPT Projects/InterviewSched', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (812, 1428, N'8043', N'+', CAST(0 AS Numeric(10, 0)), CAST(1221 AS Numeric(10, 0)), N'8043 - IMPS & Torque Upgrade', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (813, 1422, N'8044', N'+', CAST(15 AS Numeric(10, 0)), CAST(1369 AS Numeric(10, 0)), N'8044 - Techology Project', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (814, 1406, N'8045', N'+', CAST(4 AS Numeric(10, 0)), CAST(1155 AS Numeric(10, 0)), N'8045 - Planning & Analysis Tool', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (815, 1416, N'8046', N'+', CAST(12 AS Numeric(10, 0)), CAST(1305 AS Numeric(10, 0)), N'8046 - Non-Project Equipment', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (816, 1416, N'8047', N'+', CAST(13 AS Numeric(10, 0)), CAST(1306 AS Numeric(10, 0)), N'8047 - Office-In-A-Box', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (817, 1416, N'8048', N'+', CAST(14 AS Numeric(10, 0)), CAST(1307 AS Numeric(10, 0)), N'8048 - CM Wireless Initiative', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (818, 1416, N'8049', N'+', CAST(15 AS Numeric(10, 0)), CAST(1308 AS Numeric(10, 0)), N'8049 - Enterprise Class Infrstrctr', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (819, 1416, N'8050', N'+', CAST(16 AS Numeric(10, 0)), CAST(1309 AS Numeric(10, 0)), N'8050 - Incident Response System', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (820, 1416, N'8051', N'+', CAST(17 AS Numeric(10, 0)), CAST(1310 AS Numeric(10, 0)), N'8051 - Messaging Infrastructure', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (821, 1416, N'8052', N'+', CAST(18 AS Numeric(10, 0)), CAST(1311 AS Numeric(10, 0)), N'8052 - Data Center Expansion', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (822, 1416, N'8053', N'+', CAST(19 AS Numeric(10, 0)), CAST(1312 AS Numeric(10, 0)), N'8053 - Help Desk Assess''t/Upgrade', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (823, 1416, N'8054', N'+', CAST(20 AS Numeric(10, 0)), CAST(1313 AS Numeric(10, 0)), N'8054 - Virtualization Environment', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (824, 1416, N'8055', N'+', CAST(21 AS Numeric(10, 0)), CAST(1314 AS Numeric(10, 0)), N'8055 - Disaster Recovery', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (825, 1422, N'8056', N'+', CAST(16 AS Numeric(10, 0)), CAST(1370 AS Numeric(10, 0)), N'8056 - Team Re-Org / Headcount', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (826, 1406, N'8057', N'+', CAST(5 AS Numeric(10, 0)), CAST(1156 AS Numeric(10, 0)), N'8057 - CorpSystems: F&A', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (827, 1406, N'8058', N'+', CAST(6 AS Numeric(10, 0)), CAST(1157 AS Numeric(10, 0)), N'8058 - CorpSystems: HA', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (828, 1406, N'8059', N'+', CAST(7 AS Numeric(10, 0)), CAST(1158 AS Numeric(10, 0)), N'8059 - CorpSystems: GSD', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (829, 1406, N'8060', N'+', CAST(8 AS Numeric(10, 0)), CAST(1159 AS Numeric(10, 0)), N'8060 - CorpSystems: F&A / HA', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (830, 1406, N'8061', N'+', CAST(9 AS Numeric(10, 0)), CAST(1160 AS Numeric(10, 0)), N'8061 - CorpSystems: GSD (New)', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (831, 1406, N'8062', N'+', CAST(10 AS Numeric(10, 0)), CAST(1161 AS Numeric(10, 0)), N'8062 - CorpSystems: CrossTeam/Tech', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (832, 1405, N'8063', N'+', CAST(4 AS Numeric(10, 0)), CAST(1131 AS Numeric(10, 0)), N'8063 - Contact Mgmt: Cross-Team', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (833, 1405, N'8064', N'+', CAST(5 AS Numeric(10, 0)), CAST(1132 AS Numeric(10, 0)), N'8064 - Contact Mgmt: CRM Assess''t', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (834, 1428, N'8065', N'+', CAST(1 AS Numeric(10, 0)), CAST(1222 AS Numeric(10, 0)), N'8065 - Program Apps: AT/TPSD', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (835, 1410, N'8066', N'+', CAST(2 AS Numeric(10, 0)), CAST(1245 AS Numeric(10, 0)), N'8066 - TFANet: Extranet Portal R1', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (836, 1410, N'8067', N'+', CAST(3 AS Numeric(10, 0)), CAST(1246 AS Numeric(10, 0)), N'8067 - TFANet: Extranet Portal R2', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (837, 1410, N'8068', N'+', CAST(4 AS Numeric(10, 0)), CAST(1247 AS Numeric(10, 0)), N'8068 - TFA.org: Public Website', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (838, 1406, N'8069', N'+', CAST(11 AS Numeric(10, 0)), CAST(1162 AS Numeric(10, 0)), N'8069 - Addt''l HA Strategic Systems', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (839, 1430, N'8070', N'+', CAST(2 AS Numeric(10, 0)), CAST(1237 AS Numeric(10, 0)), N'8070 - Addt''l TPSD Strategic Sys', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (840, 1426, N'8071', N'+', CAST(2 AS Numeric(10, 0)), CAST(1217 AS Numeric(10, 0)), N'8071 - Addt''l AA Strategic Systems', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (841, 1423, N'8072', N'+', CAST(0 AS Numeric(10, 0)), CAST(1346 AS Numeric(10, 0)), N'8072 - MTM Server Move', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (842, 1406, N'8073', N'+', CAST(12 AS Numeric(10, 0)), CAST(1163 AS Numeric(10, 0)), N'8073 - Tech MS Project Server Imp', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (843, 1422, N'8074', N'+', CAST(17 AS Numeric(10, 0)), CAST(1371 AS Numeric(10, 0)), N'8074 - Techology Project', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (844, 1410, N'8075', N'+', CAST(5 AS Numeric(10, 0)), CAST(1248 AS Numeric(10, 0)), N'8075 - TFANET-BP', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (845, 1408, N'8076', N'+', CAST(0 AS Numeric(10, 0)), CAST(1195 AS Numeric(10, 0)), N'8076 - Intranet - BP', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (846, 1406, N'8077', N'+', CAST(13 AS Numeric(10, 0)), CAST(1164 AS Numeric(10, 0)), N'8077 - Corporate Systems - BP', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (847, 1405, N'8078', N'+', CAST(6 AS Numeric(10, 0)), CAST(1133 AS Numeric(10, 0)), N'8078 - Enterprise CRM - BP', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (848, 1428, N'8079', N'+', CAST(2 AS Numeric(10, 0)), CAST(1223 AS Numeric(10, 0)), N'8079 - Program Apps - BP', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (849, 1411, N'8080', N'+', CAST(0 AS Numeric(10, 0)), CAST(1270 AS Numeric(10, 0)), N'8080 - Data Architecture - BP', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (850, 1406, N'8081', N'+', CAST(14 AS Numeric(10, 0)), CAST(1165 AS Numeric(10, 0)), N'8081 - Business Intelligence Tool - BP', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (851, 1424, N'8082', N'+', CAST(0 AS Numeric(10, 0)), CAST(1350 AS Numeric(10, 0)), N'8082 - Video VOIP - BP', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (852, 1416, N'8083', N'+', CAST(22 AS Numeric(10, 0)), CAST(1315 AS Numeric(10, 0)), N'8083 - Infrastructure Scaling - BP', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (853, 1423, N'8084', N'+', CAST(1 AS Numeric(10, 0)), CAST(1347 AS Numeric(10, 0)), N'8084 - Data Center Co-Location - BP', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (854, 1421, N'8085', N'+', CAST(1 AS Numeric(10, 0)), CAST(1343 AS Numeric(10, 0)), N'8085 - Disaster Recover - BP', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (855, 1422, N'8086', N'+', CAST(18 AS Numeric(10, 0)), CAST(1372 AS Numeric(10, 0)), N'8086 - Non_Initiative', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (856, 1410, N'8087', N'+', CAST(6 AS Numeric(10, 0)), CAST(1249 AS Numeric(10, 0)), N'8087 - TFANET- Packet D', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (857, 1405, N'8088', N'+', CAST(7 AS Numeric(10, 0)), CAST(1134 AS Numeric(10, 0)), N'8088 - Infinity Maintenance - NON_ PROJECT', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (858, 1406, N'8089', N'+', CAST(15 AS Numeric(10, 0)), CAST(1166 AS Numeric(10, 0)), N'8089 - Corporate Systems FY10', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (859, 1406, N'8090', N'+', CAST(16 AS Numeric(10, 0)), CAST(1167 AS Numeric(10, 0)), N'8090 - Performance Trigger tool', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (860, 1406, N'8091', N'+', CAST(17 AS Numeric(10, 0)), CAST(1168 AS Numeric(10, 0)), N'8091 - Corporate Systems', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (861, 1406, N'8092', N'+', CAST(18 AS Numeric(10, 0)), CAST(1169 AS Numeric(10, 0)), N'8092 - Posting Engine Enhancements', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (862, 1406, N'8093', N'+', CAST(19 AS Numeric(10, 0)), CAST(1170 AS Numeric(10, 0)), N'8093 - InstituteHiring_FY10', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (863, 1424, N'8094', N'+', CAST(1 AS Numeric(10, 0)), CAST(1351 AS Numeric(10, 0)), N'8094 - Techology Project', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (864, 1405, N'8095', N'+', CAST(8 AS Numeric(10, 0)), CAST(1135 AS Numeric(10, 0)), N'8095 - Enterprise CRM Implementation', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (865, 1428, N'8096', N'+', CAST(3 AS Numeric(10, 0)), CAST(1224 AS Numeric(10, 0)), N'8096 - Program Apps', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (866, 1411, N'8097', N'+', CAST(1 AS Numeric(10, 0)), CAST(1271 AS Numeric(10, 0)), N'8097 - TFA IDM Implementation Phase I', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (867, 1424, N'8098', N'+', CAST(2 AS Numeric(10, 0)), CAST(1352 AS Numeric(10, 0)), N'8098 - Voice Over IP', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (868, 1416, N'8099', N'+', CAST(23 AS Numeric(10, 0)), CAST(1316 AS Numeric(10, 0)), N'8099 - Infrastructure Scaling FY10', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (869, 2, N'0510', N'+', CAST(53 AS Numeric(10, 0)), CAST(55 AS Numeric(10, 0)), N'0510 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (870, 2, N'0520', N'+', CAST(54 AS Numeric(10, 0)), CAST(56 AS Numeric(10, 0)), N'0520 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (871, 2, N'0530', N'+', CAST(55 AS Numeric(10, 0)), CAST(57 AS Numeric(10, 0)), N'0530 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (872, 2, N'0540', N'+', CAST(56 AS Numeric(10, 0)), CAST(58 AS Numeric(10, 0)), N'0540 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (873, 2, N'0550', N'+', CAST(57 AS Numeric(10, 0)), CAST(59 AS Numeric(10, 0)), N'0550 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (874, 2, N'0560', N'+', CAST(58 AS Numeric(10, 0)), CAST(60 AS Numeric(10, 0)), N'0560 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (875, 2, N'0570', N'+', CAST(59 AS Numeric(10, 0)), CAST(61 AS Numeric(10, 0)), N'0570 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (876, 2, N'0580', N'+', CAST(60 AS Numeric(10, 0)), CAST(62 AS Numeric(10, 0)), N'0580 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (877, 2, N'0590', N'+', CAST(61 AS Numeric(10, 0)), CAST(63 AS Numeric(10, 0)), N'0590 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (878, 2, N'0600', N'+', CAST(62 AS Numeric(10, 0)), CAST(64 AS Numeric(10, 0)), N'0600 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (879, 2, N'0610', N'+', CAST(63 AS Numeric(10, 0)), CAST(65 AS Numeric(10, 0)), N'0610 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (880, 2, N'0620', N'+', CAST(64 AS Numeric(10, 0)), CAST(66 AS Numeric(10, 0)), N'0620 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (881, 2, N'0630', N'+', CAST(65 AS Numeric(10, 0)), CAST(67 AS Numeric(10, 0)), N'0630 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (882, 2, N'0640', N'+', CAST(66 AS Numeric(10, 0)), CAST(68 AS Numeric(10, 0)), N'0640 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (883, 2, N'0650', N'+', CAST(67 AS Numeric(10, 0)), CAST(69 AS Numeric(10, 0)), N'0650 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (884, 2, N'0660', N'+', CAST(68 AS Numeric(10, 0)), CAST(70 AS Numeric(10, 0)), N'0660 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (885, 2, N'0670', N'+', CAST(69 AS Numeric(10, 0)), CAST(71 AS Numeric(10, 0)), N'0670 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (886, 2, N'0680', N'+', CAST(70 AS Numeric(10, 0)), CAST(72 AS Numeric(10, 0)), N'0680 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (887, 2, N'0690', N'+', CAST(71 AS Numeric(10, 0)), CAST(73 AS Numeric(10, 0)), N'0690 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (888, 2, N'0700', N'+', CAST(72 AS Numeric(10, 0)), CAST(74 AS Numeric(10, 0)), N'0700 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (889, 2, N'0710', N'+', CAST(73 AS Numeric(10, 0)), CAST(75 AS Numeric(10, 0)), N'0710 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (890, 2, N'0720', N'+', CAST(74 AS Numeric(10, 0)), CAST(76 AS Numeric(10, 0)), N'0720 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (891, 2, N'0730', N'+', CAST(75 AS Numeric(10, 0)), CAST(77 AS Numeric(10, 0)), N'0730 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (892, 2, N'0740', N'+', CAST(76 AS Numeric(10, 0)), CAST(78 AS Numeric(10, 0)), N'0740 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (893, 2, N'0750', N'+', CAST(77 AS Numeric(10, 0)), CAST(79 AS Numeric(10, 0)), N'0750 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (894, 2, N'0760', N'+', CAST(78 AS Numeric(10, 0)), CAST(80 AS Numeric(10, 0)), N'0760 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (895, 2, N'0770', N'+', CAST(79 AS Numeric(10, 0)), CAST(81 AS Numeric(10, 0)), N'0770 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (896, 2, N'0780', N'+', CAST(80 AS Numeric(10, 0)), CAST(82 AS Numeric(10, 0)), N'0780 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (897, 2, N'0790', N'+', CAST(81 AS Numeric(10, 0)), CAST(83 AS Numeric(10, 0)), N'0790 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (898, 2, N'0800', N'+', CAST(82 AS Numeric(10, 0)), CAST(84 AS Numeric(10, 0)), N'0800 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (899, 2, N'0810', N'+', CAST(83 AS Numeric(10, 0)), CAST(85 AS Numeric(10, 0)), N'0810 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (900, 2, N'0820', N'+', CAST(84 AS Numeric(10, 0)), CAST(86 AS Numeric(10, 0)), N'0820 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (901, 2, N'0830', N'+', CAST(85 AS Numeric(10, 0)), CAST(87 AS Numeric(10, 0)), N'0830 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (902, 2, N'0840', N'+', CAST(86 AS Numeric(10, 0)), CAST(88 AS Numeric(10, 0)), N'0840 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (903, 2, N'0850', N'+', CAST(87 AS Numeric(10, 0)), CAST(89 AS Numeric(10, 0)), N'0850 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (904, 2, N'0860', N'+', CAST(88 AS Numeric(10, 0)), CAST(90 AS Numeric(10, 0)), N'0860 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (905, 2, N'0870', N'+', CAST(89 AS Numeric(10, 0)), CAST(91 AS Numeric(10, 0)), N'0870 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (906, 2, N'0880', N'+', CAST(90 AS Numeric(10, 0)), CAST(92 AS Numeric(10, 0)), N'0880 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (907, 2, N'0890', N'+', CAST(91 AS Numeric(10, 0)), CAST(93 AS Numeric(10, 0)), N'0890 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (908, 2, N'0900', N'+', CAST(92 AS Numeric(10, 0)), CAST(94 AS Numeric(10, 0)), N'0900 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (909, 2, N'0910', N'+', CAST(93 AS Numeric(10, 0)), CAST(95 AS Numeric(10, 0)), N'0910 - Private', N'Active')

    GO

    print 'Processed 900 total records'

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (910, 2, N'0920', N'+', CAST(94 AS Numeric(10, 0)), CAST(96 AS Numeric(10, 0)), N'0920 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (911, 2, N'0930', N'+', CAST(95 AS Numeric(10, 0)), CAST(97 AS Numeric(10, 0)), N'0930 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (912, 2, N'0940', N'+', CAST(96 AS Numeric(10, 0)), CAST(98 AS Numeric(10, 0)), N'0940 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (913, 2, N'0950', N'+', CAST(97 AS Numeric(10, 0)), CAST(99 AS Numeric(10, 0)), N'0950 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (914, 2, N'0960', N'+', CAST(98 AS Numeric(10, 0)), CAST(100 AS Numeric(10, 0)), N'0960 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (915, 2, N'0970', N'+', CAST(99 AS Numeric(10, 0)), CAST(101 AS Numeric(10, 0)), N'0970 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (916, 2, N'0980', N'+', CAST(100 AS Numeric(10, 0)), CAST(102 AS Numeric(10, 0)), N'0980 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (917, 2, N'0990', N'+', CAST(101 AS Numeric(10, 0)), CAST(103 AS Numeric(10, 0)), N'0990 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (918, 3, N'3808', N'+', CAST(484 AS Numeric(10, 0)), CAST(691 AS Numeric(10, 0)), N'3808 - Western Washington U.', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (919, 3, N'3812', N'+', CAST(485 AS Numeric(10, 0)), CAST(692 AS Numeric(10, 0)), N'3812 - Westmont College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (920, 3, N'3816', N'+', CAST(486 AS Numeric(10, 0)), CAST(693 AS Numeric(10, 0)), N'3816 - Wheaton College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (921, 3, N'3820', N'+', CAST(487 AS Numeric(10, 0)), CAST(694 AS Numeric(10, 0)), N'3820 - Wheaton College (MA)', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (922, 3, N'3824', N'+', CAST(488 AS Numeric(10, 0)), CAST(695 AS Numeric(10, 0)), N'3824 - Whitman College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (923, 3, N'3828', N'+', CAST(489 AS Numeric(10, 0)), CAST(696 AS Numeric(10, 0)), N'3828 - Whittier College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (924, 3, N'3832', N'+', CAST(490 AS Numeric(10, 0)), CAST(697 AS Numeric(10, 0)), N'3832 - Whitworth College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (925, 3, N'3836', N'+', CAST(491 AS Numeric(10, 0)), CAST(698 AS Numeric(10, 0)), N'3836 - Willamette University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (926, 3, N'3840', N'+', CAST(492 AS Numeric(10, 0)), CAST(699 AS Numeric(10, 0)), N'3840 - William Jewell College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (927, 3, N'3844', N'+', CAST(493 AS Numeric(10, 0)), CAST(700 AS Numeric(10, 0)), N'3844 - Williams College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (928, 3, N'3848', N'+', CAST(494 AS Numeric(10, 0)), CAST(701 AS Numeric(10, 0)), N'3848 - Winston-Salem State U.', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (929, 3, N'3852', N'+', CAST(495 AS Numeric(10, 0)), CAST(702 AS Numeric(10, 0)), N'3852 - Wittenberg University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (930, 3, N'3856', N'+', CAST(496 AS Numeric(10, 0)), CAST(703 AS Numeric(10, 0)), N'3856 - Wofford College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (931, 3, N'3860', N'+', CAST(497 AS Numeric(10, 0)), CAST(704 AS Numeric(10, 0)), N'3860 - Xavier University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (932, 3, N'3864', N'+', CAST(498 AS Numeric(10, 0)), CAST(705 AS Numeric(10, 0)), N'3864 - Xavier U. of Louisiana', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (933, 3, N'3868', N'+', CAST(499 AS Numeric(10, 0)), CAST(706 AS Numeric(10, 0)), N'3868 - Yale University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (934, 1427, N'7062', N'+', CAST(62 AS Numeric(10, 0)), CAST(1563 AS Numeric(10, 0)), N'7062 - South Dakota (FY 2009)', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (935, 1427, N'7061', N'+', CAST(61 AS Numeric(10, 0)), CAST(1562 AS Numeric(10, 0)), N'7061 - Baltimore (FY 2009)', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (936, 1427, N'7063', N'+', CAST(63 AS Numeric(10, 0)), CAST(1564 AS Numeric(10, 0)), N'7063 - Las Vegas (FY 2009)', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (937, 1427, N'7064', N'+', CAST(64 AS Numeric(10, 0)), CAST(1565 AS Numeric(10, 0)), N'7064 - National 1- HVAC 7th Floor', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (938, 1427, N'7065', N'+', CAST(65 AS Numeric(10, 0)), CAST(1566 AS Numeric(10, 0)), N'7065 - National 2- Bathroom Repair', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (939, 1427, N'7066', N'+', CAST(66 AS Numeric(10, 0)), CAST(1567 AS Numeric(10, 0)), N'7066 - National 3- 7th Flr Pantry', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (940, 1427, N'7067', N'+', CAST(67 AS Numeric(10, 0)), CAST(1568 AS Numeric(10, 0)), N'7067 - National 4- 7thFlr Ductwork', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (941, 1427, N'7068', N'+', CAST(68 AS Numeric(10, 0)), CAST(1569 AS Numeric(10, 0)), N'7068 - National 5-Soundproof8thFlr', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (942, 1427, N'7069', N'+', CAST(69 AS Numeric(10, 0)), CAST(1570 AS Numeric(10, 0)), N'7069 - National 6- Soundproof HOU', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (943, 1427, N'7070', N'+', CAST(70 AS Numeric(10, 0)), CAST(1571 AS Numeric(10, 0)), N'7070 - National 7- Reception area', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (944, 1427, N'7071', N'+', CAST(71 AS Numeric(10, 0)), CAST(1572 AS Numeric(10, 0)), N'7071 - National 8- Paint Floors', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (945, 1427, N'7072', N'+', CAST(72 AS Numeric(10, 0)), CAST(1573 AS Numeric(10, 0)), N'7072 - Nashville', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (946, 1427, N'7073', N'+', CAST(73 AS Numeric(10, 0)), CAST(1574 AS Numeric(10, 0)), N'7073 - TFA CafT', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (947, 1427, N'7074', N'+', CAST(74 AS Numeric(10, 0)), CAST(1575 AS Numeric(10, 0)), N'7074 - NY Office Move Ph1', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (948, 2, N'1000', N'+', CAST(102 AS Numeric(10, 0)), CAST(104 AS Numeric(10, 0)), N'1000 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (949, 2, N'1010', N'+', CAST(103 AS Numeric(10, 0)), CAST(105 AS Numeric(10, 0)), N'1010 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (950, 2, N'1020', N'+', CAST(104 AS Numeric(10, 0)), CAST(106 AS Numeric(10, 0)), N'1020 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (951, 2, N'1030', N'+', CAST(105 AS Numeric(10, 0)), CAST(107 AS Numeric(10, 0)), N'1030 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (952, 2, N'1040', N'+', CAST(106 AS Numeric(10, 0)), CAST(108 AS Numeric(10, 0)), N'1040 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (953, 2, N'1050', N'+', CAST(107 AS Numeric(10, 0)), CAST(109 AS Numeric(10, 0)), N'1050 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (954, 2, N'1060', N'+', CAST(108 AS Numeric(10, 0)), CAST(110 AS Numeric(10, 0)), N'1060 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (955, 2, N'1070', N'+', CAST(109 AS Numeric(10, 0)), CAST(111 AS Numeric(10, 0)), N'1070 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (956, 2, N'1080', N'+', CAST(110 AS Numeric(10, 0)), CAST(112 AS Numeric(10, 0)), N'1080 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (957, 2, N'1090', N'+', CAST(111 AS Numeric(10, 0)), CAST(113 AS Numeric(10, 0)), N'1090 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (958, 4, N'4201', N'+', CAST(200 AS Numeric(10, 0)), CAST(980 AS Numeric(10, 0)), N'4201 - Institute: University Expense', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (959, 4, N'4202', N'+', CAST(201 AS Numeric(10, 0)), CAST(981 AS Numeric(10, 0)), N'4202 - Institute: Philadelphia University Expenses', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (960, 4, N'4203', N'+', CAST(202 AS Numeric(10, 0)), CAST(982 AS Numeric(10, 0)), N'4203 - Institute: Los Angeles University Expenses', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (961, 4, N'4204', N'+', CAST(203 AS Numeric(10, 0)), CAST(983 AS Numeric(10, 0)), N'4204 - Institute: NYC University Expenses', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (962, 4, N'4205', N'+', CAST(204 AS Numeric(10, 0)), CAST(984 AS Numeric(10, 0)), N'4205 - Institute: Atlanta University Expenses', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (963, 4, N'4206', N'+', CAST(205 AS Numeric(10, 0)), CAST(985 AS Numeric(10, 0)), N'4206 - Institute: Phoenix University Expenses', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (964, 4, N'4207', N'+', CAST(206 AS Numeric(10, 0)), CAST(986 AS Numeric(10, 0)), N'4207 - Institute: Chicago University Expenses', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (965, 4, N'4208', N'+', CAST(207 AS Numeric(10, 0)), CAST(987 AS Numeric(10, 0)), N'4208 - Institute: Delta University Expenses', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (966, 4, N'4209', N'+', CAST(208 AS Numeric(10, 0)), CAST(988 AS Numeric(10, 0)), N'4209 - Institute Site #9 Univ Expenses', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (967, 4, N'4210', N'+', CAST(209 AS Numeric(10, 0)), CAST(989 AS Numeric(10, 0)), N'4210 - Institute Site #10 Univ Expenses', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (968, 4, N'4211', N'+', CAST(210 AS Numeric(10, 0)), CAST(990 AS Numeric(10, 0)), N'4211 - Institute Site #11 Univ Expenses', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (969, 4, N'4212', N'+', CAST(211 AS Numeric(10, 0)), CAST(991 AS Numeric(10, 0)), N'4212 - Institute Site #12 Univ Expenses', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (970, 4, N'4213', N'+', CAST(212 AS Numeric(10, 0)), CAST(992 AS Numeric(10, 0)), N'4213 - Institute Site #13 Univ Expenses', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (971, 4, N'4214', N'+', CAST(213 AS Numeric(10, 0)), CAST(993 AS Numeric(10, 0)), N'4214 - Institute Site #14 Univ Expenses', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (972, 4, N'4215', N'+', CAST(214 AS Numeric(10, 0)), CAST(994 AS Numeric(10, 0)), N'4215 - Institute Site #15 Univ Expenses', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (973, 4, N'4216', N'+', CAST(215 AS Numeric(10, 0)), CAST(995 AS Numeric(10, 0)), N'4216 - Institute Site #16 Univ Expenses', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (974, 4, N'4217', N'+', CAST(216 AS Numeric(10, 0)), CAST(996 AS Numeric(10, 0)), N'4217 - Institute Site #17 Univ Expenses', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (975, 4, N'4218', N'+', CAST(217 AS Numeric(10, 0)), CAST(997 AS Numeric(10, 0)), N'4218 - Institute Site #18 Univ Expenses', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (976, 4, N'4219', N'+', CAST(218 AS Numeric(10, 0)), CAST(998 AS Numeric(10, 0)), N'4219 - Institute Site #19 Univ Expenses', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (977, 4, N'4220', N'+', CAST(219 AS Numeric(10, 0)), CAST(999 AS Numeric(10, 0)), N'4220 - Institute Site #20 Univ Expenses', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (978, 4, N'4221', N'+', CAST(220 AS Numeric(10, 0)), CAST(1000 AS Numeric(10, 0)), N'4221 - Institute Site #21 Univ Expenses', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (979, 4, N'4222', N'+', CAST(221 AS Numeric(10, 0)), CAST(1001 AS Numeric(10, 0)), N'4222 - Institute Site #22 Univ Expenses', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (980, 4, N'4223', N'+', CAST(222 AS Numeric(10, 0)), CAST(1002 AS Numeric(10, 0)), N'4223 - Institute Site #23 Univ Expenses', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (981, 4, N'4224', N'+', CAST(223 AS Numeric(10, 0)), CAST(1003 AS Numeric(10, 0)), N'4224 - Institute Site #24 Univ Expenses', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (982, 4, N'4225', N'+', CAST(224 AS Numeric(10, 0)), CAST(1004 AS Numeric(10, 0)), N'4225 - Institute Site #25 Univ Expenses', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (983, 4, N'4226', N'+', CAST(225 AS Numeric(10, 0)), CAST(1005 AS Numeric(10, 0)), N'4226 - Event / Project', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (984, 4, N'4227', N'+', CAST(226 AS Numeric(10, 0)), CAST(1006 AS Numeric(10, 0)), N'4227 - Event / Project', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (985, 4, N'4228', N'+', CAST(227 AS Numeric(10, 0)), CAST(1007 AS Numeric(10, 0)), N'4228 - Event / Project', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (986, 4, N'4229', N'+', CAST(228 AS Numeric(10, 0)), CAST(1008 AS Numeric(10, 0)), N'4229 - Event / Project', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (987, 4, N'4230', N'+', CAST(229 AS Numeric(10, 0)), CAST(1009 AS Numeric(10, 0)), N'4230 - Institute: Wireless', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (988, 4, N'4231', N'+', CAST(230 AS Numeric(10, 0)), CAST(1010 AS Numeric(10, 0)), N'4231 - Event / Project', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (989, 1423, N'8100', N'+', CAST(2 AS Numeric(10, 0)), CAST(1348 AS Numeric(10, 0)), N'8100 - Data Center Co-Location FY10', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (990, 1421, N'8101', N'+', CAST(2 AS Numeric(10, 0)), CAST(1344 AS Numeric(10, 0)), N'8101 - Business Continuity Plan', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (991, 1430, N'8102', N'+', CAST(3 AS Numeric(10, 0)), CAST(1238 AS Numeric(10, 0)), N'8102 - Placement Phase II - Reporting', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (992, 1406, N'8103', N'+', CAST(20 AS Numeric(10, 0)), CAST(1171 AS Numeric(10, 0)), N'8103 - E-Verify', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (993, 1405, N'8104', N'+', CAST(9 AS Numeric(10, 0)), CAST(1136 AS Numeric(10, 0)), N'8104 - GSD Funding Map', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (994, 1411, N'8105', N'+', CAST(2 AS Numeric(10, 0)), CAST(1272 AS Numeric(10, 0)), N'8105 - HRB Mirror', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (995, 1406, N'8106', N'+', CAST(21 AS Numeric(10, 0)), CAST(1172 AS Numeric(10, 0)), N'8106 - Corporate Systems Phase II', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (996, 1410, N'8107', N'+', CAST(7 AS Numeric(10, 0)), CAST(1250 AS Numeric(10, 0)), N'8107 - TFANET- Packet E', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (997, 1405, N'8108', N'+', CAST(10 AS Numeric(10, 0)), CAST(1137 AS Numeric(10, 0)), N'8108 - TRT Project Plan', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (998, 1428, N'8109', N'+', CAST(4 AS Numeric(10, 0)), CAST(1225 AS Numeric(10, 0)), N'8109 - Program Applications', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (999, 1406, N'8110', N'+', CAST(22 AS Numeric(10, 0)), CAST(1173 AS Numeric(10, 0)), N'8110 - RT3 TRT Reporting', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1000, 1410, N'8111', N'+', CAST(8 AS Numeric(10, 0)), CAST(1251 AS Numeric(10, 0)), N'8111 - TFANet Packet I', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1001, 1410, N'8112', N'+', CAST(9 AS Numeric(10, 0)), CAST(1252 AS Numeric(10, 0)), N'8112 - TFANET- Packet F', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1002, 1410, N'8113', N'+', CAST(10 AS Numeric(10, 0)), CAST(1253 AS Numeric(10, 0)), N'8113 - TFANet Production Support Activities', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1003, 1410, N'8114', N'+', CAST(11 AS Numeric(10, 0)), CAST(1254 AS Numeric(10, 0)), N'8114 - TFANet Packet G', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1004, 1410, N'8115', N'+', CAST(12 AS Numeric(10, 0)), CAST(1255 AS Numeric(10, 0)), N'8115 - TFANet Packet H', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1005, 1416, N'8116', N'+', CAST(24 AS Numeric(10, 0)), CAST(1317 AS Numeric(10, 0)), N'8116 - Infrastructure Scaling', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1006, 1406, N'8117', N'+', CAST(23 AS Numeric(10, 0)), CAST(1174 AS Numeric(10, 0)), N'8117 - Clarity Phase 2', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1007, 1416, N'8118', N'+', CAST(25 AS Numeric(10, 0)), CAST(1318 AS Numeric(10, 0)), N'8118 - Laptops/Desktops', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1008, 1410, N'8119', N'+', CAST(13 AS Numeric(10, 0)), CAST(1256 AS Numeric(10, 0)), N'8119 - TFANET-BP', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1009, 1416, N'8120', N'+', CAST(26 AS Numeric(10, 0)), CAST(1319 AS Numeric(10, 0)), N'8120 - RT3 Upgrade', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1010, 1406, N'8121', N'+', CAST(24 AS Numeric(10, 0)), CAST(1175 AS Numeric(10, 0)), N'8121 - Clarity', N'Active')

    GO

    print 'Processed 1000 total records'

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1011, 1406, N'8122', N'+', CAST(25 AS Numeric(10, 0)), CAST(1176 AS Numeric(10, 0)), N'8122 - Softscape Enhancements', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1012, 1428, N'8123', N'+', CAST(5 AS Numeric(10, 0)), CAST(1226 AS Numeric(10, 0)), N'8123 - Prog Apps Chuck Release', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1013, 1408, N'8124', N'+', CAST(1 AS Numeric(10, 0)), CAST(1196 AS Numeric(10, 0)), N'8124 - Intranet Phase I', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1014, 1406, N'8125', N'+', CAST(26 AS Numeric(10, 0)), CAST(1177 AS Numeric(10, 0)), N'8125 - Inst Hiring FY10Phase II', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1015, 1411, N'8126', N'+', CAST(3 AS Numeric(10, 0)), CAST(1273 AS Numeric(10, 0)), N'8126 - Enterprise information Model Phase I', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1016, 1411, N'8127', N'+', CAST(4 AS Numeric(10, 0)), CAST(1274 AS Numeric(10, 0)), N'8127 - Technology Project', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1017, 1410, N'8128', N'+', CAST(14 AS Numeric(10, 0)), CAST(1257 AS Numeric(10, 0)), N'8128 - TFANet Packet J', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1018, 1410, N'8129', N'+', CAST(15 AS Numeric(10, 0)), CAST(1258 AS Numeric(10, 0)), N'8129 - TFANet Packet K', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1019, 1416, N'8130', N'+', CAST(27 AS Numeric(10, 0)), CAST(1320 AS Numeric(10, 0)), N'8130 - Cisco Equip Donation 2010', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1020, 1405, N'8131', N'+', CAST(11 AS Numeric(10, 0)), CAST(1138 AS Numeric(10, 0)), N'8131 - CRM Implementation Phase 1', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1021, 1411, N'8132', N'+', CAST(5 AS Numeric(10, 0)), CAST(1275 AS Numeric(10, 0)), N'8132 - UI Harmonization', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1022, 1411, N'8133', N'+', CAST(6 AS Numeric(10, 0)), CAST(1276 AS Numeric(10, 0)), N'8133 - Corporate Systems IDM', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1023, 1405, N'8134', N'+', CAST(13 AS Numeric(10, 0)), CAST(1140 AS Numeric(10, 0)), N'8134 - CRM Phase II', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1024, 1410, N'8135', N'+', CAST(16 AS Numeric(10, 0)), CAST(1259 AS Numeric(10, 0)), N'8135 - TFANet Reporting Automation', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1025, 1425, N'8136', N'+', CAST(1 AS Numeric(10, 0)), CAST(1202 AS Numeric(10, 0)), N'8136 - Technology Project', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1026, 1426, N'8137', N'+', CAST(3 AS Numeric(10, 0)), CAST(1218 AS Numeric(10, 0)), N'8137 - Technology Project', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1027, 1422, N'8138', N'+', CAST(19 AS Numeric(10, 0)), CAST(1373 AS Numeric(10, 0)), N'8138 - TRT Dashboards', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1028, 1410, N'8139', N'+', CAST(17 AS Numeric(10, 0)), CAST(1260 AS Numeric(10, 0)), N'8139 - BOXI Conversion', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1029, 1429, N'8140', N'+', CAST(0 AS Numeric(10, 0)), CAST(1233 AS Numeric(10, 0)), N'8140 - RT FY11 Reporting', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1030, 1426, N'8141', N'+', CAST(4 AS Numeric(10, 0)), CAST(1219 AS Numeric(10, 0)), N'8141 - Alumni Affairs BOXI Conversion', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1031, 1425, N'8142', N'+', CAST(3 AS Numeric(10, 0)), CAST(1204 AS Numeric(10, 0)), N'8142 - Placement Reporting', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1032, 1428, N'8143', N'+', CAST(6 AS Numeric(10, 0)), CAST(1227 AS Numeric(10, 0)), N'8143 - Locke Release', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1033, 1428, N'8144', N'+', CAST(7 AS Numeric(10, 0)), CAST(1228 AS Numeric(10, 0)), N'8144 - Froebel Release', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1034, 1415, N'8145', N'+', CAST(1 AS Numeric(10, 0)), CAST(1291 AS Numeric(10, 0)), N'8145 - Video Conferencing', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1035, 1418, N'8146', N'+', CAST(0 AS Numeric(10, 0)), CAST(1331 AS Numeric(10, 0)), N'8146 - SAMS', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1036, 1411, N'8147', N'+', CAST(9 AS Numeric(10, 0)), CAST(1279 AS Numeric(10, 0)), N'8147 - BOXI Upgrade', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1037, 1411, N'8148', N'+', CAST(8 AS Numeric(10, 0)), CAST(1278 AS Numeric(10, 0)), N'8148 - Data Architecture Phase II', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1038, 1416, N'8149', N'+', CAST(29 AS Numeric(10, 0)), CAST(1322 AS Numeric(10, 0)), N'8149 - MACS', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1039, 1416, N'8150', N'+', CAST(30 AS Numeric(10, 0)), CAST(1323 AS Numeric(10, 0)), N'8150 - Desktops', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1040, 1428, N'8151', N'+', CAST(8 AS Numeric(10, 0)), CAST(1229 AS Numeric(10, 0)), N'8151 - Dewey Release', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1041, 1425, N'8152', N'+', CAST(4 AS Numeric(10, 0)), CAST(1205 AS Numeric(10, 0)), N'8152 - Admissions Next Generation', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1042, 1428, N'8153', N'+', CAST(9 AS Numeric(10, 0)), CAST(1230 AS Numeric(10, 0)), N'8153 - Alcott Release', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1043, 1417, N'8154', N'+', CAST(1 AS Numeric(10, 0)), CAST(1329 AS Numeric(10, 0)), N'8154 - Virtual Desktop', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1044, 1407, N'8155', N'+', CAST(1 AS Numeric(10, 0)), CAST(1193 AS Numeric(10, 0)), N'8155 - ECMS', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1045, 1412, N'8156', N'+', CAST(1 AS Numeric(10, 0)), CAST(1282 AS Numeric(10, 0)), N'8156 - Content Delivery Network', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1046, 1413, N'8157', N'+', CAST(1 AS Numeric(10, 0)), CAST(1285 AS Numeric(10, 0)), N'8157 - SDLC', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1047, 1414, N'8158', N'+', CAST(1 AS Numeric(10, 0)), CAST(1288 AS Numeric(10, 0)), N'8158 - Video Platform', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1048, 1408, N'8159', N'+', CAST(2 AS Numeric(10, 0)), CAST(1197 AS Numeric(10, 0)), N'8159 - Intranet Phase II', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1049, 1427, N'7075', N'+', CAST(75 AS Numeric(10, 0)), CAST(1576 AS Numeric(10, 0)), N'7075 - Tulsa', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1050, 1427, N'7076', N'+', CAST(76 AS Numeric(10, 0)), CAST(1577 AS Numeric(10, 0)), N'7076 - National Office Desks (All Floors)', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1051, 1427, N'7077', N'+', CAST(77 AS Numeric(10, 0)), CAST(1578 AS Numeric(10, 0)), N'7077 - Hawaii - Satellite - FY 2010', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1052, 1427, N'7078', N'+', CAST(78 AS Numeric(10, 0)), CAST(1579 AS Numeric(10, 0)), N'7078 - Houston - FY 2010', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1053, 1427, N'7079', N'+', CAST(79 AS Numeric(10, 0)), CAST(1580 AS Numeric(10, 0)), N'7079 - ENC - FY 2010', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1054, 1427, N'7080', N'+', CAST(80 AS Numeric(10, 0)), CAST(1581 AS Numeric(10, 0)), N'7080 - Las Vegas - FY 2010', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1055, 1427, N'7081', N'+', CAST(81 AS Numeric(10, 0)), CAST(1582 AS Numeric(10, 0)), N'7081 - New Haven, CT - FY 2010 ', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1056, 1427, N'7082', N'+', CAST(82 AS Numeric(10, 0)), CAST(1583 AS Numeric(10, 0)), N'7082 - St. Louis - FY 2010', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1057, 1427, N'7083', N'+', CAST(83 AS Numeric(10, 0)), CAST(1584 AS Numeric(10, 0)), N'7083 - Delaware - Satellite - FY 2010 ', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1058, 1427, N'7084', N'+', CAST(84 AS Numeric(10, 0)), CAST(1585 AS Numeric(10, 0)), N'7084 - ENC - Satellite - FY 2010', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1059, 1427, N'7085', N'+', CAST(85 AS Numeric(10, 0)), CAST(1586 AS Numeric(10, 0)), N'7085 - Mississippi Delta - FY 2010', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1060, 1427, N'7086', N'+', CAST(86 AS Numeric(10, 0)), CAST(1587 AS Numeric(10, 0)), N'7086 - Philadelphia - FY 2010', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1061, 1427, N'7087', N'+', CAST(87 AS Numeric(10, 0)), CAST(1588 AS Numeric(10, 0)), N'7087 - Providence, RI - FY 2010', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1062, 1427, N'7088', N'+', CAST(88 AS Numeric(10, 0)), CAST(1589 AS Numeric(10, 0)), N'7088 - San Antonio, TX - FY 2010', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1063, 1427, N'7089', N'+', CAST(89 AS Numeric(10, 0)), CAST(1590 AS Numeric(10, 0)), N'7089 - Selma, AL - FY 2010', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1064, 1427, N'7090', N'+', CAST(90 AS Numeric(10, 0)), CAST(1591 AS Numeric(10, 0)), N'7090 - Sacremento - FY 2010', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1065, 1427, N'7091', N'+', CAST(91 AS Numeric(10, 0)), CAST(1592 AS Numeric(10, 0)), N'7091 - Seattle - FY 2010', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1066, 1427, N'7092', N'+', CAST(92 AS Numeric(10, 0)), CAST(1593 AS Numeric(10, 0)), N'7092 - 9th Floor Filing Room - FY 2010', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1067, 1427, N'7093', N'+', CAST(93 AS Numeric(10, 0)), CAST(1594 AS Numeric(10, 0)), N'7093 - HVAC Upgrade - 5th Floor - FY 2010', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1068, 1427, N'7094', N'+', CAST(94 AS Numeric(10, 0)), CAST(1595 AS Numeric(10, 0)), N'7094 - HVAC Upgrade - 7th Floor - FY 2010', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1069, 1427, N'7095', N'+', CAST(95 AS Numeric(10, 0)), CAST(1596 AS Numeric(10, 0)), N'7095 - Extended Ductwork - 5th & 9th Floors - FY2010', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1070, 1427, N'7096', N'+', CAST(96 AS Numeric(10, 0)), CAST(1597 AS Numeric(10, 0)), N'7096 - Soundproofing/AV - 7th Floor - FY2010', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1071, 1427, N'7097', N'+', CAST(97 AS Numeric(10, 0)), CAST(1598 AS Numeric(10, 0)), N'7097 - Paint-All Floors to meet MKTNG Standards - FY2010', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1072, 1427, N'7098', N'+', CAST(98 AS Numeric(10, 0)), CAST(1599 AS Numeric(10, 0)), N'7098 - 5th Floor Pantry Relocation - FY 2010', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1073, 1427, N'7099', N'+', CAST(99 AS Numeric(10, 0)), CAST(1600 AS Numeric(10, 0)), N'7099 - Restroom Renovation - All Floors - FY 2010', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1074, 1427, N'7100', N'+', CAST(100 AS Numeric(10, 0)), CAST(1601 AS Numeric(10, 0)), N'7100 - DC Regional Office - FY 2010', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1075, 1427, N'7101', N'+', CAST(101 AS Numeric(10, 0)), CAST(1602 AS Numeric(10, 0)), N'7101 - Detroit - FY 2010', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1076, 1427, N'7102', N'+', CAST(102 AS Numeric(10, 0)), CAST(1603 AS Numeric(10, 0)), N'7102 - Dallas - FY 2010', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1077, 1427, N'7103', N'+', CAST(103 AS Numeric(10, 0)), CAST(1604 AS Numeric(10, 0)), N'7103 - Denver - FY 2010', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1078, 1427, N'7104', N'+', CAST(104 AS Numeric(10, 0)), CAST(1605 AS Numeric(10, 0)), N'7104 - NYN 10th Floor ', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1079, 3, N'3872', N'+', CAST(500 AS Numeric(10, 0)), CAST(707 AS Numeric(10, 0)), N'3872 - Yeshiva University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1080, 3, N'3022', N'+', CAST(287 AS Numeric(10, 0)), CAST(494 AS Numeric(10, 0)), N'3022 - Salem College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1081, 2, N'1100', N'+', CAST(112 AS Numeric(10, 0)), CAST(114 AS Numeric(10, 0)), N'1100 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1082, 2, N'1110', N'+', CAST(113 AS Numeric(10, 0)), CAST(115 AS Numeric(10, 0)), N'1110 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1083, 2, N'1120', N'+', CAST(114 AS Numeric(10, 0)), CAST(116 AS Numeric(10, 0)), N'1120 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1084, 2, N'1130', N'+', CAST(115 AS Numeric(10, 0)), CAST(117 AS Numeric(10, 0)), N'1130 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1085, 2, N'1140', N'+', CAST(116 AS Numeric(10, 0)), CAST(118 AS Numeric(10, 0)), N'1140 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1086, 2, N'1150', N'+', CAST(117 AS Numeric(10, 0)), CAST(119 AS Numeric(10, 0)), N'1150 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1087, 2, N'1160', N'+', CAST(118 AS Numeric(10, 0)), CAST(120 AS Numeric(10, 0)), N'1160 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1088, 2, N'1170', N'+', CAST(119 AS Numeric(10, 0)), CAST(121 AS Numeric(10, 0)), N'1170 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1089, 2, N'1180', N'+', CAST(120 AS Numeric(10, 0)), CAST(122 AS Numeric(10, 0)), N'1180 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1090, 2, N'1190', N'+', CAST(121 AS Numeric(10, 0)), CAST(123 AS Numeric(10, 0)), N'1190 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1091, 2, N'1200', N'+', CAST(122 AS Numeric(10, 0)), CAST(124 AS Numeric(10, 0)), N'1200 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1092, 2, N'1210', N'+', CAST(123 AS Numeric(10, 0)), CAST(125 AS Numeric(10, 0)), N'1210 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1093, 2, N'1220', N'+', CAST(124 AS Numeric(10, 0)), CAST(126 AS Numeric(10, 0)), N'1220 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1094, 2, N'1230', N'+', CAST(125 AS Numeric(10, 0)), CAST(127 AS Numeric(10, 0)), N'1230 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1095, 2, N'1240', N'+', CAST(127 AS Numeric(10, 0)), CAST(129 AS Numeric(10, 0)), N'1240 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1096, 2, N'1250', N'+', CAST(128 AS Numeric(10, 0)), CAST(130 AS Numeric(10, 0)), N'1250 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1097, 2, N'1260', N'+', CAST(129 AS Numeric(10, 0)), CAST(131 AS Numeric(10, 0)), N'1260 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1098, 2, N'1270', N'+', CAST(130 AS Numeric(10, 0)), CAST(132 AS Numeric(10, 0)), N'1270 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1099, 2, N'1280', N'+', CAST(131 AS Numeric(10, 0)), CAST(133 AS Numeric(10, 0)), N'1280 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1100, 2, N'1290', N'+', CAST(132 AS Numeric(10, 0)), CAST(134 AS Numeric(10, 0)), N'1290 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1101, 2, N'1300', N'+', CAST(133 AS Numeric(10, 0)), CAST(135 AS Numeric(10, 0)), N'1300 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1102, 2, N'1310', N'+', CAST(134 AS Numeric(10, 0)), CAST(136 AS Numeric(10, 0)), N'1310 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1103, 2, N'1320', N'+', CAST(135 AS Numeric(10, 0)), CAST(137 AS Numeric(10, 0)), N'1320 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1104, 2, N'1330', N'+', CAST(136 AS Numeric(10, 0)), CAST(138 AS Numeric(10, 0)), N'1330 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1105, 2, N'1340', N'+', CAST(137 AS Numeric(10, 0)), CAST(139 AS Numeric(10, 0)), N'1340 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1106, 2, N'1350', N'+', CAST(138 AS Numeric(10, 0)), CAST(140 AS Numeric(10, 0)), N'1350 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1107, 2, N'1360', N'+', CAST(139 AS Numeric(10, 0)), CAST(141 AS Numeric(10, 0)), N'1360 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1108, 2, N'1370', N'+', CAST(140 AS Numeric(10, 0)), CAST(142 AS Numeric(10, 0)), N'1370 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1109, 2, N'1380', N'+', CAST(141 AS Numeric(10, 0)), CAST(143 AS Numeric(10, 0)), N'1380 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1110, 2, N'1390', N'+', CAST(142 AS Numeric(10, 0)), CAST(144 AS Numeric(10, 0)), N'1390 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1111, 2, N'1400', N'+', CAST(143 AS Numeric(10, 0)), CAST(145 AS Numeric(10, 0)), N'1400 - Private', N'Active')

    GO

    print 'Processed 1100 total records'

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1112, 2, N'1410', N'+', CAST(144 AS Numeric(10, 0)), CAST(146 AS Numeric(10, 0)), N'1410 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1113, 2, N'1420', N'+', CAST(145 AS Numeric(10, 0)), CAST(147 AS Numeric(10, 0)), N'1420 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1114, 2, N'1430', N'+', CAST(146 AS Numeric(10, 0)), CAST(148 AS Numeric(10, 0)), N'1430 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1115, 2, N'1440', N'+', CAST(147 AS Numeric(10, 0)), CAST(149 AS Numeric(10, 0)), N'1440 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1116, 2, N'1450', N'+', CAST(148 AS Numeric(10, 0)), CAST(150 AS Numeric(10, 0)), N'1450 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1117, 2, N'1460', N'+', CAST(149 AS Numeric(10, 0)), CAST(151 AS Numeric(10, 0)), N'1460 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1118, 2, N'1470', N'+', CAST(150 AS Numeric(10, 0)), CAST(152 AS Numeric(10, 0)), N'1470 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1119, 2, N'1480', N'+', CAST(151 AS Numeric(10, 0)), CAST(153 AS Numeric(10, 0)), N'1480 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1120, 2, N'1490', N'+', CAST(152 AS Numeric(10, 0)), CAST(154 AS Numeric(10, 0)), N'1490 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1121, 2, N'1500', N'+', CAST(153 AS Numeric(10, 0)), CAST(155 AS Numeric(10, 0)), N'1500 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1122, 2, N'1510', N'+', CAST(154 AS Numeric(10, 0)), CAST(156 AS Numeric(10, 0)), N'1510 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1123, 2, N'1520', N'+', CAST(155 AS Numeric(10, 0)), CAST(157 AS Numeric(10, 0)), N'1520 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1124, 2, N'1530', N'+', CAST(156 AS Numeric(10, 0)), CAST(158 AS Numeric(10, 0)), N'1530 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1125, 2, N'1540', N'+', CAST(157 AS Numeric(10, 0)), CAST(159 AS Numeric(10, 0)), N'1540 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1126, 2, N'1550', N'+', CAST(158 AS Numeric(10, 0)), CAST(160 AS Numeric(10, 0)), N'1550 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1127, 2, N'1560', N'+', CAST(159 AS Numeric(10, 0)), CAST(161 AS Numeric(10, 0)), N'1560 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1128, 2, N'1570', N'+', CAST(160 AS Numeric(10, 0)), CAST(162 AS Numeric(10, 0)), N'1570 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1129, 2, N'1580', N'+', CAST(161 AS Numeric(10, 0)), CAST(163 AS Numeric(10, 0)), N'1580 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1130, 2, N'1590', N'+', CAST(162 AS Numeric(10, 0)), CAST(164 AS Numeric(10, 0)), N'1590 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1131, 2, N'1600', N'+', CAST(163 AS Numeric(10, 0)), CAST(165 AS Numeric(10, 0)), N'1600 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1132, 2, N'1610', N'+', CAST(164 AS Numeric(10, 0)), CAST(166 AS Numeric(10, 0)), N'1610 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1133, 2, N'1620', N'+', CAST(165 AS Numeric(10, 0)), CAST(167 AS Numeric(10, 0)), N'1620 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1134, 2, N'1630', N'+', CAST(166 AS Numeric(10, 0)), CAST(168 AS Numeric(10, 0)), N'1630 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1135, 2, N'1640', N'+', CAST(167 AS Numeric(10, 0)), CAST(169 AS Numeric(10, 0)), N'1640 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1136, 2, N'1650', N'+', CAST(168 AS Numeric(10, 0)), CAST(170 AS Numeric(10, 0)), N'1650 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1137, 2, N'1660', N'+', CAST(169 AS Numeric(10, 0)), CAST(171 AS Numeric(10, 0)), N'1660 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1138, 2, N'1670', N'+', CAST(170 AS Numeric(10, 0)), CAST(172 AS Numeric(10, 0)), N'1670 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1139, 2, N'1680', N'+', CAST(171 AS Numeric(10, 0)), CAST(173 AS Numeric(10, 0)), N'1680 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1140, 2, N'1690', N'+', CAST(172 AS Numeric(10, 0)), CAST(174 AS Numeric(10, 0)), N'1690 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1141, 2, N'1700', N'+', CAST(173 AS Numeric(10, 0)), CAST(175 AS Numeric(10, 0)), N'1700 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1142, 2, N'1710', N'+', CAST(174 AS Numeric(10, 0)), CAST(176 AS Numeric(10, 0)), N'1710 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1143, 2, N'1720', N'+', CAST(175 AS Numeric(10, 0)), CAST(177 AS Numeric(10, 0)), N'1720 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1144, 2, N'1730', N'+', CAST(176 AS Numeric(10, 0)), CAST(178 AS Numeric(10, 0)), N'1730 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1145, 2, N'1740', N'+', CAST(177 AS Numeric(10, 0)), CAST(179 AS Numeric(10, 0)), N'1740 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1146, 2, N'1750', N'+', CAST(178 AS Numeric(10, 0)), CAST(180 AS Numeric(10, 0)), N'1750 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1147, 2, N'1760', N'+', CAST(179 AS Numeric(10, 0)), CAST(181 AS Numeric(10, 0)), N'1760 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1148, 2, N'1770', N'+', CAST(180 AS Numeric(10, 0)), CAST(182 AS Numeric(10, 0)), N'1770 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1149, 2, N'1780', N'+', CAST(181 AS Numeric(10, 0)), CAST(183 AS Numeric(10, 0)), N'1780 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1150, 2, N'1790', N'+', CAST(182 AS Numeric(10, 0)), CAST(184 AS Numeric(10, 0)), N'1790 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1151, 2, N'1800', N'+', CAST(183 AS Numeric(10, 0)), CAST(185 AS Numeric(10, 0)), N'1800 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1152, 2, N'1810', N'+', CAST(184 AS Numeric(10, 0)), CAST(186 AS Numeric(10, 0)), N'1810 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1153, 2, N'1820', N'+', CAST(185 AS Numeric(10, 0)), CAST(187 AS Numeric(10, 0)), N'1820 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1154, 2, N'1830', N'+', CAST(186 AS Numeric(10, 0)), CAST(188 AS Numeric(10, 0)), N'1830 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1155, 2, N'1840', N'+', CAST(187 AS Numeric(10, 0)), CAST(189 AS Numeric(10, 0)), N'1840 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1156, 2, N'1850', N'+', CAST(188 AS Numeric(10, 0)), CAST(190 AS Numeric(10, 0)), N'1850 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1157, 2, N'1860', N'+', CAST(189 AS Numeric(10, 0)), CAST(191 AS Numeric(10, 0)), N'1860 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1158, 2, N'1870', N'+', CAST(190 AS Numeric(10, 0)), CAST(192 AS Numeric(10, 0)), N'1870 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1159, 2, N'1890', N'+', CAST(191 AS Numeric(10, 0)), CAST(193 AS Numeric(10, 0)), N'1890 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1160, 2, N'1900', N'+', CAST(192 AS Numeric(10, 0)), CAST(194 AS Numeric(10, 0)), N'1900 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1161, 2, N'1910', N'+', CAST(193 AS Numeric(10, 0)), CAST(195 AS Numeric(10, 0)), N'1910 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1162, 2, N'1920', N'+', CAST(194 AS Numeric(10, 0)), CAST(196 AS Numeric(10, 0)), N'1920 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1163, 2, N'1930', N'+', CAST(195 AS Numeric(10, 0)), CAST(197 AS Numeric(10, 0)), N'1930 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1164, 2, N'1940', N'+', CAST(196 AS Numeric(10, 0)), CAST(198 AS Numeric(10, 0)), N'1940 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1165, 2, N'1950', N'+', CAST(197 AS Numeric(10, 0)), CAST(199 AS Numeric(10, 0)), N'1950 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1166, 2, N'1960', N'+', CAST(198 AS Numeric(10, 0)), CAST(200 AS Numeric(10, 0)), N'1960 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1167, 2, N'1970', N'+', CAST(199 AS Numeric(10, 0)), CAST(201 AS Numeric(10, 0)), N'1970 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1168, 2, N'1980', N'+', CAST(200 AS Numeric(10, 0)), CAST(202 AS Numeric(10, 0)), N'1980 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1169, 2, N'1990', N'+', CAST(201 AS Numeric(10, 0)), CAST(203 AS Numeric(10, 0)), N'1990 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1170, 0, N'Bad TCs', N'~', CAST(3 AS Numeric(10, 0)), CAST(732 AS Numeric(10, 0)), N'Bad TCs', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1171, 1170, N'A1SL', N'+', CAST(0 AS Numeric(10, 0)), CAST(733 AS Numeric(10, 0)), N'', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1172, 1170, N'A4DL', N'+', CAST(1 AS Numeric(10, 0)), CAST(734 AS Numeric(10, 0)), N'', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1173, 1170, N'3006', N'+', CAST(2 AS Numeric(10, 0)), CAST(735 AS Numeric(10, 0)), N'3006 - Bad TC', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1174, 1170, N'RHDS', N'+', CAST(3 AS Numeric(10, 0)), CAST(736 AS Numeric(10, 0)), N'', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1175, 1170, N'UTNK', N'+', CAST(4 AS Numeric(10, 0)), CAST(737 AS Numeric(10, 0)), N'', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1176, 1170, N'SELT', N'+', CAST(5 AS Numeric(10, 0)), CAST(738 AS Numeric(10, 0)), N'', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1177, 1203, N'9999', N'+', CAST(2 AS Numeric(10, 0)), CAST(1710 AS Numeric(10, 0)), N'9999 - Feb Savings Ident', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1178, 1403, N'4000', N'+', CAST(0 AS Numeric(10, 0)), CAST(1436 AS Numeric(10, 0)), N'4000 - Allocated Rent', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1179, 3, N'3876', N'+', CAST(501 AS Numeric(10, 0)), CAST(708 AS Numeric(10, 0)), N'3876 - St. Mary''s Univ of San Ant', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1180, 3, N'3880', N'+', CAST(502 AS Numeric(10, 0)), CAST(709 AS Numeric(10, 0)), N'3880 - Dallas Theological Seminary', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1181, 3, N'3884', N'+', CAST(503 AS Numeric(10, 0)), CAST(710 AS Numeric(10, 0)), N'3884 - Stephen Austin University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1182, 3, N'3888', N'+', CAST(504 AS Numeric(10, 0)), CAST(711 AS Numeric(10, 0)), N'3888 - Texas Women''s University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1183, 3, N'3892', N'+', CAST(505 AS Numeric(10, 0)), CAST(712 AS Numeric(10, 0)), N'3892 - University of Portland', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1184, 3, N'3896', N'+', CAST(506 AS Numeric(10, 0)), CAST(713 AS Numeric(10, 0)), N'3896 - Fuller Theological Seminary', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1185, 3, N'3900', N'+', CAST(507 AS Numeric(10, 0)), CAST(714 AS Numeric(10, 0)), N'3900 - Point Loma Nazarene', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1186, 3, N'3904', N'+', CAST(508 AS Numeric(10, 0)), CAST(715 AS Numeric(10, 0)), N'3904 - Florida A&M University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1187, 3, N'3908', N'+', CAST(509 AS Numeric(10, 0)), CAST(716 AS Numeric(10, 0)), N'3908 - Interdenom Theo Cent', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1188, 3, N'3912', N'+', CAST(510 AS Numeric(10, 0)), CAST(717 AS Numeric(10, 0)), N'3912 - North Carolina Central', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1189, 3, N'3916', N'+', CAST(511 AS Numeric(10, 0)), CAST(718 AS Numeric(10, 0)), N'3916 - Tuskegee University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1190, 3, N'3920', N'+', CAST(512 AS Numeric(10, 0)), CAST(719 AS Numeric(10, 0)), N'3920 - Bowie State University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1191, 3, N'3924', N'+', CAST(513 AS Numeric(10, 0)), CAST(720 AS Numeric(10, 0)), N'3924 - Texas Southern University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1192, 3, N'3928', N'+', CAST(514 AS Numeric(10, 0)), CAST(721 AS Numeric(10, 0)), N'3928 - Grambling University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1193, 3, N'3932', N'+', CAST(515 AS Numeric(10, 0)), CAST(722 AS Numeric(10, 0)), N'3932 - Tougaloo College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1194, 3, N'3936', N'+', CAST(516 AS Numeric(10, 0)), CAST(723 AS Numeric(10, 0)), N'3936 - Alabama A&M', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1195, 3, N'3940', N'+', CAST(517 AS Numeric(10, 0)), CAST(724 AS Numeric(10, 0)), N'3940 - Oakwood University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1196, 3, N'3944', N'+', CAST(518 AS Numeric(10, 0)), CAST(725 AS Numeric(10, 0)), N'3944 - Lane College', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1197, 3, N'3948', N'+', CAST(519 AS Numeric(10, 0)), CAST(726 AS Numeric(10, 0)), N'3948 - California State Univ-Channel Islands', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1198, 3, N'3952', N'+', CAST(520 AS Numeric(10, 0)), CAST(727 AS Numeric(10, 0)), N'3952 - California State University-Chico', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1199, 3, N'3956', N'+', CAST(521 AS Numeric(10, 0)), CAST(728 AS Numeric(10, 0)), N'3956 - Humboldt State University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1200, 3, N'3960', N'+', CAST(522 AS Numeric(10, 0)), CAST(729 AS Numeric(10, 0)), N'3960 - California Maritime Academy', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1201, 3, N'3964', N'+', CAST(523 AS Numeric(10, 0)), CAST(730 AS Numeric(10, 0)), N'3964 - California State Univ-Monterey Bay', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1202, 3, N'3968', N'+', CAST(524 AS Numeric(10, 0)), CAST(731 AS Numeric(10, 0)), N'3968 - Sonoma State University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1203, 0, N'P&A Use Only', N'+', CAST(7 AS Numeric(10, 0)), CAST(1707 AS Numeric(10, 0)), N'P&A Use Only', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1204, 1206, N'9000', N'+', CAST(0 AS Numeric(10, 0)), CAST(1712 AS Numeric(10, 0)), N'9000 - P&A Placeholder', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1205, 1206, N'9001', N'+', CAST(1 AS Numeric(10, 0)), CAST(1713 AS Numeric(10, 0)), N'9001 - RC', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1206, 1203, N'BA - Carl', N'~', CAST(3 AS Numeric(10, 0)), CAST(1711 AS Numeric(10, 0)), N'BA - Carl', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1207, 1206, N'9002', N'+', CAST(2 AS Numeric(10, 0)), CAST(1714 AS Numeric(10, 0)), N'9002 - MDR', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1208, 4, N'4510', N'+', CAST(284 AS Numeric(10, 0)), CAST(1064 AS Numeric(10, 0)), N'4510 - Medical Plan Fees', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1209, 4, N'4511', N'+', CAST(285 AS Numeric(10, 0)), CAST(1065 AS Numeric(10, 0)), N'4511 - Hlth Ins Employee Contrib', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1210, 4, N'4512', N'+', CAST(286 AS Numeric(10, 0)), CAST(1066 AS Numeric(10, 0)), N'4512 - EAP', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1211, 4, N'4513', N'+', CAST(287 AS Numeric(10, 0)), CAST(1067 AS Numeric(10, 0)), N'4513 - Life insurance', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1212, 4, N'4514', N'+', CAST(288 AS Numeric(10, 0)), CAST(1068 AS Numeric(10, 0)), N'4514 - AD&D', N'Active')

    GO

    print 'Processed 1200 total records'

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1213, 4, N'4515', N'+', CAST(289 AS Numeric(10, 0)), CAST(1069 AS Numeric(10, 0)), N'4515 - COBRA admin fee', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1214, 4, N'4516', N'+', CAST(290 AS Numeric(10, 0)), CAST(1070 AS Numeric(10, 0)), N'4516 - COBRA premiums', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1215, 4, N'4520', N'+', CAST(292 AS Numeric(10, 0)), CAST(1072 AS Numeric(10, 0)), N'4520 - WC Premiums', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1216, 4, N'4521', N'+', CAST(293 AS Numeric(10, 0)), CAST(1073 AS Numeric(10, 0)), N'4521 - WC True-up', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1217, 4, N'4530', N'+', CAST(294 AS Numeric(10, 0)), CAST(1074 AS Numeric(10, 0)), N'4530 - ST Stat Disability Prem', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1218, 4, N'4531', N'+', CAST(295 AS Numeric(10, 0)), CAST(1075 AS Numeric(10, 0)), N'4531 - LT Disability Prem', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1219, 4, N'4532', N'+', CAST(296 AS Numeric(10, 0)), CAST(1076 AS Numeric(10, 0)), N'4532 - ST Disability recoup', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1220, 4, N'4540', N'+', CAST(297 AS Numeric(10, 0)), CAST(1077 AS Numeric(10, 0)), N'4540 - 403(b) Match', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1221, 4, N'4541', N'+', CAST(298 AS Numeric(10, 0)), CAST(1078 AS Numeric(10, 0)), N'4541 - 403(b) Service Fees', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1222, 4, N'4550', N'+', CAST(299 AS Numeric(10, 0)), CAST(1079 AS Numeric(10, 0)), N'4550 - Transit Program Fees', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1223, 4, N'4551', N'+', CAST(300 AS Numeric(10, 0)), CAST(1080 AS Numeric(10, 0)), N'4551 - Transit Employee Contrib', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1224, 1170, N'1/2 Al-SL', N'+', CAST(6 AS Numeric(10, 0)), CAST(739 AS Numeric(10, 0)), N'', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1225, 1170, N'1111', N'+', CAST(7 AS Numeric(10, 0)), CAST(740 AS Numeric(10, 0)), N'', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1226, 1170, N'8645', N'+', CAST(8 AS Numeric(10, 0)), CAST(741 AS Numeric(10, 0)), N'', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1227, 1170, N'AL-SL', N'+', CAST(9 AS Numeric(10, 0)), CAST(742 AS Numeric(10, 0)), N'', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1228, 1170, N'ALUM-BAY', N'+', CAST(10 AS Numeric(10, 0)), CAST(743 AS Numeric(10, 0)), N'', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1229, 1170, N'ALUM-SUM', N'+', CAST(11 AS Numeric(10, 0)), CAST(744 AS Numeric(10, 0)), N'', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1230, 1170, N'MINNED08CONF-JUL', N'+', CAST(12 AS Numeric(10, 0)), CAST(745 AS Numeric(10, 0)), N'', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1231, 1170, N'NHO07', N'+', CAST(13 AS Numeric(10, 0)), CAST(746 AS Numeric(10, 0)), N'', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1232, 1170, N'NHO08', N'+', CAST(14 AS Numeric(10, 0)), CAST(747 AS Numeric(10, 0)), N'', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1233, 1170, N'RTFEB', N'+', CAST(16 AS Numeric(10, 0)), CAST(749 AS Numeric(10, 0)), N'', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1234, 1170, N'RTGET', N'+', CAST(17 AS Numeric(10, 0)), CAST(750 AS Numeric(10, 0)), N'', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1235, 1170, N'RTRU', N'+', CAST(18 AS Numeric(10, 0)), CAST(751 AS Numeric(10, 0)), N'', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1236, 1170, N'RTUCPA', N'+', CAST(19 AS Numeric(10, 0)), CAST(752 AS Numeric(10, 0)), N'', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1237, 1170, N'S2MPCONF-SEPT', N'+', CAST(20 AS Numeric(10, 0)), CAST(753 AS Numeric(10, 0)), N'', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1238, 1170, N'SID3', N'+', CAST(21 AS Numeric(10, 0)), CAST(754 AS Numeric(10, 0)), N'', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1239, 1170, N'T0838', N'+', CAST(22 AS Numeric(10, 0)), CAST(755 AS Numeric(10, 0)), N'', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1240, 1170, N'T0840', N'+', CAST(23 AS Numeric(10, 0)), CAST(756 AS Numeric(10, 0)), N'', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1241, 1170, N'TP-PSC', N'+', CAST(24 AS Numeric(10, 0)), CAST(757 AS Numeric(10, 0)), N'', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1242, 1170, N'TPSD-ILE', N'+', CAST(25 AS Numeric(10, 0)), CAST(758 AS Numeric(10, 0)), N'', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1243, 1170, N'TPT-PSC', N'+', CAST(26 AS Numeric(10, 0)), CAST(759 AS Numeric(10, 0)), N'', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1244, 1170, N'TPT-RETREAT', N'+', CAST(27 AS Numeric(10, 0)), CAST(760 AS Numeric(10, 0)), N'', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1245, 1170, N'TSD', N'+', CAST(28 AS Numeric(10, 0)), CAST(761 AS Numeric(10, 0)), N'', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1246, 1170, N'TSD-FallDenver', N'+', CAST(29 AS Numeric(10, 0)), CAST(762 AS Numeric(10, 0)), N'', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1247, 1170, N'TSD-FallNewark', N'+', CAST(30 AS Numeric(10, 0)), CAST(763 AS Numeric(10, 0)), N'', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1248, 1170, N'TSD-MD-TRAVEL', N'+', CAST(31 AS Numeric(10, 0)), CAST(764 AS Numeric(10, 0)), N'', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1249, 1170, N'TSD-MDP1', N'+', CAST(32 AS Numeric(10, 0)), CAST(765 AS Numeric(10, 0)), N'', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1250, 1170, N'TSD-MDP2', N'+', CAST(33 AS Numeric(10, 0)), CAST(766 AS Numeric(10, 0)), N'', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1251, 1170, N'TSD-NWEA', N'+', CAST(34 AS Numeric(10, 0)), CAST(767 AS Numeric(10, 0)), N'', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1252, 1170, N'TSD-PD1', N'+', CAST(35 AS Numeric(10, 0)), CAST(768 AS Numeric(10, 0)), N'', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1253, 1170, N'TSD-PM1', N'+', CAST(36 AS Numeric(10, 0)), CAST(769 AS Numeric(10, 0)), N'', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1254, 1170, N'TSD-RETREATS', N'+', CAST(37 AS Numeric(10, 0)), CAST(770 AS Numeric(10, 0)), N'', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1255, 1170, N'NHO10', N'+', CAST(15 AS Numeric(10, 0)), CAST(748 AS Numeric(10, 0)), N'', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1256, 4, N'4560', N'+', CAST(303 AS Numeric(10, 0)), CAST(1083 AS Numeric(10, 0)), N'4560 - Year of Service Gifts', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1257, 4, N'4561', N'+', CAST(304 AS Numeric(10, 0)), CAST(1084 AS Numeric(10, 0)), N'4561 - Day Care', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1258, 4, N'4559', N'+', CAST(302 AS Numeric(10, 0)), CAST(1082 AS Numeric(10, 0)), N'4559 - HA Allocated Overtime Costs', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1259, 4, N'4570', N'+', CAST(308 AS Numeric(10, 0)), CAST(1088 AS Numeric(10, 0)), N'4570 - Expansion Region Budgets', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1260, 1203, N'9500', N'+', CAST(0 AS Numeric(10, 0)), CAST(1708 AS Numeric(10, 0)), N'9500 - Qtr Functional Allocation of Expenses', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1261, 4, N'4571', N'+', CAST(309 AS Numeric(10, 0)), CAST(1089 AS Numeric(10, 0)), N'4571 - New Site Placeholders', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1262, 4, N'4509', N'+', CAST(283 AS Numeric(10, 0)), CAST(1063 AS Numeric(10, 0)), N'4509 - New Hire Orientation 7', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1263, 3, N'2169', N'+', CAST(72 AS Numeric(10, 0)), CAST(279 AS Numeric(10, 0)), N'2169 - Cali. State U-Chico', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1264, 3, N'2842', N'+', CAST(241 AS Numeric(10, 0)), CAST(448 AS Numeric(10, 0)), N'2842 - Northern Arizona University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1265, 4, N'4502', N'+', CAST(276 AS Numeric(10, 0)), CAST(1056 AS Numeric(10, 0)), N'4502 - Org Effectiveness Pilot 1', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1266, 4, N'4503', N'+', CAST(277 AS Numeric(10, 0)), CAST(1057 AS Numeric(10, 0)), N'4503 - Org Effectiveness Pilot 2', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1267, 4, N'4504', N'+', CAST(278 AS Numeric(10, 0)), CAST(1058 AS Numeric(10, 0)), N'4504 - Org Effectiveness Pilot 3', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1268, 4, N'4505', N'+', CAST(279 AS Numeric(10, 0)), CAST(1059 AS Numeric(10, 0)), N'4505 - Org Effectiveness Pilot 4', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1269, 4, N'4506', N'+', CAST(280 AS Numeric(10, 0)), CAST(1060 AS Numeric(10, 0)), N'4506 - Org Effectiveness Pilot 5', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1270, 4, N'4507', N'+', CAST(281 AS Numeric(10, 0)), CAST(1061 AS Numeric(10, 0)), N'4507 - Org Effectiveness Pilot 6', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1271, 4, N'4508', N'+', CAST(282 AS Numeric(10, 0)), CAST(1062 AS Numeric(10, 0)), N'4508 - Org Effectiveness Pilot 7', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1272, 4, N'4562', N'+', CAST(305 AS Numeric(10, 0)), CAST(1085 AS Numeric(10, 0)), N'4562 - District Strategy Conference', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1273, 4, N'4563', N'+', CAST(306 AS Numeric(10, 0)), CAST(1086 AS Numeric(10, 0)), N'4563 - RT Regional Pilot', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1274, 4, N'4301', N'+', CAST(232 AS Numeric(10, 0)), CAST(1012 AS Numeric(10, 0)), N'4301 - Institute: Summer School Expenses', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1275, 4, N'4302', N'+', CAST(233 AS Numeric(10, 0)), CAST(1013 AS Numeric(10, 0)), N'4302 - Institute: Pre-K Expenses', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1276, 4, N'4303', N'+', CAST(234 AS Numeric(10, 0)), CAST(1014 AS Numeric(10, 0)), N'4303 - Institute: External Print Jobs (DRA, ISAT, etc)', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1277, 4, N'4304', N'+', CAST(235 AS Numeric(10, 0)), CAST(1015 AS Numeric(10, 0)), N'4304 - Institute: Discretionary General', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1278, 4, N'4305', N'+', CAST(236 AS Numeric(10, 0)), CAST(1016 AS Numeric(10, 0)), N'4305 - Institute: Year-Round IMT Office Expenses', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1279, 4, N'4310', N'+', CAST(239 AS Numeric(10, 0)), CAST(1019 AS Numeric(10, 0)), N'4310 - Institute: Summer Staff', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1280, 4, N'4311', N'+', CAST(240 AS Numeric(10, 0)), CAST(1020 AS Numeric(10, 0)), N'4311 - Institute: Discretionary Staff', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1281, 4, N'4312', N'+', CAST(241 AS Numeric(10, 0)), CAST(1021 AS Numeric(10, 0)), N'4312 - Institute: Discretionary University', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1282, 4, N'4313', N'+', CAST(242 AS Numeric(10, 0)), CAST(1022 AS Numeric(10, 0)), N'4313 - Institute: Discretionary District', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1283, 4, N'4314', N'+', CAST(243 AS Numeric(10, 0)), CAST(1023 AS Numeric(10, 0)), N'4314 - Institute: Summer Staff - MS', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1284, 4, N'4315', N'+', CAST(244 AS Numeric(10, 0)), CAST(1024 AS Numeric(10, 0)), N'4315 - Institute: Summer Staff - CS', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1285, 4, N'4316', N'+', CAST(245 AS Numeric(10, 0)), CAST(1025 AS Numeric(10, 0)), N'4316 - Institute: Summer Staff - CC', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1286, 4, N'4317', N'+', CAST(246 AS Numeric(10, 0)), CAST(1026 AS Numeric(10, 0)), N'4317 - Institute: Summer Staff - CMAC', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1287, 4, N'4318', N'+', CAST(247 AS Numeric(10, 0)), CAST(1027 AS Numeric(10, 0)), N'4318 - Institute: Summer Staff - OD', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1288, 4, N'4319', N'+', CAST(248 AS Numeric(10, 0)), CAST(1028 AS Numeric(10, 0)), N'4319 - Institute: Summer Staff - DDM', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1289, 4, N'4320', N'+', CAST(249 AS Numeric(10, 0)), CAST(1029 AS Numeric(10, 0)), N'4320 - Institute: Summer Staff - SOMC', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1290, 4, N'4321', N'+', CAST(250 AS Numeric(10, 0)), CAST(1030 AS Numeric(10, 0)), N'4321 - Institute: Summer Staff - ILTL', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1291, 4, N'4322', N'+', CAST(251 AS Numeric(10, 0)), CAST(1031 AS Numeric(10, 0)), N'4322 - Institute: External IVers', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1292, 4, N'4323', N'+', CAST(252 AS Numeric(10, 0)), CAST(1032 AS Numeric(10, 0)), N'4323 - Institute: Summer Staff - RRS', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1293, 4, N'4324', N'+', CAST(253 AS Numeric(10, 0)), CAST(1033 AS Numeric(10, 0)), N'4324 - Institute: Summer Staff - OC', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1294, 4, N'4325', N'+', CAST(254 AS Numeric(10, 0)), CAST(1034 AS Numeric(10, 0)), N'4325 - Institute: Summer Staff - CMA Overhire', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1295, 4, N'4326', N'+', CAST(255 AS Numeric(10, 0)), CAST(1035 AS Numeric(10, 0)), N'4326 - Institute: Summer Staff - SD-Level Position', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1296, 4, N'4327', N'+', CAST(256 AS Numeric(10, 0)), CAST(1036 AS Numeric(10, 0)), N'4327 - Institute: Summer Staff - SD Overhire', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1297, 4, N'4328', N'+', CAST(257 AS Numeric(10, 0)), CAST(1037 AS Numeric(10, 0)), N'4328 - Institute: Summer Staff - CS/LS/MS Overhire', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1298, 4, N'4329', N'+', CAST(258 AS Numeric(10, 0)), CAST(1038 AS Numeric(10, 0)), N'4329 - Institute: Summer Staff - Content Specialists', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1299, 4, N'4300', N'+', CAST(231 AS Numeric(10, 0)), CAST(1011 AS Numeric(10, 0)), N'4300 - Institute: FT Summer Staff Placeholder', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1300, 1203, N'5555', N'+', CAST(1 AS Numeric(10, 0)), CAST(1709 AS Numeric(10, 0)), N'5555 - temp', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1301, 4, N'4309', N'+', CAST(238 AS Numeric(10, 0)), CAST(1018 AS Numeric(10, 0)), N'4309 - Institute: Summer Staff Payroll Tax', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1302, 4, N'4330', N'+', CAST(259 AS Numeric(10, 0)), CAST(1039 AS Numeric(10, 0)), N'4330 - Institute: Part-time Institute Employee', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1303, 4, N'4307', N'+', CAST(237 AS Numeric(10, 0)), CAST(1017 AS Numeric(10, 0)), N'4307 - VP Approved Requests', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1304, 1427, N'7127', N'+', CAST(127 AS Numeric(10, 0)), CAST(1628 AS Numeric(10, 0)), N'7127 - FY11 - Kansas City', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1305, 1427, N'7105', N'+', CAST(105 AS Numeric(10, 0)), CAST(1606 AS Numeric(10, 0)), N'7105 - Memphis - FY2010', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1306, 1427, N'7106', N'+', CAST(106 AS Numeric(10, 0)), CAST(1607 AS Numeric(10, 0)), N'7106 - Bay Area - FY2010', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1307, 1427, N'7107', N'+', CAST(107 AS Numeric(10, 0)), CAST(1608 AS Numeric(10, 0)), N'7107 - New Mexico - FY2010', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1308, 4, N'4564', N'+', CAST(307 AS Numeric(10, 0)), CAST(1087 AS Numeric(10, 0)), N'4564 - Regional Early Hire Salaries', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1309, 4, N'4552', N'+', CAST(301 AS Numeric(10, 0)), CAST(1081 AS Numeric(10, 0)), N'4552 - Social Media Conferences ', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1310, 1427, N'7108', N'+', CAST(108 AS Numeric(10, 0)), CAST(1609 AS Numeric(10, 0)), N'7108 - FY11 - Gallup - FFE Only', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1311, 1427, N'7109', N'+', CAST(109 AS Numeric(10, 0)), CAST(1610 AS Numeric(10, 0)), N'7109 - FY11 - Tulsa - FFE Only', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1312, 1427, N'7110', N'+', CAST(110 AS Numeric(10, 0)), CAST(1611 AS Numeric(10, 0)), N'7110 - FY11 - Boston', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1313, 1427, N'7111', N'+', CAST(111 AS Numeric(10, 0)), CAST(1612 AS Numeric(10, 0)), N'7111 - FY11 - NY National - 6FL Renovation', N'Active')

    GO

    print 'Processed 1300 total records'

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1314, 1427, N'7112', N'+', CAST(112 AS Numeric(10, 0)), CAST(1613 AS Numeric(10, 0)), N'7112 - FY11 - NY National - Org-wide signage', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1315, 1427, N'7113', N'+', CAST(113 AS Numeric(10, 0)), CAST(1614 AS Numeric(10, 0)), N'7113 - FY11 - NY National - Painting', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1316, 1427, N'7114', N'+', CAST(114 AS Numeric(10, 0)), CAST(1615 AS Numeric(10, 0)), N'7114 - FY11 - NY National Office Expansion', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1317, 1427, N'7115', N'+', CAST(115 AS Numeric(10, 0)), CAST(1616 AS Numeric(10, 0)), N'7115 - FY11 - NY National - 8FL Reception', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1318, 1427, N'7116', N'+', CAST(116 AS Numeric(10, 0)), CAST(1617 AS Numeric(10, 0)), N'7116 - FY11 - NY National - 7FL Pantry', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1319, 1427, N'7117', N'+', CAST(117 AS Numeric(10, 0)), CAST(1618 AS Numeric(10, 0)), N'7117 - FY11 - NY National - 7FL Reception', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1320, 1427, N'7118', N'+', CAST(118 AS Numeric(10, 0)), CAST(1619 AS Numeric(10, 0)), N'7118 - FY11 - NY National - 7FL Copy Room', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1321, 1427, N'7119', N'+', CAST(119 AS Numeric(10, 0)), CAST(1620 AS Numeric(10, 0)), N'7119 - FY11 - NY National - Additional Workstations', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1322, 1427, N'7120', N'+', CAST(120 AS Numeric(10, 0)), CAST(1621 AS Numeric(10, 0)), N'7120 - FY11 - NY National - HVAC Upgrades', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1323, 1427, N'7121', N'+', CAST(121 AS Numeric(10, 0)), CAST(1622 AS Numeric(10, 0)), N'7121 - FY11 - Org-Wide Additional Décor Fund', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1324, 1427, N'7122', N'+', CAST(122 AS Numeric(10, 0)), CAST(1623 AS Numeric(10, 0)), N'7122 - FY11 - New Site TBD (5k RSF)', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1325, 1427, N'7123', N'+', CAST(123 AS Numeric(10, 0)), CAST(1624 AS Numeric(10, 0)), N'7123 - FY11 - Appalachia', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1326, 1427, N'7124', N'+', CAST(124 AS Numeric(10, 0)), CAST(1625 AS Numeric(10, 0)), N'7124 - FY11 - DC National', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1327, 1427, N'7125', N'+', CAST(125 AS Numeric(10, 0)), CAST(1626 AS Numeric(10, 0)), N'7125 - FY11 - Atlanta', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1328, 1427, N'7126', N'+', CAST(126 AS Numeric(10, 0)), CAST(1627 AS Numeric(10, 0)), N'7126 - FY11 - South Carolina', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1329, 1427, N'7129', N'+', CAST(129 AS Numeric(10, 0)), CAST(1630 AS Numeric(10, 0)), N'7129 - FY11 - Philadelphia', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1330, 1427, N'7128', N'+', CAST(128 AS Numeric(10, 0)), CAST(1629 AS Numeric(10, 0)), N'7128 - FY11 - Nashville', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1331, 1427, N'7130', N'+', CAST(130 AS Numeric(10, 0)), CAST(1631 AS Numeric(10, 0)), N'7130 - FY11 - NY Regional', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1332, 1427, N'7131', N'+', CAST(131 AS Numeric(10, 0)), CAST(1632 AS Numeric(10, 0)), N'7131 - FY11 - Denver', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1333, 1427, N'7132', N'+', CAST(132 AS Numeric(10, 0)), CAST(1633 AS Numeric(10, 0)), N'7132 - FY11 - Las Vegas', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1334, 1427, N'7133', N'+', CAST(133 AS Numeric(10, 0)), CAST(1634 AS Numeric(10, 0)), N'7133 - FY11 - Houston', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1335, 1427, N'7134', N'+', CAST(134 AS Numeric(10, 0)), CAST(1635 AS Numeric(10, 0)), N'7134 - FY11 - Memphis', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1336, 1427, N'7135', N'+', CAST(135 AS Numeric(10, 0)), CAST(1636 AS Numeric(10, 0)), N'7135 - FY11 - Bay Area', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1337, 1427, N'7136', N'+', CAST(136 AS Numeric(10, 0)), CAST(1637 AS Numeric(10, 0)), N'7136 - FY11 - Indianapolis', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1338, 1427, N'7137', N'+', CAST(137 AS Numeric(10, 0)), CAST(1638 AS Numeric(10, 0)), N'7137 - FY11 - MS Delta - upgrades to all sites', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1339, 1427, N'7138', N'+', CAST(138 AS Numeric(10, 0)), CAST(1639 AS Numeric(10, 0)), N'7138 - FY11 - Kona', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1340, 1427, N'7139', N'+', CAST(139 AS Numeric(10, 0)), CAST(1640 AS Numeric(10, 0)), N'7139 - FY11 - Delaware', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1341, 3, N'2149', N'+', CAST(66 AS Numeric(10, 0)), CAST(273 AS Numeric(10, 0)), N'2149 - Unknown', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1342, 2, N'0048', N'+', CAST(5 AS Numeric(10, 0)), CAST(7 AS Numeric(10, 0)), N'0048 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1343, 3, N'2141', N'+', CAST(62 AS Numeric(10, 0)), CAST(269 AS Numeric(10, 0)), N'2141 - Unknown', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1344, 1403, N'7501', N'+', CAST(1 AS Numeric(10, 0)), CAST(1437 AS Numeric(10, 0)), N'7501 - Alabama/ALA', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1345, 1403, N'7502', N'+', CAST(2 AS Numeric(10, 0)), CAST(1438 AS Numeric(10, 0)), N'7502 - Atlanta/ATL', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1346, 1403, N'7503', N'+', CAST(3 AS Numeric(10, 0)), CAST(1439 AS Numeric(10, 0)), N'7503 - Baltimore/BAL', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1347, 1403, N'7504', N'+', CAST(4 AS Numeric(10, 0)), CAST(1440 AS Numeric(10, 0)), N'7504 - Boston/BOS', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1348, 1403, N'7505', N'+', CAST(5 AS Numeric(10, 0)), CAST(1441 AS Numeric(10, 0)), N'7505 - Chicago/CHG', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1349, 1403, N'7506', N'+', CAST(6 AS Numeric(10, 0)), CAST(1442 AS Numeric(10, 0)), N'7506 - Charlotte/CHR', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1350, 1403, N'7507', N'+', CAST(7 AS Numeric(10, 0)), CAST(1443 AS Numeric(10, 0)), N'7507 - Connecticut/CT', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1351, 1403, N'7508', N'+', CAST(8 AS Numeric(10, 0)), CAST(1444 AS Numeric(10, 0)), N'7508 - Dallas/DAL', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1352, 1403, N'7509', N'+', CAST(9 AS Numeric(10, 0)), CAST(1445 AS Numeric(10, 0)), N'7509 - Washington, DC National/DCN', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1353, 1403, N'7510', N'+', CAST(10 AS Numeric(10, 0)), CAST(1446 AS Numeric(10, 0)), N'7510 - Washington, DC/DCR', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1354, 1403, N'7511', N'+', CAST(11 AS Numeric(10, 0)), CAST(1447 AS Numeric(10, 0)), N'7511 - Denver/DEN', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1355, 1403, N'7512', N'+', CAST(12 AS Numeric(10, 0)), CAST(1448 AS Numeric(10, 0)), N'7512 - Detroit/DET', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1356, 1403, N'7513', N'+', CAST(13 AS Numeric(10, 0)), CAST(1449 AS Numeric(10, 0)), N'7513 - North Carolina/ENC', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1357, 1403, N'7514', N'+', CAST(14 AS Numeric(10, 0)), CAST(1450 AS Numeric(10, 0)), N'7514 - New Jersey/EWR', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1358, 1403, N'7515', N'+', CAST(15 AS Numeric(10, 0)), CAST(1451 AS Numeric(10, 0)), N'7515 - New Mexico/GNM', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1359, 1403, N'7516', N'+', CAST(16 AS Numeric(10, 0)), CAST(1452 AS Numeric(10, 0)), N'7516 - Greater New Orleans/GNO', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1360, 1403, N'7517', N'+', CAST(17 AS Numeric(10, 0)), CAST(1453 AS Numeric(10, 0)), N'7517 - Hawaii/HAW', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1361, 1403, N'7518', N'+', CAST(18 AS Numeric(10, 0)), CAST(1454 AS Numeric(10, 0)), N'7518 - Houston/HOU', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1362, 1403, N'7519', N'+', CAST(19 AS Numeric(10, 0)), CAST(1455 AS Numeric(10, 0)), N'7519 - Indianapolis, Indiana/IND', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1363, 1403, N'7520', N'+', CAST(20 AS Numeric(10, 0)), CAST(1456 AS Numeric(10, 0)), N'7520 - Jacksonville, Florida/JAX', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1364, 1403, N'7521', N'+', CAST(21 AS Numeric(10, 0)), CAST(1457 AS Numeric(10, 0)), N'7521 - Kansas City, Missouri/KAN', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1365, 1403, N'7522', N'+', CAST(22 AS Numeric(10, 0)), CAST(1458 AS Numeric(10, 0)), N'7522 - Las Vegas Valley/LAS', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1366, 1403, N'7523', N'+', CAST(23 AS Numeric(10, 0)), CAST(1459 AS Numeric(10, 0)), N'7523 - Los Angeles/LAX', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1367, 1403, N'7524', N'+', CAST(24 AS Numeric(10, 0)), CAST(1460 AS Numeric(10, 0)), N'7524 - Memphis/MEM', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1368, 1403, N'7525', N'+', CAST(25 AS Numeric(10, 0)), CAST(1461 AS Numeric(10, 0)), N'7525 - Miami-Dade/MIA', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1369, 1403, N'7526', N'+', CAST(26 AS Numeric(10, 0)), CAST(1462 AS Numeric(10, 0)), N'7526 - Milwaukee/MIL', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1370, 1403, N'7527', N'+', CAST(27 AS Numeric(10, 0)), CAST(1463 AS Numeric(10, 0)), N'7527 - Minneapolis/MIN', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1371, 1403, N'7528', N'+', CAST(28 AS Numeric(10, 0)), CAST(1464 AS Numeric(10, 0)), N'7528 - Mississippi Delta/MIS', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1372, 1403, N'7529', N'+', CAST(29 AS Numeric(10, 0)), CAST(1465 AS Numeric(10, 0)), N'7529 - Nashville/NAS', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1373, 1403, N'7530', N'+', CAST(30 AS Numeric(10, 0)), CAST(1466 AS Numeric(10, 0)), N'7530 - New York/NYC', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1374, 1403, N'7531', N'+', CAST(31 AS Numeric(10, 0)), CAST(1467 AS Numeric(10, 0)), N'7531 - National/NYN', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1375, 1403, N'7532', N'+', CAST(32 AS Numeric(10, 0)), CAST(1468 AS Numeric(10, 0)), N'7532 - Philadelphia/PHL', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1376, 1403, N'7533', N'+', CAST(33 AS Numeric(10, 0)), CAST(1469 AS Numeric(10, 0)), N'7533 - Phoenix/PHX', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1377, 1403, N'7534', N'+', CAST(34 AS Numeric(10, 0)), CAST(1470 AS Numeric(10, 0)), N'7534 - Pittsburgh/PIT', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1378, 1403, N'7535', N'+', CAST(35 AS Numeric(10, 0)), CAST(1471 AS Numeric(10, 0)), N'7535 - Rio Grande Valley/RGV', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1379, 1403, N'7536', N'+', CAST(36 AS Numeric(10, 0)), CAST(1472 AS Numeric(10, 0)), N'7536 - Providence, RI/RI', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1380, 1403, N'7537', N'+', CAST(37 AS Numeric(10, 0)), CAST(1473 AS Numeric(10, 0)), N'7537 - San Antonio/SA', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1381, 1403, N'7538', N'+', CAST(38 AS Numeric(10, 0)), CAST(1474 AS Numeric(10, 0)), N'7538 - South Dakota/SD', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1382, 1403, N'7539', N'+', CAST(39 AS Numeric(10, 0)), CAST(1475 AS Numeric(10, 0)), N'7539 - Louisville/SDF', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1383, 1403, N'7540', N'+', CAST(40 AS Numeric(10, 0)), CAST(1476 AS Numeric(10, 0)), N'7540 - Bay Area/SFO', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1384, 1403, N'7541', N'+', CAST(41 AS Numeric(10, 0)), CAST(1477 AS Numeric(10, 0)), N'7541 - South Louisiana/SLA', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1385, 1403, N'7542', N'+', CAST(42 AS Numeric(10, 0)), CAST(1478 AS Numeric(10, 0)), N'7542 - St. Louis/STL', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1386, 1403, N'7543', N'+', CAST(43 AS Numeric(10, 0)), CAST(1479 AS Numeric(10, 0)), N'7543 - Tulsa/TUL', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1387, 1427, N'7140', N'+', CAST(140 AS Numeric(10, 0)), CAST(1641 AS Numeric(10, 0)), N'7140 - FY11 - GNO Satellite (Tall)', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1388, 4, N'4401', N'+', CAST(265 AS Numeric(10, 0)), CAST(1045 AS Numeric(10, 0)), N'4401 - 20th Anniversary Summit - Speakers', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1389, 4, N'4402', N'+', CAST(266 AS Numeric(10, 0)), CAST(1046 AS Numeric(10, 0)), N'4402 - 20th Anniversary Summit - Friday Receptions', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1390, 4, N'4403', N'+', CAST(267 AS Numeric(10, 0)), CAST(1047 AS Numeric(10, 0)), N'4403 - 20th Anniversary Summit - CM Financial Aid', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1391, 4, N'4404', N'+', CAST(268 AS Numeric(10, 0)), CAST(1048 AS Numeric(10, 0)), N'4404 - 20th Anniversary Summit - Alumni Financial Aid', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1392, 1427, N'7141', N'+', CAST(141 AS Numeric(10, 0)), CAST(1642 AS Numeric(10, 0)), N'7141 - FY11 - Miami', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1394, 1427, N'7142', N'+', CAST(142 AS Numeric(10, 0)), CAST(1643 AS Numeric(10, 0)), N'7142 - FY11 - Austin', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1395, 4, N'4412', N'+', CAST(271 AS Numeric(10, 0)), CAST(1051 AS Numeric(10, 0)), N'4412 - Alumni - School Leadership Pathways Programming', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1396, 4, N'4414', N'+', CAST(273 AS Numeric(10, 0)), CAST(1053 AS Numeric(10, 0)), N'4414 - Alumni - Regional Innovation Fund', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1397, 4, N'4411', N'+', CAST(270 AS Numeric(10, 0)), CAST(1050 AS Numeric(10, 0)), N'4411 - Alumni - Social Entrepreneurship Award', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1398, 4, N'4410', N'+', CAST(269 AS Numeric(10, 0)), CAST(1049 AS Numeric(10, 0)), N'4410 - Alumni - Teacher Award', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1399, 4, N'4380', N'+', CAST(260 AS Numeric(10, 0)), CAST(1040 AS Numeric(10, 0)), N'4380 - ECE Pilot', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1400, 4, N'4381', N'+', CAST(261 AS Numeric(10, 0)), CAST(1041 AS Numeric(10, 0)), N'4381 - Instructional Leaders Pilot ', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1401, 4, N'4382', N'+', CAST(262 AS Numeric(10, 0)), CAST(1042 AS Numeric(10, 0)), N'4382 - Secondary Pilot', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1402, 3, N'2142', N'+', CAST(63 AS Numeric(10, 0)), CAST(270 AS Numeric(10, 0)), N'2142 - Unknown', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1403, 6, N'Office Locations', N'+', CAST(0 AS Numeric(10, 0)), CAST(1435 AS Numeric(10, 0)), N'Office Locations', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1404, 1694, N'Enterprise Service Desk', N'+', CAST(0 AS Numeric(10, 0)), CAST(1121 AS Numeric(10, 0)), N'Enterprise Service Desk', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1405, 1694, N'Enterprise CRM', N'+', CAST(2 AS Numeric(10, 0)), CAST(1126 AS Numeric(10, 0)), N'Front Office Operating System', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1406, 1694, N'Corporate Systems', N'+', CAST(3 AS Numeric(10, 0)), CAST(1150 AS Numeric(10, 0)), N'Corporate Systems', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1407, 1694, N'ECM', N'+', CAST(4 AS Numeric(10, 0)), CAST(1191 AS Numeric(10, 0)), N'Information Management', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1408, 1694, N'Intranet', N'+', CAST(5 AS Numeric(10, 0)), CAST(1194 AS Numeric(10, 0)), N'Intranet', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1409, 1694, N'Program Applications', N'+', CAST(6 AS Numeric(10, 0)), CAST(1199 AS Numeric(10, 0)), N'Program Applications', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1410, 1694, N'TFANet', N'+', CAST(7 AS Numeric(10, 0)), CAST(1242 AS Numeric(10, 0)), N'TFANet', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1411, 1694, N'Data Architecture', N'+', CAST(8 AS Numeric(10, 0)), CAST(1269 AS Numeric(10, 0)), N'Data Architecture', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1412, 1694, N'Content Delivery Network', N'+', CAST(9 AS Numeric(10, 0)), CAST(1280 AS Numeric(10, 0)), N'Content Delivery Network', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1413, 1694, N'Software Development Life Cycle Tools', N'+', CAST(10 AS Numeric(10, 0)), CAST(1283 AS Numeric(10, 0)), N'Software Development Life Cycle Tools', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1414, 1694, N'Video Platform', N'+', CAST(11 AS Numeric(10, 0)), CAST(1286 AS Numeric(10, 0)), N'Video Platform', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1415, 1694, N'Video Conferencing', N'+', CAST(12 AS Numeric(10, 0)), CAST(1289 AS Numeric(10, 0)), N'Video Conferencing', N'Active')

    GO

    print 'Processed 1400 total records'

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1416, 1694, N'Infrastructure Scaling', N'+', CAST(13 AS Numeric(10, 0)), CAST(1292 AS Numeric(10, 0)), N'Infrastructure Scaling', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1417, 1694, N'Virtual Desktop Environment', N'+', CAST(14 AS Numeric(10, 0)), CAST(1327 AS Numeric(10, 0)), N'Virtual Desktop Environment (Pilot)', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1418, 1694, N'Student Achievement', N'+', CAST(15 AS Numeric(10, 0)), CAST(1330 AS Numeric(10, 0)), N'Student Achievement', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1419, 1425, N'8994', N'+', CAST(2 AS Numeric(10, 0)), CAST(1203 AS Numeric(10, 0)), N'8994 - Admissions - Budget Pool', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1420, 1694, N'IT Capacity Consulting', N'+', CAST(16 AS Numeric(10, 0)), CAST(1339 AS Numeric(10, 0)), N'IT Capacity Consulting', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1421, 1694, N'Disaster Recovery', N'+', CAST(17 AS Numeric(10, 0)), CAST(1341 AS Numeric(10, 0)), N'Disaster Recovery', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1422, 1694, N'Other', N'+', CAST(20 AS Numeric(10, 0)), CAST(1353 AS Numeric(10, 0)), N'Other', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1423, 1694, N'Data Center Co-Location', N'+', CAST(18 AS Numeric(10, 0)), CAST(1345 AS Numeric(10, 0)), N'Data Center Co-Location', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1424, 1694, N'Video_VOIP_Unified Communications', N'+', CAST(19 AS Numeric(10, 0)), CAST(1349 AS Numeric(10, 0)), N'Video_VOIP_Unified Communications', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1425, 1409, N'Admissions', N'+', CAST(0 AS Numeric(10, 0)), CAST(1200 AS Numeric(10, 0)), N'Admissions', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1426, 1409, N'Alumni Affairs', N'+', CAST(1 AS Numeric(10, 0)), CAST(1214 AS Numeric(10, 0)), N'Alumni Affairs', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1427, 6, N'NOA Projects', N'+', CAST(1 AS Numeric(10, 0)), CAST(1500 AS Numeric(10, 0)), N'NOA Projects', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1428, 1409, N'Cross-Cutting', N'+', CAST(2 AS Numeric(10, 0)), CAST(1220 AS Numeric(10, 0)), N'Cross-Cutting', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1429, 1409, N'Recruitment', N'+', CAST(3 AS Numeric(10, 0)), CAST(1232 AS Numeric(10, 0)), N'Recruitment', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1430, 1409, N'TPSD', N'+', CAST(4 AS Numeric(10, 0)), CAST(1234 AS Numeric(10, 0)), N'TPSD', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1431, 1404, N'8999', N'+', CAST(0 AS Numeric(10, 0)), CAST(1122 AS Numeric(10, 0)), N'8999 - Enterprise Service Desk - Budget Pool', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1432, 1405, N'8998', N'+', CAST(12 AS Numeric(10, 0)), CAST(1139 AS Numeric(10, 0)), N'8998 - TFACT', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1433, 1406, N'8997', N'+', CAST(27 AS Numeric(10, 0)), CAST(1178 AS Numeric(10, 0)), N'8997 - Corporate Systems - Budget Pool', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1434, 1407, N'8996', N'+', CAST(0 AS Numeric(10, 0)), CAST(1192 AS Numeric(10, 0)), N'8996 - Information Management - Budget Pool', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1435, 1408, N'8995', N'+', CAST(3 AS Numeric(10, 0)), CAST(1198 AS Numeric(10, 0)), N'8995 - Intranet - Budget Pool', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1436, 1411, N'8991', N'+', CAST(7 AS Numeric(10, 0)), CAST(1277 AS Numeric(10, 0)), N'8991 - Data Architecture - Budget Pool', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1437, 1430, N'8993', N'+', CAST(6 AS Numeric(10, 0)), CAST(1241 AS Numeric(10, 0)), N'8993 - TPSD - Budget Pool', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1438, 1410, N'8992', N'+', CAST(19 AS Numeric(10, 0)), CAST(1262 AS Numeric(10, 0)), N'8992 - TFANet - Budget Pool', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1439, 1412, N'8990', N'+', CAST(0 AS Numeric(10, 0)), CAST(1281 AS Numeric(10, 0)), N'8990 - Content Delivery Network - Budget Pool', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1440, 1413, N'8989', N'+', CAST(0 AS Numeric(10, 0)), CAST(1284 AS Numeric(10, 0)), N'8989 - Software Development Life Cycle Tools - Budget Pool', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1441, 1414, N'8988', N'+', CAST(0 AS Numeric(10, 0)), CAST(1287 AS Numeric(10, 0)), N'8988 - Video Platform - Budget Pool', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1442, 1415, N'8987', N'+', CAST(0 AS Numeric(10, 0)), CAST(1290 AS Numeric(10, 0)), N'8987 - Video Conferencing - Budget Pool', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1443, 1416, N'8986', N'+', CAST(28 AS Numeric(10, 0)), CAST(1321 AS Numeric(10, 0)), N'8986 - Infrastructure Scaling - Budget Pool', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1444, 1417, N'8985', N'+', CAST(0 AS Numeric(10, 0)), CAST(1328 AS Numeric(10, 0)), N'8985 - Virtual Desktop Environment - Budget Pool', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1445, 1418, N'8984', N'+', CAST(1 AS Numeric(10, 0)), CAST(1332 AS Numeric(10, 0)), N'8984 - Student Achievement - Budget Pool', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1446, 1420, N'8983', N'+', CAST(0 AS Numeric(10, 0)), CAST(1340 AS Numeric(10, 0)), N'8983 - IT Capacity Consulting - Budget Pool', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1447, 4, N'4420', N'+', CAST(275 AS Numeric(10, 0)), CAST(1055 AS Numeric(10, 0)), N'4420 - LEE Placeholder', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1448, 4, N'4415', N'+', CAST(274 AS Numeric(10, 0)), CAST(1054 AS Numeric(10, 0)), N'4415 - Alumni - TeachPlus Summit', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1449, 2, N'0061', N'+', CAST(8 AS Numeric(10, 0)), CAST(10 AS Numeric(10, 0)), N'0061 - Private', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1450, 1422, N'8298', N'+', CAST(20 AS Numeric(10, 0)), CAST(1374 AS Numeric(10, 0)), N'8298 - None', N'')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1451, 4, N'4572', N'+', CAST(310 AS Numeric(10, 0)), CAST(1090 AS Numeric(10, 0)), N'4572 - Learning Team Leader Expenses', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1452, 1403, N'7544', N'+', CAST(44 AS Numeric(10, 0)), CAST(1480 AS Numeric(10, 0)), N'7544 - Seattle', N'')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1453, 3, N'2010', N'+', CAST(6 AS Numeric(10, 0)), CAST(213 AS Numeric(10, 0)), N'2010 - DC/Baltimore Other Schools', N'')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1454, 3, N'2011', N'+', CAST(7 AS Numeric(10, 0)), CAST(214 AS Numeric(10, 0)), N'2011 - North Carolina Other Schools', N'')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1455, 3, N'2013', N'+', CAST(9 AS Numeric(10, 0)), CAST(216 AS Numeric(10, 0)), N'2013 - Philly Other Schools', N'')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1456, 3, N'2014', N'+', CAST(10 AS Numeric(10, 0)), CAST(217 AS Numeric(10, 0)), N'2014 - VA Other Schools', N'')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1457, 3, N'2017', N'+', CAST(13 AS Numeric(10, 0)), CAST(220 AS Numeric(10, 0)), N'2017 - KS/MO/OK Other Schools', N'')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1458, 3, N'2019', N'+', CAST(15 AS Numeric(10, 0)), CAST(222 AS Numeric(10, 0)), N'2019 - OH Other Schools', N'')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1459, 3, N'2035', N'+', CAST(31 AS Numeric(10, 0)), CAST(238 AS Numeric(10, 0)), N'2035 - LA Other Schools', N'')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1460, 3, N'2029', N'+', CAST(25 AS Numeric(10, 0)), CAST(232 AS Numeric(10, 0)), N'2029 - GA/SC Other Schools', N'')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1461, 3, N'2030', N'+', CAST(26 AS Numeric(10, 0)), CAST(233 AS Numeric(10, 0)), N'2030 - GNO/Delta Other Schools', N'')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1462, 3, N'2031', N'+', CAST(27 AS Numeric(10, 0)), CAST(234 AS Numeric(10, 0)), N'2031 - TN/AL Other Schools', N'')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1463, 3, N'2033', N'+', CAST(29 AS Numeric(10, 0)), CAST(236 AS Numeric(10, 0)), N'2033 - Texas Other Schools', N'')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1464, 3, N'2034', N'+', CAST(30 AS Numeric(10, 0)), CAST(237 AS Numeric(10, 0)), N'2034 - Four Corners Other Schools', N'')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1465, 4, N'4405', N'+', CAST(316 AS Numeric(10, 0)), CAST(1096 AS Numeric(10, 0)), N'4405 - Alumni of Color Assoc.', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1466, 4, N'4406', N'+', CAST(317 AS Numeric(10, 0)), CAST(1097 AS Numeric(10, 0)), N'4406 - Unknown', N'')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1467, 4, N'4407', N'+', CAST(318 AS Numeric(10, 0)), CAST(1098 AS Numeric(10, 0)), N'4407 - Unknown', N'')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1468, 4, N'4408', N'+', CAST(319 AS Numeric(10, 0)), CAST(1099 AS Numeric(10, 0)), N'4408 - Unknown', N'')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1469, 4, N'4409', N'+', CAST(320 AS Numeric(10, 0)), CAST(1100 AS Numeric(10, 0)), N'4409 - Unknown', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1470, 4, N'4440', N'+', CAST(321 AS Numeric(10, 0)), CAST(1101 AS Numeric(10, 0)), N'4440 - Unknown', N'')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1471, 4, N'4445', N'+', CAST(323 AS Numeric(10, 0)), CAST(1103 AS Numeric(10, 0)), N'4445 - Unknown', N'')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1472, 4, N'4444', N'+', CAST(322 AS Numeric(10, 0)), CAST(1102 AS Numeric(10, 0)), N'4444 - Unknown', N'')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1473, 4, N'4447', N'+', CAST(324 AS Numeric(10, 0)), CAST(1104 AS Numeric(10, 0)), N'4447 - Unknown', N'')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1474, 4, N'4449', N'+', CAST(325 AS Numeric(10, 0)), CAST(1105 AS Numeric(10, 0)), N'4449 - Unknown', N'')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1475, 4, N'4452', N'+', CAST(326 AS Numeric(10, 0)), CAST(1106 AS Numeric(10, 0)), N'4452 - Unknown', N'')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1476, 4, N'4453', N'+', CAST(327 AS Numeric(10, 0)), CAST(1107 AS Numeric(10, 0)), N'4453 - Unknown', N'')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1477, 4, N'4454', N'+', CAST(328 AS Numeric(10, 0)), CAST(1108 AS Numeric(10, 0)), N'4454 - Unknown', N'')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1478, 4, N'4458', N'+', CAST(329 AS Numeric(10, 0)), CAST(1109 AS Numeric(10, 0)), N'4458 - Unknown', N'')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1479, 4, N'4459', N'+', CAST(330 AS Numeric(10, 0)), CAST(1110 AS Numeric(10, 0)), N'4459 - Unknown', N'')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1480, 4, N'4462', N'+', CAST(331 AS Numeric(10, 0)), CAST(1111 AS Numeric(10, 0)), N'4462 - Unknown', N'')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1481, 4, N'4463', N'+', CAST(332 AS Numeric(10, 0)), CAST(1112 AS Numeric(10, 0)), N'4463 - Unknown', N'')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1482, 3, N'2005', N'+', CAST(1 AS Numeric(10, 0)), CAST(208 AS Numeric(10, 0)), N'2005 - HBCU Other Schools', N'')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1483, 3, N'2006', N'+', CAST(2 AS Numeric(10, 0)), CAST(209 AS Numeric(10, 0)), N'2006 - Chicago + IL Other Schools', N'')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1484, 3, N'2007', N'+', CAST(3 AS Numeric(10, 0)), CAST(210 AS Numeric(10, 0)), N'2007 - Chicago + WI Other Schools', N'')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1485, 3, N'2009', N'+', CAST(5 AS Numeric(10, 0)), CAST(212 AS Numeric(10, 0)), N'2009 - MN + IA Other Schools', N'')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1486, 3, N'2015', N'+', CAST(11 AS Numeric(10, 0)), CAST(218 AS Numeric(10, 0)), N'2015 - IN Other Schools', N'')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1487, 3, N'2018', N'+', CAST(14 AS Numeric(10, 0)), CAST(221 AS Numeric(10, 0)), N'2018 - MI Other Schools', N'')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1488, 3, N'2021', N'+', CAST(17 AS Numeric(10, 0)), CAST(224 AS Numeric(10, 0)), N'2021 - Boston Other Schools', N'')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1489, 3, N'2022', N'+', CAST(18 AS Numeric(10, 0)), CAST(225 AS Numeric(10, 0)), N'2022 - NE Other Schools', N'')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1490, 3, N'2023', N'+', CAST(19 AS Numeric(10, 0)), CAST(226 AS Numeric(10, 0)), N'2023 - CT Other Schools', N'')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1491, 3, N'2025', N'+', CAST(21 AS Numeric(10, 0)), CAST(228 AS Numeric(10, 0)), N'2025 - NYC Other Schools', N'')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1492, 3, N'2026', N'+', CAST(22 AS Numeric(10, 0)), CAST(229 AS Numeric(10, 0)), N'2026 - Upstate NY Other Schools', N'')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1493, 3, N'2027', N'+', CAST(23 AS Numeric(10, 0)), CAST(230 AS Numeric(10, 0)), N'2027 - FL Other Schools', N'')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1494, 3, N'2037', N'+', CAST(33 AS Numeric(10, 0)), CAST(240 AS Numeric(10, 0)), N'2037 - PNW Other Schools', N'')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1495, 3, N'2038', N'+', CAST(34 AS Numeric(10, 0)), CAST(241 AS Numeric(10, 0)), N'2038 - SF Other Schools', N'')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1496, 4, N'4383', N'+', CAST(263 AS Numeric(10, 0)), CAST(1043 AS Numeric(10, 0)), N'4383 - Real Time Coaching Pilot', N'')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1497, 4, N'4573', N'+', CAST(311 AS Numeric(10, 0)), CAST(1091 AS Numeric(10, 0)), N'4573 - Staff Leadership Retreat', N'')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1498, 4, N'4413', N'+', CAST(272 AS Numeric(10, 0)), CAST(1052 AS Numeric(10, 0)), N'4413 - Alumni of Color Assoc Events', N'')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1499, 2, N'1234', N'+', CAST(126 AS Numeric(10, 0)), CAST(128 AS Numeric(10, 0)), N'1234 - Private', N'')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1500, 1403, N'7545', N'+', CAST(45 AS Numeric(10, 0)), CAST(1481 AS Numeric(10, 0)), N'7545 – South Carolina / SC - FLO', N'')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1501, 1403, N'7546', N'+', CAST(46 AS Numeric(10, 0)), CAST(1482 AS Numeric(10, 0)), N'7546 - Delaware', N'')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1502, 1403, N'7547', N'+', CAST(47 AS Numeric(10, 0)), CAST(1483 AS Numeric(10, 0)), N'7547 - Appalachia', N'')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1503, 1403, N'7548', N'+', CAST(48 AS Numeric(10, 0)), CAST(1484 AS Numeric(10, 0)), N'7548 - Austin/AUS', N'')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1504, 4, N'4384', N'+', CAST(264 AS Numeric(10, 0)), CAST(1044 AS Numeric(10, 0)), N'4384 - MEDTRONICS ', N'')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1505, 4, N'4517', N'+', CAST(291 AS Numeric(10, 0)), CAST(1071 AS Numeric(10, 0)), N'4517 - Domestic Partner Coverage Tax Reimbursement', N'')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1506, 1427, N'7143', N'+', CAST(143 AS Numeric(10, 0)), CAST(1644 AS Numeric(10, 0)), N'7143 - FY11 - Jacksonville (Relocation)', N'')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1507, 1427, N'7144', N'+', CAST(144 AS Numeric(10, 0)), CAST(1645 AS Numeric(10, 0)), N'7144 - FY11 - Milwaukee (Reconfiguration)', N'')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1508, 4, N'4574', N'+', CAST(312 AS Numeric(10, 0)), CAST(1092 AS Numeric(10, 0)), N'4574 - D&I Congressional Caucus', N'')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1509, 1405, N'8160', N'+', CAST(14 AS Numeric(10, 0)), CAST(1141 AS Numeric(10, 0)), N'8160 -KAP (Keep Alive Project)', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1510, 1428, N'8162', N'+', CAST(10 AS Numeric(10, 0)), CAST(1231 AS Numeric(10, 0)), N'8162 - Piaget Release', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1511, 1427, N'7145', N'+', CAST(145 AS Numeric(10, 0)), CAST(1646 AS Numeric(10, 0)), N'7145 - FY12 - NYN 10th floor', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1512, 1427, N'7146', N'+', CAST(146 AS Numeric(10, 0)), CAST(1647 AS Numeric(10, 0)), N'7146 - FY12 - NYN 3rd floor', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1513, 1427, N'7147', N'+', CAST(147 AS Numeric(10, 0)), CAST(1648 AS Numeric(10, 0)), N'7147 - FY12 - NYN 2014 project', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1514, 1427, N'7148', N'+', CAST(148 AS Numeric(10, 0)), CAST(1649 AS Numeric(10, 0)), N'7148 - FY12 - NYN 7th floor natl conf rm reconfig', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1515, 1427, N'7149', N'+', CAST(149 AS Numeric(10, 0)), CAST(1650 AS Numeric(10, 0)), N'7149 - FY12 - NYN HVAC upgrade', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1516, 1427, N'7150', N'+', CAST(150 AS Numeric(10, 0)), CAST(1651 AS Numeric(10, 0)), N'7150 - FY12 - NYN 6th floor reconfig', N'Active')

    GO

    print 'Processed 1500 total records'

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1517, 1427, N'7151', N'+', CAST(151 AS Numeric(10, 0)), CAST(1652 AS Numeric(10, 0)), N'7151 - FY12 - NYN 7th floor pantry', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1518, 1427, N'7152', N'+', CAST(152 AS Numeric(10, 0)), CAST(1653 AS Numeric(10, 0)), N'7152 - NYN Painting', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1519, 1427, N'7153', N'+', CAST(153 AS Numeric(10, 0)), CAST(1654 AS Numeric(10, 0)), N'7153 - NYN Org-wide video conferencing', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1520, 1427, N'7154', N'+', CAST(154 AS Numeric(10, 0)), CAST(1655 AS Numeric(10, 0)), N'7154 - FY12 - Seattle - New Region', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1521, 1427, N'7155', N'+', CAST(155 AS Numeric(10, 0)), CAST(1656 AS Numeric(10, 0)), N'7155 - FY12 - Austin - New Region', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1522, 1427, N'7156', N'+', CAST(156 AS Numeric(10, 0)), CAST(1657 AS Numeric(10, 0)), N'7156 - FY12 - New Site 1 - TBD - New Region', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1523, 1427, N'7157', N'+', CAST(157 AS Numeric(10, 0)), CAST(1658 AS Numeric(10, 0)), N'7157 - FY12 - New Site 2 - TBD - New Region', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1524, 1427, N'7158', N'+', CAST(158 AS Numeric(10, 0)), CAST(1659 AS Numeric(10, 0)), N'7158 - FY12 - Colorado Springs - New Region', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1525, 1427, N'7159', N'+', CAST(159 AS Numeric(10, 0)), CAST(1660 AS Numeric(10, 0)), N'7159 - FY12 - South Carolina - New Region', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1526, 1427, N'7160', N'+', CAST(160 AS Numeric(10, 0)), CAST(1661 AS Numeric(10, 0)), N'7160 - FY12 - Dallas - Relocation', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1527, 1427, N'7161', N'+', CAST(161 AS Numeric(10, 0)), CAST(1662 AS Numeric(10, 0)), N'7161 - FY12 - Houston - Relocation', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1528, 1427, N'7162', N'+', CAST(162 AS Numeric(10, 0)), CAST(1663 AS Numeric(10, 0)), N'7162 - FY12 - Nashville - Relocation', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1529, 1427, N'7163', N'+', CAST(163 AS Numeric(10, 0)), CAST(1664 AS Numeric(10, 0)), N'7163 - FY12 - Bay Area - Reconfiguration', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1530, 1427, N'7164', N'+', CAST(164 AS Numeric(10, 0)), CAST(1665 AS Numeric(10, 0)), N'7164 - FY12 - Los Angeles - Reconfiguration', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1531, 1427, N'7165', N'+', CAST(165 AS Numeric(10, 0)), CAST(1666 AS Numeric(10, 0)), N'7165 - FY12 - Newark - Reconfiguration', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1532, 1427, N'7166', N'+', CAST(166 AS Numeric(10, 0)), CAST(1667 AS Numeric(10, 0)), N'7166 - FY12 - Milwaukee - Expansion', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1533, 1427, N'7167', N'+', CAST(167 AS Numeric(10, 0)), CAST(1668 AS Numeric(10, 0)), N'7167 - FY12 - DC National - Expansion', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1534, 1427, N'7168', N'+', CAST(168 AS Numeric(10, 0)), CAST(1669 AS Numeric(10, 0)), N'7168 - FY12 - Atlanta - FF&E Only', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1535, 1427, N'7169', N'+', CAST(169 AS Numeric(10, 0)), CAST(1670 AS Numeric(10, 0)), N'7169 - FY12 - Indianapolis - FF&E Only', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1536, 1427, N'7170', N'+', CAST(170 AS Numeric(10, 0)), CAST(1671 AS Numeric(10, 0)), N'7170 - FY12 - Detroit - FF&E Only', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1537, 1427, N'7171', N'+', CAST(171 AS Numeric(10, 0)), CAST(1672 AS Numeric(10, 0)), N'7171 - FY12 - New Haven - FF&E Only', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1538, 1427, N'7172', N'+', CAST(172 AS Numeric(10, 0)), CAST(1673 AS Numeric(10, 0)), N'7172 - FY12 - Tulsa - Cafeteria Space', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1539, 1427, N'7173', N'+', CAST(173 AS Numeric(10, 0)), CAST(1674 AS Numeric(10, 0)), N'7173 - FY12 - DC Regional - MDF Room', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1540, 1427, N'7174', N'+', CAST(174 AS Numeric(10, 0)), CAST(1675 AS Numeric(10, 0)), N'7174 - FY12 - MS Oxford - MDF Room', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1541, 1427, N'7175', N'+', CAST(175 AS Numeric(10, 0)), CAST(1676 AS Numeric(10, 0)), N'7175 - FY12 - Colorado Rural - satellite office', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1542, 1427, N'7176', N'+', CAST(176 AS Numeric(10, 0)), CAST(1677 AS Numeric(10, 0)), N'7176 - FY12 - Tulsa - satellite office', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1543, 1694, N'Capitalized Salaries', N'+', CAST(21 AS Numeric(10, 0)), CAST(1375 AS Numeric(10, 0)), N'Capitalized Salaries', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1544, 1694, N'Enterprise Reporting', N'+', CAST(22 AS Numeric(10, 0)), CAST(1376 AS Numeric(10, 0)), N'Enterprise Reporting', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1545, 1694, N'Fiscal Year Change', N'+', CAST(1 AS Numeric(10, 0)), CAST(1123 AS Numeric(10, 0)), N'Fiscal Year Change', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1546, 1694, N'Marketing Web Analytics', N'+', CAST(23 AS Numeric(10, 0)), CAST(1384 AS Numeric(10, 0)), N'Marketing Web Analytics', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1547, 1694, N'Micro Websites', N'+', CAST(24 AS Numeric(10, 0)), CAST(1386 AS Numeric(10, 0)), N'Micro Websites', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1548, 1547, N'8979', N'+', CAST(0 AS Numeric(10, 0)), CAST(1387 AS Numeric(10, 0)), N'8979 - Micro Websites - Budget Pool', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1549, 1546, N'8980', N'+', CAST(0 AS Numeric(10, 0)), CAST(1385 AS Numeric(10, 0)), N'8980 - Marketing Web Analytics - Budget Pool', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1550, 1545, N'8981', N'+', CAST(0 AS Numeric(10, 0)), CAST(1124 AS Numeric(10, 0)), N'8981 - Fiscal Year Change - Budget Pool', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1551, 1544, N'8982', N'+', CAST(0 AS Numeric(10, 0)), CAST(1377 AS Numeric(10, 0)), N'8982 - Enterprise Reporting - Budget Pool', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1552, 1416, N'8161', N'+', CAST(31 AS Numeric(10, 0)), CAST(1324 AS Numeric(10, 0)), N'8161 - Incremental Licenses', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1553, 1416, N'8163', N'+', CAST(32 AS Numeric(10, 0)), CAST(1325 AS Numeric(10, 0)), N'8163 - Developer Workstations', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1554, 2, N'100', N'+', CAST(202 AS Numeric(10, 0)), CAST(204 AS Numeric(10, 0)), N'100 - Unknown', N'')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1555, 2, N'0001', N'+', CAST(203 AS Numeric(10, 0)), CAST(205 AS Numeric(10, 0)), N'0001 - Unknown', N'')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1556, 2, N'0043', N'+', CAST(4 AS Numeric(10, 0)), CAST(6 AS Numeric(10, 0)), N'0043 - Private', N'')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1557, 1544, N'8164', N'+', CAST(1 AS Numeric(10, 0)), CAST(1378 AS Numeric(10, 0)), N'8164 - Enterprise Data Warehouse', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1558, 1410, N'8165', N'+', CAST(18 AS Numeric(10, 0)), CAST(1261 AS Numeric(10, 0)), N'8165 - TFANet Packet L', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1559, 4, N'4575', N'+', CAST(313 AS Numeric(10, 0)), CAST(1093 AS Numeric(10, 0)), N'4575 - Mathematica ECE Study', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1560, 1170, N'8311', N'+', CAST(38 AS Numeric(10, 0)), CAST(771 AS Numeric(10, 0)), N'8311 - Unknown', N'')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1561, 1170, N'n/a', N'+', CAST(39 AS Numeric(10, 0)), CAST(772 AS Numeric(10, 0)), N'n/a - Unknown', N'')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1562, 1206, N'9003', N'+', CAST(3 AS Numeric(10, 0)), CAST(1715 AS Numeric(10, 0)), N'9003 - P&A Planning', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1563, 1427, N'7177', N'+', CAST(177 AS Numeric(10, 0)), CAST(1678 AS Numeric(10, 0)), N'7177 - FY12 - Philadelphia - Relocation', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1564, 1418, N'8166', N'+', CAST(2 AS Numeric(10, 0)), CAST(1333 AS Numeric(10, 0)), N'8166 - SAMS - Venus Release', N'')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1565, 1406, N'8170', N'+', CAST(28 AS Numeric(10, 0)), CAST(1179 AS Numeric(10, 0)), N'8170 - Corp Systems (Finance) - Spend Management', N'')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1566, 1170, N'0817', N'+', CAST(43 AS Numeric(10, 0)), CAST(776 AS Numeric(10, 0)), N'0817 - Grant Code 08173 ', N'')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1568, 1170, N'0', N'+', CAST(40 AS Numeric(10, 0)), CAST(773 AS Numeric(10, 0)), N'0 - Unknown', N'')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1569, 1170, N'9998', N'+', CAST(41 AS Numeric(10, 0)), CAST(774 AS Numeric(10, 0)), N'9998 - Unknown', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1571, 1170, N'0827', N'+', CAST(42 AS Numeric(10, 0)), CAST(775 AS Numeric(10, 0)), N'0827 - Grant Code 08272', N'')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1572, 1418, N'8167', N'+', CAST(3 AS Numeric(10, 0)), CAST(1334 AS Numeric(10, 0)), N'8167 - SAMS - Earth Release', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1573, 1425, N'8169', N'+', CAST(5 AS Numeric(10, 0)), CAST(1206 AS Numeric(10, 0)), N'8169 - Admissions Platform – Phase 2 ', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1574, 1655, N'8174', N'+', CAST(0 AS Numeric(10, 0)), CAST(1405 AS Numeric(10, 0)), N'8174 - Continuous Improvement', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1575, 1694, N'8267', N'+', CAST(29 AS Numeric(10, 0)), CAST(1401 AS Numeric(10, 0)), N'8267 - Unknown', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1576, 1694, N'8271', N'+', CAST(30 AS Numeric(10, 0)), CAST(1402 AS Numeric(10, 0)), N'8271 - Unknown', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1577, 1430, N'8171', N'+', CAST(4 AS Numeric(10, 0)), CAST(1239 AS Numeric(10, 0)), N'8171 - TPSD In-Kind Donations', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1578, 1418, N'8168', N'+', CAST(4 AS Numeric(10, 0)), CAST(1335 AS Numeric(10, 0)), N'8168 - OSAT (pilot expansion) FY12', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1579, 1406, N'8172', N'+', CAST(29 AS Numeric(10, 0)), CAST(1180 AS Numeric(10, 0)), N'8172 - New Payroll System', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1580, 1545, N'8173', N'+', CAST(1 AS Numeric(10, 0)), CAST(1125 AS Numeric(10, 0)), N'8173 - Fiscal Year Change', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1581, 1410, N'8175', N'+', CAST(20 AS Numeric(10, 0)), CAST(1263 AS Numeric(10, 0)), N'8175 - TFANet Packet M', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1582, 1694, N'8334', N'+', CAST(31 AS Numeric(10, 0)), CAST(1403 AS Numeric(10, 0)), N'8334 - Unknown', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1583, 4, N'4576', N'+', CAST(314 AS Numeric(10, 0)), CAST(1094 AS Numeric(10, 0)), N'4576 - D&I Congressional Black Caucus', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1584, 4, N'4577', N'+', CAST(315 AS Numeric(10, 0)), CAST(1095 AS Numeric(10, 0)), N'4577 - D&I Congressional Hispanic Caucus', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1585, 1427, N'7178', N'+', CAST(178 AS Numeric(10, 0)), CAST(1679 AS Numeric(10, 0)), N'7178 - NYC 2014 Project (Facilities)', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1586, 1427, N'7179', N'+', CAST(179 AS Numeric(10, 0)), CAST(1680 AS Numeric(10, 0)), N'7179 - FY12 - Chicago Expansion', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1587, 1427, N'7180', N'+', CAST(180 AS Numeric(10, 0)), CAST(1681 AS Numeric(10, 0)), N'7180 - Tulsa Relocation', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1588, 1427, N'7181', N'+', CAST(181 AS Numeric(10, 0)), CAST(1682 AS Numeric(10, 0)), N'7181 - FY12 - Memphis FF&E Only', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1589, 1427, N'7182', N'+', CAST(182 AS Numeric(10, 0)), CAST(1683 AS Numeric(10, 0)), N'7182 - FY12 - ENC Reconfiguration', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1590, 1427, N'7183', N'+', CAST(183 AS Numeric(10, 0)), CAST(1684 AS Numeric(10, 0)), N'7183 - FY12 Delaware FF&E Only', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1591, 1427, N'7499', N'+', CAST(205 AS Numeric(10, 0)), CAST(1706 AS Numeric(10, 0)), N'7499 - NOA Budget Pool', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1592, 1170, N'0044', N'+', CAST(44 AS Numeric(10, 0)), CAST(777 AS Numeric(10, 0)), N'0044 - Private', N'Inactive')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1593, 1410, N'8176', N'+', CAST(21 AS Numeric(10, 0)), CAST(1264 AS Numeric(10, 0)), N'8176 - TFANet Packet N', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1594, 1406, N'8177', N'+', CAST(30 AS Numeric(10, 0)), CAST(1181 AS Numeric(10, 0)), N'8177 - Kronos DOE Audit Updates', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1595, 1418, N'8178', N'+', CAST(5 AS Numeric(10, 0)), CAST(1336 AS Numeric(10, 0)), N'8178 - Jupiter Release', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1596, 1418, N'8179', N'+', CAST(6 AS Numeric(10, 0)), CAST(1337 AS Numeric(10, 0)), N'8179 - SAMS - Mars Release', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1597, 1694, N'IDM', N'+', CAST(25 AS Numeric(10, 0)), CAST(1388 AS Numeric(10, 0)), N'IDM', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1598, 1597, N'8182', N'+', CAST(0 AS Numeric(10, 0)), CAST(1389 AS Numeric(10, 0)), N'8182 - Identity Management', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1599, 4, N'4361', N'+', CAST(333 AS Numeric(10, 0)), CAST(1113 AS Numeric(10, 0)), N'4361 - Unknown', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1600, 1425, N'8183', N'+', CAST(6 AS Numeric(10, 0)), CAST(1207 AS Numeric(10, 0)), N'8183 - ECSI Global Waiver E-signature Implementation', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1601, 1406, N'8978', N'+', CAST(33 AS Numeric(10, 0)), CAST(1184 AS Numeric(10, 0)), N'8978 - Corporate Systems - Finance - Budget Pool', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1602, 1406, N'8977', N'+', CAST(34 AS Numeric(10, 0)), CAST(1185 AS Numeric(10, 0)), N'8977 - Corporate Systems - HA - Budget Pool', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1603, 1597, N'8976', N'+', CAST(1 AS Numeric(10, 0)), CAST(1390 AS Numeric(10, 0)), N'8976 - IDM - Budget Pool', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1605, 1694, N'Goals Management', N'+', CAST(26 AS Numeric(10, 0)), CAST(1391 AS Numeric(10, 0)), N'Goals Management', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1606, 1694, N'Legal Affairs', N'+', CAST(27 AS Numeric(10, 0)), CAST(1393 AS Numeric(10, 0)), N'Legal Affairs', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1607, 1694, N'Innovation Fund', N'+', CAST(28 AS Numeric(10, 0)), CAST(1397 AS Numeric(10, 0)), N'Innovation Fund', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1608, 1606, N'8975', N'+', CAST(2 AS Numeric(10, 0)), CAST(1396 AS Numeric(10, 0)), N'8975 - Legal Matters Management - Budget Pool', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1609, 1605, N'8974', N'+', CAST(0 AS Numeric(10, 0)), CAST(1392 AS Numeric(10, 0)), N'8974 - Goals Management - Budget Pool', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1610, 1606, N'8973', N'+', CAST(1 AS Numeric(10, 0)), CAST(1395 AS Numeric(10, 0)), N'8973 - Legal Affairs Secure Inboxes - Budget Pool', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1611, 1607, N'8972', N'+', CAST(0 AS Numeric(10, 0)), CAST(1398 AS Numeric(10, 0)), N'8972 - Innovation Fund - Budget Pool', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1612, 4, N'4600', N'+', CAST(334 AS Numeric(10, 0)), CAST(1114 AS Numeric(10, 0)), N'4600 - Selection - Final Evaluation Time', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1613, 4, N'4601', N'+', CAST(335 AS Numeric(10, 0)), CAST(1115 AS Numeric(10, 0)), N'4601 - CM Gifts', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1614, 1403, N'7549', N'+', CAST(49 AS Numeric(10, 0)), CAST(1485 AS Numeric(10, 0)), N'7549 - Cleveland/CLE', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1615, 1403, N'7550', N'+', CAST(50 AS Numeric(10, 0)), CAST(1486 AS Numeric(10, 0)), N'7550 - Sacramento/SMF', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1616, 1403, N'7551', N'+', CAST(51 AS Numeric(10, 0)), CAST(1487 AS Numeric(10, 0)), N'7551 - Cincinnati/SVG', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1617, 1416, N'8181', N'+', CAST(33 AS Numeric(10, 0)), CAST(1326 AS Numeric(10, 0)), N'8181 - Windows 7 Upgrade', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1618, 1427, N'7184', N'+', CAST(184 AS Numeric(10, 0)), CAST(1685 AS Numeric(10, 0)), N'7184 - FY14 - Philadelphia Relocation', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1619, 1427, N'7185', N'+', CAST(185 AS Numeric(10, 0)), CAST(1686 AS Numeric(10, 0)), N'7185 - Additional Office Capital Expenditures', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1620, 1427, N'7186', N'+', CAST(186 AS Numeric(10, 0)), CAST(1687 AS Numeric(10, 0)), N'7186 - NY National - Ongoing Office Improvements', N'Active')

    GO

    print 'Processed 1600 total records'

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1621, 1427, N'7187', N'+', CAST(187 AS Numeric(10, 0)), CAST(1688 AS Numeric(10, 0)), N'7187 - FY13 - MS Delta - Helena - Relocation', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1622, 1427, N'7188', N'+', CAST(188 AS Numeric(10, 0)), CAST(1689 AS Numeric(10, 0)), N'7188 - FY13 - Las Vegas - Relocation', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1623, 1427, N'7189', N'+', CAST(189 AS Numeric(10, 0)), CAST(1690 AS Numeric(10, 0)), N'7189 - FY13 - Cincinnati - New Region', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1624, 1427, N'7190', N'+', CAST(190 AS Numeric(10, 0)), CAST(1691 AS Numeric(10, 0)), N'7190 - FY13 - Cleveland - New Region', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1625, 1427, N'7191', N'+', CAST(191 AS Numeric(10, 0)), CAST(1692 AS Numeric(10, 0)), N'7191 - FY13 - Sacramento - New Region', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1626, 1427, N'7192', N'+', CAST(192 AS Numeric(10, 0)), CAST(1693 AS Numeric(10, 0)), N'7192 - FY13 - Minneapolis - Reconfiguration', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1627, 1427, N'7193', N'+', CAST(193 AS Numeric(10, 0)), CAST(1694 AS Numeric(10, 0)), N'7193 - FY13 - Bay Area - Satellite - Oakland', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1628, 1427, N'7194', N'+', CAST(194 AS Numeric(10, 0)), CAST(1695 AS Numeric(10, 0)), N'7194 - FY13 - Bay Area - Satellite - San Jose', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1629, 1427, N'7195', N'+', CAST(195 AS Numeric(10, 0)), CAST(1696 AS Numeric(10, 0)), N'7195 - FY13 - Birmingham - Satellite Office', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1630, 1427, N'7196', N'+', CAST(196 AS Numeric(10, 0)), CAST(1697 AS Numeric(10, 0)), N'7196 - FY13 - Tulsa - Satellite Office', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1631, 1427, N'7197', N'+', CAST(197 AS Numeric(10, 0)), CAST(1698 AS Numeric(10, 0)), N'7197 - FY13 - Baltimore - Satellite Office', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1632, 1427, N'7198', N'+', CAST(198 AS Numeric(10, 0)), CAST(1699 AS Numeric(10, 0)), N'7198 - FY13 - Boston - Satellite Office', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1633, 1427, N'7199', N'+', CAST(199 AS Numeric(10, 0)), CAST(1700 AS Numeric(10, 0)), N'7199 - FY13 - Bay Area - Satellite - Richmond', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1634, 1427, N'7200', N'+', CAST(200 AS Numeric(10, 0)), CAST(1701 AS Numeric(10, 0)), N'7200 - FY13 - Gallup New Mexico - Satellite Office', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1635, 1427, N'7201', N'+', CAST(201 AS Numeric(10, 0)), CAST(1702 AS Numeric(10, 0)), N'7201 - FY13 - Wilmington - Satellite Office', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1636, 1427, N'7202', N'+', CAST(202 AS Numeric(10, 0)), CAST(1703 AS Numeric(10, 0)), N'7202 - FY13 - DC National - FF&E Only', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1637, 1427, N'7203', N'+', CAST(203 AS Numeric(10, 0)), CAST(1704 AS Numeric(10, 0)), N'7203 - FY13 - Indianapolis - FF&E Only', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1638, 1427, N'7204', N'+', CAST(204 AS Numeric(10, 0)), CAST(1705 AS Numeric(10, 0)), N'7204 - FY13 - MS Delta - Greenville & Oxford - FF&E Only', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1639, 4, N'4602', N'+', CAST(336 AS Numeric(10, 0)), CAST(1116 AS Numeric(10, 0)), N'4602 - Values-Based Leadership Development Programming', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1640, 1410, N'8184', N'+', CAST(22 AS Numeric(10, 0)), CAST(1265 AS Numeric(10, 0)), N'8184 - TFANet Transformational Change', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1641, 1661, N'8202', N'+', CAST(0 AS Numeric(10, 0)), CAST(1425 AS Numeric(10, 0)), N'8202 - ServiceNow', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1642, 1418, N'8203', N'+', CAST(7 AS Numeric(10, 0)), CAST(1338 AS Numeric(10, 0)), N'8203 - SAMS Continuation - Saturn', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1643, 1607, N'8201', N'+', CAST(1 AS Numeric(10, 0)), CAST(1399 AS Numeric(10, 0)), N'8201 - TFAWiki Phase 1', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1644, 4, N'4603', N'+', CAST(337 AS Numeric(10, 0)), CAST(1117 AS Numeric(10, 0)), N'4603 - Innovation Challenge Project', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1645, 1405, N'8204', N'+', CAST(20 AS Numeric(10, 0)), CAST(1147 AS Numeric(10, 0)), N'8204 - TFACT Front End Release Cycle 3', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1646, 1405, N'8205', N'+', CAST(21 AS Numeric(10, 0)), CAST(1148 AS Numeric(10, 0)), N'8205 - TFACT Back End Release Cycle 3', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1647, 1406, N'8206', N'+', CAST(35 AS Numeric(10, 0)), CAST(1186 AS Numeric(10, 0)), N'8206 - Workday Enhancements', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1648, 1544, N'8207', N'+', CAST(2 AS Numeric(10, 0)), CAST(1379 AS Numeric(10, 0)), N'8207 - EBI Server Cluster Implementation', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1649, 1544, N'8208', N'+', CAST(3 AS Numeric(10, 0)), CAST(1380 AS Numeric(10, 0)), N'8208 - Business Objects Upgrade', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1650, 1544, N'8209', N'+', CAST(4 AS Numeric(10, 0)), CAST(1381 AS Numeric(10, 0)), N'8209 - Redwood Source Data Universe', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1651, 1544, N'8210', N'+', CAST(5 AS Numeric(10, 0)), CAST(1382 AS Numeric(10, 0)), N'8210 - TFACT Source Data Universe', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1652, 1544, N'8211', N'+', CAST(6 AS Numeric(10, 0)), CAST(1383 AS Numeric(10, 0)), N'8211 - Regional Operations Reporting', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1653, 1430, N'8212', N'+', CAST(5 AS Numeric(10, 0)), CAST(1240 AS Numeric(10, 0)), N'8212 - Program Tracker', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1654, 4, N'4604', N'+', CAST(338 AS Numeric(10, 0)), CAST(1118 AS Numeric(10, 0)), N'4604 - Matrix Project', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1655, 1694, N'Business As Usual', N'+', CAST(32 AS Numeric(10, 0)), CAST(1404 AS Numeric(10, 0)), N'Business As Usual', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1656, 1694, N'Enterprise Risk Management', N'+', CAST(33 AS Numeric(10, 0)), CAST(1408 AS Numeric(10, 0)), N'Enterprise Risk Management', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1657, 1694, N'IT Devices', N'+', CAST(34 AS Numeric(10, 0)), CAST(1410 AS Numeric(10, 0)), N'IT Devices', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1658, 1694, N'MDH', N'+', CAST(35 AS Numeric(10, 0)), CAST(1415 AS Numeric(10, 0)), N'MDH', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1659, 1694, N'Microvolunteering', N'+', CAST(36 AS Numeric(10, 0)), CAST(1417 AS Numeric(10, 0)), N'Microvolunteering', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1660, 1694, N'Placement', N'+', CAST(37 AS Numeric(10, 0)), CAST(1419 AS Numeric(10, 0)), N'Placement', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1661, 1694, N'ServiceNow', N'+', CAST(39 AS Numeric(10, 0)), CAST(1424 AS Numeric(10, 0)), N'ServiceNow', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1662, 1694, N'Transformational Technology', N'+', CAST(38 AS Numeric(10, 0)), CAST(1422 AS Numeric(10, 0)), N'Transformational Technology', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1663, 1662, N'8963', N'+', CAST(0 AS Numeric(10, 0)), CAST(1423 AS Numeric(10, 0)), N'8963 - Transformational Technology - Budget Pool', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1664, 1661, N'8964', N'+', CAST(1 AS Numeric(10, 0)), CAST(1426 AS Numeric(10, 0)), N'8964 - ServiceNow - Budget Pool', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1665, 1660, N'8965', N'+', CAST(1 AS Numeric(10, 0)), CAST(1421 AS Numeric(10, 0)), N'8965 - Placement - Budget Pool', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1666, 1659, N'8966', N'+', CAST(0 AS Numeric(10, 0)), CAST(1418 AS Numeric(10, 0)), N'8966 - Microvolunteering - Budget Pool', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1667, 1658, N'8967', N'+', CAST(0 AS Numeric(10, 0)), CAST(1416 AS Numeric(10, 0)), N'8967 - MDH - Budget Pool', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1668, 1657, N'MAC Support', N'+', CAST(0 AS Numeric(10, 0)), CAST(1411 AS Numeric(10, 0)), N'MAC Support', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1669, 1668, N'8969', N'+', CAST(0 AS Numeric(10, 0)), CAST(1412 AS Numeric(10, 0)), N'8969 - MAC Support - Budget Pool', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1670, 1657, N'Mobile Support', N'+', CAST(1 AS Numeric(10, 0)), CAST(1413 AS Numeric(10, 0)), N'Mobile Support', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1671, 1670, N'8968', N'+', CAST(0 AS Numeric(10, 0)), CAST(1414 AS Numeric(10, 0)), N'8968 - Mobile Support - Budget Pool', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1672, 1656, N'8970', N'+', CAST(0 AS Numeric(10, 0)), CAST(1409 AS Numeric(10, 0)), N'8970 - Enterprise Risk Management - Budget Pool', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1673, 1655, N'8971', N'+', CAST(2 AS Numeric(10, 0)), CAST(1407 AS Numeric(10, 0)), N'8971 - Business As Usual - Budget Pool', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1675, 1655, N'8180', N'+', CAST(1 AS Numeric(10, 0)), CAST(1406 AS Numeric(10, 0)), N'8180 - Marketing Materials One-Stop Shop', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1676, 1607, N'8220', N'+', CAST(2 AS Numeric(10, 0)), CAST(1400 AS Numeric(10, 0)), N'8220 - Interview Matching Tool', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1677, 1403, N'7552', N'+', CAST(52 AS Numeric(10, 0)), CAST(1488 AS Numeric(10, 0)), N'7552 - Boston-4th Floor/BOSN', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1678, 1403, N'7553', N'+', CAST(53 AS Numeric(10, 0)), CAST(1489 AS Numeric(10, 0)), N'7553 - Birmingham/ALA', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1679, 1403, N'7554', N'+', CAST(54 AS Numeric(10, 0)), CAST(1490 AS Numeric(10, 0)), N'7554 - Richmond/SFO', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1680, 1403, N'7555', N'+', CAST(55 AS Numeric(10, 0)), CAST(1491 AS Numeric(10, 0)), N'7555 - San Jose/SFO', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1681, 1403, N'7556', N'+', CAST(56 AS Numeric(10, 0)), CAST(1492 AS Numeric(10, 0)), N'7556 - Oakland/SFO', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1682, 1403, N'7557', N'+', CAST(57 AS Numeric(10, 0)), CAST(1493 AS Numeric(10, 0)), N'7557 - Fall River/BOS', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1683, 1403, N'7558', N'+', CAST(58 AS Numeric(10, 0)), CAST(1494 AS Numeric(10, 0)), N'7558 - Colorado Springs/DEN', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1684, 1403, N'7559', N'+', CAST(59 AS Numeric(10, 0)), CAST(1495 AS Numeric(10, 0)), N'7559 - Kona/HAW', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1685, 1403, N'7560', N'+', CAST(60 AS Numeric(10, 0)), CAST(1496 AS Numeric(10, 0)), N'7560 - Greenville/DEL', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1686, 1403, N'7561', N'+', CAST(61 AS Numeric(10, 0)), CAST(1497 AS Numeric(10, 0)), N'7561 - Las Cruces/GNM', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1687, 1403, N'7562', N'+', CAST(62 AS Numeric(10, 0)), CAST(1498 AS Numeric(10, 0)), N'7562 - Tallulah/GNO', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1688, 1403, N'7563', N'+', CAST(63 AS Numeric(10, 0)), CAST(1499 AS Numeric(10, 0)), N'7563 - Oklahoma City/TUL', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1689, 1410, N'8221', N'+', CAST(24 AS Numeric(10, 0)), CAST(1267 AS Numeric(10, 0)), N'8221 - TFANet Ascendify', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1690, 1410, N'8222', N'+', CAST(25 AS Numeric(10, 0)), CAST(1268 AS Numeric(10, 0)), N'8222 - TFANet Portal 8 Upgrade', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1691, 1410, N'8190', N'+', CAST(23 AS Numeric(10, 0)), CAST(1266 AS Numeric(10, 0)), N'8190 - TFANet IBM Connections 4 Upgrade', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1692, 1660, N'8195', N'+', CAST(0 AS Numeric(10, 0)), CAST(1420 AS Numeric(10, 0)), N'8195 - Placement Tracker', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1693, 1606, N'8223', N'+', CAST(0 AS Numeric(10, 0)), CAST(1394 AS Numeric(10, 0)), N'8223 - Legal Matter Management', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1694, 5, N'Technology Projects', N'+', CAST(0 AS Numeric(10, 0)), CAST(1120 AS Numeric(10, 0)), N'Technology Projects', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1695, 5, N'Non-Project Time Allocation', N'+', CAST(1 AS Numeric(10, 0)), CAST(1427 AS Numeric(10, 0)), N'Non-Project Time Allocation', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1696, 1695, N'8779', N'+', CAST(0 AS Numeric(10, 0)), CAST(1428 AS Numeric(10, 0)), N'8779 - FY Planning', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1697, 1695, N'8798', N'+', CAST(1 AS Numeric(10, 0)), CAST(1429 AS Numeric(10, 0)), N'8798 - Innovation', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1698, 1695, N'8797', N'+', CAST(2 AS Numeric(10, 0)), CAST(1430 AS Numeric(10, 0)), N'8797 - Institute', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1699, 1695, N'8796', N'+', CAST(3 AS Numeric(10, 0)), CAST(1431 AS Numeric(10, 0)), N'8796 - LEE', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1700, 1695, N'8795', N'+', CAST(4 AS Numeric(10, 0)), CAST(1432 AS Numeric(10, 0)), N'8795 - Overhead', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1701, 1695, N'8794', N'+', CAST(5 AS Numeric(10, 0)), CAST(1433 AS Numeric(10, 0)), N'8794 - TFALL', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1702, 1406, N'8214', N'+', CAST(36 AS Numeric(10, 0)), CAST(1187 AS Numeric(10, 0)), N'8214 - Workday Updates', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1703, 1406, N'8216', N'+', CAST(37 AS Numeric(10, 0)), CAST(1188 AS Numeric(10, 0)), N'8216 - Talent Management', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1704, 1406, N'8978', N'+', CAST(38 AS Numeric(10, 0)), CAST(1189 AS Numeric(10, 0)), N'8978 - Corporate Systems - Finance - Budget Pool', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1705, 1406, N'8977', N'+', CAST(39 AS Numeric(10, 0)), CAST(1190 AS Numeric(10, 0)), N'8977 - Corporate Systems - HA - Budget Pool', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1706, 1405, N'8185', N'+', CAST(15 AS Numeric(10, 0)), CAST(1142 AS Numeric(10, 0)), N'8185 - TFACT ATS', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1707, 1405, N'8186', N'+', CAST(16 AS Numeric(10, 0)), CAST(1143 AS Numeric(10, 0)), N'8186 - TFACT Front End Release Cycle 1', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1708, 1405, N'8187', N'+', CAST(17 AS Numeric(10, 0)), CAST(1144 AS Numeric(10, 0)), N'8187 - TFACT Back End Release Cycle 1', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1709, 1405, N'8188', N'+', CAST(18 AS Numeric(10, 0)), CAST(1145 AS Numeric(10, 0)), N'8188 - TFACT Front End Release Cycle 2', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1710, 1405, N'8197', N'+', CAST(19 AS Numeric(10, 0)), CAST(1146 AS Numeric(10, 0)), N'8197 - TFACT Back End Release Cycle 2', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1711, 1405, N'8998', N'+', CAST(22 AS Numeric(10, 0)), CAST(1149 AS Numeric(10, 0)), N'8998 - TFACT', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1712, 1425, N'8189', N'+', CAST(7 AS Numeric(10, 0)), CAST(1208 AS Numeric(10, 0)), N'8189 - ADMISSIONS - Selector Portal Updates & Enhancements', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1713, 1425, N'8191', N'+', CAST(8 AS Numeric(10, 0)), CAST(1209 AS Numeric(10, 0)), N'8191 - ADMISSIONS - IMPS Updates & Enhancements', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1714, 1425, N'8192', N'+', CAST(9 AS Numeric(10, 0)), CAST(1210 AS Numeric(10, 0)), N'8192 - ADMISSIONS - Tour Assignment Automation & Improvements', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1715, 1425, N'8193', N'+', CAST(10 AS Numeric(10, 0)), CAST(1211 AS Numeric(10, 0)), N'8193 - ADMISSIONS - Linking/Viewing Historical App Data', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1716, 1425, N'8194', N'+', CAST(11 AS Numeric(10, 0)), CAST(1212 AS Numeric(10, 0)), N'8194 - ADMISSIONS - Online Application Updates & Enhancements', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1717, 1425, N'8196', N'+', CAST(12 AS Numeric(10, 0)), CAST(1213 AS Numeric(10, 0)), N'8196 - Admissions - Business Processing Engine Implementation', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1718, 1170, N'09998', N'+', CAST(45 AS Numeric(10, 0)), CAST(778 AS Numeric(10, 0)), N'09998 - Unknown', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1719, 1406, N'8198', N'+', CAST(31 AS Numeric(10, 0)), CAST(1182 AS Numeric(10, 0)), N'8198 - Salary Offer Tool Project', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1720, 1406, N'8200', N'+', CAST(32 AS Numeric(10, 0)), CAST(1183 AS Numeric(10, 0)), N'8200 - Budgeting Tool Project', N'Active')

    INSERT [dbo].[TBL_DIMPC_PROJECT_CODE] ([ID], [Parent_ID], [Name], [aggregationExpression], [orderColumn], [DIMENSION_ORDER], [Level_0_Description], [Level_0_Status]) VALUES (1721, 3, N'2041', N'+', CAST(36 AS Numeric(10, 0)), CAST(243 AS Numeric(10, 0)), N'2041 - Lawrence University', N'Active')

  • venkyzrocks (6/20/2013)


    HI Guys,

    Please review the code below and I have pasted the DDL for it. The left outer returns more rows than the that in the left row itself and is kind of messing up my calculations.

    That is because you have more than 1 row on the right side that matches a single value on the left side. That is exactly what a left join will do. It will find all rows and the left side and ALL rows on the right side that match.

    _______________________________________________________________

    Need help? Help us help you.

    Read the article at http://www.sqlservercentral.com/articles/Best+Practices/61537/ for best practices on asking questions.

    Need to split a string? Try Jeff Modens splitter http://www.sqlservercentral.com/articles/Tally+Table/72993/.

    Cross Tabs and Pivots, Part 1 – Converting Rows to Columns - http://www.sqlservercentral.com/articles/T-SQL/63681/
    Cross Tabs and Pivots, Part 2 - Dynamic Cross Tabs - http://www.sqlservercentral.com/articles/Crosstab/65048/
    Understanding and Using APPLY (Part 1) - http://www.sqlservercentral.com/articles/APPLY/69953/
    Understanding and Using APPLY (Part 2) - http://www.sqlservercentral.com/articles/APPLY/69954/

  • Here is a simple example to demonstrate.

    create table #Left

    (

    LeftID int identity,

    MyValue varchar(10)

    )

    create table #Right

    (

    RightID int identity,

    MyValue varchar(10)

    )

    insert #Left

    select 'no match' union all

    select 'has match'

    insert #Right

    select 'has match' union all

    select 'has match'

    select *

    from #Left l

    left join #Right r on r.MyValue = l.MyValue

    _______________________________________________________________

    Need help? Help us help you.

    Read the article at http://www.sqlservercentral.com/articles/Best+Practices/61537/ for best practices on asking questions.

    Need to split a string? Try Jeff Modens splitter http://www.sqlservercentral.com/articles/Tally+Table/72993/.

    Cross Tabs and Pivots, Part 1 – Converting Rows to Columns - http://www.sqlservercentral.com/articles/T-SQL/63681/
    Cross Tabs and Pivots, Part 2 - Dynamic Cross Tabs - http://www.sqlservercentral.com/articles/Crosstab/65048/
    Understanding and Using APPLY (Part 1) - http://www.sqlservercentral.com/articles/APPLY/69953/
    Understanding and Using APPLY (Part 2) - http://www.sqlservercentral.com/articles/APPLY/69954/

  • Thanks makes total sense. Didn't realize my right table had duplicates.

Viewing 4 posts - 1 through 3 (of 3 total)

You must be logged in to reply to this topic. Login to reply