Hi, i would like to solve this SQL case study. Thank you

-- THIS SCRIPT WILL CREATE A DATABASE "PRODUCT DATABASE"

-- CREATES FOUR TABLES : TIME_DATA, PRODUCTS_DATA, CUSTOMERS_DATA & SALES_DATA

-- ALSO RELATES TIME_DATA, PRODUCTS_DATA, CUSTOMERS_DATA TO SALES_DATA

-- INCLUDES ABOUT 10000 ROWS FOR OUR PRACTICE

-- DO NOT SELECT ANY STATEMENTS OR LINES. JUST OPEN THIS FILE, CLICK @ EXECUTE.

CREATE DATABASE [PRODUCT DATABASE]

GO

USE [PRODUCT DATABASE]

GO

CREATE TABLE [dbo].[TIME_DATA](

[TimeKey] [int] IDENTITY(1,1) NOT NULL PRIMARY KEY,

[FullDateAlternateKey] [datetime] NULL,

[DayNumberOfWeek] [tinyint] NULL,

[EnglishDayNameOfWeek] [nvarchar](10) NULL,

[SpanishDayNameOfWeek] [nvarchar](10) NULL,

[FrenchDayNameOfWeek] [nvarchar](10) NULL,

[DayNumberOfMonth] [tinyint] NULL,

[DayNumberOfYear] [smallint] NULL,

[WeekNumberOfYear] [tinyint] NULL,

[EnglishMonthName] [nvarchar](10) NULL,

[SpanishMonthName] [nvarchar](10) NULL,

[FrenchMonthName] [nvarchar](10) NULL,

[MonthNumberOfYear] [tinyint] NULL,

[CalendarQuarter] [tinyint] NULL,

[CalendarYear] [char](4) NULL,

[CalendarSemester] [tinyint] NULL,

[FiscalQuarter] [tinyint] NULL,

[FiscalYear] [char](4) NULL,

[FiscalSemester] [tinyint] NULL

GO

SET IDENTITY_INSERT [dbo].[TIME_DATA] ON -- THIS MEANS, WE CAN INSERT OUR OWN IDENTITY VALUES

- Q1: HOW TO REPORT YEAR WISE TOTAL SALES?

-- Q2: HOW TO REPORT YEAR WISE, QUARTER WISE TOTAL SALES AND TOTAL TAX?

-- Q3: HOW TO REPORT YEAR WISE, QUARTER WISE, MONTH WISE TOTAL SALES AND TOTAL TAX?

-- Q4: HOW TO REPORT YEAR WISE, QUARTER WISE TOTAL SALES AND TOTAL TAX FOR JUNE MONTH ?

-- Q5: HOW TO REPORT CLASS WISE, COLOR WISE PRODUCTS FOR EACH YEAR BASED ON ASC ORDER OF SALES?

-- Q6: HOW TO REPORT AVERAGED SALES AND AVERAGED TAX FOR SUCH PRODUCTS WITH MAXIMUM LIST PRICE AND HIGHEST STANDARD PRICE?

-- Q7: HOW TO REPORT AVERAGED SALES AND AVERAGED TAX FOR SUCH HIGH CLASS RED COLORED PRODUCTS WITH MAXIMUM LIST PRICE FROM?

-- Q8: HOW TO COMBINE THE RESULTS FROM ABOVE TWO QUERIES. HOW TO MAKE IT FASTER?

-- Q9: HOW TO REPORT AVERAGE SALES AND AVERAGE TAX FOR ALL FEMALE CUSTOMERS FROM 2001 TO 2003 YEAR?

-- Q10: HOW TO REPORT YEAR WISE, CUSTOMER WISE, PRODUCT WISE TOTAL SALES AND TOTAL TAX ABOVE 1000 USD?

-- WE HAVE USER INTERFACE IN MSBI AND POWER BI TO AUTO GENERATE THE SQL QUERIES.

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1, CAST(N'2001-07-01 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 1, 182, 27, N'July', N'Julio', N'Juillet', 7, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (2, CAST(N'2001-07-02 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 2, 183, 27, N'July', N'Julio', N'Juillet', 7, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (3, CAST(N'2001-07-03 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 3, 184, 27, N'July', N'Julio', N'Juillet', 7, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (4, CAST(N'2001-07-04 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 4, 185, 27, N'July', N'Julio', N'Juillet', 7, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (5, CAST(N'2001-07-05 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 5, 186, 27, N'July', N'Julio', N'Juillet', 7, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (6, CAST(N'2001-07-06 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 6, 187, 27, N'July', N'Julio', N'Juillet', 7, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (7, CAST(N'2001-07-07 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 7, 188, 27, N'July', N'Julio', N'Juillet', 7, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (8, CAST(N'2001-07-08 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 8, 189, 28, N'July', N'Julio', N'Juillet', 7, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (9, CAST(N'2001-07-09 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 9, 190, 28, N'July', N'Julio', N'Juillet', 7, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (10, CAST(N'2001-07-10 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 10, 191, 28, N'July', N'Julio', N'Juillet', 7, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (11, CAST(N'2001-07-11 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 11, 192, 28, N'July', N'Julio', N'Juillet', 7, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (12, CAST(N'2001-07-12 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 12, 193, 28, N'July', N'Julio', N'Juillet', 7, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (13, CAST(N'2001-07-13 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 13, 194, 28, N'July', N'Julio', N'Juillet', 7, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (14, CAST(N'2001-07-14 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 14, 195, 28, N'July', N'Julio', N'Juillet', 7, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (15, CAST(N'2001-07-15 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 15, 196, 29, N'July', N'Julio', N'Juillet', 7, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (16, CAST(N'2001-07-16 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 16, 197, 29, N'July', N'Julio', N'Juillet', 7, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (17, CAST(N'2001-07-17 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 17, 198, 29, N'July', N'Julio', N'Juillet', 7, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (18, CAST(N'2001-07-18 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 18, 199, 29, N'July', N'Julio', N'Juillet', 7, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (19, CAST(N'2001-07-19 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 19, 200, 29, N'July', N'Julio', N'Juillet', 7, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (20, CAST(N'2001-07-20 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 20, 201, 29, N'July', N'Julio', N'Juillet', 7, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (21, CAST(N'2001-07-21 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 21, 202, 29, N'July', N'Julio', N'Juillet', 7, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (22, CAST(N'2001-07-22 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 22, 203, 30, N'July', N'Julio', N'Juillet', 7, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (23, CAST(N'2001-07-23 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 23, 204, 30, N'July', N'Julio', N'Juillet', 7, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (24, CAST(N'2001-07-24 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 24, 205, 30, N'July', N'Julio', N'Juillet', 7, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (25, CAST(N'2001-07-25 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 25, 206, 30, N'July', N'Julio', N'Juillet', 7, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (26, CAST(N'2001-07-26 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 26, 207, 30, N'July', N'Julio', N'Juillet', 7, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (27, CAST(N'2001-07-27 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 27, 208, 30, N'July', N'Julio', N'Juillet', 7, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (28, CAST(N'2001-07-28 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 28, 209, 30, N'July', N'Julio', N'Juillet', 7, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (29, CAST(N'2001-07-29 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 29, 210, 31, N'July', N'Julio', N'Juillet', 7, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (30, CAST(N'2001-07-30 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 30, 211, 31, N'July', N'Julio', N'Juillet', 7, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (31, CAST(N'2001-07-31 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 31, 212, 31, N'July', N'Julio', N'Juillet', 7, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (32, CAST(N'2001-08-01 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 1, 213, 31, N'August', N'Agosto', N'Août', 8, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (33, CAST(N'2001-08-02 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 2, 214, 31, N'August', N'Agosto', N'Août', 8, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (34, CAST(N'2001-08-03 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 3, 215, 31, N'August', N'Agosto', N'Août', 8, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (35, CAST(N'2001-08-04 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 4, 216, 31, N'August', N'Agosto', N'Août', 8, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (36, CAST(N'2001-08-05 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 5, 217, 32, N'August', N'Agosto', N'Août', 8, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (37, CAST(N'2001-08-06 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 6, 218, 32, N'August', N'Agosto', N'Août', 8, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (38, CAST(N'2001-08-07 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 7, 219, 32, N'August', N'Agosto', N'Août', 8, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (39, CAST(N'2001-08-08 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 8, 220, 32, N'August', N'Agosto', N'Août', 8, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (40, CAST(N'2001-08-09 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 9, 221, 32, N'August', N'Agosto', N'Août', 8, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (41, CAST(N'2001-08-10 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 10, 222, 32, N'August', N'Agosto', N'Août', 8, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (42, CAST(N'2001-08-11 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 11, 223, 32, N'August', N'Agosto', N'Août', 8, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (43, CAST(N'2001-08-12 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 12, 224, 33, N'August', N'Agosto', N'Août', 8, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (44, CAST(N'2001-08-13 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 13, 225, 33, N'August', N'Agosto', N'Août', 8, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (45, CAST(N'2001-08-14 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 14, 226, 33, N'August', N'Agosto', N'Août', 8, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (46, CAST(N'2001-08-15 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 15, 227, 33, N'August', N'Agosto', N'Août', 8, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (47, CAST(N'2001-08-16 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 16, 228, 33, N'August', N'Agosto', N'Août', 8, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (48, CAST(N'2001-08-17 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 17, 229, 33, N'August', N'Agosto', N'Août', 8, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (49, CAST(N'2001-08-18 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 18, 230, 33, N'August', N'Agosto', N'Août', 8, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (50, CAST(N'2001-08-19 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 19, 231, 34, N'August', N'Agosto', N'Août', 8, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (51, CAST(N'2001-08-20 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 20, 232, 34, N'August', N'Agosto', N'Août', 8, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (52, CAST(N'2001-08-21 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 21, 233, 34, N'August', N'Agosto', N'Août', 8, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (53, CAST(N'2001-08-22 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 22, 234, 34, N'August', N'Agosto', N'Août', 8, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (54, CAST(N'2001-08-23 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 23, 235, 34, N'August', N'Agosto', N'Août', 8, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (55, CAST(N'2001-08-24 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 24, 236, 34, N'August', N'Agosto', N'Août', 8, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (56, CAST(N'2001-08-25 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 25, 237, 34, N'August', N'Agosto', N'Août', 8, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (57, CAST(N'2001-08-26 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 26, 238, 35, N'August', N'Agosto', N'Août', 8, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (58, CAST(N'2001-08-27 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 27, 239, 35, N'August', N'Agosto', N'Août', 8, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (59, CAST(N'2001-08-28 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 28, 240, 35, N'August', N'Agosto', N'Août', 8, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (60, CAST(N'2001-08-29 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 29, 241, 35, N'August', N'Agosto', N'Août', 8, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (61, CAST(N'2001-08-30 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 30, 242, 35, N'August', N'Agosto', N'Août', 8, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (62, CAST(N'2001-08-31 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 31, 243, 35, N'August', N'Agosto', N'Août', 8, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (63, CAST(N'2001-09-01 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 1, 244, 35, N'September', N'Septiembre', N'Septembre', 9, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (64, CAST(N'2001-09-02 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 2, 245, 36, N'September', N'Septiembre', N'Septembre', 9, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (65, CAST(N'2001-09-03 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 3, 246, 36, N'September', N'Septiembre', N'Septembre', 9, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (66, CAST(N'2001-09-04 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 4, 247, 36, N'September', N'Septiembre', N'Septembre', 9, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (67, CAST(N'2001-09-05 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 5, 248, 36, N'September', N'Septiembre', N'Septembre', 9, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (68, CAST(N'2001-09-06 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 6, 249, 36, N'September', N'Septiembre', N'Septembre', 9, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (69, CAST(N'2001-09-07 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 7, 250, 36, N'September', N'Septiembre', N'Septembre', 9, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (70, CAST(N'2001-09-08 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 8, 251, 36, N'September', N'Septiembre', N'Septembre', 9, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (71, CAST(N'2001-09-09 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 9, 252, 37, N'September', N'Septiembre', N'Septembre', 9, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (72, CAST(N'2001-09-10 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 10, 253, 37, N'September', N'Septiembre', N'Septembre', 9, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (73, CAST(N'2001-09-11 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 11, 254, 37, N'September', N'Septiembre', N'Septembre', 9, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (74, CAST(N'2001-09-12 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 12, 255, 37, N'September', N'Septiembre', N'Septembre', 9, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (75, CAST(N'2001-09-13 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 13, 256, 37, N'September', N'Septiembre', N'Septembre', 9, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (76, CAST(N'2001-09-14 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 14, 257, 37, N'September', N'Septiembre', N'Septembre', 9, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (77, CAST(N'2001-09-15 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 15, 258, 37, N'September', N'Septiembre', N'Septembre', 9, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (78, CAST(N'2001-09-16 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 16, 259, 38, N'September', N'Septiembre', N'Septembre', 9, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (79, CAST(N'2001-09-17 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 17, 260, 38, N'September', N'Septiembre', N'Septembre', 9, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (80, CAST(N'2001-09-18 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 18, 261, 38, N'September', N'Septiembre', N'Septembre', 9, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (81, CAST(N'2001-09-19 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 19, 262, 38, N'September', N'Septiembre', N'Septembre', 9, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (82, CAST(N'2001-09-20 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 20, 263, 38, N'September', N'Septiembre', N'Septembre', 9, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (83, CAST(N'2001-09-21 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 21, 264, 38, N'September', N'Septiembre', N'Septembre', 9, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (84, CAST(N'2001-09-22 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 22, 265, 38, N'September', N'Septiembre', N'Septembre', 9, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (85, CAST(N'2001-09-23 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 23, 266, 39, N'September', N'Septiembre', N'Septembre', 9, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (86, CAST(N'2001-09-24 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 24, 267, 39, N'September', N'Septiembre', N'Septembre', 9, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (87, CAST(N'2001-09-25 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 25, 268, 39, N'September', N'Septiembre', N'Septembre', 9, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (88, CAST(N'2001-09-26 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 26, 269, 39, N'September', N'Septiembre', N'Septembre', 9, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (89, CAST(N'2001-09-27 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 27, 270, 39, N'September', N'Septiembre', N'Septembre', 9, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (90, CAST(N'2001-09-28 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 28, 271, 39, N'September', N'Septiembre', N'Septembre', 9, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (91, CAST(N'2001-09-29 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 29, 272, 39, N'September', N'Septiembre', N'Septembre', 9, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (92, CAST(N'2001-09-30 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 30, 273, 40, N'September', N'Septiembre', N'Septembre', 9, 3, N'2001', 2, 1, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (93, CAST(N'2001-10-01 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 1, 274, 40, N'October', N'Octubre', N'Octobre', 10, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (94, CAST(N'2001-10-02 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 2, 275, 40, N'October', N'Octubre', N'Octobre', 10, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (95, CAST(N'2001-10-03 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 3, 276, 40, N'October', N'Octubre', N'Octobre', 10, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (96, CAST(N'2001-10-04 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 4, 277, 40, N'October', N'Octubre', N'Octobre', 10, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (97, CAST(N'2001-10-05 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 5, 278, 40, N'October', N'Octubre', N'Octobre', 10, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (98, CAST(N'2001-10-06 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 6, 279, 40, N'October', N'Octubre', N'Octobre', 10, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (99, CAST(N'2001-10-07 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 7, 280, 41, N'October', N'Octubre', N'Octobre', 10, 4, N'2001', 2, 2, N'2002', 1)

GO

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (100, CAST(N'2001-10-08 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 8, 281, 41, N'October', N'Octubre', N'Octobre', 10, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (101, CAST(N'2001-10-09 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 9, 282, 41, N'October', N'Octubre', N'Octobre', 10, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (102, CAST(N'2001-10-10 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 10, 283, 41, N'October', N'Octubre', N'Octobre', 10, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (103, CAST(N'2001-10-11 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 11, 284, 41, N'October', N'Octubre', N'Octobre', 10, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (104, CAST(N'2001-10-12 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 12, 285, 41, N'October', N'Octubre', N'Octobre', 10, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (105, CAST(N'2001-10-13 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 13, 286, 41, N'October', N'Octubre', N'Octobre', 10, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (106, CAST(N'2001-10-14 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 14, 287, 42, N'October', N'Octubre', N'Octobre', 10, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (107, CAST(N'2001-10-15 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 15, 288, 42, N'October', N'Octubre', N'Octobre', 10, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (108, CAST(N'2001-10-16 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 16, 289, 42, N'October', N'Octubre', N'Octobre', 10, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (109, CAST(N'2001-10-17 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 17, 290, 42, N'October', N'Octubre', N'Octobre', 10, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (110, CAST(N'2001-10-18 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 18, 291, 42, N'October', N'Octubre', N'Octobre', 10, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (111, CAST(N'2001-10-19 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 19, 292, 42, N'October', N'Octubre', N'Octobre', 10, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (112, CAST(N'2001-10-20 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 20, 293, 42, N'October', N'Octubre', N'Octobre', 10, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (113, CAST(N'2001-10-21 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 21, 294, 43, N'October', N'Octubre', N'Octobre', 10, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (114, CAST(N'2001-10-22 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 22, 295, 43, N'October', N'Octubre', N'Octobre', 10, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (115, CAST(N'2001-10-23 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 23, 296, 43, N'October', N'Octubre', N'Octobre', 10, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (116, CAST(N'2001-10-24 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 24, 297, 43, N'October', N'Octubre', N'Octobre', 10, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (117, CAST(N'2001-10-25 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 25, 298, 43, N'October', N'Octubre', N'Octobre', 10, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (118, CAST(N'2001-10-26 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 26, 299, 43, N'October', N'Octubre', N'Octobre', 10, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (119, CAST(N'2001-10-27 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 27, 300, 43, N'October', N'Octubre', N'Octobre', 10, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (120, CAST(N'2001-10-28 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 28, 301, 44, N'October', N'Octubre', N'Octobre', 10, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (121, CAST(N'2001-10-29 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 29, 302, 44, N'October', N'Octubre', N'Octobre', 10, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (122, CAST(N'2001-10-30 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 30, 303, 44, N'October', N'Octubre', N'Octobre', 10, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (123, CAST(N'2001-10-31 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 31, 304, 44, N'October', N'Octubre', N'Octobre', 10, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (124, CAST(N'2001-11-01 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 1, 305, 44, N'November', N'Noviembre', N'Novembre', 11, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (125, CAST(N'2001-11-02 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 2, 306, 44, N'November', N'Noviembre', N'Novembre', 11, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (126, CAST(N'2001-11-03 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 3, 307, 44, N'November', N'Noviembre', N'Novembre', 11, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (127, CAST(N'2001-11-04 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 4, 308, 45, N'November', N'Noviembre', N'Novembre', 11, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (128, CAST(N'2001-11-05 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 5, 309, 45, N'November', N'Noviembre', N'Novembre', 11, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (129, CAST(N'2001-11-06 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 6, 310, 45, N'November', N'Noviembre', N'Novembre', 11, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (130, CAST(N'2001-11-07 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 7, 311, 45, N'November', N'Noviembre', N'Novembre', 11, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (131, CAST(N'2001-11-08 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 8, 312, 45, N'November', N'Noviembre', N'Novembre', 11, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (132, CAST(N'2001-11-09 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 9, 313, 45, N'November', N'Noviembre', N'Novembre', 11, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (133, CAST(N'2001-11-10 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 10, 314, 45, N'November', N'Noviembre', N'Novembre', 11, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (134, CAST(N'2001-11-11 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 11, 315, 46, N'November', N'Noviembre', N'Novembre', 11, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (135, CAST(N'2001-11-12 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 12, 316, 46, N'November', N'Noviembre', N'Novembre', 11, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (136, CAST(N'2001-11-13 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 13, 317, 46, N'November', N'Noviembre', N'Novembre', 11, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (137, CAST(N'2001-11-14 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 14, 318, 46, N'November', N'Noviembre', N'Novembre', 11, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (138, CAST(N'2001-11-15 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 15, 319, 46, N'November', N'Noviembre', N'Novembre', 11, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (139, CAST(N'2001-11-16 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 16, 320, 46, N'November', N'Noviembre', N'Novembre', 11, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (140, CAST(N'2001-11-17 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 17, 321, 46, N'November', N'Noviembre', N'Novembre', 11, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (141, CAST(N'2001-11-18 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 18, 322, 47, N'November', N'Noviembre', N'Novembre', 11, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (142, CAST(N'2001-11-19 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 19, 323, 47, N'November', N'Noviembre', N'Novembre', 11, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (143, CAST(N'2001-11-20 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 20, 324, 47, N'November', N'Noviembre', N'Novembre', 11, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (144, CAST(N'2001-11-21 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 21, 325, 47, N'November', N'Noviembre', N'Novembre', 11, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (145, CAST(N'2001-11-22 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 22, 326, 47, N'November', N'Noviembre', N'Novembre', 11, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (146, CAST(N'2001-11-23 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 23, 327, 47, N'November', N'Noviembre', N'Novembre', 11, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (147, CAST(N'2001-11-24 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 24, 328, 47, N'November', N'Noviembre', N'Novembre', 11, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (148, CAST(N'2001-11-25 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 25, 329, 48, N'November', N'Noviembre', N'Novembre', 11, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (149, CAST(N'2001-11-26 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 26, 330, 48, N'November', N'Noviembre', N'Novembre', 11, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (150, CAST(N'2001-11-27 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 27, 331, 48, N'November', N'Noviembre', N'Novembre', 11, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (151, CAST(N'2001-11-28 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 28, 332, 48, N'November', N'Noviembre', N'Novembre', 11, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (152, CAST(N'2001-11-29 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 29, 333, 48, N'November', N'Noviembre', N'Novembre', 11, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (153, CAST(N'2001-11-30 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 30, 334, 48, N'November', N'Noviembre', N'Novembre', 11, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (154, CAST(N'2001-12-01 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 1, 335, 48, N'December', N'Diciembre', N'Décembre', 12, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (155, CAST(N'2001-12-02 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 2, 336, 49, N'December', N'Diciembre', N'Décembre', 12, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (156, CAST(N'2001-12-03 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 3, 337, 49, N'December', N'Diciembre', N'Décembre', 12, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (157, CAST(N'2001-12-04 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 4, 338, 49, N'December', N'Diciembre', N'Décembre', 12, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (158, CAST(N'2001-12-05 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 5, 339, 49, N'December', N'Diciembre', N'Décembre', 12, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (159, CAST(N'2001-12-06 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 6, 340, 49, N'December', N'Diciembre', N'Décembre', 12, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (160, CAST(N'2001-12-07 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 7, 341, 49, N'December', N'Diciembre', N'Décembre', 12, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (161, CAST(N'2001-12-08 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 8, 342, 49, N'December', N'Diciembre', N'Décembre', 12, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (162, CAST(N'2001-12-09 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 9, 343, 50, N'December', N'Diciembre', N'Décembre', 12, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (163, CAST(N'2001-12-10 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 10, 344, 50, N'December', N'Diciembre', N'Décembre', 12, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (164, CAST(N'2001-12-11 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 11, 345, 50, N'December', N'Diciembre', N'Décembre', 12, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (165, CAST(N'2001-12-12 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 12, 346, 50, N'December', N'Diciembre', N'Décembre', 12, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (166, CAST(N'2001-12-13 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 13, 347, 50, N'December', N'Diciembre', N'Décembre', 12, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (167, CAST(N'2001-12-14 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 14, 348, 50, N'December', N'Diciembre', N'Décembre', 12, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (168, CAST(N'2001-12-15 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 15, 349, 50, N'December', N'Diciembre', N'Décembre', 12, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (169, CAST(N'2001-12-16 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 16, 350, 51, N'December', N'Diciembre', N'Décembre', 12, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (170, CAST(N'2001-12-17 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 17, 351, 51, N'December', N'Diciembre', N'Décembre', 12, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (171, CAST(N'2001-12-18 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 18, 352, 51, N'December', N'Diciembre', N'Décembre', 12, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (172, CAST(N'2001-12-19 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 19, 353, 51, N'December', N'Diciembre', N'Décembre', 12, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (173, CAST(N'2001-12-20 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 20, 354, 51, N'December', N'Diciembre', N'Décembre', 12, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (174, CAST(N'2001-12-21 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 21, 355, 51, N'December', N'Diciembre', N'Décembre', 12, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (175, CAST(N'2001-12-22 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 22, 356, 51, N'December', N'Diciembre', N'Décembre', 12, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (176, CAST(N'2001-12-23 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 23, 357, 52, N'December', N'Diciembre', N'Décembre', 12, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (177, CAST(N'2001-12-24 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 24, 358, 52, N'December', N'Diciembre', N'Décembre', 12, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (178, CAST(N'2001-12-25 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 25, 359, 52, N'December', N'Diciembre', N'Décembre', 12, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (179, CAST(N'2001-12-26 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 26, 360, 52, N'December', N'Diciembre', N'Décembre', 12, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (180, CAST(N'2001-12-27 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 27, 361, 52, N'December', N'Diciembre', N'Décembre', 12, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (181, CAST(N'2001-12-28 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 28, 362, 52, N'December', N'Diciembre', N'Décembre', 12, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (182, CAST(N'2001-12-29 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 29, 363, 52, N'December', N'Diciembre', N'Décembre', 12, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (183, CAST(N'2001-12-30 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 30, 364, 53, N'December', N'Diciembre', N'Décembre', 12, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (184, CAST(N'2001-12-31 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 31, 365, 53, N'December', N'Diciembre', N'Décembre', 12, 4, N'2001', 2, 2, N'2002', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (185, CAST(N'2002-01-01 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 1, 1, 1, N'January', N'Enero', N'Janvier', 1, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (186, CAST(N'2002-01-02 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 2, 2, 1, N'January', N'Enero', N'Janvier', 1, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (187, CAST(N'2002-01-03 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 3, 3, 1, N'January', N'Enero', N'Janvier', 1, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (188, CAST(N'2002-01-04 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 4, 4, 1, N'January', N'Enero', N'Janvier', 1, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (189, CAST(N'2002-01-05 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 5, 5, 1, N'January', N'Enero', N'Janvier', 1, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (190, CAST(N'2002-01-06 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 6, 6, 2, N'January', N'Enero', N'Janvier', 1, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (191, CAST(N'2002-01-07 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 7, 7, 2, N'January', N'Enero', N'Janvier', 1, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (192, CAST(N'2002-01-08 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 8, 8, 2, N'January', N'Enero', N'Janvier', 1, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (193, CAST(N'2002-01-09 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 9, 9, 2, N'January', N'Enero', N'Janvier', 1, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (194, CAST(N'2002-01-10 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 10, 10, 2, N'January', N'Enero', N'Janvier', 1, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (195, CAST(N'2002-01-11 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 11, 11, 2, N'January', N'Enero', N'Janvier', 1, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (196, CAST(N'2002-01-12 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 12, 12, 2, N'January', N'Enero', N'Janvier', 1, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (197, CAST(N'2002-01-13 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 13, 13, 3, N'January', N'Enero', N'Janvier', 1, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (198, CAST(N'2002-01-14 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 14, 14, 3, N'January', N'Enero', N'Janvier', 1, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (199, CAST(N'2002-01-15 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 15, 15, 3, N'January', N'Enero', N'Janvier', 1, 1, N'2002', 1, 3, N'2002', 2)

GO

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (200, CAST(N'2002-01-16 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 16, 16, 3, N'January', N'Enero', N'Janvier', 1, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (201, CAST(N'2002-01-17 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 17, 17, 3, N'January', N'Enero', N'Janvier', 1, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (202, CAST(N'2002-01-18 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 18, 18, 3, N'January', N'Enero', N'Janvier', 1, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (203, CAST(N'2002-01-19 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 19, 19, 3, N'January', N'Enero', N'Janvier', 1, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (204, CAST(N'2002-01-20 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 20, 20, 4, N'January', N'Enero', N'Janvier', 1, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (205, CAST(N'2002-01-21 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 21, 21, 4, N'January', N'Enero', N'Janvier', 1, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (206, CAST(N'2002-01-22 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 22, 22, 4, N'January', N'Enero', N'Janvier', 1, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (207, CAST(N'2002-01-23 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 23, 23, 4, N'January', N'Enero', N'Janvier', 1, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (208, CAST(N'2002-01-24 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 24, 24, 4, N'January', N'Enero', N'Janvier', 1, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (209, CAST(N'2002-01-25 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 25, 25, 4, N'January', N'Enero', N'Janvier', 1, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (210, CAST(N'2002-01-26 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 26, 26, 4, N'January', N'Enero', N'Janvier', 1, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (211, CAST(N'2002-01-27 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 27, 27, 5, N'January', N'Enero', N'Janvier', 1, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (212, CAST(N'2002-01-28 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 28, 28, 5, N'January', N'Enero', N'Janvier', 1, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (213, CAST(N'2002-01-29 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 29, 29, 5, N'January', N'Enero', N'Janvier', 1, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (214, CAST(N'2002-01-30 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 30, 30, 5, N'January', N'Enero', N'Janvier', 1, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (215, CAST(N'2002-01-31 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 31, 31, 5, N'January', N'Enero', N'Janvier', 1, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (216, CAST(N'2002-02-01 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 1, 32, 5, N'February', N'Febrero', N'Février', 2, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (217, CAST(N'2002-02-02 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 2, 33, 5, N'February', N'Febrero', N'Février', 2, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (218, CAST(N'2002-02-03 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 3, 34, 6, N'February', N'Febrero', N'Février', 2, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (219, CAST(N'2002-02-04 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 4, 35, 6, N'February', N'Febrero', N'Février', 2, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (220, CAST(N'2002-02-05 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 5, 36, 6, N'February', N'Febrero', N'Février', 2, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (221, CAST(N'2002-02-06 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 6, 37, 6, N'February', N'Febrero', N'Février', 2, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (222, CAST(N'2002-02-07 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 7, 38, 6, N'February', N'Febrero', N'Février', 2, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (223, CAST(N'2002-02-08 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 8, 39, 6, N'February', N'Febrero', N'Février', 2, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (224, CAST(N'2002-02-09 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 9, 40, 6, N'February', N'Febrero', N'Février', 2, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (225, CAST(N'2002-02-10 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 10, 41, 7, N'February', N'Febrero', N'Février', 2, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (226, CAST(N'2002-02-11 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 11, 42, 7, N'February', N'Febrero', N'Février', 2, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (227, CAST(N'2002-02-12 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 12, 43, 7, N'February', N'Febrero', N'Février', 2, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (228, CAST(N'2002-02-13 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 13, 44, 7, N'February', N'Febrero', N'Février', 2, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (229, CAST(N'2002-02-14 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 14, 45, 7, N'February', N'Febrero', N'Février', 2, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (230, CAST(N'2002-02-15 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 15, 46, 7, N'February', N'Febrero', N'Février', 2, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (231, CAST(N'2002-02-16 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 16, 47, 7, N'February', N'Febrero', N'Février', 2, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (232, CAST(N'2002-02-17 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 17, 48, 8, N'February', N'Febrero', N'Février', 2, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (233, CAST(N'2002-02-18 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 18, 49, 8, N'February', N'Febrero', N'Février', 2, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (234, CAST(N'2002-02-19 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 19, 50, 8, N'February', N'Febrero', N'Février', 2, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (235, CAST(N'2002-02-20 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 20, 51, 8, N'February', N'Febrero', N'Février', 2, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (236, CAST(N'2002-02-21 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 21, 52, 8, N'February', N'Febrero', N'Février', 2, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (237, CAST(N'2002-02-22 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 22, 53, 8, N'February', N'Febrero', N'Février', 2, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (238, CAST(N'2002-02-23 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 23, 54, 8, N'February', N'Febrero', N'Février', 2, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (239, CAST(N'2002-02-24 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 24, 55, 9, N'February', N'Febrero', N'Février', 2, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (240, CAST(N'2002-02-25 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 25, 56, 9, N'February', N'Febrero', N'Février', 2, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (241, CAST(N'2002-02-26 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 26, 57, 9, N'February', N'Febrero', N'Février', 2, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (242, CAST(N'2002-02-27 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 27, 58, 9, N'February', N'Febrero', N'Février', 2, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (243, CAST(N'2002-02-28 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 28, 59, 9, N'February', N'Febrero', N'Février', 2, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (244, CAST(N'2002-03-01 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 1, 60, 9, N'March', N'Marzo', N'Mars', 3, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (245, CAST(N'2002-03-02 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 2, 61, 9, N'March', N'Marzo', N'Mars', 3, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (246, CAST(N'2002-03-03 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 3, 62, 10, N'March', N'Marzo', N'Mars', 3, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (247, CAST(N'2002-03-04 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 4, 63, 10, N'March', N'Marzo', N'Mars', 3, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (248, CAST(N'2002-03-05 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 5, 64, 10, N'March', N'Marzo', N'Mars', 3, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (249, CAST(N'2002-03-06 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 6, 65, 10, N'March', N'Marzo', N'Mars', 3, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (250, CAST(N'2002-03-07 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 7, 66, 10, N'March', N'Marzo', N'Mars', 3, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (251, CAST(N'2002-03-08 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 8, 67, 10, N'March', N'Marzo', N'Mars', 3, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (252, CAST(N'2002-03-09 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 9, 68, 10, N'March', N'Marzo', N'Mars', 3, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (253, CAST(N'2002-03-10 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 10, 69, 11, N'March', N'Marzo', N'Mars', 3, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (254, CAST(N'2002-03-11 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 11, 70, 11, N'March', N'Marzo', N'Mars', 3, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (255, CAST(N'2002-03-12 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 12, 71, 11, N'March', N'Marzo', N'Mars', 3, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (256, CAST(N'2002-03-13 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 13, 72, 11, N'March', N'Marzo', N'Mars', 3, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (257, CAST(N'2002-03-14 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 14, 73, 11, N'March', N'Marzo', N'Mars', 3, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (258, CAST(N'2002-03-15 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 15, 74, 11, N'March', N'Marzo', N'Mars', 3, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (259, CAST(N'2002-03-16 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 16, 75, 11, N'March', N'Marzo', N'Mars', 3, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (260, CAST(N'2002-03-17 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 17, 76, 12, N'March', N'Marzo', N'Mars', 3, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (261, CAST(N'2002-03-18 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 18, 77, 12, N'March', N'Marzo', N'Mars', 3, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (262, CAST(N'2002-03-19 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 19, 78, 12, N'March', N'Marzo', N'Mars', 3, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (263, CAST(N'2002-03-20 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 20, 79, 12, N'March', N'Marzo', N'Mars', 3, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (264, CAST(N'2002-03-21 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 21, 80, 12, N'March', N'Marzo', N'Mars', 3, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (265, CAST(N'2002-03-22 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 22, 81, 12, N'March', N'Marzo', N'Mars', 3, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (266, CAST(N'2002-03-23 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 23, 82, 12, N'March', N'Marzo', N'Mars', 3, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (267, CAST(N'2002-03-24 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 24, 83, 13, N'March', N'Marzo', N'Mars', 3, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (268, CAST(N'2002-03-25 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 25, 84, 13, N'March', N'Marzo', N'Mars', 3, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (269, CAST(N'2002-03-26 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 26, 85, 13, N'March', N'Marzo', N'Mars', 3, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (270, CAST(N'2002-03-27 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 27, 86, 13, N'March', N'Marzo', N'Mars', 3, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (271, CAST(N'2002-03-28 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 28, 87, 13, N'March', N'Marzo', N'Mars', 3, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (272, CAST(N'2002-03-29 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 29, 88, 13, N'March', N'Marzo', N'Mars', 3, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (273, CAST(N'2002-03-30 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 30, 89, 13, N'March', N'Marzo', N'Mars', 3, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (274, CAST(N'2002-03-31 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 31, 90, 14, N'March', N'Marzo', N'Mars', 3, 1, N'2002', 1, 3, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (275, CAST(N'2002-04-01 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 1, 91, 14, N'April', N'Abril', N'Avril', 4, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (276, CAST(N'2002-04-02 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 2, 92, 14, N'April', N'Abril', N'Avril', 4, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (277, CAST(N'2002-04-03 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 3, 93, 14, N'April', N'Abril', N'Avril', 4, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (278, CAST(N'2002-04-04 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 4, 94, 14, N'April', N'Abril', N'Avril', 4, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (279, CAST(N'2002-04-05 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 5, 95, 14, N'April', N'Abril', N'Avril', 4, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (280, CAST(N'2002-04-06 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 6, 96, 14, N'April', N'Abril', N'Avril', 4, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (281, CAST(N'2002-04-07 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 7, 97, 15, N'April', N'Abril', N'Avril', 4, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (282, CAST(N'2002-04-08 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 8, 98, 15, N'April', N'Abril', N'Avril', 4, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (283, CAST(N'2002-04-09 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 9, 99, 15, N'April', N'Abril', N'Avril', 4, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (284, CAST(N'2002-04-10 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 10, 100, 15, N'April', N'Abril', N'Avril', 4, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (285, CAST(N'2002-04-11 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 11, 101, 15, N'April', N'Abril', N'Avril', 4, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (286, CAST(N'2002-04-12 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 12, 102, 15, N'April', N'Abril', N'Avril', 4, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (287, CAST(N'2002-04-13 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 13, 103, 15, N'April', N'Abril', N'Avril', 4, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (288, CAST(N'2002-04-14 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 14, 104, 16, N'April', N'Abril', N'Avril', 4, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (289, CAST(N'2002-04-15 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 15, 105, 16, N'April', N'Abril', N'Avril', 4, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (290, CAST(N'2002-04-16 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 16, 106, 16, N'April', N'Abril', N'Avril', 4, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (291, CAST(N'2002-04-17 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 17, 107, 16, N'April', N'Abril', N'Avril', 4, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (292, CAST(N'2002-04-18 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 18, 108, 16, N'April', N'Abril', N'Avril', 4, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (293, CAST(N'2002-04-19 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 19, 109, 16, N'April', N'Abril', N'Avril', 4, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (294, CAST(N'2002-04-20 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 20, 110, 16, N'April', N'Abril', N'Avril', 4, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (295, CAST(N'2002-04-21 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 21, 111, 17, N'April', N'Abril', N'Avril', 4, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (296, CAST(N'2002-04-22 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 22, 112, 17, N'April', N'Abril', N'Avril', 4, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (297, CAST(N'2002-04-23 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 23, 113, 17, N'April', N'Abril', N'Avril', 4, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (298, CAST(N'2002-04-24 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 24, 114, 17, N'April', N'Abril', N'Avril', 4, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (299, CAST(N'2002-04-25 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 25, 115, 17, N'April', N'Abril', N'Avril', 4, 2, N'2002', 1, 4, N'2002', 2)

GO

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (300, CAST(N'2002-04-26 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 26, 116, 17, N'April', N'Abril', N'Avril', 4, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (301, CAST(N'2002-04-27 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 27, 117, 17, N'April', N'Abril', N'Avril', 4, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (302, CAST(N'2002-04-28 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 28, 118, 18, N'April', N'Abril', N'Avril', 4, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (303, CAST(N'2002-04-29 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 29, 119, 18, N'April', N'Abril', N'Avril', 4, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (304, CAST(N'2002-04-30 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 30, 120, 18, N'April', N'Abril', N'Avril', 4, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (305, CAST(N'2002-05-01 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 1, 121, 18, N'May', N'Mayo', N'Mai', 5, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (306, CAST(N'2002-05-02 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 2, 122, 18, N'May', N'Mayo', N'Mai', 5, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (307, CAST(N'2002-05-03 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 3, 123, 18, N'May', N'Mayo', N'Mai', 5, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (308, CAST(N'2002-05-04 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 4, 124, 18, N'May', N'Mayo', N'Mai', 5, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (309, CAST(N'2002-05-05 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 5, 125, 19, N'May', N'Mayo', N'Mai', 5, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (310, CAST(N'2002-05-06 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 6, 126, 19, N'May', N'Mayo', N'Mai', 5, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (311, CAST(N'2002-05-07 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 7, 127, 19, N'May', N'Mayo', N'Mai', 5, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (312, CAST(N'2002-05-08 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 8, 128, 19, N'May', N'Mayo', N'Mai', 5, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (313, CAST(N'2002-05-09 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 9, 129, 19, N'May', N'Mayo', N'Mai', 5, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (314, CAST(N'2002-05-10 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 10, 130, 19, N'May', N'Mayo', N'Mai', 5, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (315, CAST(N'2002-05-11 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 11, 131, 19, N'May', N'Mayo', N'Mai', 5, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (316, CAST(N'2002-05-12 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 12, 132, 20, N'May', N'Mayo', N'Mai', 5, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (317, CAST(N'2002-05-13 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 13, 133, 20, N'May', N'Mayo', N'Mai', 5, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (318, CAST(N'2002-05-14 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 14, 134, 20, N'May', N'Mayo', N'Mai', 5, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (319, CAST(N'2002-05-15 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 15, 135, 20, N'May', N'Mayo', N'Mai', 5, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (320, CAST(N'2002-05-16 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 16, 136, 20, N'May', N'Mayo', N'Mai', 5, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (321, CAST(N'2002-05-17 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 17, 137, 20, N'May', N'Mayo', N'Mai', 5, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (322, CAST(N'2002-05-18 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 18, 138, 20, N'May', N'Mayo', N'Mai', 5, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (323, CAST(N'2002-05-19 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 19, 139, 21, N'May', N'Mayo', N'Mai', 5, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (324, CAST(N'2002-05-20 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 20, 140, 21, N'May', N'Mayo', N'Mai', 5, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (325, CAST(N'2002-05-21 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 21, 141, 21, N'May', N'Mayo', N'Mai', 5, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (326, CAST(N'2002-05-22 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 22, 142, 21, N'May', N'Mayo', N'Mai', 5, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (327, CAST(N'2002-05-23 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 23, 143, 21, N'May', N'Mayo', N'Mai', 5, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (328, CAST(N'2002-05-24 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 24, 144, 21, N'May', N'Mayo', N'Mai', 5, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (329, CAST(N'2002-05-25 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 25, 145, 21, N'May', N'Mayo', N'Mai', 5, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (330, CAST(N'2002-05-26 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 26, 146, 22, N'May', N'Mayo', N'Mai', 5, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (331, CAST(N'2002-05-27 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 27, 147, 22, N'May', N'Mayo', N'Mai', 5, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (332, CAST(N'2002-05-28 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 28, 148, 22, N'May', N'Mayo', N'Mai', 5, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (333, CAST(N'2002-05-29 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 29, 149, 22, N'May', N'Mayo', N'Mai', 5, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (334, CAST(N'2002-05-30 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 30, 150, 22, N'May', N'Mayo', N'Mai', 5, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (335, CAST(N'2002-05-31 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 31, 151, 22, N'May', N'Mayo', N'Mai', 5, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (336, CAST(N'2002-06-01 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 1, 152, 22, N'June', N'Junio', N'Juin', 6, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (337, CAST(N'2002-06-02 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 2, 153, 23, N'June', N'Junio', N'Juin', 6, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (338, CAST(N'2002-06-03 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 3, 154, 23, N'June', N'Junio', N'Juin', 6, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (339, CAST(N'2002-06-04 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 4, 155, 23, N'June', N'Junio', N'Juin', 6, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (340, CAST(N'2002-06-05 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 5, 156, 23, N'June', N'Junio', N'Juin', 6, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (341, CAST(N'2002-06-06 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 6, 157, 23, N'June', N'Junio', N'Juin', 6, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (342, CAST(N'2002-06-07 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 7, 158, 23, N'June', N'Junio', N'Juin', 6, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (343, CAST(N'2002-06-08 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 8, 159, 23, N'June', N'Junio', N'Juin', 6, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (344, CAST(N'2002-06-09 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 9, 160, 24, N'June', N'Junio', N'Juin', 6, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (345, CAST(N'2002-06-10 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 10, 161, 24, N'June', N'Junio', N'Juin', 6, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (346, CAST(N'2002-06-11 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 11, 162, 24, N'June', N'Junio', N'Juin', 6, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (347, CAST(N'2002-06-12 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 12, 163, 24, N'June', N'Junio', N'Juin', 6, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (348, CAST(N'2002-06-13 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 13, 164, 24, N'June', N'Junio', N'Juin', 6, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (349, CAST(N'2002-06-14 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 14, 165, 24, N'June', N'Junio', N'Juin', 6, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (350, CAST(N'2002-06-15 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 15, 166, 24, N'June', N'Junio', N'Juin', 6, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (351, CAST(N'2002-06-16 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 16, 167, 25, N'June', N'Junio', N'Juin', 6, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (352, CAST(N'2002-06-17 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 17, 168, 25, N'June', N'Junio', N'Juin', 6, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (353, CAST(N'2002-06-18 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 18, 169, 25, N'June', N'Junio', N'Juin', 6, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (354, CAST(N'2002-06-19 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 19, 170, 25, N'June', N'Junio', N'Juin', 6, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (355, CAST(N'2002-06-20 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 20, 171, 25, N'June', N'Junio', N'Juin', 6, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (356, CAST(N'2002-06-21 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 21, 172, 25, N'June', N'Junio', N'Juin', 6, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (357, CAST(N'2002-06-22 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 22, 173, 25, N'June', N'Junio', N'Juin', 6, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (358, CAST(N'2002-06-23 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 23, 174, 26, N'June', N'Junio', N'Juin', 6, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (359, CAST(N'2002-06-24 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 24, 175, 26, N'June', N'Junio', N'Juin', 6, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (360, CAST(N'2002-06-25 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 25, 176, 26, N'June', N'Junio', N'Juin', 6, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (361, CAST(N'2002-06-26 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 26, 177, 26, N'June', N'Junio', N'Juin', 6, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (362, CAST(N'2002-06-27 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 27, 178, 26, N'June', N'Junio', N'Juin', 6, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (363, CAST(N'2002-06-28 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 28, 179, 26, N'June', N'Junio', N'Juin', 6, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (364, CAST(N'2002-06-29 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 29, 180, 26, N'June', N'Junio', N'Juin', 6, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (365, CAST(N'2002-06-30 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 30, 181, 27, N'June', N'Junio', N'Juin', 6, 2, N'2002', 1, 4, N'2002', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (366, CAST(N'2002-07-01 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 1, 182, 27, N'July', N'Julio', N'Juillet', 7, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (367, CAST(N'2002-07-02 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 2, 183, 27, N'July', N'Julio', N'Juillet', 7, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (368, CAST(N'2002-07-03 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 3, 184, 27, N'July', N'Julio', N'Juillet', 7, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (369, CAST(N'2002-07-04 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 4, 185, 27, N'July', N'Julio', N'Juillet', 7, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (370, CAST(N'2002-07-05 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 5, 186, 27, N'July', N'Julio', N'Juillet', 7, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (371, CAST(N'2002-07-06 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 6, 187, 27, N'July', N'Julio', N'Juillet', 7, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (372, CAST(N'2002-07-07 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 7, 188, 28, N'July', N'Julio', N'Juillet', 7, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (373, CAST(N'2002-07-08 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 8, 189, 28, N'July', N'Julio', N'Juillet', 7, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (374, CAST(N'2002-07-09 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 9, 190, 28, N'July', N'Julio', N'Juillet', 7, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (375, CAST(N'2002-07-10 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 10, 191, 28, N'July', N'Julio', N'Juillet', 7, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (376, CAST(N'2002-07-11 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 11, 192, 28, N'July', N'Julio', N'Juillet', 7, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (377, CAST(N'2002-07-12 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 12, 193, 28, N'July', N'Julio', N'Juillet', 7, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (378, CAST(N'2002-07-13 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 13, 194, 28, N'July', N'Julio', N'Juillet', 7, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (379, CAST(N'2002-07-14 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 14, 195, 29, N'July', N'Julio', N'Juillet', 7, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (380, CAST(N'2002-07-15 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 15, 196, 29, N'July', N'Julio', N'Juillet', 7, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (381, CAST(N'2002-07-16 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 16, 197, 29, N'July', N'Julio', N'Juillet', 7, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (382, CAST(N'2002-07-17 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 17, 198, 29, N'July', N'Julio', N'Juillet', 7, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (383, CAST(N'2002-07-18 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 18, 199, 29, N'July', N'Julio', N'Juillet', 7, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (384, CAST(N'2002-07-19 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 19, 200, 29, N'July', N'Julio', N'Juillet', 7, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (385, CAST(N'2002-07-20 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 20, 201, 29, N'July', N'Julio', N'Juillet', 7, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (386, CAST(N'2002-07-21 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 21, 202, 30, N'July', N'Julio', N'Juillet', 7, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (387, CAST(N'2002-07-22 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 22, 203, 30, N'July', N'Julio', N'Juillet', 7, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (388, CAST(N'2002-07-23 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 23, 204, 30, N'July', N'Julio', N'Juillet', 7, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (389, CAST(N'2002-07-24 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 24, 205, 30, N'July', N'Julio', N'Juillet', 7, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (390, CAST(N'2002-07-25 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 25, 206, 30, N'July', N'Julio', N'Juillet', 7, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (391, CAST(N'2002-07-26 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 26, 207, 30, N'July', N'Julio', N'Juillet', 7, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (392, CAST(N'2002-07-27 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 27, 208, 30, N'July', N'Julio', N'Juillet', 7, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (393, CAST(N'2002-07-28 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 28, 209, 31, N'July', N'Julio', N'Juillet', 7, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (394, CAST(N'2002-07-29 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 29, 210, 31, N'July', N'Julio', N'Juillet', 7, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (395, CAST(N'2002-07-30 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 30, 211, 31, N'July', N'Julio', N'Juillet', 7, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (396, CAST(N'2002-07-31 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 31, 212, 31, N'July', N'Julio', N'Juillet', 7, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (397, CAST(N'2002-08-01 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 1, 213, 31, N'August', N'Agosto', N'Août', 8, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (398, CAST(N'2002-08-02 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 2, 214, 31, N'August', N'Agosto', N'Août', 8, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (399, CAST(N'2002-08-03 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 3, 215, 31, N'August', N'Agosto', N'Août', 8, 3, N'2002', 2, 1, N'2003', 1)

GO

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (400, CAST(N'2002-08-04 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 4, 216, 32, N'August', N'Agosto', N'Août', 8, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (401, CAST(N'2002-08-05 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 5, 217, 32, N'August', N'Agosto', N'Août', 8, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (402, CAST(N'2002-08-06 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 6, 218, 32, N'August', N'Agosto', N'Août', 8, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (403, CAST(N'2002-08-07 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 7, 219, 32, N'August', N'Agosto', N'Août', 8, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (404, CAST(N'2002-08-08 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 8, 220, 32, N'August', N'Agosto', N'Août', 8, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (405, CAST(N'2002-08-09 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 9, 221, 32, N'August', N'Agosto', N'Août', 8, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (406, CAST(N'2002-08-10 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 10, 222, 32, N'August', N'Agosto', N'Août', 8, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (407, CAST(N'2002-08-11 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 11, 223, 33, N'August', N'Agosto', N'Août', 8, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (408, CAST(N'2002-08-12 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 12, 224, 33, N'August', N'Agosto', N'Août', 8, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (409, CAST(N'2002-08-13 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 13, 225, 33, N'August', N'Agosto', N'Août', 8, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (410, CAST(N'2002-08-14 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 14, 226, 33, N'August', N'Agosto', N'Août', 8, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (411, CAST(N'2002-08-15 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 15, 227, 33, N'August', N'Agosto', N'Août', 8, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (412, CAST(N'2002-08-16 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 16, 228, 33, N'August', N'Agosto', N'Août', 8, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (413, CAST(N'2002-08-17 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 17, 229, 33, N'August', N'Agosto', N'Août', 8, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (414, CAST(N'2002-08-18 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 18, 230, 34, N'August', N'Agosto', N'Août', 8, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (415, CAST(N'2002-08-19 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 19, 231, 34, N'August', N'Agosto', N'Août', 8, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (416, CAST(N'2002-08-20 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 20, 232, 34, N'August', N'Agosto', N'Août', 8, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (417, CAST(N'2002-08-21 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 21, 233, 34, N'August', N'Agosto', N'Août', 8, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (418, CAST(N'2002-08-22 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 22, 234, 34, N'August', N'Agosto', N'Août', 8, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (419, CAST(N'2002-08-23 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 23, 235, 34, N'August', N'Agosto', N'Août', 8, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (420, CAST(N'2002-08-24 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 24, 236, 34, N'August', N'Agosto', N'Août', 8, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (421, CAST(N'2002-08-25 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 25, 237, 35, N'August', N'Agosto', N'Août', 8, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (422, CAST(N'2002-08-26 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 26, 238, 35, N'August', N'Agosto', N'Août', 8, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (423, CAST(N'2002-08-27 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 27, 239, 35, N'August', N'Agosto', N'Août', 8, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (424, CAST(N'2002-08-28 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 28, 240, 35, N'August', N'Agosto', N'Août', 8, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (425, CAST(N'2002-08-29 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 29, 241, 35, N'August', N'Agosto', N'Août', 8, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (426, CAST(N'2002-08-30 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 30, 242, 35, N'August', N'Agosto', N'Août', 8, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (427, CAST(N'2002-08-31 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 31, 243, 35, N'August', N'Agosto', N'Août', 8, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (428, CAST(N'2002-09-01 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 1, 244, 36, N'September', N'Septiembre', N'Septembre', 9, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (429, CAST(N'2002-09-02 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 2, 245, 36, N'September', N'Septiembre', N'Septembre', 9, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (430, CAST(N'2002-09-03 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 3, 246, 36, N'September', N'Septiembre', N'Septembre', 9, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (431, CAST(N'2002-09-04 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 4, 247, 36, N'September', N'Septiembre', N'Septembre', 9, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (432, CAST(N'2002-09-05 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 5, 248, 36, N'September', N'Septiembre', N'Septembre', 9, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (433, CAST(N'2002-09-06 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 6, 249, 36, N'September', N'Septiembre', N'Septembre', 9, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (434, CAST(N'2002-09-07 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 7, 250, 36, N'September', N'Septiembre', N'Septembre', 9, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (435, CAST(N'2002-09-08 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 8, 251, 37, N'September', N'Septiembre', N'Septembre', 9, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (436, CAST(N'2002-09-09 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 9, 252, 37, N'September', N'Septiembre', N'Septembre', 9, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (437, CAST(N'2002-09-10 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 10, 253, 37, N'September', N'Septiembre', N'Septembre', 9, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (438, CAST(N'2002-09-11 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 11, 254, 37, N'September', N'Septiembre', N'Septembre', 9, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (439, CAST(N'2002-09-12 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 12, 255, 37, N'September', N'Septiembre', N'Septembre', 9, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (440, CAST(N'2002-09-13 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 13, 256, 37, N'September', N'Septiembre', N'Septembre', 9, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (441, CAST(N'2002-09-14 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 14, 257, 37, N'September', N'Septiembre', N'Septembre', 9, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (442, CAST(N'2002-09-15 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 15, 258, 38, N'September', N'Septiembre', N'Septembre', 9, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (443, CAST(N'2002-09-16 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 16, 259, 38, N'September', N'Septiembre', N'Septembre', 9, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (444, CAST(N'2002-09-17 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 17, 260, 38, N'September', N'Septiembre', N'Septembre', 9, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (445, CAST(N'2002-09-18 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 18, 261, 38, N'September', N'Septiembre', N'Septembre', 9, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (446, CAST(N'2002-09-19 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 19, 262, 38, N'September', N'Septiembre', N'Septembre', 9, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (447, CAST(N'2002-09-20 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 20, 263, 38, N'September', N'Septiembre', N'Septembre', 9, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (448, CAST(N'2002-09-21 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 21, 264, 38, N'September', N'Septiembre', N'Septembre', 9, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (449, CAST(N'2002-09-22 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 22, 265, 39, N'September', N'Septiembre', N'Septembre', 9, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (450, CAST(N'2002-09-23 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 23, 266, 39, N'September', N'Septiembre', N'Septembre', 9, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (451, CAST(N'2002-09-24 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 24, 267, 39, N'September', N'Septiembre', N'Septembre', 9, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (452, CAST(N'2002-09-25 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 25, 268, 39, N'September', N'Septiembre', N'Septembre', 9, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (453, CAST(N'2002-09-26 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 26, 269, 39, N'September', N'Septiembre', N'Septembre', 9, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (454, CAST(N'2002-09-27 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 27, 270, 39, N'September', N'Septiembre', N'Septembre', 9, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (455, CAST(N'2002-09-28 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 28, 271, 39, N'September', N'Septiembre', N'Septembre', 9, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (456, CAST(N'2002-09-29 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 29, 272, 40, N'September', N'Septiembre', N'Septembre', 9, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (457, CAST(N'2002-09-30 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 30, 273, 40, N'September', N'Septiembre', N'Septembre', 9, 3, N'2002', 2, 1, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (458, CAST(N'2002-10-01 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 1, 274, 40, N'October', N'Octubre', N'Octobre', 10, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (459, CAST(N'2002-10-02 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 2, 275, 40, N'October', N'Octubre', N'Octobre', 10, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (460, CAST(N'2002-10-03 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 3, 276, 40, N'October', N'Octubre', N'Octobre', 10, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (461, CAST(N'2002-10-04 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 4, 277, 40, N'October', N'Octubre', N'Octobre', 10, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (462, CAST(N'2002-10-05 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 5, 278, 40, N'October', N'Octubre', N'Octobre', 10, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (463, CAST(N'2002-10-06 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 6, 279, 41, N'October', N'Octubre', N'Octobre', 10, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (464, CAST(N'2002-10-07 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 7, 280, 41, N'October', N'Octubre', N'Octobre', 10, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (465, CAST(N'2002-10-08 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 8, 281, 41, N'October', N'Octubre', N'Octobre', 10, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (466, CAST(N'2002-10-09 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 9, 282, 41, N'October', N'Octubre', N'Octobre', 10, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (467, CAST(N'2002-10-10 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 10, 283, 41, N'October', N'Octubre', N'Octobre', 10, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (468, CAST(N'2002-10-11 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 11, 284, 41, N'October', N'Octubre', N'Octobre', 10, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (469, CAST(N'2002-10-12 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 12, 285, 41, N'October', N'Octubre', N'Octobre', 10, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (470, CAST(N'2002-10-13 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 13, 286, 42, N'October', N'Octubre', N'Octobre', 10, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (471, CAST(N'2002-10-14 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 14, 287, 42, N'October', N'Octubre', N'Octobre', 10, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (472, CAST(N'2002-10-15 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 15, 288, 42, N'October', N'Octubre', N'Octobre', 10, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (473, CAST(N'2002-10-16 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 16, 289, 42, N'October', N'Octubre', N'Octobre', 10, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (474, CAST(N'2002-10-17 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 17, 290, 42, N'October', N'Octubre', N'Octobre', 10, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (475, CAST(N'2002-10-18 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 18, 291, 42, N'October', N'Octubre', N'Octobre', 10, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (476, CAST(N'2002-10-19 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 19, 292, 42, N'October', N'Octubre', N'Octobre', 10, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (477, CAST(N'2002-10-20 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 20, 293, 43, N'October', N'Octubre', N'Octobre', 10, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (478, CAST(N'2002-10-21 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 21, 294, 43, N'October', N'Octubre', N'Octobre', 10, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (479, CAST(N'2002-10-22 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 22, 295, 43, N'October', N'Octubre', N'Octobre', 10, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (480, CAST(N'2002-10-23 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 23, 296, 43, N'October', N'Octubre', N'Octobre', 10, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (481, CAST(N'2002-10-24 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 24, 297, 43, N'October', N'Octubre', N'Octobre', 10, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (482, CAST(N'2002-10-25 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 25, 298, 43, N'October', N'Octubre', N'Octobre', 10, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (483, CAST(N'2002-10-26 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 26, 299, 43, N'October', N'Octubre', N'Octobre', 10, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (484, CAST(N'2002-10-27 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 27, 300, 44, N'October', N'Octubre', N'Octobre', 10, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (485, CAST(N'2002-10-28 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 28, 301, 44, N'October', N'Octubre', N'Octobre', 10, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (486, CAST(N'2002-10-29 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 29, 302, 44, N'October', N'Octubre', N'Octobre', 10, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (487, CAST(N'2002-10-30 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 30, 303, 44, N'October', N'Octubre', N'Octobre', 10, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (488, CAST(N'2002-10-31 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 31, 304, 44, N'October', N'Octubre', N'Octobre', 10, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (489, CAST(N'2002-11-01 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 1, 305, 44, N'November', N'Noviembre', N'Novembre', 11, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (490, CAST(N'2002-11-02 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 2, 306, 44, N'November', N'Noviembre', N'Novembre', 11, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (491, CAST(N'2002-11-03 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 3, 307, 45, N'November', N'Noviembre', N'Novembre', 11, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (492, CAST(N'2002-11-04 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 4, 308, 45, N'November', N'Noviembre', N'Novembre', 11, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (493, CAST(N'2002-11-05 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 5, 309, 45, N'November', N'Noviembre', N'Novembre', 11, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (494, CAST(N'2002-11-06 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 6, 310, 45, N'November', N'Noviembre', N'Novembre', 11, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (495, CAST(N'2002-11-07 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 7, 311, 45, N'November', N'Noviembre', N'Novembre', 11, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (496, CAST(N'2002-11-08 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 8, 312, 45, N'November', N'Noviembre', N'Novembre', 11, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (497, CAST(N'2002-11-09 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 9, 313, 45, N'November', N'Noviembre', N'Novembre', 11, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (498, CAST(N'2002-11-10 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 10, 314, 46, N'November', N'Noviembre', N'Novembre', 11, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (499, CAST(N'2002-11-11 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 11, 315, 46, N'November', N'Noviembre', N'Novembre', 11, 4, N'2002', 2, 2, N'2003', 1)

GO

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (500, CAST(N'2002-11-12 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 12, 316, 46, N'November', N'Noviembre', N'Novembre', 11, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (501, CAST(N'2002-11-13 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 13, 317, 46, N'November', N'Noviembre', N'Novembre', 11, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (502, CAST(N'2002-11-14 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 14, 318, 46, N'November', N'Noviembre', N'Novembre', 11, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (503, CAST(N'2002-11-15 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 15, 319, 46, N'November', N'Noviembre', N'Novembre', 11, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (504, CAST(N'2002-11-16 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 16, 320, 46, N'November', N'Noviembre', N'Novembre', 11, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (505, CAST(N'2002-11-17 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 17, 321, 47, N'November', N'Noviembre', N'Novembre', 11, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (506, CAST(N'2002-11-18 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 18, 322, 47, N'November', N'Noviembre', N'Novembre', 11, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (507, CAST(N'2002-11-19 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 19, 323, 47, N'November', N'Noviembre', N'Novembre', 11, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (508, CAST(N'2002-11-20 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 20, 324, 47, N'November', N'Noviembre', N'Novembre', 11, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (509, CAST(N'2002-11-21 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 21, 325, 47, N'November', N'Noviembre', N'Novembre', 11, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (510, CAST(N'2002-11-22 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 22, 326, 47, N'November', N'Noviembre', N'Novembre', 11, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (511, CAST(N'2002-11-23 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 23, 327, 47, N'November', N'Noviembre', N'Novembre', 11, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (512, CAST(N'2002-11-24 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 24, 328, 48, N'November', N'Noviembre', N'Novembre', 11, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (513, CAST(N'2002-11-25 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 25, 329, 48, N'November', N'Noviembre', N'Novembre', 11, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (514, CAST(N'2002-11-26 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 26, 330, 48, N'November', N'Noviembre', N'Novembre', 11, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (515, CAST(N'2002-11-27 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 27, 331, 48, N'November', N'Noviembre', N'Novembre', 11, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (516, CAST(N'2002-11-28 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 28, 332, 48, N'November', N'Noviembre', N'Novembre', 11, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (517, CAST(N'2002-11-29 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 29, 333, 48, N'November', N'Noviembre', N'Novembre', 11, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (518, CAST(N'2002-11-30 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 30, 334, 48, N'November', N'Noviembre', N'Novembre', 11, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (519, CAST(N'2002-12-01 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 1, 335, 49, N'December', N'Diciembre', N'Décembre', 12, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (520, CAST(N'2002-12-02 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 2, 336, 49, N'December', N'Diciembre', N'Décembre', 12, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (521, CAST(N'2002-12-03 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 3, 337, 49, N'December', N'Diciembre', N'Décembre', 12, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (522, CAST(N'2002-12-04 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 4, 338, 49, N'December', N'Diciembre', N'Décembre', 12, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (523, CAST(N'2002-12-05 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 5, 339, 49, N'December', N'Diciembre', N'Décembre', 12, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (524, CAST(N'2002-12-06 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 6, 340, 49, N'December', N'Diciembre', N'Décembre', 12, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (525, CAST(N'2002-12-07 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 7, 341, 49, N'December', N'Diciembre', N'Décembre', 12, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (526, CAST(N'2002-12-08 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 8, 342, 50, N'December', N'Diciembre', N'Décembre', 12, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (527, CAST(N'2002-12-09 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 9, 343, 50, N'December', N'Diciembre', N'Décembre', 12, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (528, CAST(N'2002-12-10 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 10, 344, 50, N'December', N'Diciembre', N'Décembre', 12, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (529, CAST(N'2002-12-11 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 11, 345, 50, N'December', N'Diciembre', N'Décembre', 12, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (530, CAST(N'2002-12-12 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 12, 346, 50, N'December', N'Diciembre', N'Décembre', 12, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (531, CAST(N'2002-12-13 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 13, 347, 50, N'December', N'Diciembre', N'Décembre', 12, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (532, CAST(N'2002-12-14 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 14, 348, 50, N'December', N'Diciembre', N'Décembre', 12, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (533, CAST(N'2002-12-15 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 15, 349, 51, N'December', N'Diciembre', N'Décembre', 12, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (534, CAST(N'2002-12-16 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 16, 350, 51, N'December', N'Diciembre', N'Décembre', 12, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (535, CAST(N'2002-12-17 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 17, 351, 51, N'December', N'Diciembre', N'Décembre', 12, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (536, CAST(N'2002-12-18 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 18, 352, 51, N'December', N'Diciembre', N'Décembre', 12, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (537, CAST(N'2002-12-19 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 19, 353, 51, N'December', N'Diciembre', N'Décembre', 12, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (538, CAST(N'2002-12-20 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 20, 354, 51, N'December', N'Diciembre', N'Décembre', 12, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (539, CAST(N'2002-12-21 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 21, 355, 51, N'December', N'Diciembre', N'Décembre', 12, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (540, CAST(N'2002-12-22 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 22, 356, 52, N'December', N'Diciembre', N'Décembre', 12, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (541, CAST(N'2002-12-23 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 23, 357, 52, N'December', N'Diciembre', N'Décembre', 12, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (542, CAST(N'2002-12-24 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 24, 358, 52, N'December', N'Diciembre', N'Décembre', 12, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (543, CAST(N'2002-12-25 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 25, 359, 52, N'December', N'Diciembre', N'Décembre', 12, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (544, CAST(N'2002-12-26 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 26, 360, 52, N'December', N'Diciembre', N'Décembre', 12, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (545, CAST(N'2002-12-27 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 27, 361, 52, N'December', N'Diciembre', N'Décembre', 12, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (546, CAST(N'2002-12-28 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 28, 362, 52, N'December', N'Diciembre', N'Décembre', 12, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (547, CAST(N'2002-12-29 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 29, 363, 53, N'December', N'Diciembre', N'Décembre', 12, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (548, CAST(N'2002-12-30 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 30, 364, 53, N'December', N'Diciembre', N'Décembre', 12, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (549, CAST(N'2002-12-31 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 31, 365, 53, N'December', N'Diciembre', N'Décembre', 12, 4, N'2002', 2, 2, N'2003', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (550, CAST(N'2003-01-01 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 1, 1, 1, N'January', N'Enero', N'Janvier', 1, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (551, CAST(N'2003-01-02 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 2, 2, 1, N'January', N'Enero', N'Janvier', 1, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (552, CAST(N'2003-01-03 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 3, 3, 1, N'January', N'Enero', N'Janvier', 1, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (553, CAST(N'2003-01-04 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 4, 4, 1, N'January', N'Enero', N'Janvier', 1, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (554, CAST(N'2003-01-05 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 5, 5, 2, N'January', N'Enero', N'Janvier', 1, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (555, CAST(N'2003-01-06 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 6, 6, 2, N'January', N'Enero', N'Janvier', 1, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (556, CAST(N'2003-01-07 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 7, 7, 2, N'January', N'Enero', N'Janvier', 1, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (557, CAST(N'2003-01-08 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 8, 8, 2, N'January', N'Enero', N'Janvier', 1, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (558, CAST(N'2003-01-09 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 9, 9, 2, N'January', N'Enero', N'Janvier', 1, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (559, CAST(N'2003-01-10 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 10, 10, 2, N'January', N'Enero', N'Janvier', 1, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (560, CAST(N'2003-01-11 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 11, 11, 2, N'January', N'Enero', N'Janvier', 1, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (561, CAST(N'2003-01-12 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 12, 12, 3, N'January', N'Enero', N'Janvier', 1, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (562, CAST(N'2003-01-13 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 13, 13, 3, N'January', N'Enero', N'Janvier', 1, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (563, CAST(N'2003-01-14 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 14, 14, 3, N'January', N'Enero', N'Janvier', 1, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (564, CAST(N'2003-01-15 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 15, 15, 3, N'January', N'Enero', N'Janvier', 1, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (565, CAST(N'2003-01-16 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 16, 16, 3, N'January', N'Enero', N'Janvier', 1, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (566, CAST(N'2003-01-17 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 17, 17, 3, N'January', N'Enero', N'Janvier', 1, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (567, CAST(N'2003-01-18 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 18, 18, 3, N'January', N'Enero', N'Janvier', 1, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (568, CAST(N'2003-01-19 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 19, 19, 4, N'January', N'Enero', N'Janvier', 1, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (569, CAST(N'2003-01-20 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 20, 20, 4, N'January', N'Enero', N'Janvier', 1, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (570, CAST(N'2003-01-21 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 21, 21, 4, N'January', N'Enero', N'Janvier', 1, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (571, CAST(N'2003-01-22 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 22, 22, 4, N'January', N'Enero', N'Janvier', 1, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (572, CAST(N'2003-01-23 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 23, 23, 4, N'January', N'Enero', N'Janvier', 1, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (573, CAST(N'2003-01-24 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 24, 24, 4, N'January', N'Enero', N'Janvier', 1, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (574, CAST(N'2003-01-25 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 25, 25, 4, N'January', N'Enero', N'Janvier', 1, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (575, CAST(N'2003-01-26 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 26, 26, 5, N'January', N'Enero', N'Janvier', 1, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (576, CAST(N'2003-01-27 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 27, 27, 5, N'January', N'Enero', N'Janvier', 1, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (577, CAST(N'2003-01-28 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 28, 28, 5, N'January', N'Enero', N'Janvier', 1, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (578, CAST(N'2003-01-29 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 29, 29, 5, N'January', N'Enero', N'Janvier', 1, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (579, CAST(N'2003-01-30 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 30, 30, 5, N'January', N'Enero', N'Janvier', 1, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (580, CAST(N'2003-01-31 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 31, 31, 5, N'January', N'Enero', N'Janvier', 1, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (581, CAST(N'2003-02-01 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 1, 32, 5, N'February', N'Febrero', N'Février', 2, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (582, CAST(N'2003-02-02 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 2, 33, 6, N'February', N'Febrero', N'Février', 2, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (583, CAST(N'2003-02-03 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 3, 34, 6, N'February', N'Febrero', N'Février', 2, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (584, CAST(N'2003-02-04 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 4, 35, 6, N'February', N'Febrero', N'Février', 2, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (585, CAST(N'2003-02-05 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 5, 36, 6, N'February', N'Febrero', N'Février', 2, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (586, CAST(N'2003-02-06 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 6, 37, 6, N'February', N'Febrero', N'Février', 2, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (587, CAST(N'2003-02-07 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 7, 38, 6, N'February', N'Febrero', N'Février', 2, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (588, CAST(N'2003-02-08 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 8, 39, 6, N'February', N'Febrero', N'Février', 2, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (589, CAST(N'2003-02-09 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 9, 40, 7, N'February', N'Febrero', N'Février', 2, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (590, CAST(N'2003-02-10 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 10, 41, 7, N'February', N'Febrero', N'Février', 2, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (591, CAST(N'2003-02-11 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 11, 42, 7, N'February', N'Febrero', N'Février', 2, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (592, CAST(N'2003-02-12 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 12, 43, 7, N'February', N'Febrero', N'Février', 2, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (593, CAST(N'2003-02-13 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 13, 44, 7, N'February', N'Febrero', N'Février', 2, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (594, CAST(N'2003-02-14 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 14, 45, 7, N'February', N'Febrero', N'Février', 2, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (595, CAST(N'2003-02-15 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 15, 46, 7, N'February', N'Febrero', N'Février', 2, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (596, CAST(N'2003-02-16 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 16, 47, 8, N'February', N'Febrero', N'Février', 2, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (597, CAST(N'2003-02-17 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 17, 48, 8, N'February', N'Febrero', N'Février', 2, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (598, CAST(N'2003-02-18 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 18, 49, 8, N'February', N'Febrero', N'Février', 2, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (599, CAST(N'2003-02-19 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 19, 50, 8, N'February', N'Febrero', N'Février', 2, 1, N'2003', 1, 3, N'2003', 2)

GO

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (600, CAST(N'2003-02-20 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 20, 51, 8, N'February', N'Febrero', N'Février', 2, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (601, CAST(N'2003-02-21 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 21, 52, 8, N'February', N'Febrero', N'Février', 2, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (602, CAST(N'2003-02-22 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 22, 53, 8, N'February', N'Febrero', N'Février', 2, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (603, CAST(N'2003-02-23 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 23, 54, 9, N'February', N'Febrero', N'Février', 2, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (604, CAST(N'2003-02-24 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 24, 55, 9, N'February', N'Febrero', N'Février', 2, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (605, CAST(N'2003-02-25 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 25, 56, 9, N'February', N'Febrero', N'Février', 2, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (606, CAST(N'2003-02-26 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 26, 57, 9, N'February', N'Febrero', N'Février', 2, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (607, CAST(N'2003-02-27 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 27, 58, 9, N'February', N'Febrero', N'Février', 2, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (608, CAST(N'2003-02-28 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 28, 59, 9, N'February', N'Febrero', N'Février', 2, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (609, CAST(N'2003-03-01 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 1, 60, 9, N'March', N'Marzo', N'Mars', 3, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (610, CAST(N'2003-03-02 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 2, 61, 10, N'March', N'Marzo', N'Mars', 3, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (611, CAST(N'2003-03-03 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 3, 62, 10, N'March', N'Marzo', N'Mars', 3, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (612, CAST(N'2003-03-04 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 4, 63, 10, N'March', N'Marzo', N'Mars', 3, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (613, CAST(N'2003-03-05 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 5, 64, 10, N'March', N'Marzo', N'Mars', 3, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (614, CAST(N'2003-03-06 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 6, 65, 10, N'March', N'Marzo', N'Mars', 3, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (615, CAST(N'2003-03-07 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 7, 66, 10, N'March', N'Marzo', N'Mars', 3, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (616, CAST(N'2003-03-08 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 8, 67, 10, N'March', N'Marzo', N'Mars', 3, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (617, CAST(N'2003-03-09 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 9, 68, 11, N'March', N'Marzo', N'Mars', 3, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (618, CAST(N'2003-03-10 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 10, 69, 11, N'March', N'Marzo', N'Mars', 3, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (619, CAST(N'2003-03-11 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 11, 70, 11, N'March', N'Marzo', N'Mars', 3, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (620, CAST(N'2003-03-12 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 12, 71, 11, N'March', N'Marzo', N'Mars', 3, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (621, CAST(N'2003-03-13 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 13, 72, 11, N'March', N'Marzo', N'Mars', 3, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (622, CAST(N'2003-03-14 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 14, 73, 11, N'March', N'Marzo', N'Mars', 3, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (623, CAST(N'2003-03-15 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 15, 74, 11, N'March', N'Marzo', N'Mars', 3, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (624, CAST(N'2003-03-16 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 16, 75, 12, N'March', N'Marzo', N'Mars', 3, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (625, CAST(N'2003-03-17 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 17, 76, 12, N'March', N'Marzo', N'Mars', 3, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (626, CAST(N'2003-03-18 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 18, 77, 12, N'March', N'Marzo', N'Mars', 3, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (627, CAST(N'2003-03-19 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 19, 78, 12, N'March', N'Marzo', N'Mars', 3, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (628, CAST(N'2003-03-20 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 20, 79, 12, N'March', N'Marzo', N'Mars', 3, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (629, CAST(N'2003-03-21 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 21, 80, 12, N'March', N'Marzo', N'Mars', 3, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (630, CAST(N'2003-03-22 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 22, 81, 12, N'March', N'Marzo', N'Mars', 3, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (631, CAST(N'2003-03-23 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 23, 82, 13, N'March', N'Marzo', N'Mars', 3, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (632, CAST(N'2003-03-24 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 24, 83, 13, N'March', N'Marzo', N'Mars', 3, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (633, CAST(N'2003-03-25 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 25, 84, 13, N'March', N'Marzo', N'Mars', 3, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (634, CAST(N'2003-03-26 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 26, 85, 13, N'March', N'Marzo', N'Mars', 3, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (635, CAST(N'2003-03-27 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 27, 86, 13, N'March', N'Marzo', N'Mars', 3, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (636, CAST(N'2003-03-28 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 28, 87, 13, N'March', N'Marzo', N'Mars', 3, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (637, CAST(N'2003-03-29 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 29, 88, 13, N'March', N'Marzo', N'Mars', 3, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (638, CAST(N'2003-03-30 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 30, 89, 14, N'March', N'Marzo', N'Mars', 3, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (639, CAST(N'2003-03-31 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 31, 90, 14, N'March', N'Marzo', N'Mars', 3, 1, N'2003', 1, 3, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (640, CAST(N'2003-04-01 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 1, 91, 14, N'April', N'Abril', N'Avril', 4, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (641, CAST(N'2003-04-02 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 2, 92, 14, N'April', N'Abril', N'Avril', 4, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (642, CAST(N'2003-04-03 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 3, 93, 14, N'April', N'Abril', N'Avril', 4, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (643, CAST(N'2003-04-04 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 4, 94, 14, N'April', N'Abril', N'Avril', 4, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (644, CAST(N'2003-04-05 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 5, 95, 14, N'April', N'Abril', N'Avril', 4, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (645, CAST(N'2003-04-06 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 6, 96, 15, N'April', N'Abril', N'Avril', 4, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (646, CAST(N'2003-04-07 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 7, 97, 15, N'April', N'Abril', N'Avril', 4, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (647, CAST(N'2003-04-08 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 8, 98, 15, N'April', N'Abril', N'Avril', 4, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (648, CAST(N'2003-04-09 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 9, 99, 15, N'April', N'Abril', N'Avril', 4, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (649, CAST(N'2003-04-10 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 10, 100, 15, N'April', N'Abril', N'Avril', 4, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (650, CAST(N'2003-04-11 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 11, 101, 15, N'April', N'Abril', N'Avril', 4, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (651, CAST(N'2003-04-12 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 12, 102, 15, N'April', N'Abril', N'Avril', 4, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (652, CAST(N'2003-04-13 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 13, 103, 16, N'April', N'Abril', N'Avril', 4, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (653, CAST(N'2003-04-14 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 14, 104, 16, N'April', N'Abril', N'Avril', 4, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (654, CAST(N'2003-04-15 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 15, 105, 16, N'April', N'Abril', N'Avril', 4, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (655, CAST(N'2003-04-16 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 16, 106, 16, N'April', N'Abril', N'Avril', 4, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (656, CAST(N'2003-04-17 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 17, 107, 16, N'April', N'Abril', N'Avril', 4, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (657, CAST(N'2003-04-18 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 18, 108, 16, N'April', N'Abril', N'Avril', 4, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (658, CAST(N'2003-04-19 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 19, 109, 16, N'April', N'Abril', N'Avril', 4, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (659, CAST(N'2003-04-20 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 20, 110, 17, N'April', N'Abril', N'Avril', 4, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (660, CAST(N'2003-04-21 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 21, 111, 17, N'April', N'Abril', N'Avril', 4, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (661, CAST(N'2003-04-22 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 22, 112, 17, N'April', N'Abril', N'Avril', 4, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (662, CAST(N'2003-04-23 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 23, 113, 17, N'April', N'Abril', N'Avril', 4, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (663, CAST(N'2003-04-24 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 24, 114, 17, N'April', N'Abril', N'Avril', 4, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (664, CAST(N'2003-04-25 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 25, 115, 17, N'April', N'Abril', N'Avril', 4, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (665, CAST(N'2003-04-26 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 26, 116, 17, N'April', N'Abril', N'Avril', 4, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (666, CAST(N'2003-04-27 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 27, 117, 18, N'April', N'Abril', N'Avril', 4, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (667, CAST(N'2003-04-28 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 28, 118, 18, N'April', N'Abril', N'Avril', 4, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (668, CAST(N'2003-04-29 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 29, 119, 18, N'April', N'Abril', N'Avril', 4, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (669, CAST(N'2003-04-30 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 30, 120, 18, N'April', N'Abril', N'Avril', 4, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (670, CAST(N'2003-05-01 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 1, 121, 18, N'May', N'Mayo', N'Mai', 5, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (671, CAST(N'2003-05-02 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 2, 122, 18, N'May', N'Mayo', N'Mai', 5, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (672, CAST(N'2003-05-03 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 3, 123, 18, N'May', N'Mayo', N'Mai', 5, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (673, CAST(N'2003-05-04 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 4, 124, 19, N'May', N'Mayo', N'Mai', 5, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (674, CAST(N'2003-05-05 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 5, 125, 19, N'May', N'Mayo', N'Mai', 5, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (675, CAST(N'2003-05-06 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 6, 126, 19, N'May', N'Mayo', N'Mai', 5, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (676, CAST(N'2003-05-07 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 7, 127, 19, N'May', N'Mayo', N'Mai', 5, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (677, CAST(N'2003-05-08 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 8, 128, 19, N'May', N'Mayo', N'Mai', 5, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (678, CAST(N'2003-05-09 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 9, 129, 19, N'May', N'Mayo', N'Mai', 5, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (679, CAST(N'2003-05-10 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 10, 130, 19, N'May', N'Mayo', N'Mai', 5, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (680, CAST(N'2003-05-11 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 11, 131, 20, N'May', N'Mayo', N'Mai', 5, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (681, CAST(N'2003-05-12 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 12, 132, 20, N'May', N'Mayo', N'Mai', 5, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (682, CAST(N'2003-05-13 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 13, 133, 20, N'May', N'Mayo', N'Mai', 5, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (683, CAST(N'2003-05-14 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 14, 134, 20, N'May', N'Mayo', N'Mai', 5, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (684, CAST(N'2003-05-15 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 15, 135, 20, N'May', N'Mayo', N'Mai', 5, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (685, CAST(N'2003-05-16 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 16, 136, 20, N'May', N'Mayo', N'Mai', 5, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (686, CAST(N'2003-05-17 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 17, 137, 20, N'May', N'Mayo', N'Mai', 5, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (687, CAST(N'2003-05-18 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 18, 138, 21, N'May', N'Mayo', N'Mai', 5, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (688, CAST(N'2003-05-19 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 19, 139, 21, N'May', N'Mayo', N'Mai', 5, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (689, CAST(N'2003-05-20 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 20, 140, 21, N'May', N'Mayo', N'Mai', 5, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (690, CAST(N'2003-05-21 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 21, 141, 21, N'May', N'Mayo', N'Mai', 5, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (691, CAST(N'2003-05-22 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 22, 142, 21, N'May', N'Mayo', N'Mai', 5, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (692, CAST(N'2003-05-23 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 23, 143, 21, N'May', N'Mayo', N'Mai', 5, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (693, CAST(N'2003-05-24 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 24, 144, 21, N'May', N'Mayo', N'Mai', 5, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (694, CAST(N'2003-05-25 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 25, 145, 22, N'May', N'Mayo', N'Mai', 5, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (695, CAST(N'2003-05-26 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 26, 146, 22, N'May', N'Mayo', N'Mai', 5, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (696, CAST(N'2003-05-27 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 27, 147, 22, N'May', N'Mayo', N'Mai', 5, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (697, CAST(N'2003-05-28 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 28, 148, 22, N'May', N'Mayo', N'Mai', 5, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (698, CAST(N'2003-05-29 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 29, 149, 22, N'May', N'Mayo', N'Mai', 5, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (699, CAST(N'2003-05-30 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 30, 150, 22, N'May', N'Mayo', N'Mai', 5, 2, N'2003', 1, 4, N'2003', 2)

GO

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (700, CAST(N'2003-05-31 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 31, 151, 22, N'May', N'Mayo', N'Mai', 5, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (701, CAST(N'2003-06-01 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 1, 152, 23, N'June', N'Junio', N'Juin', 6, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (702, CAST(N'2003-06-02 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 2, 153, 23, N'June', N'Junio', N'Juin', 6, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (703, CAST(N'2003-06-03 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 3, 154, 23, N'June', N'Junio', N'Juin', 6, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (704, CAST(N'2003-06-04 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 4, 155, 23, N'June', N'Junio', N'Juin', 6, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (705, CAST(N'2003-06-05 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 5, 156, 23, N'June', N'Junio', N'Juin', 6, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (706, CAST(N'2003-06-06 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 6, 157, 23, N'June', N'Junio', N'Juin', 6, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (707, CAST(N'2003-06-07 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 7, 158, 23, N'June', N'Junio', N'Juin', 6, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (708, CAST(N'2003-06-08 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 8, 159, 24, N'June', N'Junio', N'Juin', 6, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (709, CAST(N'2003-06-09 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 9, 160, 24, N'June', N'Junio', N'Juin', 6, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (710, CAST(N'2003-06-10 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 10, 161, 24, N'June', N'Junio', N'Juin', 6, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (711, CAST(N'2003-06-11 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 11, 162, 24, N'June', N'Junio', N'Juin', 6, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (712, CAST(N'2003-06-12 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 12, 163, 24, N'June', N'Junio', N'Juin', 6, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (713, CAST(N'2003-06-13 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 13, 164, 24, N'June', N'Junio', N'Juin', 6, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (714, CAST(N'2003-06-14 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 14, 165, 24, N'June', N'Junio', N'Juin', 6, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (715, CAST(N'2003-06-15 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 15, 166, 25, N'June', N'Junio', N'Juin', 6, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (716, CAST(N'2003-06-16 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 16, 167, 25, N'June', N'Junio', N'Juin', 6, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (717, CAST(N'2003-06-17 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 17, 168, 25, N'June', N'Junio', N'Juin', 6, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (718, CAST(N'2003-06-18 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 18, 169, 25, N'June', N'Junio', N'Juin', 6, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (719, CAST(N'2003-06-19 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 19, 170, 25, N'June', N'Junio', N'Juin', 6, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (720, CAST(N'2003-06-20 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 20, 171, 25, N'June', N'Junio', N'Juin', 6, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (721, CAST(N'2003-06-21 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 21, 172, 25, N'June', N'Junio', N'Juin', 6, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (722, CAST(N'2003-06-22 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 22, 173, 26, N'June', N'Junio', N'Juin', 6, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (723, CAST(N'2003-06-23 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 23, 174, 26, N'June', N'Junio', N'Juin', 6, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (724, CAST(N'2003-06-24 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 24, 175, 26, N'June', N'Junio', N'Juin', 6, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (725, CAST(N'2003-06-25 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 25, 176, 26, N'June', N'Junio', N'Juin', 6, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (726, CAST(N'2003-06-26 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 26, 177, 26, N'June', N'Junio', N'Juin', 6, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (727, CAST(N'2003-06-27 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 27, 178, 26, N'June', N'Junio', N'Juin', 6, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (728, CAST(N'2003-06-28 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 28, 179, 26, N'June', N'Junio', N'Juin', 6, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (729, CAST(N'2003-06-29 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 29, 180, 27, N'June', N'Junio', N'Juin', 6, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (730, CAST(N'2003-06-30 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 30, 181, 27, N'June', N'Junio', N'Juin', 6, 2, N'2003', 1, 4, N'2003', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (731, CAST(N'2003-07-01 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 1, 182, 27, N'July', N'Julio', N'Juillet', 7, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (732, CAST(N'2003-07-02 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 2, 183, 27, N'July', N'Julio', N'Juillet', 7, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (733, CAST(N'2003-07-03 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 3, 184, 27, N'July', N'Julio', N'Juillet', 7, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (734, CAST(N'2003-07-04 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 4, 185, 27, N'July', N'Julio', N'Juillet', 7, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (735, CAST(N'2003-07-05 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 5, 186, 27, N'July', N'Julio', N'Juillet', 7, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (736, CAST(N'2003-07-06 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 6, 187, 28, N'July', N'Julio', N'Juillet', 7, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (737, CAST(N'2003-07-07 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 7, 188, 28, N'July', N'Julio', N'Juillet', 7, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (738, CAST(N'2003-07-08 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 8, 189, 28, N'July', N'Julio', N'Juillet', 7, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (739, CAST(N'2003-07-09 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 9, 190, 28, N'July', N'Julio', N'Juillet', 7, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (740, CAST(N'2003-07-10 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 10, 191, 28, N'July', N'Julio', N'Juillet', 7, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (741, CAST(N'2003-07-11 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 11, 192, 28, N'July', N'Julio', N'Juillet', 7, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (742, CAST(N'2003-07-12 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 12, 193, 28, N'July', N'Julio', N'Juillet', 7, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (743, CAST(N'2003-07-13 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 13, 194, 29, N'July', N'Julio', N'Juillet', 7, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (744, CAST(N'2003-07-14 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 14, 195, 29, N'July', N'Julio', N'Juillet', 7, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (745, CAST(N'2003-07-15 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 15, 196, 29, N'July', N'Julio', N'Juillet', 7, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (746, CAST(N'2003-07-16 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 16, 197, 29, N'July', N'Julio', N'Juillet', 7, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (747, CAST(N'2003-07-17 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 17, 198, 29, N'July', N'Julio', N'Juillet', 7, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (748, CAST(N'2003-07-18 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 18, 199, 29, N'July', N'Julio', N'Juillet', 7, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (749, CAST(N'2003-07-19 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 19, 200, 29, N'July', N'Julio', N'Juillet', 7, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (750, CAST(N'2003-07-20 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 20, 201, 30, N'July', N'Julio', N'Juillet', 7, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (751, CAST(N'2003-07-21 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 21, 202, 30, N'July', N'Julio', N'Juillet', 7, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (752, CAST(N'2003-07-22 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 22, 203, 30, N'July', N'Julio', N'Juillet', 7, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (753, CAST(N'2003-07-23 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 23, 204, 30, N'July', N'Julio', N'Juillet', 7, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (754, CAST(N'2003-07-24 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 24, 205, 30, N'July', N'Julio', N'Juillet', 7, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (755, CAST(N'2003-07-25 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 25, 206, 30, N'July', N'Julio', N'Juillet', 7, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (756, CAST(N'2003-07-26 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 26, 207, 30, N'July', N'Julio', N'Juillet', 7, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (757, CAST(N'2003-07-27 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 27, 208, 31, N'July', N'Julio', N'Juillet', 7, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (758, CAST(N'2003-07-28 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 28, 209, 31, N'July', N'Julio', N'Juillet', 7, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (759, CAST(N'2003-07-29 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 29, 210, 31, N'July', N'Julio', N'Juillet', 7, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (760, CAST(N'2003-07-30 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 30, 211, 31, N'July', N'Julio', N'Juillet', 7, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (761, CAST(N'2003-07-31 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 31, 212, 31, N'July', N'Julio', N'Juillet', 7, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (762, CAST(N'2003-08-01 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 1, 213, 31, N'August', N'Agosto', N'Août', 8, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (763, CAST(N'2003-08-02 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 2, 214, 31, N'August', N'Agosto', N'Août', 8, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (764, CAST(N'2003-08-03 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 3, 215, 32, N'August', N'Agosto', N'Août', 8, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (765, CAST(N'2003-08-04 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 4, 216, 32, N'August', N'Agosto', N'Août', 8, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (766, CAST(N'2003-08-05 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 5, 217, 32, N'August', N'Agosto', N'Août', 8, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (767, CAST(N'2003-08-06 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 6, 218, 32, N'August', N'Agosto', N'Août', 8, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (768, CAST(N'2003-08-07 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 7, 219, 32, N'August', N'Agosto', N'Août', 8, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (769, CAST(N'2003-08-08 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 8, 220, 32, N'August', N'Agosto', N'Août', 8, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (770, CAST(N'2003-08-09 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 9, 221, 32, N'August', N'Agosto', N'Août', 8, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (771, CAST(N'2003-08-10 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 10, 222, 33, N'August', N'Agosto', N'Août', 8, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (772, CAST(N'2003-08-11 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 11, 223, 33, N'August', N'Agosto', N'Août', 8, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (773, CAST(N'2003-08-12 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 12, 224, 33, N'August', N'Agosto', N'Août', 8, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (774, CAST(N'2003-08-13 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 13, 225, 33, N'August', N'Agosto', N'Août', 8, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (775, CAST(N'2003-08-14 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 14, 226, 33, N'August', N'Agosto', N'Août', 8, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (776, CAST(N'2003-08-15 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 15, 227, 33, N'August', N'Agosto', N'Août', 8, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (777, CAST(N'2003-08-16 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 16, 228, 33, N'August', N'Agosto', N'Août', 8, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (778, CAST(N'2003-08-17 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 17, 229, 34, N'August', N'Agosto', N'Août', 8, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (779, CAST(N'2003-08-18 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 18, 230, 34, N'August', N'Agosto', N'Août', 8, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (780, CAST(N'2003-08-19 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 19, 231, 34, N'August', N'Agosto', N'Août', 8, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (781, CAST(N'2003-08-20 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 20, 232, 34, N'August', N'Agosto', N'Août', 8, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (782, CAST(N'2003-08-21 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 21, 233, 34, N'August', N'Agosto', N'Août', 8, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (783, CAST(N'2003-08-22 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 22, 234, 34, N'August', N'Agosto', N'Août', 8, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (784, CAST(N'2003-08-23 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 23, 235, 34, N'August', N'Agosto', N'Août', 8, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (785, CAST(N'2003-08-24 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 24, 236, 35, N'August', N'Agosto', N'Août', 8, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (786, CAST(N'2003-08-25 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 25, 237, 35, N'August', N'Agosto', N'Août', 8, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (787, CAST(N'2003-08-26 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 26, 238, 35, N'August', N'Agosto', N'Août', 8, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (788, CAST(N'2003-08-27 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 27, 239, 35, N'August', N'Agosto', N'Août', 8, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (789, CAST(N'2003-08-28 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 28, 240, 35, N'August', N'Agosto', N'Août', 8, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (790, CAST(N'2003-08-29 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 29, 241, 35, N'August', N'Agosto', N'Août', 8, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (791, CAST(N'2003-08-30 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 30, 242, 35, N'August', N'Agosto', N'Août', 8, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (792, CAST(N'2003-08-31 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 31, 243, 36, N'August', N'Agosto', N'Août', 8, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (793, CAST(N'2003-09-01 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 1, 244, 36, N'September', N'Septiembre', N'Septembre', 9, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (794, CAST(N'2003-09-02 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 2, 245, 36, N'September', N'Septiembre', N'Septembre', 9, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (795, CAST(N'2003-09-03 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 3, 246, 36, N'September', N'Septiembre', N'Septembre', 9, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (796, CAST(N'2003-09-04 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 4, 247, 36, N'September', N'Septiembre', N'Septembre', 9, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (797, CAST(N'2003-09-05 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 5, 248, 36, N'September', N'Septiembre', N'Septembre', 9, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (798, CAST(N'2003-09-06 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 6, 249, 36, N'September', N'Septiembre', N'Septembre', 9, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (799, CAST(N'2003-09-07 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 7, 250, 37, N'September', N'Septiembre', N'Septembre', 9, 3, N'2003', 2, 1, N'2004', 1)

GO

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (800, CAST(N'2003-09-08 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 8, 251, 37, N'September', N'Septiembre', N'Septembre', 9, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (801, CAST(N'2003-09-09 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 9, 252, 37, N'September', N'Septiembre', N'Septembre', 9, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (802, CAST(N'2003-09-10 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 10, 253, 37, N'September', N'Septiembre', N'Septembre', 9, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (803, CAST(N'2003-09-11 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 11, 254, 37, N'September', N'Septiembre', N'Septembre', 9, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (804, CAST(N'2003-09-12 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 12, 255, 37, N'September', N'Septiembre', N'Septembre', 9, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (805, CAST(N'2003-09-13 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 13, 256, 37, N'September', N'Septiembre', N'Septembre', 9, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (806, CAST(N'2003-09-14 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 14, 257, 38, N'September', N'Septiembre', N'Septembre', 9, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (807, CAST(N'2003-09-15 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 15, 258, 38, N'September', N'Septiembre', N'Septembre', 9, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (808, CAST(N'2003-09-16 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 16, 259, 38, N'September', N'Septiembre', N'Septembre', 9, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (809, CAST(N'2003-09-17 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 17, 260, 38, N'September', N'Septiembre', N'Septembre', 9, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (810, CAST(N'2003-09-18 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 18, 261, 38, N'September', N'Septiembre', N'Septembre', 9, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (811, CAST(N'2003-09-19 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 19, 262, 38, N'September', N'Septiembre', N'Septembre', 9, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (812, CAST(N'2003-09-20 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 20, 263, 38, N'September', N'Septiembre', N'Septembre', 9, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (813, CAST(N'2003-09-21 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 21, 264, 39, N'September', N'Septiembre', N'Septembre', 9, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (814, CAST(N'2003-09-22 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 22, 265, 39, N'September', N'Septiembre', N'Septembre', 9, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (815, CAST(N'2003-09-23 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 23, 266, 39, N'September', N'Septiembre', N'Septembre', 9, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (816, CAST(N'2003-09-24 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 24, 267, 39, N'September', N'Septiembre', N'Septembre', 9, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (817, CAST(N'2003-09-25 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 25, 268, 39, N'September', N'Septiembre', N'Septembre', 9, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (818, CAST(N'2003-09-26 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 26, 269, 39, N'September', N'Septiembre', N'Septembre', 9, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (819, CAST(N'2003-09-27 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 27, 270, 39, N'September', N'Septiembre', N'Septembre', 9, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (820, CAST(N'2003-09-28 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 28, 271, 40, N'September', N'Septiembre', N'Septembre', 9, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (821, CAST(N'2003-09-29 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 29, 272, 40, N'September', N'Septiembre', N'Septembre', 9, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (822, CAST(N'2003-09-30 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 30, 273, 40, N'September', N'Septiembre', N'Septembre', 9, 3, N'2003', 2, 1, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (823, CAST(N'2003-10-01 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 1, 274, 40, N'October', N'Octubre', N'Octobre', 10, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (824, CAST(N'2003-10-02 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 2, 275, 40, N'October', N'Octubre', N'Octobre', 10, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (825, CAST(N'2003-10-03 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 3, 276, 40, N'October', N'Octubre', N'Octobre', 10, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (826, CAST(N'2003-10-04 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 4, 277, 40, N'October', N'Octubre', N'Octobre', 10, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (827, CAST(N'2003-10-05 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 5, 278, 41, N'October', N'Octubre', N'Octobre', 10, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (828, CAST(N'2003-10-06 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 6, 279, 41, N'October', N'Octubre', N'Octobre', 10, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (829, CAST(N'2003-10-07 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 7, 280, 41, N'October', N'Octubre', N'Octobre', 10, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (830, CAST(N'2003-10-08 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 8, 281, 41, N'October', N'Octubre', N'Octobre', 10, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (831, CAST(N'2003-10-09 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 9, 282, 41, N'October', N'Octubre', N'Octobre', 10, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (832, CAST(N'2003-10-10 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 10, 283, 41, N'October', N'Octubre', N'Octobre', 10, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (833, CAST(N'2003-10-11 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 11, 284, 41, N'October', N'Octubre', N'Octobre', 10, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (834, CAST(N'2003-10-12 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 12, 285, 42, N'October', N'Octubre', N'Octobre', 10, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (835, CAST(N'2003-10-13 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 13, 286, 42, N'October', N'Octubre', N'Octobre', 10, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (836, CAST(N'2003-10-14 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 14, 287, 42, N'October', N'Octubre', N'Octobre', 10, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (837, CAST(N'2003-10-15 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 15, 288, 42, N'October', N'Octubre', N'Octobre', 10, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (838, CAST(N'2003-10-16 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 16, 289, 42, N'October', N'Octubre', N'Octobre', 10, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (839, CAST(N'2003-10-17 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 17, 290, 42, N'October', N'Octubre', N'Octobre', 10, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (840, CAST(N'2003-10-18 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 18, 291, 42, N'October', N'Octubre', N'Octobre', 10, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (841, CAST(N'2003-10-19 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 19, 292, 43, N'October', N'Octubre', N'Octobre', 10, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (842, CAST(N'2003-10-20 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 20, 293, 43, N'October', N'Octubre', N'Octobre', 10, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (843, CAST(N'2003-10-21 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 21, 294, 43, N'October', N'Octubre', N'Octobre', 10, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (844, CAST(N'2003-10-22 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 22, 295, 43, N'October', N'Octubre', N'Octobre', 10, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (845, CAST(N'2003-10-23 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 23, 296, 43, N'October', N'Octubre', N'Octobre', 10, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (846, CAST(N'2003-10-24 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 24, 297, 43, N'October', N'Octubre', N'Octobre', 10, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (847, CAST(N'2003-10-25 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 25, 298, 43, N'October', N'Octubre', N'Octobre', 10, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (848, CAST(N'2003-10-26 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 26, 299, 44, N'October', N'Octubre', N'Octobre', 10, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (849, CAST(N'2003-10-27 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 27, 300, 44, N'October', N'Octubre', N'Octobre', 10, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (850, CAST(N'2003-10-28 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 28, 301, 44, N'October', N'Octubre', N'Octobre', 10, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (851, CAST(N'2003-10-29 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 29, 302, 44, N'October', N'Octubre', N'Octobre', 10, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (852, CAST(N'2003-10-30 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 30, 303, 44, N'October', N'Octubre', N'Octobre', 10, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (853, CAST(N'2003-10-31 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 31, 304, 44, N'October', N'Octubre', N'Octobre', 10, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (854, CAST(N'2003-11-01 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 1, 305, 44, N'November', N'Noviembre', N'Novembre', 11, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (855, CAST(N'2003-11-02 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 2, 306, 45, N'November', N'Noviembre', N'Novembre', 11, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (856, CAST(N'2003-11-03 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 3, 307, 45, N'November', N'Noviembre', N'Novembre', 11, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (857, CAST(N'2003-11-04 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 4, 308, 45, N'November', N'Noviembre', N'Novembre', 11, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (858, CAST(N'2003-11-05 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 5, 309, 45, N'November', N'Noviembre', N'Novembre', 11, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (859, CAST(N'2003-11-06 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 6, 310, 45, N'November', N'Noviembre', N'Novembre', 11, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (860, CAST(N'2003-11-07 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 7, 311, 45, N'November', N'Noviembre', N'Novembre', 11, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (861, CAST(N'2003-11-08 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 8, 312, 45, N'November', N'Noviembre', N'Novembre', 11, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (862, CAST(N'2003-11-09 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 9, 313, 46, N'November', N'Noviembre', N'Novembre', 11, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (863, CAST(N'2003-11-10 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 10, 314, 46, N'November', N'Noviembre', N'Novembre', 11, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (864, CAST(N'2003-11-11 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 11, 315, 46, N'November', N'Noviembre', N'Novembre', 11, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (865, CAST(N'2003-11-12 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 12, 316, 46, N'November', N'Noviembre', N'Novembre', 11, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (866, CAST(N'2003-11-13 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 13, 317, 46, N'November', N'Noviembre', N'Novembre', 11, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (867, CAST(N'2003-11-14 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 14, 318, 46, N'November', N'Noviembre', N'Novembre', 11, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (868, CAST(N'2003-11-15 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 15, 319, 46, N'November', N'Noviembre', N'Novembre', 11, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (869, CAST(N'2003-11-16 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 16, 320, 47, N'November', N'Noviembre', N'Novembre', 11, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (870, CAST(N'2003-11-17 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 17, 321, 47, N'November', N'Noviembre', N'Novembre', 11, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (871, CAST(N'2003-11-18 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 18, 322, 47, N'November', N'Noviembre', N'Novembre', 11, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (872, CAST(N'2003-11-19 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 19, 323, 47, N'November', N'Noviembre', N'Novembre', 11, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (873, CAST(N'2003-11-20 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 20, 324, 47, N'November', N'Noviembre', N'Novembre', 11, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (874, CAST(N'2003-11-21 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 21, 325, 47, N'November', N'Noviembre', N'Novembre', 11, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (875, CAST(N'2003-11-22 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 22, 326, 47, N'November', N'Noviembre', N'Novembre', 11, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (876, CAST(N'2003-11-23 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 23, 327, 48, N'November', N'Noviembre', N'Novembre', 11, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (877, CAST(N'2003-11-24 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 24, 328, 48, N'November', N'Noviembre', N'Novembre', 11, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (878, CAST(N'2003-11-25 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 25, 329, 48, N'November', N'Noviembre', N'Novembre', 11, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (879, CAST(N'2003-11-26 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 26, 330, 48, N'November', N'Noviembre', N'Novembre', 11, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (880, CAST(N'2003-11-27 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 27, 331, 48, N'November', N'Noviembre', N'Novembre', 11, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (881, CAST(N'2003-11-28 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 28, 332, 48, N'November', N'Noviembre', N'Novembre', 11, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (882, CAST(N'2003-11-29 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 29, 333, 48, N'November', N'Noviembre', N'Novembre', 11, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (883, CAST(N'2003-11-30 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 30, 334, 49, N'November', N'Noviembre', N'Novembre', 11, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (884, CAST(N'2003-12-01 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 1, 335, 49, N'December', N'Diciembre', N'Décembre', 12, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (885, CAST(N'2003-12-02 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 2, 336, 49, N'December', N'Diciembre', N'Décembre', 12, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (886, CAST(N'2003-12-03 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 3, 337, 49, N'December', N'Diciembre', N'Décembre', 12, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (887, CAST(N'2003-12-04 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 4, 338, 49, N'December', N'Diciembre', N'Décembre', 12, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (888, CAST(N'2003-12-05 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 5, 339, 49, N'December', N'Diciembre', N'Décembre', 12, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (889, CAST(N'2003-12-06 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 6, 340, 49, N'December', N'Diciembre', N'Décembre', 12, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (890, CAST(N'2003-12-07 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 7, 341, 50, N'December', N'Diciembre', N'Décembre', 12, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (891, CAST(N'2003-12-08 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 8, 342, 50, N'December', N'Diciembre', N'Décembre', 12, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (892, CAST(N'2003-12-09 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 9, 343, 50, N'December', N'Diciembre', N'Décembre', 12, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (893, CAST(N'2003-12-10 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 10, 344, 50, N'December', N'Diciembre', N'Décembre', 12, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (894, CAST(N'2003-12-11 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 11, 345, 50, N'December', N'Diciembre', N'Décembre', 12, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (895, CAST(N'2003-12-12 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 12, 346, 50, N'December', N'Diciembre', N'Décembre', 12, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (896, CAST(N'2003-12-13 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 13, 347, 50, N'December', N'Diciembre', N'Décembre', 12, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (897, CAST(N'2003-12-14 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 14, 348, 51, N'December', N'Diciembre', N'Décembre', 12, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (898, CAST(N'2003-12-15 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 15, 349, 51, N'December', N'Diciembre', N'Décembre', 12, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (899, CAST(N'2003-12-16 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 16, 350, 51, N'December', N'Diciembre', N'Décembre', 12, 4, N'2003', 2, 2, N'2004', 1)

GO

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (900, CAST(N'2003-12-17 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 17, 351, 51, N'December', N'Diciembre', N'Décembre', 12, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (901, CAST(N'2003-12-18 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 18, 352, 51, N'December', N'Diciembre', N'Décembre', 12, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (902, CAST(N'2003-12-19 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 19, 353, 51, N'December', N'Diciembre', N'Décembre', 12, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (903, CAST(N'2003-12-20 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 20, 354, 51, N'December', N'Diciembre', N'Décembre', 12, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (904, CAST(N'2003-12-21 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 21, 355, 52, N'December', N'Diciembre', N'Décembre', 12, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (905, CAST(N'2003-12-22 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 22, 356, 52, N'December', N'Diciembre', N'Décembre', 12, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (906, CAST(N'2003-12-23 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 23, 357, 52, N'December', N'Diciembre', N'Décembre', 12, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (907, CAST(N'2003-12-24 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 24, 358, 52, N'December', N'Diciembre', N'Décembre', 12, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (908, CAST(N'2003-12-25 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 25, 359, 52, N'December', N'Diciembre', N'Décembre', 12, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (909, CAST(N'2003-12-26 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 26, 360, 52, N'December', N'Diciembre', N'Décembre', 12, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (910, CAST(N'2003-12-27 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 27, 361, 52, N'December', N'Diciembre', N'Décembre', 12, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (911, CAST(N'2003-12-28 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 28, 362, 53, N'December', N'Diciembre', N'Décembre', 12, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (912, CAST(N'2003-12-29 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 29, 363, 53, N'December', N'Diciembre', N'Décembre', 12, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (913, CAST(N'2003-12-30 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 30, 364, 53, N'December', N'Diciembre', N'Décembre', 12, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (914, CAST(N'2003-12-31 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 31, 365, 53, N'December', N'Diciembre', N'Décembre', 12, 4, N'2003', 2, 2, N'2004', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (915, CAST(N'2004-01-01 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 1, 1, 1, N'January', N'Enero', N'Janvier', 1, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (916, CAST(N'2004-01-02 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 2, 2, 1, N'January', N'Enero', N'Janvier', 1, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (917, CAST(N'2004-01-03 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 3, 3, 1, N'January', N'Enero', N'Janvier', 1, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (918, CAST(N'2004-01-04 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 4, 4, 2, N'January', N'Enero', N'Janvier', 1, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (919, CAST(N'2004-01-05 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 5, 5, 2, N'January', N'Enero', N'Janvier', 1, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (920, CAST(N'2004-01-06 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 6, 6, 2, N'January', N'Enero', N'Janvier', 1, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (921, CAST(N'2004-01-07 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 7, 7, 2, N'January', N'Enero', N'Janvier', 1, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (922, CAST(N'2004-01-08 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 8, 8, 2, N'January', N'Enero', N'Janvier', 1, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (923, CAST(N'2004-01-09 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 9, 9, 2, N'January', N'Enero', N'Janvier', 1, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (924, CAST(N'2004-01-10 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 10, 10, 2, N'January', N'Enero', N'Janvier', 1, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (925, CAST(N'2004-01-11 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 11, 11, 3, N'January', N'Enero', N'Janvier', 1, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (926, CAST(N'2004-01-12 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 12, 12, 3, N'January', N'Enero', N'Janvier', 1, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (927, CAST(N'2004-01-13 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 13, 13, 3, N'January', N'Enero', N'Janvier', 1, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (928, CAST(N'2004-01-14 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 14, 14, 3, N'January', N'Enero', N'Janvier', 1, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (929, CAST(N'2004-01-15 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 15, 15, 3, N'January', N'Enero', N'Janvier', 1, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (930, CAST(N'2004-01-16 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 16, 16, 3, N'January', N'Enero', N'Janvier', 1, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (931, CAST(N'2004-01-17 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 17, 17, 3, N'January', N'Enero', N'Janvier', 1, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (932, CAST(N'2004-01-18 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 18, 18, 4, N'January', N'Enero', N'Janvier', 1, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (933, CAST(N'2004-01-19 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 19, 19, 4, N'January', N'Enero', N'Janvier', 1, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (934, CAST(N'2004-01-20 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 20, 20, 4, N'January', N'Enero', N'Janvier', 1, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (935, CAST(N'2004-01-21 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 21, 21, 4, N'January', N'Enero', N'Janvier', 1, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (936, CAST(N'2004-01-22 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 22, 22, 4, N'January', N'Enero', N'Janvier', 1, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (937, CAST(N'2004-01-23 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 23, 23, 4, N'January', N'Enero', N'Janvier', 1, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (938, CAST(N'2004-01-24 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 24, 24, 4, N'January', N'Enero', N'Janvier', 1, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (939, CAST(N'2004-01-25 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 25, 25, 5, N'January', N'Enero', N'Janvier', 1, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (940, CAST(N'2004-01-26 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 26, 26, 5, N'January', N'Enero', N'Janvier', 1, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (941, CAST(N'2004-01-27 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 27, 27, 5, N'January', N'Enero', N'Janvier', 1, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (942, CAST(N'2004-01-28 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 28, 28, 5, N'January', N'Enero', N'Janvier', 1, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (943, CAST(N'2004-01-29 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 29, 29, 5, N'January', N'Enero', N'Janvier', 1, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (944, CAST(N'2004-01-30 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 30, 30, 5, N'January', N'Enero', N'Janvier', 1, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (945, CAST(N'2004-01-31 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 31, 31, 5, N'January', N'Enero', N'Janvier', 1, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (946, CAST(N'2004-02-01 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 1, 32, 6, N'February', N'Febrero', N'Février', 2, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (947, CAST(N'2004-02-02 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 2, 33, 6, N'February', N'Febrero', N'Février', 2, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (948, CAST(N'2004-02-03 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 3, 34, 6, N'February', N'Febrero', N'Février', 2, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (949, CAST(N'2004-02-04 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 4, 35, 6, N'February', N'Febrero', N'Février', 2, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (950, CAST(N'2004-02-05 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 5, 36, 6, N'February', N'Febrero', N'Février', 2, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (951, CAST(N'2004-02-06 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 6, 37, 6, N'February', N'Febrero', N'Février', 2, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (952, CAST(N'2004-02-07 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 7, 38, 6, N'February', N'Febrero', N'Février', 2, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (953, CAST(N'2004-02-08 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 8, 39, 7, N'February', N'Febrero', N'Février', 2, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (954, CAST(N'2004-02-09 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 9, 40, 7, N'February', N'Febrero', N'Février', 2, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (955, CAST(N'2004-02-10 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 10, 41, 7, N'February', N'Febrero', N'Février', 2, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (956, CAST(N'2004-02-11 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 11, 42, 7, N'February', N'Febrero', N'Février', 2, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (957, CAST(N'2004-02-12 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 12, 43, 7, N'February', N'Febrero', N'Février', 2, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (958, CAST(N'2004-02-13 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 13, 44, 7, N'February', N'Febrero', N'Février', 2, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (959, CAST(N'2004-02-14 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 14, 45, 7, N'February', N'Febrero', N'Février', 2, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (960, CAST(N'2004-02-15 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 15, 46, 8, N'February', N'Febrero', N'Février', 2, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (961, CAST(N'2004-02-16 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 16, 47, 8, N'February', N'Febrero', N'Février', 2, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (962, CAST(N'2004-02-17 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 17, 48, 8, N'February', N'Febrero', N'Février', 2, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (963, CAST(N'2004-02-18 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 18, 49, 8, N'February', N'Febrero', N'Février', 2, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (964, CAST(N'2004-02-19 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 19, 50, 8, N'February', N'Febrero', N'Février', 2, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (965, CAST(N'2004-02-20 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 20, 51, 8, N'February', N'Febrero', N'Février', 2, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (966, CAST(N'2004-02-21 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 21, 52, 8, N'February', N'Febrero', N'Février', 2, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (967, CAST(N'2004-02-22 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 22, 53, 9, N'February', N'Febrero', N'Février', 2, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (968, CAST(N'2004-02-23 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 23, 54, 9, N'February', N'Febrero', N'Février', 2, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (969, CAST(N'2004-02-24 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 24, 55, 9, N'February', N'Febrero', N'Février', 2, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (970, CAST(N'2004-02-25 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 25, 56, 9, N'February', N'Febrero', N'Février', 2, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (971, CAST(N'2004-02-26 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 26, 57, 9, N'February', N'Febrero', N'Février', 2, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (972, CAST(N'2004-02-27 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 27, 58, 9, N'February', N'Febrero', N'Février', 2, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (973, CAST(N'2004-02-28 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 28, 59, 9, N'February', N'Febrero', N'Février', 2, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (974, CAST(N'2004-02-29 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 29, 60, 10, N'February', N'Febrero', N'Février', 2, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (975, CAST(N'2004-03-01 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 1, 61, 10, N'March', N'Marzo', N'Mars', 3, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (976, CAST(N'2004-03-02 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 2, 62, 10, N'March', N'Marzo', N'Mars', 3, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (977, CAST(N'2004-03-03 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 3, 63, 10, N'March', N'Marzo', N'Mars', 3, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (978, CAST(N'2004-03-04 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 4, 64, 10, N'March', N'Marzo', N'Mars', 3, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (979, CAST(N'2004-03-05 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 5, 65, 10, N'March', N'Marzo', N'Mars', 3, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (980, CAST(N'2004-03-06 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 6, 66, 10, N'March', N'Marzo', N'Mars', 3, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (981, CAST(N'2004-03-07 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 7, 67, 11, N'March', N'Marzo', N'Mars', 3, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (982, CAST(N'2004-03-08 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 8, 68, 11, N'March', N'Marzo', N'Mars', 3, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (983, CAST(N'2004-03-09 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 9, 69, 11, N'March', N'Marzo', N'Mars', 3, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (984, CAST(N'2004-03-10 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 10, 70, 11, N'March', N'Marzo', N'Mars', 3, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (985, CAST(N'2004-03-11 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 11, 71, 11, N'March', N'Marzo', N'Mars', 3, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (986, CAST(N'2004-03-12 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 12, 72, 11, N'March', N'Marzo', N'Mars', 3, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (987, CAST(N'2004-03-13 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 13, 73, 11, N'March', N'Marzo', N'Mars', 3, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (988, CAST(N'2004-03-14 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 14, 74, 12, N'March', N'Marzo', N'Mars', 3, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (989, CAST(N'2004-03-15 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 15, 75, 12, N'March', N'Marzo', N'Mars', 3, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (990, CAST(N'2004-03-16 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 16, 76, 12, N'March', N'Marzo', N'Mars', 3, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (991, CAST(N'2004-03-17 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 17, 77, 12, N'March', N'Marzo', N'Mars', 3, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (992, CAST(N'2004-03-18 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 18, 78, 12, N'March', N'Marzo', N'Mars', 3, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (993, CAST(N'2004-03-19 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 19, 79, 12, N'March', N'Marzo', N'Mars', 3, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (994, CAST(N'2004-03-20 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 20, 80, 12, N'March', N'Marzo', N'Mars', 3, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (995, CAST(N'2004-03-21 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 21, 81, 13, N'March', N'Marzo', N'Mars', 3, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (996, CAST(N'2004-03-22 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 22, 82, 13, N'March', N'Marzo', N'Mars', 3, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (997, CAST(N'2004-03-23 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 23, 83, 13, N'March', N'Marzo', N'Mars', 3, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (998, CAST(N'2004-03-24 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 24, 84, 13, N'March', N'Marzo', N'Mars', 3, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (999, CAST(N'2004-03-25 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 25, 85, 13, N'March', N'Marzo', N'Mars', 3, 1, N'2004', 1, 3, N'2004', 2)

GO

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1000, CAST(N'2004-03-26 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 26, 86, 13, N'March', N'Marzo', N'Mars', 3, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1001, CAST(N'2004-03-27 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 27, 87, 13, N'March', N'Marzo', N'Mars', 3, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1002, CAST(N'2004-03-28 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 28, 88, 14, N'March', N'Marzo', N'Mars', 3, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1003, CAST(N'2004-03-29 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 29, 89, 14, N'March', N'Marzo', N'Mars', 3, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1004, CAST(N'2004-03-30 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 30, 90, 14, N'March', N'Marzo', N'Mars', 3, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1005, CAST(N'2004-03-31 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 31, 91, 14, N'March', N'Marzo', N'Mars', 3, 1, N'2004', 1, 3, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1006, CAST(N'2004-04-01 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 1, 92, 14, N'April', N'Abril', N'Avril', 4, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1007, CAST(N'2004-04-02 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 2, 93, 14, N'April', N'Abril', N'Avril', 4, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1008, CAST(N'2004-04-03 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 3, 94, 14, N'April', N'Abril', N'Avril', 4, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1009, CAST(N'2004-04-04 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 4, 95, 15, N'April', N'Abril', N'Avril', 4, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1010, CAST(N'2004-04-05 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 5, 96, 15, N'April', N'Abril', N'Avril', 4, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1011, CAST(N'2004-04-06 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 6, 97, 15, N'April', N'Abril', N'Avril', 4, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1012, CAST(N'2004-04-07 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 7, 98, 15, N'April', N'Abril', N'Avril', 4, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1013, CAST(N'2004-04-08 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 8, 99, 15, N'April', N'Abril', N'Avril', 4, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1014, CAST(N'2004-04-09 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 9, 100, 15, N'April', N'Abril', N'Avril', 4, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1015, CAST(N'2004-04-10 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 10, 101, 15, N'April', N'Abril', N'Avril', 4, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1016, CAST(N'2004-04-11 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 11, 102, 16, N'April', N'Abril', N'Avril', 4, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1017, CAST(N'2004-04-12 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 12, 103, 16, N'April', N'Abril', N'Avril', 4, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1018, CAST(N'2004-04-13 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 13, 104, 16, N'April', N'Abril', N'Avril', 4, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1019, CAST(N'2004-04-14 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 14, 105, 16, N'April', N'Abril', N'Avril', 4, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1020, CAST(N'2004-04-15 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 15, 106, 16, N'April', N'Abril', N'Avril', 4, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1021, CAST(N'2004-04-16 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 16, 107, 16, N'April', N'Abril', N'Avril', 4, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1022, CAST(N'2004-04-17 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 17, 108, 16, N'April', N'Abril', N'Avril', 4, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1023, CAST(N'2004-04-18 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 18, 109, 17, N'April', N'Abril', N'Avril', 4, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1024, CAST(N'2004-04-19 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 19, 110, 17, N'April', N'Abril', N'Avril', 4, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1025, CAST(N'2004-04-20 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 20, 111, 17, N'April', N'Abril', N'Avril', 4, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1026, CAST(N'2004-04-21 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 21, 112, 17, N'April', N'Abril', N'Avril', 4, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1027, CAST(N'2004-04-22 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 22, 113, 17, N'April', N'Abril', N'Avril', 4, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1028, CAST(N'2004-04-23 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 23, 114, 17, N'April', N'Abril', N'Avril', 4, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1029, CAST(N'2004-04-24 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 24, 115, 17, N'April', N'Abril', N'Avril', 4, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1030, CAST(N'2004-04-25 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 25, 116, 18, N'April', N'Abril', N'Avril', 4, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1031, CAST(N'2004-04-26 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 26, 117, 18, N'April', N'Abril', N'Avril', 4, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1032, CAST(N'2004-04-27 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 27, 118, 18, N'April', N'Abril', N'Avril', 4, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1033, CAST(N'2004-04-28 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 28, 119, 18, N'April', N'Abril', N'Avril', 4, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1034, CAST(N'2004-04-29 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 29, 120, 18, N'April', N'Abril', N'Avril', 4, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1035, CAST(N'2004-04-30 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 30, 121, 18, N'April', N'Abril', N'Avril', 4, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1036, CAST(N'2004-05-01 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 1, 122, 18, N'May', N'Mayo', N'Mai', 5, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1037, CAST(N'2004-05-02 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 2, 123, 19, N'May', N'Mayo', N'Mai', 5, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1038, CAST(N'2004-05-03 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 3, 124, 19, N'May', N'Mayo', N'Mai', 5, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1039, CAST(N'2004-05-04 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 4, 125, 19, N'May', N'Mayo', N'Mai', 5, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1040, CAST(N'2004-05-05 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 5, 126, 19, N'May', N'Mayo', N'Mai', 5, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1041, CAST(N'2004-05-06 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 6, 127, 19, N'May', N'Mayo', N'Mai', 5, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1042, CAST(N'2004-05-07 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 7, 128, 19, N'May', N'Mayo', N'Mai', 5, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1043, CAST(N'2004-05-08 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 8, 129, 19, N'May', N'Mayo', N'Mai', 5, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1044, CAST(N'2004-05-09 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 9, 130, 20, N'May', N'Mayo', N'Mai', 5, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1045, CAST(N'2004-05-10 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 10, 131, 20, N'May', N'Mayo', N'Mai', 5, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1046, CAST(N'2004-05-11 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 11, 132, 20, N'May', N'Mayo', N'Mai', 5, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1047, CAST(N'2004-05-12 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 12, 133, 20, N'May', N'Mayo', N'Mai', 5, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1048, CAST(N'2004-05-13 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 13, 134, 20, N'May', N'Mayo', N'Mai', 5, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1049, CAST(N'2004-05-14 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 14, 135, 20, N'May', N'Mayo', N'Mai', 5, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1050, CAST(N'2004-05-15 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 15, 136, 20, N'May', N'Mayo', N'Mai', 5, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1051, CAST(N'2004-05-16 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 16, 137, 21, N'May', N'Mayo', N'Mai', 5, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1052, CAST(N'2004-05-17 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 17, 138, 21, N'May', N'Mayo', N'Mai', 5, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1053, CAST(N'2004-05-18 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 18, 139, 21, N'May', N'Mayo', N'Mai', 5, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1054, CAST(N'2004-05-19 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 19, 140, 21, N'May', N'Mayo', N'Mai', 5, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1055, CAST(N'2004-05-20 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 20, 141, 21, N'May', N'Mayo', N'Mai', 5, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1056, CAST(N'2004-05-21 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 21, 142, 21, N'May', N'Mayo', N'Mai', 5, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1057, CAST(N'2004-05-22 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 22, 143, 21, N'May', N'Mayo', N'Mai', 5, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1058, CAST(N'2004-05-23 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 23, 144, 22, N'May', N'Mayo', N'Mai', 5, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1059, CAST(N'2004-05-24 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 24, 145, 22, N'May', N'Mayo', N'Mai', 5, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1060, CAST(N'2004-05-25 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 25, 146, 22, N'May', N'Mayo', N'Mai', 5, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1061, CAST(N'2004-05-26 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 26, 147, 22, N'May', N'Mayo', N'Mai', 5, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1062, CAST(N'2004-05-27 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 27, 148, 22, N'May', N'Mayo', N'Mai', 5, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1063, CAST(N'2004-05-28 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 28, 149, 22, N'May', N'Mayo', N'Mai', 5, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1064, CAST(N'2004-05-29 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 29, 150, 22, N'May', N'Mayo', N'Mai', 5, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1065, CAST(N'2004-05-30 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 30, 151, 23, N'May', N'Mayo', N'Mai', 5, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1066, CAST(N'2004-05-31 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 31, 152, 23, N'May', N'Mayo', N'Mai', 5, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1067, CAST(N'2004-06-01 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 1, 153, 23, N'June', N'Junio', N'Juin', 6, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1068, CAST(N'2004-06-02 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 2, 154, 23, N'June', N'Junio', N'Juin', 6, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1069, CAST(N'2004-06-03 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 3, 155, 23, N'June', N'Junio', N'Juin', 6, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1070, CAST(N'2004-06-04 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 4, 156, 23, N'June', N'Junio', N'Juin', 6, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1071, CAST(N'2004-06-05 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 5, 157, 23, N'June', N'Junio', N'Juin', 6, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1072, CAST(N'2004-06-06 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 6, 158, 24, N'June', N'Junio', N'Juin', 6, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1073, CAST(N'2004-06-07 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 7, 159, 24, N'June', N'Junio', N'Juin', 6, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1074, CAST(N'2004-06-08 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 8, 160, 24, N'June', N'Junio', N'Juin', 6, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1075, CAST(N'2004-06-09 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 9, 161, 24, N'June', N'Junio', N'Juin', 6, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1076, CAST(N'2004-06-10 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 10, 162, 24, N'June', N'Junio', N'Juin', 6, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1077, CAST(N'2004-06-11 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 11, 163, 24, N'June', N'Junio', N'Juin', 6, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1078, CAST(N'2004-06-12 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 12, 164, 24, N'June', N'Junio', N'Juin', 6, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1079, CAST(N'2004-06-13 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 13, 165, 25, N'June', N'Junio', N'Juin', 6, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1080, CAST(N'2004-06-14 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 14, 166, 25, N'June', N'Junio', N'Juin', 6, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1081, CAST(N'2004-06-15 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 15, 167, 25, N'June', N'Junio', N'Juin', 6, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1082, CAST(N'2004-06-16 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 16, 168, 25, N'June', N'Junio', N'Juin', 6, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1083, CAST(N'2004-06-17 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 17, 169, 25, N'June', N'Junio', N'Juin', 6, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1084, CAST(N'2004-06-18 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 18, 170, 25, N'June', N'Junio', N'Juin', 6, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1085, CAST(N'2004-06-19 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 19, 171, 25, N'June', N'Junio', N'Juin', 6, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1086, CAST(N'2004-06-20 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 20, 172, 26, N'June', N'Junio', N'Juin', 6, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1087, CAST(N'2004-06-21 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 21, 173, 26, N'June', N'Junio', N'Juin', 6, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1088, CAST(N'2004-06-22 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 22, 174, 26, N'June', N'Junio', N'Juin', 6, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1089, CAST(N'2004-06-23 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 23, 175, 26, N'June', N'Junio', N'Juin', 6, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1090, CAST(N'2004-06-24 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 24, 176, 26, N'June', N'Junio', N'Juin', 6, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1091, CAST(N'2004-06-25 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 25, 177, 26, N'June', N'Junio', N'Juin', 6, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1092, CAST(N'2004-06-26 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 26, 178, 26, N'June', N'Junio', N'Juin', 6, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1093, CAST(N'2004-06-27 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 27, 179, 27, N'June', N'Junio', N'Juin', 6, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1094, CAST(N'2004-06-28 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 28, 180, 27, N'June', N'Junio', N'Juin', 6, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1095, CAST(N'2004-06-29 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 29, 181, 27, N'June', N'Junio', N'Juin', 6, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1096, CAST(N'2004-06-30 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 30, 182, 27, N'June', N'Junio', N'Juin', 6, 2, N'2004', 1, 4, N'2004', 2)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1097, CAST(N'2004-07-01 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 1, 183, 27, N'July', N'Julio', N'Juillet', 7, 3, N'2004', 2, 1, N'2005', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1098, CAST(N'2004-07-02 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 2, 184, 27, N'July', N'Julio', N'Juillet', 7, 3, N'2004', 2, 1, N'2005', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1099, CAST(N'2004-07-03 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 3, 185, 27, N'July', N'Julio', N'Juillet', 7, 3, N'2004', 2, 1, N'2005', 1)

GO

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1100, CAST(N'2004-07-04 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 4, 186, 28, N'July', N'Julio', N'Juillet', 7, 3, N'2004', 2, 1, N'2005', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1101, CAST(N'2004-07-05 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 5, 187, 28, N'July', N'Julio', N'Juillet', 7, 3, N'2004', 2, 1, N'2005', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1102, CAST(N'2004-07-06 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 6, 188, 28, N'July', N'Julio', N'Juillet', 7, 3, N'2004', 2, 1, N'2005', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1103, CAST(N'2004-07-07 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 7, 189, 28, N'July', N'Julio', N'Juillet', 7, 3, N'2004', 2, 1, N'2005', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1104, CAST(N'2004-07-08 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 8, 190, 28, N'July', N'Julio', N'Juillet', 7, 3, N'2004', 2, 1, N'2005', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1105, CAST(N'2004-07-09 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 9, 191, 28, N'July', N'Julio', N'Juillet', 7, 3, N'2004', 2, 1, N'2005', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1106, CAST(N'2004-07-10 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 10, 192, 28, N'July', N'Julio', N'Juillet', 7, 3, N'2004', 2, 1, N'2005', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1107, CAST(N'2004-07-11 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 11, 193, 29, N'July', N'Julio', N'Juillet', 7, 3, N'2004', 2, 1, N'2005', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1108, CAST(N'2004-07-12 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 12, 194, 29, N'July', N'Julio', N'Juillet', 7, 3, N'2004', 2, 1, N'2005', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1109, CAST(N'2004-07-13 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 13, 195, 29, N'July', N'Julio', N'Juillet', 7, 3, N'2004', 2, 1, N'2005', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1110, CAST(N'2004-07-14 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 14, 196, 29, N'July', N'Julio', N'Juillet', 7, 3, N'2004', 2, 1, N'2005', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1111, CAST(N'2004-07-15 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 15, 197, 29, N'July', N'Julio', N'Juillet', 7, 3, N'2004', 2, 1, N'2005', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1112, CAST(N'2004-07-16 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 16, 198, 29, N'July', N'Julio', N'Juillet', 7, 3, N'2004', 2, 1, N'2005', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1113, CAST(N'2004-07-17 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 17, 199, 29, N'July', N'Julio', N'Juillet', 7, 3, N'2004', 2, 1, N'2005', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1114, CAST(N'2004-07-18 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 18, 200, 30, N'July', N'Julio', N'Juillet', 7, 3, N'2004', 2, 1, N'2005', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1115, CAST(N'2004-07-19 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 19, 201, 30, N'July', N'Julio', N'Juillet', 7, 3, N'2004', 2, 1, N'2005', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1116, CAST(N'2004-07-20 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 20, 202, 30, N'July', N'Julio', N'Juillet', 7, 3, N'2004', 2, 1, N'2005', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1117, CAST(N'2004-07-21 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 21, 203, 30, N'July', N'Julio', N'Juillet', 7, 3, N'2004', 2, 1, N'2005', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1118, CAST(N'2004-07-22 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 22, 204, 30, N'July', N'Julio', N'Juillet', 7, 3, N'2004', 2, 1, N'2005', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1119, CAST(N'2004-07-23 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 23, 205, 30, N'July', N'Julio', N'Juillet', 7, 3, N'2004', 2, 1, N'2005', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1120, CAST(N'2004-07-24 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 24, 206, 30, N'July', N'Julio', N'Juillet', 7, 3, N'2004', 2, 1, N'2005', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1121, CAST(N'2004-07-25 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 25, 207, 31, N'July', N'Julio', N'Juillet', 7, 3, N'2004', 2, 1, N'2005', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1122, CAST(N'2004-07-26 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 26, 208, 31, N'July', N'Julio', N'Juillet', 7, 3, N'2004', 2, 1, N'2005', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1123, CAST(N'2004-07-27 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 27, 209, 31, N'July', N'Julio', N'Juillet', 7, 3, N'2004', 2, 1, N'2005', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1124, CAST(N'2004-07-28 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 28, 210, 31, N'July', N'Julio', N'Juillet', 7, 3, N'2004', 2, 1, N'2005', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1125, CAST(N'2004-07-29 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 29, 211, 31, N'July', N'Julio', N'Juillet', 7, 3, N'2004', 2, 1, N'2005', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1126, CAST(N'2004-07-30 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 30, 212, 31, N'July', N'Julio', N'Juillet', 7, 3, N'2004', 2, 1, N'2005', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1127, CAST(N'2004-07-31 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 31, 213, 31, N'July', N'Julio', N'Juillet', 7, 3, N'2004', 2, 1, N'2005', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1128, CAST(N'2004-08-01 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 1, 214, 32, N'August', N'Agosto', N'Août', 8, 3, N'2004', 2, 1, N'2005', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1129, CAST(N'2004-08-02 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 2, 215, 32, N'August', N'Agosto', N'Août', 8, 3, N'2004', 2, 1, N'2005', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1130, CAST(N'2004-08-03 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 3, 216, 32, N'August', N'Agosto', N'Août', 8, 3, N'2004', 2, 1, N'2005', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1131, CAST(N'2004-08-04 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 4, 217, 32, N'August', N'Agosto', N'Août', 8, 3, N'2004', 2, 1, N'2005', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1132, CAST(N'2004-08-05 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 5, 218, 32, N'August', N'Agosto', N'Août', 8, 3, N'2004', 2, 1, N'2005', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1133, CAST(N'2004-08-06 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 6, 219, 32, N'August', N'Agosto', N'Août', 8, 3, N'2004', 2, 1, N'2005', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1134, CAST(N'2004-08-07 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 7, 220, 32, N'August', N'Agosto', N'Août', 8, 3, N'2004', 2, 1, N'2005', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1135, CAST(N'2004-08-08 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 8, 221, 33, N'August', N'Agosto', N'Août', 8, 3, N'2004', 2, 1, N'2005', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1136, CAST(N'2004-08-09 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 9, 222, 33, N'August', N'Agosto', N'Août', 8, 3, N'2004', 2, 1, N'2005', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1137, CAST(N'2004-08-10 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 10, 223, 33, N'August', N'Agosto', N'Août', 8, 3, N'2004', 2, 1, N'2005', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1138, CAST(N'2004-08-11 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 11, 224, 33, N'August', N'Agosto', N'Août', 8, 3, N'2004', 2, 1, N'2005', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1139, CAST(N'2004-08-12 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 12, 225, 33, N'August', N'Agosto', N'Août', 8, 3, N'2004', 2, 1, N'2005', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1140, CAST(N'2004-08-13 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 13, 226, 33, N'August', N'Agosto', N'Août', 8, 3, N'2004', 2, 1, N'2005', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1141, CAST(N'2004-08-14 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 14, 227, 33, N'August', N'Agosto', N'Août', 8, 3, N'2004', 2, 1, N'2005', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1142, CAST(N'2004-08-15 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 15, 228, 34, N'August', N'Agosto', N'Août', 8, 3, N'2004', 2, 1, N'2005', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1143, CAST(N'2004-08-16 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 16, 229, 34, N'August', N'Agosto', N'Août', 8, 3, N'2004', 2, 1, N'2005', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1144, CAST(N'2004-08-17 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 17, 230, 34, N'August', N'Agosto', N'Août', 8, 3, N'2004', 2, 1, N'2005', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1145, CAST(N'2004-08-18 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 18, 231, 34, N'August', N'Agosto', N'Août', 8, 3, N'2004', 2, 1, N'2005', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1146, CAST(N'2004-08-19 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 19, 232, 34, N'August', N'Agosto', N'Août', 8, 3, N'2004', 2, 1, N'2005', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1147, CAST(N'2004-08-20 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 20, 233, 34, N'August', N'Agosto', N'Août', 8, 3, N'2004', 2, 1, N'2005', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1148, CAST(N'2004-08-21 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 21, 234, 34, N'August', N'Agosto', N'Août', 8, 3, N'2004', 2, 1, N'2005', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1149, CAST(N'2004-08-22 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 22, 235, 35, N'August', N'Agosto', N'Août', 8, 3, N'2004', 2, 1, N'2005', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1150, CAST(N'2004-08-23 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 23, 236, 35, N'August', N'Agosto', N'Août', 8, 3, N'2004', 2, 1, N'2005', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1151, CAST(N'2004-08-24 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 24, 237, 35, N'August', N'Agosto', N'Août', 8, 3, N'2004', 2, 1, N'2005', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1152, CAST(N'2004-08-25 00:00:00.000' AS DateTime), 4, N'Wednesday', N'Miércoles', N'Mercredi', 25, 238, 35, N'August', N'Agosto', N'Août', 8, 3, N'2004', 2, 1, N'2005', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1153, CAST(N'2004-08-26 00:00:00.000' AS DateTime), 5, N'Thursday', N'Jueves', N'Jeudi', 26, 239, 35, N'August', N'Agosto', N'Août', 8, 3, N'2004', 2, 1, N'2005', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1154, CAST(N'2004-08-27 00:00:00.000' AS DateTime), 6, N'Friday', N'Viernes', N'Vendredi', 27, 240, 35, N'August', N'Agosto', N'Août', 8, 3, N'2004', 2, 1, N'2005', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1155, CAST(N'2004-08-28 00:00:00.000' AS DateTime), 7, N'Saturday', N'Sábado', N'Samedi', 28, 241, 35, N'August', N'Agosto', N'Août', 8, 3, N'2004', 2, 1, N'2005', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1156, CAST(N'2004-08-29 00:00:00.000' AS DateTime), 1, N'Sunday', N'Domingo', N'Dimanche', 29, 242, 36, N'August', N'Agosto', N'Août', 8, 3, N'2004', 2, 1, N'2005', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1157, CAST(N'2004-08-30 00:00:00.000' AS DateTime), 2, N'Monday', N'Lunes', N'Lundi', 30, 243, 36, N'August', N'Agosto', N'Août', 8, 3, N'2004', 2, 1, N'2005', 1)

INSERT [dbo].[TIME_DATA] ([TimeKey], [FullDateAlternateKey], [DayNumberOfWeek], [EnglishDayNameOfWeek], [SpanishDayNameOfWeek], [FrenchDayNameOfWeek], [DayNumberOfMonth], [DayNumberOfYear], [WeekNumberOfYear], [EnglishMonthName], [SpanishMonthName], [FrenchMonthName], [MonthNumberOfYear], [CalendarQuarter], [CalendarYear], [CalendarSemester], [FiscalQuarter], [FiscalYear], [FiscalSemester]) VALUES (1158, CAST(N'2004-08-31 00:00:00.000' AS DateTime), 3, N'Tuesday', N'Martes', N'Mardi', 31, 244, 36, N'August', N'Agosto', N'Août', 8, 3, N'2004', 2, 1, N'2005', 1)

SET IDENTITY_INSERT [dbo].[TIME_DATA] OFF

GO

USE [PRODUCT DATABASE]

GO

CREATE TABLE [dbo].[PRODUCTS_DATA](

[ProductKey] [int] IDENTITY(1,1) NOT NULL PRIMARY KEY,

[ProductSubcategoryKey] [int] NULL,

[WeightUnitMeasureCode] [nchar](3) NULL,

[SizeUnitMeasureCode] [nchar](3) NULL,

[EnglishProductName] [nvarchar](50) NOT NULL,

[StandardCost] [money] NULL,

[Color] [nvarchar](15) NOT NULL,

[SafetyStockLevel] [smallint] NULL,

[ListPrice] [money] NULL,

[Size] [nvarchar](50) NULL,

[Weight] [float] NULL,

[DaysToManufacture] [int] NULL,

[ProductLine] [nchar](2) NULL,

[DealerPrice] [money] NULL,

[Class] [nchar](2) NULL,

[Style] [nchar](2) NULL

) ON [PRIMARY]

GO

SET IDENTITY_INSERT [dbo].[PRODUCTS_DATA] ON

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (1, NULL, NULL, NULL, N'Adjustable Race', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (2, NULL, NULL, NULL, N'Bearing Ball', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (3, NULL, NULL, NULL, N'BB Ball Bearing', NULL, N'NA', 800, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (4, NULL, NULL, NULL, N'Headset Ball Bearings', NULL, N'NA', 800, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (5, NULL, NULL, NULL, N'Blade', NULL, N'NA', 800, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (6, NULL, NULL, NULL, N'LL Crankarm', NULL, N'Black', 500, NULL, NULL, NULL, 0, NULL, NULL, N'L ', NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (7, NULL, NULL, NULL, N'ML Crankarm', NULL, N'Black', 500, NULL, NULL, NULL, 0, NULL, NULL, N'M ', NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (8, NULL, NULL, NULL, N'HL Crankarm', NULL, N'Black', 500, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (9, NULL, NULL, NULL, N'Chainring Bolts', NULL, N'Silver', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (10, NULL, NULL, NULL, N'Chainring Nut', NULL, N'Silver', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (11, NULL, NULL, NULL, N'Chainring', NULL, N'Black', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (12, NULL, NULL, NULL, N'Crown Race', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (13, NULL, NULL, NULL, N'Chain Stays', NULL, N'NA', 1000, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (14, NULL, NULL, NULL, N'Decal 1', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (15, NULL, NULL, NULL, N'Decal 2', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (16, NULL, NULL, NULL, N'Down Tube', NULL, N'NA', 800, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (17, NULL, NULL, NULL, N'Mountain End Caps', NULL, N'NA', 1000, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (18, NULL, NULL, NULL, N'Road End Caps', NULL, N'NA', 1000, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (19, NULL, NULL, NULL, N'Touring End Caps', NULL, N'NA', 1000, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (20, NULL, NULL, NULL, N'Fork End', NULL, N'NA', 800, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (21, NULL, NULL, NULL, N'Freewheel', NULL, N'Silver', 500, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (22, NULL, NULL, NULL, N'Flat Washer 1', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (23, NULL, NULL, NULL, N'Flat Washer 6', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (24, NULL, NULL, NULL, N'Flat Washer 2', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (25, NULL, NULL, NULL, N'Flat Washer 9', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (26, NULL, NULL, NULL, N'Flat Washer 4', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (27, NULL, NULL, NULL, N'Flat Washer 3', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (28, NULL, NULL, NULL, N'Flat Washer 8', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (29, NULL, NULL, NULL, N'Flat Washer 5', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (30, NULL, NULL, NULL, N'Flat Washer 7', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (31, NULL, NULL, NULL, N'Fork Crown', NULL, N'NA', 800, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (32, NULL, NULL, NULL, N'Front Derailleur Cage', NULL, N'Silver', 800, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (33, NULL, NULL, NULL, N'Front Derailleur Linkage', NULL, N'Silver', 800, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (34, NULL, NULL, NULL, N'Guide Pulley', NULL, N'NA', 800, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (35, NULL, NULL, NULL, N'LL Grip Tape', NULL, N'NA', 800, NULL, NULL, NULL, 0, NULL, NULL, N'L ', NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (36, NULL, NULL, NULL, N'ML Grip Tape', NULL, N'NA', 800, NULL, NULL, NULL, 0, NULL, NULL, N'M ', NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (37, NULL, NULL, NULL, N'HL Grip Tape', NULL, N'NA', 800, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (38, NULL, NULL, NULL, N'Thin-Jam Hex Nut 9', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (39, NULL, NULL, NULL, N'Thin-Jam Hex Nut 10', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (40, NULL, NULL, NULL, N'Thin-Jam Hex Nut 1', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (41, NULL, NULL, NULL, N'Thin-Jam Hex Nut 2', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (42, NULL, NULL, NULL, N'Thin-Jam Hex Nut 15', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (43, NULL, NULL, NULL, N'Thin-Jam Hex Nut 16', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (44, NULL, NULL, NULL, N'Thin-Jam Hex Nut 5', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (45, NULL, NULL, NULL, N'Thin-Jam Hex Nut 6', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (46, NULL, NULL, NULL, N'Thin-Jam Hex Nut 3', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (47, NULL, NULL, NULL, N'Thin-Jam Hex Nut 4', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (48, NULL, NULL, NULL, N'Thin-Jam Hex Nut 13', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (49, NULL, NULL, NULL, N'Thin-Jam Hex Nut 14', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (50, NULL, NULL, NULL, N'Thin-Jam Hex Nut 7', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (51, NULL, NULL, NULL, N'Thin-Jam Hex Nut 8', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (52, NULL, NULL, NULL, N'Thin-Jam Hex Nut 12', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (53, NULL, NULL, NULL, N'Thin-Jam Hex Nut 11', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (54, NULL, NULL, NULL, N'Hex Nut 5', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (55, NULL, NULL, NULL, N'Hex Nut 6', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (56, NULL, NULL, NULL, N'Hex Nut 16', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (57, NULL, NULL, NULL, N'Hex Nut 17', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (58, NULL, NULL, NULL, N'Hex Nut 7', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (59, NULL, NULL, NULL, N'Hex Nut 8', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (60, NULL, NULL, NULL, N'Hex Nut 9', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (61, NULL, NULL, NULL, N'Hex Nut 22', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (62, NULL, NULL, NULL, N'Hex Nut 23', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (63, NULL, NULL, NULL, N'Hex Nut 12', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (64, NULL, NULL, NULL, N'Hex Nut 13', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (65, NULL, NULL, NULL, N'Hex Nut 1', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (66, NULL, NULL, NULL, N'Hex Nut 10', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (67, NULL, NULL, NULL, N'Hex Nut 11', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (68, NULL, NULL, NULL, N'Hex Nut 2', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (69, NULL, NULL, NULL, N'Hex Nut 20', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (70, NULL, NULL, NULL, N'Hex Nut 21', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (71, NULL, NULL, NULL, N'Hex Nut 3', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (72, NULL, NULL, NULL, N'Hex Nut 14', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (73, NULL, NULL, NULL, N'Hex Nut 15', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (74, NULL, NULL, NULL, N'Hex Nut 4', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (75, NULL, NULL, NULL, N'Hex Nut 18', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (76, NULL, NULL, NULL, N'Hex Nut 19', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (77, NULL, NULL, NULL, N'Handlebar Tube', NULL, N'NA', 800, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (78, NULL, NULL, NULL, N'Head Tube', NULL, N'NA', 800, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (79, NULL, NULL, NULL, N'LL Hub', NULL, N'NA', 500, NULL, NULL, NULL, 1, NULL, NULL, N'L ', NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (80, NULL, NULL, NULL, N'HL Hub', NULL, N'NA', 500, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (81, NULL, NULL, NULL, N'Keyed Washer', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (82, NULL, NULL, NULL, N'External Lock Washer 3', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (83, NULL, NULL, NULL, N'External Lock Washer 4', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (84, NULL, NULL, NULL, N'External Lock Washer 9', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (85, NULL, NULL, NULL, N'External Lock Washer 5', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (86, NULL, NULL, NULL, N'External Lock Washer 7', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (87, NULL, NULL, NULL, N'External Lock Washer 6', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (88, NULL, NULL, NULL, N'External Lock Washer 1', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (89, NULL, NULL, NULL, N'External Lock Washer 8', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (90, NULL, NULL, NULL, N'External Lock Washer 2', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (91, NULL, NULL, NULL, N'Internal Lock Washer 3', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (92, NULL, NULL, NULL, N'Internal Lock Washer 4', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (93, NULL, NULL, NULL, N'Internal Lock Washer 9', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (94, NULL, NULL, NULL, N'Internal Lock Washer 5', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (95, NULL, NULL, NULL, N'Internal Lock Washer 7', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (96, NULL, NULL, NULL, N'Internal Lock Washer 6', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (97, NULL, NULL, NULL, N'Internal Lock Washer 10', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (98, NULL, NULL, NULL, N'Internal Lock Washer 1', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (99, NULL, NULL, NULL, N'Internal Lock Washer 8', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

GO

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (100, NULL, NULL, NULL, N'Internal Lock Washer 2', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (101, NULL, NULL, NULL, N'Thin-Jam Lock Nut 9', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (102, NULL, NULL, NULL, N'Thin-Jam Lock Nut 10', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (103, NULL, NULL, NULL, N'Thin-Jam Lock Nut 1', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (104, NULL, NULL, NULL, N'Thin-Jam Lock Nut 2', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (105, NULL, NULL, NULL, N'Thin-Jam Lock Nut 15', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (106, NULL, NULL, NULL, N'Thin-Jam Lock Nut 16', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (107, NULL, NULL, NULL, N'Thin-Jam Lock Nut 5', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (108, NULL, NULL, NULL, N'Thin-Jam Lock Nut 6', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (109, NULL, NULL, NULL, N'Thin-Jam Lock Nut 3', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (110, NULL, NULL, NULL, N'Thin-Jam Lock Nut 4', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (111, NULL, NULL, NULL, N'Thin-Jam Lock Nut 13', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (112, NULL, NULL, NULL, N'Thin-Jam Lock Nut 14', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (113, NULL, NULL, NULL, N'Thin-Jam Lock Nut 7', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (114, NULL, NULL, NULL, N'Thin-Jam Lock Nut 8', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (115, NULL, NULL, NULL, N'Thin-Jam Lock Nut 12', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (116, NULL, NULL, NULL, N'Thin-Jam Lock Nut 11', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (117, NULL, NULL, NULL, N'Lock Nut 5', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (118, NULL, NULL, NULL, N'Lock Nut 6', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (119, NULL, NULL, NULL, N'Lock Nut 16', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (120, NULL, NULL, NULL, N'Lock Nut 17', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (121, NULL, NULL, NULL, N'Lock Nut 7', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (122, NULL, NULL, NULL, N'Lock Nut 8', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (123, NULL, NULL, NULL, N'Lock Nut 9', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (124, NULL, NULL, NULL, N'Lock Nut 22', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (125, NULL, NULL, NULL, N'Lock Nut 23', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (126, NULL, NULL, NULL, N'Lock Nut 12', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (127, NULL, NULL, NULL, N'Lock Nut 13', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (128, NULL, NULL, NULL, N'Lock Nut 1', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (129, NULL, NULL, NULL, N'Lock Nut 10', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (130, NULL, NULL, NULL, N'Lock Nut 11', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (131, NULL, NULL, NULL, N'Lock Nut 2', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (132, NULL, NULL, NULL, N'Lock Nut 20', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (133, NULL, NULL, NULL, N'Lock Nut 21', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (134, NULL, NULL, NULL, N'Lock Nut 3', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (135, NULL, NULL, NULL, N'Lock Nut 14', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (136, NULL, NULL, NULL, N'Lock Nut 15', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (137, NULL, NULL, NULL, N'Lock Nut 4', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (138, NULL, NULL, NULL, N'Lock Nut 19', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (139, NULL, NULL, NULL, N'Lock Nut 18', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (140, NULL, NULL, NULL, N'Lock Ring', NULL, N'Silver', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (141, NULL, NULL, NULL, N'Lower Head Race', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (142, NULL, NULL, NULL, N'Lock Washer 4', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (143, NULL, NULL, NULL, N'Lock Washer 5', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (144, NULL, NULL, NULL, N'Lock Washer 10', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (145, NULL, NULL, NULL, N'Lock Washer 6', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (146, NULL, NULL, NULL, N'Lock Washer 13', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (147, NULL, NULL, NULL, N'Lock Washer 8', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (148, NULL, NULL, NULL, N'Lock Washer 1', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (149, NULL, NULL, NULL, N'Lock Washer 7', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (150, NULL, NULL, NULL, N'Lock Washer 12', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (151, NULL, NULL, NULL, N'Lock Washer 2', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (152, NULL, NULL, NULL, N'Lock Washer 9', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (153, NULL, NULL, NULL, N'Lock Washer 3', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (154, NULL, NULL, NULL, N'Lock Washer 11', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (155, NULL, NULL, NULL, N'Metal Angle', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (156, NULL, NULL, NULL, N'Metal Bar 1', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (157, NULL, NULL, NULL, N'Metal Bar 2', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (158, NULL, NULL, NULL, N'Metal Plate 2', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (159, NULL, NULL, NULL, N'Metal Plate 1', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (160, NULL, NULL, NULL, N'Metal Plate 3', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (161, NULL, NULL, NULL, N'Metal Sheet 2', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (162, NULL, NULL, NULL, N'Metal Sheet 3', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (163, NULL, NULL, NULL, N'Metal Sheet 7', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (164, NULL, NULL, NULL, N'Metal Sheet 4', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (165, NULL, NULL, NULL, N'Metal Sheet 5', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (166, NULL, NULL, NULL, N'Metal Sheet 6', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (167, NULL, NULL, NULL, N'Metal Sheet 1', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (168, NULL, NULL, NULL, N'Metal Tread Plate', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (169, NULL, NULL, NULL, N'LL Nipple', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, N'L ', NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (170, NULL, NULL, NULL, N'HL Nipple', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (171, NULL, NULL, NULL, N'Paint - Black', NULL, N'NA', 60, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (172, NULL, NULL, NULL, N'Paint - Red', NULL, N'NA', 60, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (173, NULL, NULL, NULL, N'Paint - Silver', NULL, N'NA', 60, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (174, NULL, NULL, NULL, N'Paint - Blue', NULL, N'NA', 60, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (175, NULL, NULL, NULL, N'Paint - Yellow', NULL, N'NA', 60, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (176, NULL, NULL, NULL, N'Pinch Bolt', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (177, NULL, NULL, NULL, N'Cup-Shaped Race', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (178, NULL, NULL, NULL, N'Cone-Shaped Race', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (179, NULL, NULL, NULL, N'Reflector', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (180, NULL, N'G ', NULL, N'LL Mountain Rim', NULL, N'NA', 800, NULL, NULL, 435, 0, NULL, NULL, N'L ', NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (181, NULL, N'G ', NULL, N'ML Mountain Rim', NULL, N'NA', 800, NULL, NULL, 450, 0, NULL, NULL, N'M ', NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (182, NULL, N'G ', NULL, N'HL Mountain Rim', NULL, N'NA', 800, NULL, NULL, 400, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (183, NULL, N'G ', NULL, N'LL Road Rim', NULL, N'NA', 800, NULL, NULL, 445, 0, NULL, NULL, N'L ', NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (184, NULL, N'G ', NULL, N'ML Road Rim', NULL, N'NA', 800, NULL, NULL, 450, 0, NULL, NULL, N'M ', NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (185, NULL, N'G ', NULL, N'HL Road Rim', NULL, N'NA', 800, NULL, NULL, 400, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (186, NULL, N'G ', NULL, N'Touring Rim', NULL, N'NA', 800, NULL, NULL, 460, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (187, NULL, NULL, NULL, N'LL Mountain Seat Assembly', NULL, N'NA', 500, NULL, NULL, NULL, 1, NULL, NULL, N'L ', NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (188, NULL, NULL, NULL, N'ML Mountain Seat Assembly', NULL, N'NA', 500, NULL, NULL, NULL, 1, NULL, NULL, N'M ', NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (189, NULL, NULL, NULL, N'HL Mountain Seat Assembly', NULL, N'NA', 500, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (190, NULL, NULL, NULL, N'LL Road Seat Assembly', NULL, N'NA', 500, NULL, NULL, NULL, 1, NULL, NULL, N'L ', NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (191, NULL, NULL, NULL, N'ML Road Seat Assembly', NULL, N'NA', 500, NULL, NULL, NULL, 1, NULL, NULL, N'M ', NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (192, NULL, NULL, NULL, N'HL Road Seat Assembly', NULL, N'NA', 500, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (193, NULL, NULL, NULL, N'LL Touring Seat Assembly', NULL, N'NA', 500, NULL, NULL, NULL, 1, NULL, NULL, N'L ', NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (194, NULL, NULL, NULL, N'ML Touring Seat Assembly', NULL, N'NA', 500, NULL, NULL, NULL, 1, NULL, NULL, N'M ', NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (195, NULL, NULL, NULL, N'HL Touring Seat Assembly', NULL, N'NA', 500, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (196, NULL, NULL, NULL, N'LL Spindle/Axle', NULL, N'NA', 500, NULL, NULL, NULL, 0, NULL, NULL, N'L ', NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (197, NULL, NULL, NULL, N'HL Spindle/Axle', NULL, N'NA', 500, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (198, NULL, NULL, NULL, N'LL Shell', NULL, N'NA', 800, NULL, NULL, NULL, 0, NULL, NULL, N'L ', NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (199, NULL, NULL, NULL, N'HL Shell', NULL, N'NA', 800, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

GO

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (200, NULL, NULL, NULL, N'Spokes', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (201, NULL, NULL, NULL, N'Seat Lug', NULL, N'NA', 1000, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (202, NULL, NULL, NULL, N'Stem', NULL, N'NA', 500, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (203, NULL, NULL, NULL, N'Seat Post', NULL, N'NA', 500, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (204, NULL, NULL, NULL, N'Steerer', NULL, N'NA', 500, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (205, NULL, NULL, NULL, N'Seat Stays', NULL, N'NA', 800, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (206, NULL, NULL, NULL, N'Seat Tube', NULL, N'NA', 500, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (207, NULL, NULL, NULL, N'Top Tube', NULL, N'NA', 500, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (208, NULL, NULL, NULL, N'Tension Pulley', NULL, N'NA', 800, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (209, NULL, NULL, NULL, N'Rear Derailleur Cage', NULL, N'Silver', 500, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (210, 14, N'LB ', N'CM ', N'HL Road Frame - Black, 58', NULL, N'Black', 500, NULL, N'58', 2.24, 1, N'R ', NULL, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (211, 14, N'LB ', N'CM ', N'HL Road Frame - Red, 58', NULL, N'Red', 500, NULL, N'58', 2.24, 1, N'R ', NULL, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (212, 31, NULL, NULL, N'Sport-100 Helmet, Red', 12.0278, N'Red', 4, 33.6442, NULL, NULL, 0, N'S ', 20.1865, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (213, 31, NULL, NULL, N'Sport-100 Helmet, Red', 13.8782, N'Red', 4, 33.6442, NULL, NULL, 0, N'S ', 20.1865, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (214, 31, NULL, NULL, N'Sport-100 Helmet, Red', 13.0863, N'Red', 4, 34.9900, NULL, NULL, 0, N'S ', 20.9940, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (215, 31, NULL, NULL, N'Sport-100 Helmet, Black', 12.0278, N'Black', 4, 33.6442, NULL, NULL, 0, N'S ', 20.1865, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (216, 31, NULL, NULL, N'Sport-100 Helmet, Black', 13.8782, N'Black', 4, 33.6442, NULL, NULL, 0, N'S ', 20.1865, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (217, 31, NULL, NULL, N'Sport-100 Helmet, Black', 13.0863, N'Black', 4, 34.9900, NULL, NULL, 0, N'S ', 20.9940, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (218, 23, NULL, NULL, N'Mountain Bike Socks, M', 3.3963, N'White', 4, 9.5000, N'M', NULL, 0, N'M ', 5.7000, NULL, N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (219, 23, NULL, NULL, N'Mountain Bike Socks, L', 3.3963, N'White', 4, 9.5000, N'L', NULL, 0, N'M ', 5.7000, NULL, N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (220, 31, NULL, NULL, N'Sport-100 Helmet, Blue', 12.0278, N'Blue', 4, 33.6442, NULL, NULL, 0, N'S ', 20.1865, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (221, 31, NULL, NULL, N'Sport-100 Helmet, Blue', 13.8782, N'Blue', 4, 33.6442, NULL, NULL, 0, N'S ', 20.1865, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (222, 31, NULL, NULL, N'Sport-100 Helmet, Blue', 13.0863, N'Blue', 4, 34.9900, NULL, NULL, 0, N'S ', 20.9940, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (223, 19, NULL, NULL, N'AWC Logo Cap', 5.7052, N'Multi', 4, 8.6442, NULL, NULL, 0, N'S ', 5.1865, NULL, N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (224, 19, NULL, NULL, N'AWC Logo Cap', 5.2297, N'Multi', 4, 8.6442, NULL, NULL, 0, N'S ', 5.1865, NULL, N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (225, 19, NULL, NULL, N'AWC Logo Cap', 6.9223, N'Multi', 4, 8.9900, NULL, NULL, 0, N'S ', 5.3940, NULL, N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (226, 21, NULL, NULL, N'Long-Sleeve Logo Jersey, S', 31.7244, N'Multi', 4, 48.0673, N'S', NULL, 0, N'S ', 28.8404, NULL, N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (227, 21, NULL, NULL, N'Long-Sleeve Logo Jersey, S', 29.0807, N'Multi', 4, 48.0673, N'S', NULL, 0, N'S ', 28.8404, NULL, N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (228, 21, NULL, NULL, N'Long-Sleeve Logo Jersey, S', 38.4923, N'Multi', 4, 49.9900, N'S', NULL, 0, N'S ', 29.9940, NULL, N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (229, 21, NULL, NULL, N'Long-Sleeve Logo Jersey, M', 31.7244, N'Multi', 4, 48.0673, N'M', NULL, 0, N'S ', 28.8404, NULL, N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (230, 21, NULL, NULL, N'Long-Sleeve Logo Jersey, M', 29.0807, N'Multi', 4, 48.0673, N'M', NULL, 0, N'S ', 28.8404, NULL, N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (231, 21, NULL, NULL, N'Long-Sleeve Logo Jersey, M', 38.4923, N'Multi', 4, 49.9900, N'M', NULL, 0, N'S ', 29.9940, NULL, N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (232, 21, NULL, NULL, N'Long-Sleeve Logo Jersey, L', 31.7244, N'Multi', 4, 48.0673, N'L', NULL, 0, N'S ', 28.8404, NULL, N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (233, 21, NULL, NULL, N'Long-Sleeve Logo Jersey, L', 29.0807, N'Multi', 4, 48.0673, N'L', NULL, 0, N'S ', 28.8404, NULL, N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (234, 21, NULL, NULL, N'Long-Sleeve Logo Jersey, L', 38.4923, N'Multi', 4, 49.9900, N'L', NULL, 0, N'S ', 29.9940, NULL, N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (235, 21, NULL, NULL, N'Long-Sleeve Logo Jersey, XL', 31.7244, N'Multi', 4, 48.0673, N'XL', NULL, 0, N'S ', 28.8404, NULL, N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (236, 21, NULL, NULL, N'Long-Sleeve Logo Jersey, XL', 29.0807, N'Multi', 4, 48.0673, N'XL', NULL, 0, N'S ', 28.8404, NULL, N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (237, 21, NULL, NULL, N'Long-Sleeve Logo Jersey, XL', 38.4923, N'Multi', 4, 49.9900, N'XL', NULL, 0, N'S ', 29.9940, NULL, N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (238, 14, N'LB ', N'CM ', N'HL Road Frame - Red, 62', 747.9682, N'Red', 500, 1263.4598, N'62', 2.3, 1, N'R ', 758.0759, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (239, 14, N'LB ', N'CM ', N'HL Road Frame - Red, 62', 722.2568, N'Red', 500, 1301.3636, N'62', 2.3, 1, N'R ', 780.8182, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (240, 14, N'LB ', N'CM ', N'HL Road Frame - Red, 62', 868.6342, N'Red', 500, 1431.5000, N'62', 2.3, 1, N'R ', 858.9000, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (241, 14, N'LB ', N'CM ', N'HL Road Frame - Red, 44', 747.9682, N'Red', 500, 1263.4598, N'44', 2.12, 1, N'R ', 758.0759, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (242, 14, N'LB ', N'CM ', N'HL Road Frame - Red, 44', 722.2568, N'Red', 500, 1301.3636, N'44', 2.12, 1, N'R ', 780.8182, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (243, 14, N'LB ', N'CM ', N'HL Road Frame - Red, 44', 868.6342, N'Red', 500, 1431.5000, N'44', 2.12, 1, N'R ', 858.9000, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (244, 14, N'LB ', N'CM ', N'HL Road Frame - Red, 48', 747.9682, N'Red', 500, 1263.4598, N'48', 2.16, 1, N'R ', 758.0759, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (245, 14, N'LB ', N'CM ', N'HL Road Frame - Red, 48', 722.2568, N'Red', 500, 1301.3636, N'48', 2.16, 1, N'R ', 780.8182, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (246, 14, N'LB ', N'CM ', N'HL Road Frame - Red, 48', 868.6342, N'Red', 500, 1431.5000, N'48', 2.16, 1, N'R ', 858.9000, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (247, 14, N'LB ', N'CM ', N'HL Road Frame - Red, 52', 747.9682, N'Red', 500, 1263.4598, N'52', 2.2, 1, N'R ', 758.0759, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (248, 14, N'LB ', N'CM ', N'HL Road Frame - Red, 52', 722.2568, N'Red', 500, 1301.3636, N'52', 2.2, 1, N'R ', 780.8182, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (249, 14, N'LB ', N'CM ', N'HL Road Frame - Red, 52', 868.6342, N'Red', 500, 1431.5000, N'52', 2.2, 1, N'R ', 858.9000, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (250, 14, N'LB ', N'CM ', N'HL Road Frame - Red, 56', 747.9682, N'Red', 500, 1263.4598, N'56', 2.24, 1, N'R ', 758.0759, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (251, 14, N'LB ', N'CM ', N'HL Road Frame - Red, 56', 722.2568, N'Red', 500, 1301.3636, N'56', 2.24, 1, N'R ', 780.8182, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (252, 14, N'LB ', N'CM ', N'HL Road Frame - Red, 56', 868.6342, N'Red', 500, 1431.5000, N'56', 2.24, 1, N'R ', 858.9000, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (253, 14, N'LB ', N'CM ', N'LL Road Frame - Black, 58', 176.1997, N'Black', 500, 297.6346, N'58', 2.46, 1, N'R ', 178.5808, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (254, 14, N'LB ', N'CM ', N'LL Road Frame - Black, 58', 170.1428, N'Black', 500, 306.5636, N'58', 2.46, 1, N'R ', 183.9382, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (255, 14, N'LB ', N'CM ', N'LL Road Frame - Black, 58', 204.6251, N'Black', 500, 337.2200, N'58', 2.46, 1, N'R ', 202.3320, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (256, 14, N'LB ', N'CM ', N'LL Road Frame - Black, 60', 176.1997, N'Black', 500, 297.6346, N'60', 2.48, 1, N'R ', 178.5808, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (257, 14, N'LB ', N'CM ', N'LL Road Frame - Black, 60', 170.1428, N'Black', 500, 306.5636, N'60', 2.48, 1, N'R ', 183.9382, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (258, 14, N'LB ', N'CM ', N'LL Road Frame - Black, 60', 204.6251, N'Black', 500, 337.2200, N'60', 2.48, 1, N'R ', 202.3320, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (259, 14, N'LB ', N'CM ', N'LL Road Frame - Black, 62', 176.1997, N'Black', 500, 297.6346, N'62', 2.5, 1, N'R ', 178.5808, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (260, 14, N'LB ', N'CM ', N'LL Road Frame - Black, 62', 170.1428, N'Black', 500, 306.5636, N'62', 2.5, 1, N'R ', 183.9382, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (261, 14, N'LB ', N'CM ', N'LL Road Frame - Black, 62', 204.6251, N'Black', 500, 337.2200, N'62', 2.5, 1, N'R ', 202.3320, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (262, 14, N'LB ', N'CM ', N'LL Road Frame - Red, 44', 181.4857, N'Red', 500, 306.5636, N'44', 2.32, 1, N'R ', 183.9382, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (263, 14, N'LB ', N'CM ', N'LL Road Frame - Red, 44', 187.1571, N'Red', 500, 337.2200, N'44', 2.32, 1, N'R ', 202.3320, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (264, 14, N'LB ', N'CM ', N'LL Road Frame - Red, 48', 181.4857, N'Red', 500, 306.5636, N'48', 2.36, 1, N'R ', 183.9382, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (265, 14, N'LB ', N'CM ', N'LL Road Frame - Red, 48', 187.1571, N'Red', 500, 337.2200, N'48', 2.36, 1, N'R ', 202.3320, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (266, 14, N'LB ', N'CM ', N'LL Road Frame - Red, 52', 181.4857, N'Red', 500, 306.5636, N'52', 2.4, 1, N'R ', 183.9382, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (267, 14, N'LB ', N'CM ', N'LL Road Frame - Red, 52', 187.1571, N'Red', 500, 337.2200, N'52', 2.4, 1, N'R ', 202.3320, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (268, 14, N'LB ', N'CM ', N'LL Road Frame - Red, 58', 181.4857, N'Red', 500, 306.5636, N'58', 2.46, 1, N'R ', 183.9382, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (269, 14, N'LB ', N'CM ', N'LL Road Frame - Red, 58', 187.1571, N'Red', 500, 337.2200, N'58', 2.46, 1, N'R ', 202.3320, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (270, 14, N'LB ', N'CM ', N'LL Road Frame - Red, 60', 181.4857, N'Red', 500, 306.5636, N'60', 2.48, 1, N'R ', 183.9382, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (271, 14, N'LB ', N'CM ', N'LL Road Frame - Red, 60', 187.1571, N'Red', 500, 337.2200, N'60', 2.48, 1, N'R ', 202.3320, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (272, 14, N'LB ', N'CM ', N'LL Road Frame - Red, 62', 181.4857, N'Red', 500, 306.5636, N'62', 2.5, 1, N'R ', 183.9382, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (273, 14, N'LB ', N'CM ', N'LL Road Frame - Red, 62', 187.1571, N'Red', 500, 337.2200, N'62', 2.5, 1, N'R ', 202.3320, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (274, 14, N'LB ', N'CM ', N'ML Road Frame - Red, 44', 352.1394, N'Red', 500, 594.8300, N'44', 2.22, 1, N'R ', 356.8980, N'M ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (275, 14, N'LB ', N'CM ', N'ML Road Frame - Red, 48', 352.1394, N'Red', 500, 594.8300, N'48', 2.26, 1, N'R ', 356.8980, N'M ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (276, 14, N'LB ', N'CM ', N'ML Road Frame - Red, 52', 352.1394, N'Red', 500, 594.8300, N'52', 2.3, 1, N'R ', 356.8980, N'M ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (277, 14, N'LB ', N'CM ', N'ML Road Frame - Red, 58', 352.1394, N'Red', 500, 594.8300, N'58', 2.36, 1, N'R ', 356.8980, N'M ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (278, 14, N'LB ', N'CM ', N'ML Road Frame - Red, 60', 352.1394, N'Red', 500, 594.8300, N'60', 2.38, 1, N'R ', 356.8980, N'M ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (279, 14, N'LB ', N'CM ', N'LL Road Frame - Black, 44', 176.1997, N'Black', 500, 297.6346, N'44', 2.32, 1, N'R ', 178.5808, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (280, 14, N'LB ', N'CM ', N'LL Road Frame - Black, 44', 170.1428, N'Black', 500, 306.5636, N'44', 2.32, 1, N'R ', 183.9382, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (281, 14, N'LB ', N'CM ', N'LL Road Frame - Black, 44', 204.6251, N'Black', 500, 337.2200, N'44', 2.32, 1, N'R ', 202.3320, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (282, 14, N'LB ', N'CM ', N'LL Road Frame - Black, 48', 176.1997, N'Black', 500, 297.6346, N'48', 2.36, 1, N'R ', 178.5808, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (283, 14, N'LB ', N'CM ', N'LL Road Frame - Black, 48', 170.1428, N'Black', 500, 306.5636, N'48', 2.36, 1, N'R ', 183.9382, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (284, 14, N'LB ', N'CM ', N'LL Road Frame - Black, 48', 204.6251, N'Black', 500, 337.2200, N'48', 2.36, 1, N'R ', 202.3320, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (285, 14, N'LB ', N'CM ', N'LL Road Frame - Black, 52', 176.1997, N'Black', 500, 297.6346, N'52', 2.4, 1, N'R ', 178.5808, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (286, 14, N'LB ', N'CM ', N'LL Road Frame - Black, 52', 170.1428, N'Black', 500, 306.5636, N'52', 2.4, 1, N'R ', 183.9382, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (287, 14, N'LB ', N'CM ', N'LL Road Frame - Black, 52', 204.6251, N'Black', 500, 337.2200, N'52', 2.4, 1, N'R ', 202.3320, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (288, 12, N'LB ', N'CM ', N'HL Mountain Frame - Silver, 42', 623.8403, N'Silver', 500, 1204.3248, N'42', 2.72, 1, N'M ', 722.5949, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (289, 12, N'LB ', N'CM ', N'HL Mountain Frame - Silver, 42', 660.9142, N'Silver', 500, 1240.4545, N'42', 2.72, 1, N'M ', 744.2727, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (290, 12, N'LB ', N'CM ', N'HL Mountain Frame - Silver, 42', 747.2002, N'Silver', 500, 1364.5000, N'42', 2.72, 1, N'M ', 818.7000, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (291, 12, N'LB ', N'CM ', N'HL Mountain Frame - Silver, 44', 706.8110, N'Silver', 500, 1364.5000, N'44', 2.76, 1, N'M ', 818.7000, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (292, 12, N'LB ', N'CM ', N'HL Mountain Frame - Silver, 48', 706.8110, N'Silver', 500, 1364.5000, N'48', 2.8, 1, N'M ', 818.7000, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (293, 12, N'LB ', N'CM ', N'HL Mountain Frame - Silver, 46', 623.8403, N'Silver', 500, 1204.3248, N'46', 2.84, 1, N'M ', 722.5949, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (294, 12, N'LB ', N'CM ', N'HL Mountain Frame - Silver, 46', 660.9142, N'Silver', 500, 1240.4545, N'46', 2.84, 1, N'M ', 744.2727, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (295, 12, N'LB ', N'CM ', N'HL Mountain Frame - Silver, 46', 747.2002, N'Silver', 500, 1364.5000, N'46', 2.84, 1, N'M ', 818.7000, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (296, 12, N'LB ', N'CM ', N'HL Mountain Frame - Black, 42', 617.0281, N'Black', 500, 1191.1739, N'42', 2.72, 1, N'M ', 714.7043, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (297, 12, N'LB ', N'CM ', N'HL Mountain Frame - Black, 42', 653.6971, N'Black', 500, 1226.9091, N'42', 2.72, 1, N'M ', 736.1455, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (298, 12, N'LB ', N'CM ', N'HL Mountain Frame - Black, 42', 739.0410, N'Black', 500, 1349.6000, N'42', 2.72, 1, N'M ', 809.7600, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (299, 12, N'LB ', N'CM ', N'HL Mountain Frame - Black, 44', 699.0928, N'Black', 500, 1349.6000, N'44', 2.76, 1, N'M ', 809.7600, N'H ', N'U ')

GO

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (300, 12, N'LB ', N'CM ', N'HL Mountain Frame - Black, 48', 699.0928, N'Black', 500, 1349.6000, N'48', 2.8, 1, N'M ', 809.7600, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (301, 12, N'LB ', N'CM ', N'HL Mountain Frame - Black, 46', 617.0281, N'Black', 500, 1191.1739, N'46', 2.84, 1, N'M ', 714.7043, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (302, 12, N'LB ', N'CM ', N'HL Mountain Frame - Black, 46', 653.6971, N'Black', 500, 1226.9091, N'46', 2.84, 1, N'M ', 736.1455, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (303, 12, N'LB ', N'CM ', N'HL Mountain Frame - Black, 46', 739.0410, N'Black', 500, 1349.6000, N'46', 2.84, 1, N'M ', 809.7600, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (304, 12, N'LB ', N'CM ', N'HL Mountain Frame - Black, 38', 617.0281, N'Black', 500, 1191.1739, N'38', 2.68, 2, N'M ', 714.7043, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (305, 12, N'LB ', N'CM ', N'HL Mountain Frame - Black, 38', 653.6971, N'Black', 500, 1226.9091, N'38', 2.68, 2, N'M ', 736.1455, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (306, 12, N'LB ', N'CM ', N'HL Mountain Frame - Black, 38', 739.0410, N'Black', 500, 1349.6000, N'38', 2.68, 2, N'M ', 809.7600, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (307, 12, N'LB ', N'CM ', N'HL Mountain Frame - Silver, 38', 623.8403, N'Silver', 500, 1204.3248, N'38', 2.68, 2, N'M ', 722.5949, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (308, 12, N'LB ', N'CM ', N'HL Mountain Frame - Silver, 38', 660.9142, N'Silver', 500, 1240.4545, N'38', 2.68, 2, N'M ', 744.2727, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (309, 12, N'LB ', N'CM ', N'HL Mountain Frame - Silver, 38', 747.2002, N'Silver', 500, 1364.5000, N'38', 2.68, 2, N'M ', 818.7000, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (310, 2, N'LB ', N'CM ', N'Road-150 Red, 62', 2171.2942, N'Red', 100, 3578.2700, N'62', 15, 4, N'R ', 2146.9620, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (311, 2, N'LB ', N'CM ', N'Road-150 Red, 44', 2171.2942, N'Red', 100, 3578.2700, N'44', 13.77, 4, N'R ', 2146.9620, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (312, 2, N'LB ', N'CM ', N'Road-150 Red, 48', 2171.2942, N'Red', 100, 3578.2700, N'48', 14.13, 4, N'R ', 2146.9620, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (313, 2, N'LB ', N'CM ', N'Road-150 Red, 52', 2171.2942, N'Red', 100, 3578.2700, N'52', 14.42, 4, N'R ', 2146.9620, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (314, 2, N'LB ', N'CM ', N'Road-150 Red, 56', 2171.2942, N'Red', 100, 3578.2700, N'56', 14.68, 4, N'R ', 2146.9620, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (315, 2, N'LB ', N'CM ', N'Road-450 Red, 58', 884.7083, N'Red', 100, 1457.9900, N'58', 17.79, 4, N'R ', 874.7940, N'M ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (316, 2, N'LB ', N'CM ', N'Road-450 Red, 60', 884.7083, N'Red', 100, 1457.9900, N'60', 17.9, 4, N'R ', 874.7940, N'M ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (317, 2, N'LB ', N'CM ', N'Road-450 Red, 44', 884.7083, N'Red', 100, 1457.9900, N'44', 16.77, 4, N'R ', 874.7940, N'M ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (318, 2, N'LB ', N'CM ', N'Road-450 Red, 48', 884.7083, N'Red', 100, 1457.9900, N'48', 17.13, 4, N'R ', 874.7940, N'M ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (319, 2, N'LB ', N'CM ', N'Road-450 Red, 52', 884.7083, N'Red', 100, 1457.9900, N'52', 17.42, 4, N'R ', 874.7940, N'M ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (320, 2, N'LB ', N'CM ', N'Road-650 Red, 58', 413.1463, N'Red', 100, 699.0982, N'58', 19.79, 4, N'R ', 419.4589, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (321, 2, N'LB ', N'CM ', N'Road-650 Red, 58', 486.7066, N'Red', 100, 782.9900, N'58', 19.79, 4, N'R ', 469.7940, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (322, 2, N'LB ', N'CM ', N'Road-650 Red, 60', 413.1463, N'Red', 100, 699.0982, N'60', 19.9, 4, N'R ', 419.4589, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (323, 2, N'LB ', N'CM ', N'Road-650 Red, 60', 486.7066, N'Red', 100, 782.9900, N'60', 19.9, 4, N'R ', 469.7940, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (324, 2, N'LB ', N'CM ', N'Road-650 Red, 62', 413.1463, N'Red', 100, 699.0982, N'62', 20, 4, N'R ', 419.4589, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (325, 2, N'LB ', N'CM ', N'Road-650 Red, 62', 486.7066, N'Red', 100, 782.9900, N'62', 20, 4, N'R ', 469.7940, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (326, 2, N'LB ', N'CM ', N'Road-650 Red, 44', 413.1463, N'Red', 100, 699.0982, N'44', 18.77, 4, N'R ', 419.4589, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (327, 2, N'LB ', N'CM ', N'Road-650 Red, 44', 486.7066, N'Red', 100, 782.9900, N'44', 18.77, 4, N'R ', 469.7940, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (328, 2, N'LB ', N'CM ', N'Road-650 Red, 48', 413.1463, N'Red', 100, 699.0982, N'48', 19.13, 4, N'R ', 419.4589, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (329, 2, N'LB ', N'CM ', N'Road-650 Red, 48', 486.7066, N'Red', 100, 782.9900, N'48', 19.13, 4, N'R ', 469.7940, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (330, 2, N'LB ', N'CM ', N'Road-650 Red, 52', 413.1463, N'Red', 100, 699.0982, N'52', 19.42, 4, N'R ', 419.4589, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (331, 2, N'LB ', N'CM ', N'Road-650 Red, 52', 486.7066, N'Red', 100, 782.9900, N'52', 19.42, 4, N'R ', 469.7940, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (332, 2, N'LB ', N'CM ', N'Road-650 Black, 58', 413.1463, N'Black', 100, 699.0982, N'58', 19.79, 4, N'R ', 419.4589, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (333, 2, N'LB ', N'CM ', N'Road-650 Black, 58', 486.7066, N'Black', 100, 782.9900, N'58', 19.79, 4, N'R ', 469.7940, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (334, 2, N'LB ', N'CM ', N'Road-650 Black, 60', 413.1463, N'Black', 100, 699.0982, N'60', 19.9, 4, N'R ', 419.4589, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (335, 2, N'LB ', N'CM ', N'Road-650 Black, 60', 486.7066, N'Black', 100, 782.9900, N'60', 19.9, 4, N'R ', 469.7940, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (336, 2, N'LB ', N'CM ', N'Road-650 Black, 62', 413.1463, N'Black', 100, 699.0982, N'62', 20, 4, N'R ', 419.4589, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (337, 2, N'LB ', N'CM ', N'Road-650 Black, 62', 486.7066, N'Black', 100, 782.9900, N'62', 20, 4, N'R ', 469.7940, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (338, 2, N'LB ', N'CM ', N'Road-650 Black, 44', 413.1463, N'Black', 100, 699.0982, N'44', 18.77, 4, N'R ', 419.4589, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (339, 2, N'LB ', N'CM ', N'Road-650 Black, 44', 486.7066, N'Black', 100, 782.9900, N'44', 18.77, 4, N'R ', 469.7940, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (340, 2, N'LB ', N'CM ', N'Road-650 Black, 48', 413.1463, N'Black', 100, 699.0982, N'48', 19.13, 4, N'R ', 419.4589, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (341, 2, N'LB ', N'CM ', N'Road-650 Black, 48', 486.7066, N'Black', 100, 782.9900, N'48', 19.13, 4, N'R ', 469.7940, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (342, 2, N'LB ', N'CM ', N'Road-650 Black, 52', 413.1463, N'Black', 100, 699.0982, N'52', 19.42, 4, N'R ', 419.4589, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (343, 2, N'LB ', N'CM ', N'Road-650 Black, 52', 486.7066, N'Black', 100, 782.9900, N'52', 19.42, 4, N'R ', 469.7940, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (344, 1, N'LB ', N'CM ', N'Mountain-100 Silver, 38', 1912.1544, N'Silver', 100, 3399.9900, N'38', 20.35, 4, N'M ', 2039.9940, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (345, 1, N'LB ', N'CM ', N'Mountain-100 Silver, 42', 1912.1544, N'Silver', 100, 3399.9900, N'42', 20.77, 4, N'M ', 2039.9940, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (346, 1, N'LB ', N'CM ', N'Mountain-100 Silver, 44', 1912.1544, N'Silver', 100, 3399.9900, N'44', 21.13, 4, N'M ', 2039.9940, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (347, 1, N'LB ', N'CM ', N'Mountain-100 Silver, 48', 1912.1544, N'Silver', 100, 3399.9900, N'48', 21.42, 4, N'M ', 2039.9940, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (348, 1, N'LB ', N'CM ', N'Mountain-100 Black, 38', 1898.0944, N'Black', 100, 3374.9900, N'38', 20.35, 4, N'M ', 2024.9940, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (349, 1, N'LB ', N'CM ', N'Mountain-100 Black, 42', 1898.0944, N'Black', 100, 3374.9900, N'42', 20.77, 4, N'M ', 2024.9940, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (350, 1, N'LB ', N'CM ', N'Mountain-100 Black, 44', 1898.0944, N'Black', 100, 3374.9900, N'44', 21.13, 4, N'M ', 2024.9940, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (351, 1, N'LB ', N'CM ', N'Mountain-100 Black, 48', 1898.0944, N'Black', 100, 3374.9900, N'48', 21.42, 4, N'M ', 2024.9940, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (352, 1, N'LB ', N'CM ', N'Mountain-200 Silver, 38', 1117.8559, N'Silver', 100, 2071.4196, N'38', 23.35, 4, N'M ', 1242.8518, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (353, 1, N'LB ', N'CM ', N'Mountain-200 Silver, 38', 1265.6195, N'Silver', 100, 2319.9900, N'38', 23.35, 4, N'M ', 1391.9940, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (354, 1, N'LB ', N'CM ', N'Mountain-200 Silver, 42', 1117.8559, N'Silver', 100, 2071.4196, N'42', 23.77, 4, N'M ', 1242.8518, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (355, 1, N'LB ', N'CM ', N'Mountain-200 Silver, 42', 1265.6195, N'Silver', 100, 2319.9900, N'42', 23.77, 4, N'M ', 1391.9940, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (356, 1, N'LB ', N'CM ', N'Mountain-200 Silver, 46', 1117.8559, N'Silver', 100, 2071.4196, N'46', 24.13, 4, N'M ', 1242.8518, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (357, 1, N'LB ', N'CM ', N'Mountain-200 Silver, 46', 1265.6195, N'Silver', 100, 2319.9900, N'46', 24.13, 4, N'M ', 1391.9940, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (358, 1, N'LB ', N'CM ', N'Mountain-200 Black, 38', 1105.8100, N'Black', 100, 2049.0982, N'38', 23.35, 4, N'M ', 1229.4589, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (359, 1, N'LB ', N'CM ', N'Mountain-200 Black, 38', 1251.9813, N'Black', 100, 2294.9900, N'38', 23.35, 4, N'M ', 1376.9940, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (360, 1, N'LB ', N'CM ', N'Mountain-200 Black, 42', 1105.8100, N'Black', 100, 2049.0982, N'42', 23.77, 4, N'M ', 1229.4589, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (361, 1, N'LB ', N'CM ', N'Mountain-200 Black, 42', 1251.9813, N'Black', 100, 2294.9900, N'42', 23.77, 4, N'M ', 1376.9940, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (362, 1, N'LB ', N'CM ', N'Mountain-200 Black, 46', 1105.8100, N'Black', 100, 2049.0982, N'46', 24.13, 4, N'M ', 1229.4589, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (363, 1, N'LB ', N'CM ', N'Mountain-200 Black, 46', 1251.9813, N'Black', 100, 2294.9900, N'46', 24.13, 4, N'M ', 1376.9940, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (364, 1, N'LB ', N'CM ', N'Mountain-300 Black, 38', 598.4354, N'Black', 100, 1079.9900, N'38', 25.35, 4, N'M ', 647.9940, N'M ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (365, 1, N'LB ', N'CM ', N'Mountain-300 Black, 40', 598.4354, N'Black', 100, 1079.9900, N'40', 25.77, 4, N'M ', 647.9940, N'M ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (366, 1, N'LB ', N'CM ', N'Mountain-300 Black, 44', 598.4354, N'Black', 100, 1079.9900, N'44', 26.13, 4, N'M ', 647.9940, N'M ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (367, 1, N'LB ', N'CM ', N'Mountain-300 Black, 48', 598.4354, N'Black', 100, 1079.9900, N'48', 26.42, 4, N'M ', 647.9940, N'M ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (368, 2, N'LB ', N'CM ', N'Road-250 Red, 44', 1518.7864, N'Red', 100, 2443.3500, N'44', 14.77, 4, N'R ', 1466.0100, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (369, 2, N'LB ', N'CM ', N'Road-250 Red, 48', 1518.7864, N'Red', 100, 2443.3500, N'48', 15.13, 4, N'R ', 1466.0100, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (370, 2, N'LB ', N'CM ', N'Road-250 Red, 52', 1518.7864, N'Red', 100, 2443.3500, N'52', 15.42, 4, N'R ', 1466.0100, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (371, 2, N'LB ', N'CM ', N'Road-250 Red, 58', 1320.6838, N'Red', 100, 2181.5625, N'58', 15.79, 4, N'R ', 1308.9375, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (372, 2, N'LB ', N'CM ', N'Road-250 Red, 58', 1554.9479, N'Red', 100, 2443.3500, N'58', 15.79, 4, N'R ', 1466.0100, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (373, 2, N'LB ', N'CM ', N'Road-250 Black, 44', 1320.6838, N'Black', 100, 2181.5625, N'44', 14.77, 4, N'R ', 1308.9375, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (374, 2, N'LB ', N'CM ', N'Road-250 Black, 44', 1554.9479, N'Black', 100, 2443.3500, N'44', 14.77, 4, N'R ', 1466.0100, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (375, 2, N'LB ', N'CM ', N'Road-250 Black, 48', 1320.6838, N'Black', 100, 2181.5625, N'48', 15.13, 4, N'R ', 1308.9375, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (376, 2, N'LB ', N'CM ', N'Road-250 Black, 48', 1554.9479, N'Black', 100, 2443.3500, N'48', 15.13, 4, N'R ', 1466.0100, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (377, 2, N'LB ', N'CM ', N'Road-250 Black, 52', 1320.6838, N'Black', 100, 2181.5625, N'52', 15.42, 4, N'R ', 1308.9375, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (378, 2, N'LB ', N'CM ', N'Road-250 Black, 52', 1554.9479, N'Black', 100, 2443.3500, N'52', 15.42, 4, N'R ', 1466.0100, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (379, 2, N'LB ', N'CM ', N'Road-250 Black, 58', 1320.6838, N'Black', 100, 2181.5625, N'58', 15.68, 4, N'R ', 1308.9375, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (380, 2, N'LB ', N'CM ', N'Road-250 Black, 58', 1554.9479, N'Black', 100, 2443.3500, N'58', 15.68, 4, N'R ', 1466.0100, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (381, 2, N'LB ', N'CM ', N'Road-550-W Yellow, 38', 605.6492, N'Yellow', 100, 1000.4375, N'38', 17.35, 4, N'R ', 600.2625, N'M ', N'W ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (382, 2, N'LB ', N'CM ', N'Road-550-W Yellow, 38', 713.0798, N'Yellow', 100, 1120.4900, N'38', 17.35, 4, N'R ', 672.2940, N'M ', N'W ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (383, 2, N'LB ', N'CM ', N'Road-550-W Yellow, 40', 605.6492, N'Yellow', 100, 1000.4375, N'40', 17.77, 4, N'R ', 600.2625, N'M ', N'W ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (384, 2, N'LB ', N'CM ', N'Road-550-W Yellow, 40', 713.0798, N'Yellow', 100, 1120.4900, N'40', 17.77, 4, N'R ', 672.2940, N'M ', N'W ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (385, 2, N'LB ', N'CM ', N'Road-550-W Yellow, 42', 605.6492, N'Yellow', 100, 1000.4375, N'42', 18.13, 4, N'R ', 600.2625, N'M ', N'W ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (386, 2, N'LB ', N'CM ', N'Road-550-W Yellow, 42', 713.0798, N'Yellow', 100, 1120.4900, N'42', 18.13, 4, N'R ', 672.2940, N'M ', N'W ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (387, 2, N'LB ', N'CM ', N'Road-550-W Yellow, 44', 605.6492, N'Yellow', 100, 1000.4375, N'44', 18.42, 4, N'R ', 600.2625, N'M ', N'W ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (388, 2, N'LB ', N'CM ', N'Road-550-W Yellow, 44', 713.0798, N'Yellow', 100, 1120.4900, N'44', 18.42, 4, N'R ', 672.2940, N'M ', N'W ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (389, 2, N'LB ', N'CM ', N'Road-550-W Yellow, 48', 605.6492, N'Yellow', 100, 1000.4375, N'48', 18.68, 4, N'R ', 600.2625, N'M ', N'W ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (390, 2, N'LB ', N'CM ', N'Road-550-W Yellow, 48', 713.0798, N'Yellow', 100, 1120.4900, N'48', 18.68, 4, N'R ', 672.2940, N'M ', N'W ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (391, 10, NULL, NULL, N'LL Fork', 65.8097, N'NA', 500, 148.2200, NULL, NULL, 1, NULL, 88.9320, N'L ', NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (392, 10, NULL, NULL, N'ML Fork', 77.9176, N'NA', 500, 175.4900, NULL, NULL, 1, NULL, 105.2940, N'M ', NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (393, 10, NULL, NULL, N'HL Fork', 101.8936, N'NA', 500, 229.4900, NULL, NULL, 1, NULL, 137.6940, N'H ', NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (394, 11, NULL, NULL, N'LL Headset', 15.1848, N'NA', 500, 34.2000, NULL, NULL, 1, NULL, 20.5200, N'L ', NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (395, 11, NULL, NULL, N'ML Headset', 45.4168, N'NA', 500, 102.2900, NULL, NULL, 1, NULL, 61.3740, N'M ', NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (396, 11, NULL, NULL, N'HL Headset', 55.3801, N'NA', 500, 124.7300, NULL, NULL, 1, NULL, 74.8380, N'H ', NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (397, 4, NULL, NULL, N'LL Mountain Handlebars', 17.9780, N'NA', 500, 40.4909, NULL, NULL, 1, N'M ', 24.2945, N'L ', NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (398, 4, NULL, NULL, N'LL Mountain Handlebars', 19.7758, N'NA', 500, 44.5400, NULL, NULL, 1, N'M ', 26.7240, N'L ', NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (399, 4, NULL, NULL, N'ML Mountain Handlebars', 24.9932, N'NA', 500, 56.2909, NULL, NULL, 1, N'M ', 33.7745, N'M ', NULL)

GO

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (400, 4, NULL, NULL, N'ML Mountain Handlebars', 27.4925, N'NA', 500, 61.9200, NULL, NULL, 1, N'M ', 37.1520, N'M ', NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (401, 4, NULL, NULL, N'HL Mountain Handlebars', 48.5453, N'NA', 500, 109.3364, NULL, NULL, 1, N'M ', 65.6018, N'H ', NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (402, 4, NULL, NULL, N'HL Mountain Handlebars', 53.3999, N'NA', 500, 120.2700, NULL, NULL, 1, N'M ', 72.1620, N'H ', NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (403, 4, NULL, NULL, N'LL Road Handlebars', 17.9780, N'NA', 500, 40.4909, NULL, NULL, 1, N'R ', 24.2945, N'L ', NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (404, 4, NULL, NULL, N'LL Road Handlebars', 19.7758, N'NA', 500, 44.5400, NULL, NULL, 1, N'R ', 26.7240, N'L ', NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (405, 4, NULL, NULL, N'ML Road Handlebars', 24.9932, N'NA', 500, 56.2909, NULL, NULL, 1, N'R ', 33.7745, N'M ', NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (406, 4, NULL, NULL, N'ML Road Handlebars', 27.4925, N'NA', 500, 61.9200, NULL, NULL, 1, N'R ', 37.1520, N'M ', NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (407, 4, NULL, NULL, N'HL Road Handlebars', 48.5453, N'NA', 500, 109.3364, NULL, NULL, 1, N'R ', 65.6018, N'H ', NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (408, 4, NULL, NULL, N'HL Road Handlebars', 53.3999, N'NA', 500, 120.2700, NULL, NULL, 1, N'R ', 72.1620, N'H ', NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (409, 12, N'LB ', N'CM ', N'ML Mountain Frame - Black, 38', 185.8193, N'Black', 500, 348.7600, N'38', 2.73, 2, N'M ', 209.2560, N'M ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (410, 17, NULL, NULL, N'LL Mountain Front Wheel', 26.9708, N'Black', 500, 60.7450, NULL, NULL, 1, N'M ', 36.4470, N'L ', NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (411, 17, NULL, NULL, N'ML Mountain Front Wheel', 92.8071, N'Black', 500, 209.0250, NULL, NULL, 1, N'M ', 125.4150, N'M ', NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (412, 17, NULL, NULL, N'HL Mountain Front Wheel', 133.2955, N'Black', 500, 300.2150, NULL, NULL, 1, N'M ', 180.1290, N'H ', NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (413, 17, N'G ', NULL, N'LL Road Front Wheel', 37.9909, N'Black', 500, 85.5650, NULL, 900, 1, N'R ', 51.3390, N'L ', NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (414, 17, N'G ', NULL, N'ML Road Front Wheel', 110.2829, N'Black', 500, 248.3850, NULL, 850, 1, N'R ', 149.0310, N'M ', NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (415, 17, N'G ', NULL, N'HL Road Front Wheel', 146.5466, N'Black', 500, 330.0600, NULL, 650, 1, N'R ', 198.0360, N'H ', NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (416, 17, NULL, NULL, N'Touring Front Wheel', 96.7964, N'Black', 500, 218.0100, NULL, NULL, 1, N'T ', 130.8060, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (417, 14, N'LB ', N'CM ', N'ML Road Frame-W - Yellow, 38', 300.1188, N'Yellow', 500, 540.7545, N'38', 2.18, 2, N'R ', 324.4527, N'M ', N'W ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (418, 14, N'LB ', N'CM ', N'ML Road Frame-W - Yellow, 38', 360.9428, N'Yellow', 500, 594.8300, N'38', 2.18, 2, N'R ', 356.8980, N'M ', N'W ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (419, 17, NULL, NULL, N'LL Mountain Rear Wheel', 38.9588, N'Black', 500, 87.7450, NULL, NULL, 1, N'M ', 52.6470, N'L ', NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (420, 17, NULL, NULL, N'ML Mountain Rear Wheel', 104.7951, N'Black', 500, 236.0250, NULL, NULL, 1, N'M ', 141.6150, N'M ', NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (421, 17, NULL, NULL, N'HL Mountain Rear Wheel', 145.2835, N'Black', 500, 327.2150, NULL, NULL, 1, N'M ', 196.3290, N'H ', NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (422, 17, N'G ', NULL, N'LL Road Rear Wheel', 49.9789, N'Black', 500, 112.5650, NULL, 1050, 1, N'R ', 67.5390, N'L ', NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (423, 17, N'G ', NULL, N'ML Road Rear Wheel', 122.2709, N'Black', 500, 275.3850, NULL, 1000, 1, N'R ', 165.2310, N'M ', NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (424, 17, N'G ', NULL, N'HL Road Rear Wheel', 158.5346, N'Black', 500, 357.0600, NULL, 890, 1, N'R ', 214.2360, N'H ', NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (425, 17, NULL, NULL, N'Touring Rear Wheel', 108.7844, N'Black', 500, 245.0100, NULL, NULL, 1, N'T ', 147.0060, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (426, 12, N'LB ', N'CM ', N'ML Mountain Frame - Black, 40', 185.8193, N'Black', 500, 348.7600, N'40', 2.77, 1, N'M ', 209.2560, N'M ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (427, 12, N'LB ', N'CM ', N'ML Mountain Frame - Black, 44', 185.8193, N'Black', 500, 348.7600, N'44', 2.81, 1, N'M ', 209.2560, N'M ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (428, 12, N'LB ', N'CM ', N'ML Mountain Frame - Black, 48', 185.8193, N'Black', 500, 348.7600, N'48', 2.85, 1, N'M ', 209.2560, N'M ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (429, 14, N'LB ', N'CM ', N'ML Road Frame-W - Yellow, 40', 300.1188, N'Yellow', 500, 540.7545, N'40', 2.22, 1, N'R ', 324.4527, N'M ', N'W ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (430, 14, N'LB ', N'CM ', N'ML Road Frame-W - Yellow, 40', 360.9428, N'Yellow', 500, 594.8300, N'40', 2.22, 1, N'R ', 356.8980, N'M ', N'W ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (431, 14, N'LB ', N'CM ', N'ML Road Frame-W - Yellow, 42', 300.1188, N'Yellow', 500, 540.7545, N'42', 2.26, 1, N'R ', 324.4527, N'M ', N'W ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (432, 14, N'LB ', N'CM ', N'ML Road Frame-W - Yellow, 42', 360.9428, N'Yellow', 500, 594.8300, N'42', 2.26, 1, N'R ', 356.8980, N'M ', N'W ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (433, 14, N'LB ', N'CM ', N'ML Road Frame-W - Yellow, 44', 300.1188, N'Yellow', 500, 540.7545, N'44', 2.3, 1, N'R ', 324.4527, N'M ', N'W ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (434, 14, N'LB ', N'CM ', N'ML Road Frame-W - Yellow, 44', 360.9428, N'Yellow', 500, 594.8300, N'44', 2.3, 1, N'R ', 356.8980, N'M ', N'W ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (435, 14, N'LB ', N'CM ', N'ML Road Frame-W - Yellow, 48', 300.1188, N'Yellow', 500, 540.7545, N'48', 2.34, 1, N'R ', 324.4527, N'M ', N'W ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (436, 14, N'LB ', N'CM ', N'ML Road Frame-W - Yellow, 48', 360.9428, N'Yellow', 500, 594.8300, N'48', 2.34, 1, N'R ', 356.8980, N'M ', N'W ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (437, 14, N'LB ', N'CM ', N'HL Road Frame - Black, 62', 722.2568, N'Black', 500, 1301.3636, N'62', 2.3, 1, N'R ', 780.8182, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (438, 14, N'LB ', N'CM ', N'HL Road Frame - Black, 62', 868.6342, N'Black', 500, 1431.5000, N'62', 2.3, 1, N'R ', 858.9000, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (439, 14, N'LB ', N'CM ', N'HL Road Frame - Black, 44', 722.2568, N'Black', 500, 1301.3636, N'44', 2.12, 1, N'R ', 780.8182, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (440, 14, N'LB ', N'CM ', N'HL Road Frame - Black, 44', 868.6342, N'Black', 500, 1431.5000, N'44', 2.12, 1, N'R ', 858.9000, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (441, 14, N'LB ', N'CM ', N'HL Road Frame - Black, 48', 722.2568, N'Black', 500, 1301.3636, N'48', 2.16, 1, N'R ', 780.8182, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (442, 14, N'LB ', N'CM ', N'HL Road Frame - Black, 48', 868.6342, N'Black', 500, 1431.5000, N'48', 2.16, 1, N'R ', 858.9000, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (443, 14, N'LB ', N'CM ', N'HL Road Frame - Black, 52', 722.2568, N'Black', 500, 1301.3636, N'52', 2.2, 1, N'R ', 780.8182, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (444, 14, N'LB ', N'CM ', N'HL Road Frame - Black, 52', 868.6342, N'Black', 500, 1431.5000, N'52', 2.2, 1, N'R ', 858.9000, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (445, 22, NULL, NULL, N'Men''s Sports Shorts, S', 24.7459, N'Black', 4, 59.9900, N'S', NULL, 0, N'S ', 35.9940, NULL, N'M ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (446, 35, NULL, NULL, N'Touring-Panniers, Large', 51.5625, N'Grey', 4, 125.0000, NULL, NULL, 0, N'T ', 75.0000, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (447, 34, NULL, NULL, N'Cable Lock', 10.3125, N'NA', 4, 25.0000, NULL, NULL, 0, N'S ', 15.0000, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (448, 36, NULL, NULL, N'Minipump', 8.2459, N'NA', 4, 19.9900, NULL, NULL, 0, N'S ', 11.9940, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (449, 36, NULL, NULL, N'Mountain Pump', 10.3084, N'NA', 4, 24.9900, NULL, NULL, 0, N'M ', 14.9940, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (450, 33, NULL, NULL, N'Taillights - Battery-Powered', 5.7709, N'NA', 4, 13.9900, NULL, NULL, 0, N'R ', 8.3940, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (451, 33, NULL, NULL, N'Headlights - Dual-Beam', 14.4334, N'NA', 4, 34.9900, NULL, NULL, 0, N'R ', 20.9940, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (452, 33, NULL, NULL, N'Headlights - Weatherproof', 18.5584, N'NA', 4, 44.9900, NULL, NULL, 0, N'R ', 26.9940, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (453, 22, NULL, NULL, N'Men''s Sports Shorts, M', 24.7459, N'Black', 4, 59.9900, N'M', NULL, 0, N'S ', 35.9940, NULL, N'M ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (454, 22, NULL, NULL, N'Men''s Sports Shorts, L', 24.7459, N'Black', 4, 59.9900, N'L', NULL, 0, N'S ', 35.9940, NULL, N'M ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (455, 22, NULL, NULL, N'Men''s Sports Shorts, XL', 24.7459, N'Black', 4, 59.9900, N'XL', NULL, 0, N'S ', 35.9940, NULL, N'M ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (456, 24, NULL, NULL, N'Women''s Tights, S', 30.9334, N'Black', 4, 74.9900, N'S', NULL, 0, N'S ', 44.9940, NULL, N'W ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (457, 24, NULL, NULL, N'Women''s Tights, M', 30.9334, N'Black', 4, 74.9900, N'M', NULL, 0, N'S ', 44.9940, NULL, N'W ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (458, 24, NULL, NULL, N'Women''s Tights, L', 30.9334, N'Black', 4, 74.9900, N'L', NULL, 0, N'S ', 44.9940, NULL, N'W ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (459, 18, NULL, NULL, N'Men''s Bib-Shorts, S', 37.1209, N'Multi', 4, 89.9900, N'S', NULL, 0, N'S ', 53.9940, NULL, N'M ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (460, 18, NULL, NULL, N'Men''s Bib-Shorts, M', 37.1209, N'Multi', 4, 89.9900, N'M', NULL, 0, N'S ', 53.9940, NULL, N'M ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (461, 18, NULL, NULL, N'Men''s Bib-Shorts, L', 37.1209, N'Multi', 4, 89.9900, N'L', NULL, 0, N'S ', 53.9940, NULL, N'M ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (462, 20, NULL, NULL, N'Half-Finger Gloves, S', 9.7136, N'Black', 4, 23.5481, N'S', NULL, 0, N'S ', 14.1289, NULL, N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (463, 20, NULL, NULL, N'Half-Finger Gloves, S', 9.1593, N'Black', 4, 24.4900, N'S', NULL, 0, N'S ', 14.6940, NULL, N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (464, 20, NULL, NULL, N'Half-Finger Gloves, M', 9.7136, N'Black', 4, 23.5481, N'M', NULL, 0, N'S ', 14.1289, NULL, N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (465, 20, NULL, NULL, N'Half-Finger Gloves, M', 9.1593, N'Black', 4, 24.4900, N'M', NULL, 0, N'S ', 14.6940, NULL, N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (466, 20, NULL, NULL, N'Half-Finger Gloves, L', 9.7136, N'Black', 4, 23.5481, N'L', NULL, 0, N'S ', 14.1289, NULL, N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (467, 20, NULL, NULL, N'Half-Finger Gloves, L', 9.1593, N'Black', 4, 24.4900, N'L', NULL, 0, N'S ', 14.6940, NULL, N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (468, 20, NULL, NULL, N'Full-Finger Gloves, S', 15.6709, N'Black', 4, 37.9900, N'S', NULL, 0, N'M ', 22.7940, NULL, N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (469, 20, NULL, NULL, N'Full-Finger Gloves, M', 15.6709, N'Black', 4, 37.9900, N'M', NULL, 0, N'M ', 22.7940, NULL, N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (470, 20, NULL, NULL, N'Full-Finger Gloves, L', 15.6709, N'Black', 4, 37.9900, N'L', NULL, 0, N'M ', 22.7940, NULL, N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (471, 25, NULL, NULL, N'Classic Vest, S', 23.7490, N'Blue', 4, 63.5000, N'S', NULL, 0, N'S ', 38.1000, NULL, N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (472, 25, NULL, NULL, N'Classic Vest, M', 23.7490, N'Blue', 4, 63.5000, N'M', NULL, 0, N'S ', 38.1000, NULL, N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (473, 25, NULL, NULL, N'Classic Vest, L', 23.7490, N'Blue', 4, 63.5000, N'L', NULL, 0, N'S ', 38.1000, NULL, N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (474, 22, NULL, NULL, N'Women''s Mountain Shorts, S', 26.1763, N'Black', 4, 69.9900, N'S', NULL, 0, N'M ', 41.9940, NULL, N'W ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (475, 22, NULL, NULL, N'Women''s Mountain Shorts, M', 26.1763, N'Black', 4, 69.9900, N'M', NULL, 0, N'M ', 41.9940, NULL, N'W ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (476, 22, NULL, NULL, N'Women''s Mountain Shorts, L', 26.1763, N'Black', 4, 69.9900, N'L', NULL, 0, N'M ', 41.9940, NULL, N'W ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (477, 28, NULL, NULL, N'Water Bottle - 30 oz.', 1.8663, N'NA', 4, 4.9900, NULL, NULL, 0, N'S ', 2.9940, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (478, 28, NULL, NULL, N'Mountain Bottle Cage', 3.7363, N'NA', 4, 9.9900, NULL, NULL, 0, N'M ', 5.9940, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (479, 28, NULL, NULL, N'Road Bottle Cage', 3.3623, N'NA', 4, 8.9900, NULL, NULL, 0, N'R ', 5.3940, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (480, 37, NULL, NULL, N'Patch Kit/8 Patches', 0.8565, N'NA', 4, 2.2900, NULL, NULL, 0, N'S ', 1.3740, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (481, 23, NULL, NULL, N'Racing Socks, M', 3.3623, N'White', 4, 8.9900, N'M', NULL, 0, N'R ', 5.3940, NULL, N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (482, 23, NULL, NULL, N'Racing Socks, L', 3.3623, N'White', 4, 8.9900, N'L', NULL, 0, N'R ', 5.3940, NULL, N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (483, 26, NULL, NULL, N'Hitch Rack - 4-Bike', 44.8800, N'NA', 4, 120.0000, NULL, NULL, 0, N'S ', 72.0000, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (484, 29, NULL, NULL, N'Bike Wash - Dissolver', 2.9733, N'NA', 4, 7.9500, NULL, NULL, 0, N'S ', 4.7700, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (485, 30, NULL, NULL, N'Fender Set - Mountain', 8.2205, N'NA', 4, 21.9800, NULL, NULL, 0, N'M ', 13.1880, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (486, 27, NULL, NULL, N'All-Purpose Bike Stand', 59.4660, N'NA', 4, 159.0000, NULL, NULL, 0, N'M ', 95.4000, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (487, 32, NULL, NULL, N'Hydration Pack - 70 oz.', 20.5663, N'Silver', 4, 54.9900, N'70', NULL, 0, N'S ', 32.9940, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (488, 21, NULL, NULL, N'Short-Sleeve Classic Jersey, S', 41.5723, N'Yellow', 4, 53.9900, N'S', NULL, 0, N'S ', 32.3940, NULL, N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (489, 21, NULL, NULL, N'Short-Sleeve Classic Jersey, M', 41.5723, N'Yellow', 4, 53.9900, N'M', NULL, 0, N'S ', 32.3940, NULL, N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (490, 21, NULL, NULL, N'Short-Sleeve Classic Jersey, L', 41.5723, N'Yellow', 4, 53.9900, N'L', NULL, 0, N'S ', 32.3940, NULL, N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (491, 21, NULL, NULL, N'Short-Sleeve Classic Jersey, XL', 41.5723, N'Yellow', 4, 53.9900, N'XL', NULL, 0, N'S ', 32.3940, NULL, N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (492, 16, N'LB ', N'CM ', N'HL Touring Frame - Yellow, 60', 601.7437, N'Yellow', 500, 1003.9100, N'60', 3.08, 1, N'T ', 602.3460, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (493, 16, N'LB ', N'CM ', N'LL Touring Frame - Yellow, 62', 199.8519, N'Yellow', 500, 333.4200, N'62', 3.2, 1, N'T ', 200.0520, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (494, 16, N'LB ', N'CM ', N'HL Touring Frame - Yellow, 46', 601.7437, N'Yellow', 500, 1003.9100, N'46', 2.96, 1, N'T ', 602.3460, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (495, 16, N'LB ', N'CM ', N'HL Touring Frame - Yellow, 50', 601.7437, N'Yellow', 500, 1003.9100, N'50', 3, 1, N'T ', 602.3460, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (496, 16, N'LB ', N'CM ', N'HL Touring Frame - Yellow, 54', 601.7437, N'Yellow', 500, 1003.9100, N'54', 3.04, 1, N'T ', 602.3460, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (497, 16, N'LB ', N'CM ', N'HL Touring Frame - Blue, 46', 601.7437, N'Blue', 500, 1003.9100, N'46', 2.96, 1, N'T ', 602.3460, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (498, 16, N'LB ', N'CM ', N'HL Touring Frame - Blue, 50', 601.7437, N'Blue', 500, 1003.9100, N'50', 3, 1, N'T ', 602.3460, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (499, 16, N'LB ', N'CM ', N'HL Touring Frame - Blue, 54', 601.7437, N'Blue', 500, 1003.9100, N'54', 3.04, 1, N'T ', 602.3460, N'H ', N'U ')

GO

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (500, 16, N'LB ', N'CM ', N'HL Touring Frame - Blue, 60', 601.7437, N'Blue', 500, 1003.9100, N'60', 3.08, 1, N'T ', 602.3460, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (501, 9, N'G ', NULL, N'Rear Derailleur', 53.9282, N'Silver', 500, 121.4600, NULL, 215, 1, NULL, 72.8760, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (502, 16, N'LB ', N'CM ', N'LL Touring Frame - Blue, 50', 199.8519, N'Blue', 500, 333.4200, N'50', 3.1, 1, N'T ', 200.0520, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (503, 16, N'LB ', N'CM ', N'LL Touring Frame - Blue, 54', 199.8519, N'Blue', 500, 333.4200, N'54', 3.14, 1, N'T ', 200.0520, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (504, 16, N'LB ', N'CM ', N'LL Touring Frame - Blue, 58', 199.8519, N'Blue', 500, 333.4200, N'58', 3.16, 1, N'T ', 200.0520, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (505, 16, N'LB ', N'CM ', N'LL Touring Frame - Blue, 62', 199.8519, N'Blue', 500, 333.4200, N'62', 3.2, 1, N'T ', 200.0520, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (506, 16, N'LB ', N'CM ', N'LL Touring Frame - Yellow, 44', 199.8519, N'Yellow', 500, 333.4200, N'44', 3.02, 1, N'T ', 200.0520, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (507, 16, N'LB ', N'CM ', N'LL Touring Frame - Yellow, 50', 199.8519, N'Yellow', 500, 333.4200, N'50', 3.1, 1, N'T ', 200.0520, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (508, 16, N'LB ', N'CM ', N'LL Touring Frame - Yellow, 54', 199.8519, N'Yellow', 500, 333.4200, N'54', 3.14, 1, N'T ', 200.0520, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (509, 16, N'LB ', N'CM ', N'LL Touring Frame - Yellow, 58', 199.8519, N'Yellow', 500, 333.4200, N'58', 3.16, 1, N'T ', 200.0520, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (510, 16, N'LB ', N'CM ', N'LL Touring Frame - Blue, 44', 199.8519, N'Blue', 500, 333.4200, N'44', 3.02, 1, N'T ', 200.0520, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (511, 12, N'LB ', N'CM ', N'ML Mountain Frame-W - Silver, 40', 199.3757, N'Silver', 500, 364.0900, N'40', 2.77, 1, N'M ', 218.4540, N'M ', N'W ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (512, 12, N'LB ', N'CM ', N'ML Mountain Frame-W - Silver, 42', 199.3757, N'Silver', 500, 364.0900, N'42', 2.81, 1, N'M ', 218.4540, N'M ', N'W ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (513, 12, N'LB ', N'CM ', N'ML Mountain Frame-W - Silver, 46', 199.3757, N'Silver', 500, 364.0900, N'46', 2.85, 1, N'M ', 218.4540, N'M ', N'W ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (514, 6, N'G ', NULL, N'Rear Brakes', 47.2860, N'Silver', 500, 106.5000, NULL, 317, 1, NULL, 63.9000, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (515, 15, NULL, NULL, N'LL Mountain Seat/Saddle', 12.0413, N'NA', 500, 27.1200, NULL, NULL, 1, N'M ', 16.2720, N'L ', NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (516, 15, NULL, NULL, N'ML Mountain Seat/Saddle', 17.3782, N'NA', 500, 39.1400, NULL, NULL, 1, N'M ', 23.4840, N'M ', NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (517, 15, NULL, NULL, N'HL Mountain Seat/Saddle', 23.3722, N'NA', 500, 52.6400, NULL, NULL, 1, N'M ', 31.5840, N'H ', NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (518, 15, NULL, NULL, N'LL Road Seat/Saddle', 12.0413, N'NA', 500, 27.1200, NULL, NULL, 1, N'R ', 16.2720, N'L ', NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (519, 15, NULL, NULL, N'ML Road Seat/Saddle', 17.3782, N'NA', 500, 39.1400, NULL, NULL, 1, N'T ', 23.4840, N'M ', NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (520, 15, NULL, NULL, N'HL Road Seat/Saddle', 23.3722, N'NA', 500, 52.6400, NULL, NULL, 1, N'R ', 31.5840, N'H ', NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (521, 15, NULL, NULL, N'LL Touring Seat/Saddle', 12.0413, N'NA', 500, 27.1200, NULL, NULL, 1, N'T ', 16.2720, N'L ', NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (522, 15, NULL, NULL, N'ML Touring Seat/Saddle', 17.3782, N'NA', 500, 39.1400, NULL, NULL, 1, N'T ', 23.4840, N'M ', NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (523, 15, NULL, NULL, N'HL Touring Seat/Saddle', 23.3722, N'NA', 500, 52.6400, NULL, NULL, 1, N'T ', 31.5840, N'H ', NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (524, 12, N'LB ', N'CM ', N'LL Mountain Frame - Silver, 42', 144.5938, N'Silver', 500, 264.0500, N'42', 2.92, 1, N'M ', 158.4300, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (525, 12, N'LB ', N'CM ', N'LL Mountain Frame - Silver, 44', 144.5938, N'Silver', 500, 264.0500, N'44', 2.96, 1, N'M ', 158.4300, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (526, 12, N'LB ', N'CM ', N'LL Mountain Frame - Silver, 48', 144.5938, N'Silver', 500, 264.0500, N'48', 3, 1, N'M ', 158.4300, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (527, 12, N'LB ', N'CM ', N'LL Mountain Frame - Silver, 52', 144.5938, N'Silver', 500, 264.0500, N'52', 3.04, 1, N'M ', 158.4300, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (528, 37, NULL, NULL, N'Mountain Tire Tube', 1.8663, N'NA', 500, 4.9900, NULL, NULL, 0, N'M ', 2.9940, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (529, 37, NULL, NULL, N'Road Tire Tube', 1.4923, N'NA', 500, 3.9900, NULL, NULL, 0, N'R ', 2.3940, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (530, 37, NULL, NULL, N'Touring Tire Tube', 1.8663, N'NA', 500, 4.9900, NULL, NULL, 0, N'T ', 2.9940, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (531, 12, N'LB ', N'CM ', N'LL Mountain Frame - Black, 42', 136.7850, N'Black', 500, 249.7900, N'42', 2.92, 1, N'M ', 149.8740, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (532, 12, N'LB ', N'CM ', N'LL Mountain Frame - Black, 44', 136.7850, N'Black', 500, 249.7900, N'44', 2.96, 1, N'M ', 149.8740, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (533, 12, N'LB ', N'CM ', N'LL Mountain Frame - Black, 48', 136.7850, N'Black', 500, 249.7900, N'48', 3, 1, N'M ', 149.8740, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (534, 12, N'LB ', N'CM ', N'LL Mountain Frame - Black, 52', 136.7850, N'Black', 500, 249.7900, N'52', 3.04, 1, N'M ', 149.8740, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (535, 37, NULL, NULL, N'LL Mountain Tire', 9.3463, N'NA', 500, 24.9900, NULL, NULL, 0, N'M ', 14.9940, N'L ', NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (536, 37, NULL, NULL, N'ML Mountain Tire', 11.2163, N'NA', 500, 29.9900, NULL, NULL, 0, N'M ', 17.9940, N'M ', NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (537, 37, NULL, NULL, N'HL Mountain Tire', 13.0900, N'NA', 500, 35.0000, NULL, NULL, 0, N'M ', 21.0000, N'H ', NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (538, 37, NULL, NULL, N'LL Road Tire', 8.0373, N'NA', 500, 21.4900, NULL, NULL, 0, N'R ', 12.8940, N'L ', NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (539, 37, NULL, NULL, N'ML Road Tire', 9.3463, N'NA', 500, 24.9900, NULL, NULL, 0, N'R ', 14.9940, N'M ', NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (540, 37, NULL, NULL, N'HL Road Tire', 12.1924, N'NA', 500, 32.6000, NULL, NULL, 0, N'R ', 19.5600, N'H ', NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (541, 37, NULL, NULL, N'Touring Tire', 10.8423, N'NA', 500, 28.9900, NULL, NULL, 0, N'T ', 17.3940, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (542, 13, N'G ', NULL, N'LL Mountain Pedal', 17.9776, N'Silver/Black', 500, 40.4900, NULL, 218, 1, N'M ', 24.2940, N'L ', NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (543, 13, N'G ', NULL, N'ML Mountain Pedal', 27.5680, N'Silver/Black', 500, 62.0900, NULL, 215, 1, N'M ', 37.2540, N'M ', NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (544, 13, N'G ', NULL, N'HL Mountain Pedal', 35.9596, N'Silver/Black', 500, 80.9900, NULL, 185, 1, N'M ', 48.5940, N'H ', NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (545, 13, N'G ', NULL, N'LL Road Pedal', 17.9776, N'Silver/Black', 500, 40.4900, NULL, 189, 1, N'R ', 24.2940, N'L ', NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (546, 13, N'G ', NULL, N'ML Road Pedal', 27.5680, N'Silver/Black', 500, 62.0900, NULL, 168, 1, N'R ', 37.2540, N'M ', NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (547, 13, N'G ', NULL, N'HL Road Pedal', 35.9596, N'Silver/Black', 500, 80.9900, NULL, 149, 1, N'R ', 48.5940, N'H ', NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (548, 13, NULL, NULL, N'Touring Pedal', 35.9596, N'Silver/Black', 500, 80.9900, NULL, NULL, 1, N'T ', 48.5940, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (549, 12, N'LB ', N'CM ', N'ML Mountain Frame-W - Silver, 38', 199.3757, N'Silver', 500, 364.0900, N'38', 2.73, 2, N'M ', 218.4540, N'M ', N'W ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (550, 12, N'LB ', N'CM ', N'LL Mountain Frame - Black, 40', 136.7850, N'Black', 500, 249.7900, N'40', 2.88, 2, N'M ', 149.8740, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (551, 12, N'LB ', N'CM ', N'LL Mountain Frame - Silver, 40', 144.5938, N'Silver', 500, 264.0500, N'40', 2.88, 2, N'M ', 158.4300, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (552, 9, N'G ', NULL, N'Front Derailleur', 40.6216, N'Silver', 500, 91.4900, NULL, 88, 1, NULL, 54.8940, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (553, 4, NULL, NULL, N'LL Touring Handlebars', 20.4640, N'NA', 500, 46.0900, NULL, NULL, 1, N'T ', 27.6540, N'L ', NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (554, 4, NULL, NULL, N'HL Touring Handlebars', 40.6571, N'NA', 500, 91.5700, NULL, NULL, 1, N'T ', 54.9420, N'H ', NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (555, 6, N'G ', NULL, N'Front Brakes', 47.2860, N'Silver', 500, 106.5000, NULL, 317, 1, NULL, 63.9000, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (556, 8, N'G ', NULL, N'LL Crankset', 77.9176, N'Black', 500, 175.4900, NULL, 600, 1, NULL, 105.2940, N'L ', NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (557, 8, N'G ', NULL, N'ML Crankset', 113.8816, N'Black', 500, 256.4900, NULL, 635, 1, NULL, 153.8940, N'M ', NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (558, 8, N'G ', NULL, N'HL Crankset', 179.8156, N'Black', 500, 404.9900, NULL, 575, 1, NULL, 242.9940, N'H ', NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (559, 7, NULL, NULL, N'Chain', 8.9866, N'Silver', 500, 20.2400, NULL, NULL, 1, NULL, 12.1440, NULL, NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (560, 3, N'LB ', N'CM ', N'Touring-2000 Blue, 60', 755.1508, N'Blue', 100, 1214.8500, N'60', 27.9, 4, N'T ', 728.9100, N'M ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (561, 3, N'LB ', N'CM ', N'Touring-1000 Yellow, 46', 1481.9379, N'Yellow', 100, 2384.0700, N'46', 25.13, 4, N'T ', 1430.4420, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (562, 3, N'LB ', N'CM ', N'Touring-1000 Yellow, 50', 1481.9379, N'Yellow', 100, 2384.0700, N'50', 25.42, 4, N'T ', 1430.4420, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (563, 3, N'LB ', N'CM ', N'Touring-1000 Yellow, 54', 1481.9379, N'Yellow', 100, 2384.0700, N'54', 25.68, 4, N'T ', 1430.4420, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (564, 3, N'LB ', N'CM ', N'Touring-1000 Yellow, 60', 1481.9379, N'Yellow', 100, 2384.0700, N'60', 25.9, 4, N'T ', 1430.4420, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (565, 3, N'LB ', N'CM ', N'Touring-3000 Blue, 54', 461.4448, N'Blue', 100, 742.3500, N'54', 29.68, 4, N'T ', 445.4100, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (566, 3, N'LB ', N'CM ', N'Touring-3000 Blue, 58', 461.4448, N'Blue', 100, 742.3500, N'58', 29.9, 4, N'T ', 445.4100, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (567, 3, N'LB ', N'CM ', N'Touring-3000 Blue, 62', 461.4448, N'Blue', 100, 742.3500, N'62', 30, 4, N'T ', 445.4100, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (568, 3, N'LB ', N'CM ', N'Touring-3000 Yellow, 44', 461.4448, N'Yellow', 100, 742.3500, N'44', 28.77, 4, N'T ', 445.4100, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (569, 3, N'LB ', N'CM ', N'Touring-3000 Yellow, 50', 461.4448, N'Yellow', 100, 742.3500, N'50', 29.13, 4, N'T ', 445.4100, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (570, 3, N'LB ', N'CM ', N'Touring-3000 Yellow, 54', 461.4448, N'Yellow', 100, 742.3500, N'54', 29.42, 4, N'T ', 445.4100, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (571, 3, N'LB ', N'CM ', N'Touring-3000 Yellow, 58', 461.4448, N'Yellow', 100, 742.3500, N'58', 29.79, 4, N'T ', 445.4100, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (572, 3, N'LB ', N'CM ', N'Touring-3000 Yellow, 62', 461.4448, N'Yellow', 100, 742.3500, N'62', 30, 4, N'T ', 445.4100, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (573, 3, N'LB ', N'CM ', N'Touring-1000 Blue, 46', 1481.9379, N'Blue', 100, 2384.0700, N'46', 25.13, 4, N'T ', 1430.4420, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (574, 3, N'LB ', N'CM ', N'Touring-1000 Blue, 50', 1481.9379, N'Blue', 100, 2384.0700, N'50', 25.42, 4, N'T ', 1430.4420, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (575, 3, N'LB ', N'CM ', N'Touring-1000 Blue, 54', 1481.9379, N'Blue', 100, 2384.0700, N'54', 25.68, 4, N'T ', 1430.4420, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (576, 3, N'LB ', N'CM ', N'Touring-1000 Blue, 60', 1481.9379, N'Blue', 100, 2384.0700, N'60', 25.9, 4, N'T ', 1430.4420, N'H ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (577, 3, N'LB ', N'CM ', N'Touring-2000 Blue, 46', 755.1508, N'Blue', 100, 1214.8500, N'46', 27.13, 4, N'T ', 728.9100, N'M ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (578, 3, N'LB ', N'CM ', N'Touring-2000 Blue, 50', 755.1508, N'Blue', 100, 1214.8500, N'50', 27.42, 4, N'T ', 728.9100, N'M ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (579, 3, N'LB ', N'CM ', N'Touring-2000 Blue, 54', 755.1508, N'Blue', 100, 1214.8500, N'54', 27.68, 4, N'T ', 728.9100, N'M ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (580, 2, N'LB ', N'CM ', N'Road-350-W Yellow, 40', 1082.5100, N'Yellow', 100, 1700.9900, N'40', 15.35, 4, N'R ', 1020.5940, N'M ', N'W ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (581, 2, N'LB ', N'CM ', N'Road-350-W Yellow, 42', 1082.5100, N'Yellow', 100, 1700.9900, N'42', 15.77, 4, N'R ', 1020.5940, N'M ', N'W ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (582, 2, N'LB ', N'CM ', N'Road-350-W Yellow, 44', 1082.5100, N'Yellow', 100, 1700.9900, N'44', 16.13, 4, N'R ', 1020.5940, N'M ', N'W ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (583, 2, N'LB ', N'CM ', N'Road-350-W Yellow, 48', 1082.5100, N'Yellow', 100, 1700.9900, N'48', 16.42, 4, N'R ', 1020.5940, N'M ', N'W ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (584, 2, N'LB ', N'CM ', N'Road-750 Black, 58', 343.6496, N'Black', 100, 539.9900, N'58', 20.79, 4, N'R ', 323.9940, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (585, 3, N'LB ', N'CM ', N'Touring-3000 Blue, 44', 461.4448, N'Blue', 100, 742.3500, N'44', 28.77, 4, N'T ', 445.4100, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (586, 3, N'LB ', N'CM ', N'Touring-3000 Blue, 50', 461.4448, N'Blue', 100, 742.3500, N'50', 29.13, 4, N'T ', 445.4100, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (587, 1, N'LB ', N'CM ', N'Mountain-400-W Silver, 38', 419.7784, N'Silver', 100, 769.4900, N'38', 26.35, 4, N'M ', 461.6940, N'M ', N'W ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (588, 1, N'LB ', N'CM ', N'Mountain-400-W Silver, 40', 419.7784, N'Silver', 100, 769.4900, N'40', 26.77, 4, N'M ', 461.6940, N'M ', N'W ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (589, 1, N'LB ', N'CM ', N'Mountain-400-W Silver, 42', 419.7784, N'Silver', 100, 769.4900, N'42', 27.13, 4, N'M ', 461.6940, N'M ', N'W ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (590, 1, N'LB ', N'CM ', N'Mountain-400-W Silver, 46', 419.7784, N'Silver', 100, 769.4900, N'46', 27.42, 4, N'M ', 461.6940, N'M ', N'W ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (591, 1, N'LB ', N'CM ', N'Mountain-500 Silver, 40', 308.2179, N'Silver', 100, 564.9900, N'40', 27.35, 4, N'M ', 338.9940, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (592, 1, N'LB ', N'CM ', N'Mountain-500 Silver, 42', 308.2179, N'Silver', 100, 564.9900, N'42', 27.77, 4, N'M ', 338.9940, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (593, 1, N'LB ', N'CM ', N'Mountain-500 Silver, 44', 308.2179, N'Silver', 100, 564.9900, N'44', 28.13, 4, N'M ', 338.9940, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (594, 1, N'LB ', N'CM ', N'Mountain-500 Silver, 48', 308.2179, N'Silver', 100, 564.9900, N'48', 28.42, 4, N'M ', 338.9940, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (595, 1, N'LB ', N'CM ', N'Mountain-500 Silver, 52', 308.2179, N'Silver', 100, 564.9900, N'52', 28.68, 4, N'M ', 338.9940, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (596, 1, N'LB ', N'CM ', N'Mountain-500 Black, 40', 294.5797, N'Black', 100, 539.9900, N'40', 27.35, 4, N'M ', 323.9940, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (597, 1, N'LB ', N'CM ', N'Mountain-500 Black, 42', 294.5797, N'Black', 100, 539.9900, N'42', 27.77, 4, N'M ', 323.9940, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (598, 1, N'LB ', N'CM ', N'Mountain-500 Black, 44', 294.5797, N'Black', 100, 539.9900, N'44', 28.13, 4, N'M ', 323.9940, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (599, 1, N'LB ', N'CM ', N'Mountain-500 Black, 48', 294.5797, N'Black', 100, 539.9900, N'48', 28.42, 4, N'M ', 323.9940, N'L ', N'U ')

GO

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (600, 1, N'LB ', N'CM ', N'Mountain-500 Black, 52', 294.5797, N'Black', 100, 539.9900, N'52', 28.68, 4, N'M ', 323.9940, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (601, 5, N'G ', NULL, N'LL Bottom Bracket', 23.9716, N'NA', 500, 53.9900, NULL, 223, 1, NULL, 32.3940, N'L ', NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (602, 5, N'G ', NULL, N'ML Bottom Bracket', 44.9506, N'NA', 500, 101.2400, NULL, 168, 1, NULL, 60.7440, N'M ', NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (603, 5, N'G ', NULL, N'HL Bottom Bracket', 53.9416, N'NA', 500, 121.4900, NULL, 170, 1, NULL, 72.8940, N'H ', NULL)

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (604, 2, N'LB ', N'CM ', N'Road-750 Black, 44', 343.6496, N'Black', 100, 539.9900, N'44', 19.77, 4, N'R ', 323.9940, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (605, 2, N'LB ', N'CM ', N'Road-750 Black, 48', 343.6496, N'Black', 100, 539.9900, N'48', 20.13, 4, N'R ', 323.9940, N'L ', N'U ')

INSERT [dbo].[PRODUCTS_DATA] ([ProductKey], [ProductSubcategoryKey], [WeightUnitMeasureCode], [SizeUnitMeasureCode], [EnglishProductName], [StandardCost], [Color], [SafetyStockLevel], [ListPrice], [Size], [Weight], [DaysToManufacture], [ProductLine], [DealerPrice], [Class], [Style]) VALUES (606, 2, N'LB ', N'CM ', N'Road-750 Black, 52', 343.6496, N'Black', 100, 539.9900, N'52', 20.42, 4, N'R ', 323.9940, N'L ', N'U ')

SET IDENTITY_INSERT [dbo].[PRODUCTS_DATA] OFF

GO

USE [PRODUCT DATABASE]

GO

CREATE TABLE [CUSTOMERS_DATA](

[CustomerKey] [int] IDENTITY(1,1) NOT NULL PRIMARY KEY,

[GeographyKey] [int] NULL,

[CustomerAlternateKey] [nvarchar](15) NOT NULL,

[Title] [nvarchar](8) NULL,

[FirstName] [nvarchar](50) NULL,

[MiddleName] [nvarchar](50) NULL,

[LastName] [nvarchar](50) NULL,

[NameStyle] [bit] NULL,

[BirthDate] [datetime] NULL,

[MaritalStatus] [nchar](1) NULL,

[Suffix] [nvarchar](10) NULL,

[Gender] [nvarchar](1) NULL,

[EmailAddress] [nvarchar](50) NULL,

[YearlyIncome] [money] NULL,

[TotalChildren] [tinyint] NULL,

[NumberChildrenAtHome] [tinyint] NULL,

[EnglishEducation] [nvarchar](40) NULL,

[SpanishEducation] [nvarchar](40) NULL,

[FrenchEducation] [nvarchar](40) NULL,

[EnglishOccupation] [nvarchar](100) NULL,

[SpanishOccupation] [nvarchar](100) NULL,

[FrenchOccupation] [nvarchar](100) NULL,

[HouseOwnerFlag] [nchar](1) NULL,

[NumberCarsOwned] [tinyint] NULL,

[AddressLine1] [nvarchar](120) NULL,

[AddressLine2] [nvarchar](120) NULL,

[Phone] [nvarchar](20) NULL,

[DateFirstPurchase] [datetime] NULL,

[CommuteDistance] [nvarchar](15) NULL

GO

SET IDENTITY_INSERT [dbo].[CUSTOMERS_DATA] ON

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11000, 26, N'AW00011000', NULL, N'Jon', N'V', N'Yang', 0, CAST(N'1966-04-08 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 90000.0000, 2, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'1', 0, N'3761 N. 14th St', NULL, N'1 (11) 500 555-0162', CAST(N'2001-07-22 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11001, 37, N'AW00011001', NULL, N'Eugene', N'L', N'Huang', 0, CAST(N'1965-05-14 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 60000.0000, 3, 3, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'0', 1, N'2243 W St.', NULL, N'1 (11) 500 555-0110', CAST(N'2001-07-18 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11002, 31, N'AW00011002', NULL, N'Ruben', NULL, N'Torres', 0, CAST(N'1965-08-12 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 60000.0000, 3, 3, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'1', 1, N'5844 Linden Land', NULL, N'1 (11) 500 555-0184', CAST(N'2001-07-10 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11003, 11, N'AW00011003', NULL, N'Christy', NULL, N'Zhu', 0, CAST(N'1968-02-15 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 70000.0000, 0, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'0', 1, N'1825 Village Pl.', NULL, N'1 (11) 500 555-0162', CAST(N'2001-07-01 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11004, 19, N'AW00011004', NULL, N'Elizabeth', NULL, N'Johnson', 0, CAST(N'1968-08-08 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 80000.0000, 5, 5, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'1', 4, N'7553 Harness Circle', NULL, N'1 (11) 500 555-0131', CAST(N'2001-07-26 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11005, 22, N'AW00011005', NULL, N'Julio', NULL, N'Ruiz', 0, CAST(N'1965-08-05 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 70000.0000, 0, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'1', 1, N'7305 Humphrey Drive', NULL, N'1 (11) 500 555-0151', CAST(N'2001-07-02 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11006, 8, N'AW00011006', NULL, N'Janet', N'G', N'Alvarez', 0, CAST(N'1965-12-06 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 70000.0000, 0, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'1', 1, N'2612 Berry Dr', NULL, N'1 (11) 500 555-0184', CAST(N'2001-07-27 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11007, 40, N'AW00011007', NULL, N'Marco', NULL, N'Mehta', 0, CAST(N'1964-05-09 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 60000.0000, 3, 3, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'1', 2, N'942 Brook Street', NULL, N'1 (11) 500 555-0126', CAST(N'2001-07-12 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11008, 32, N'AW00011008', NULL, N'Rob', NULL, N'Verhoff', 0, CAST(N'1964-07-07 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 60000.0000, 4, 4, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'1', 3, N'624 Peabody Road', NULL, N'1 (11) 500 555-0164', CAST(N'2001-07-28 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11009, 25, N'AW00011009', NULL, N'Shannon', N'C', N'Carlson', 0, CAST(N'1964-04-01 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 70000.0000, 0, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'0', 1, N'3839 Northgate Road', NULL, N'1 (11) 500 555-0110', CAST(N'2001-07-30 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11010, 22, N'AW00011010', NULL, N'Jacquelyn', N'C', N'Suarez', 0, CAST(N'1964-02-06 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 70000.0000, 0, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'0', 1, N'7800 Corrinne Court', NULL, N'1 (11) 500 555-0169', CAST(N'2001-07-17 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11011, 22, N'AW00011011', NULL, N'Curtis', NULL, N'Lu', 0, CAST(N'1963-11-04 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 60000.0000, 4, 4, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'1', 4, N'1224 Shoenic', NULL, N'1 (11) 500 555-0117', CAST(N'2001-07-02 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11012, 611, N'AW00011012', NULL, N'Lauren', N'M', N'Walker', 0, CAST(N'1968-01-18 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 100000.0000, 2, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Management', N'Gestión', N'Direction', N'1', 2, N'4785 Scott Street', NULL, N'717-555-0164', CAST(N'2003-09-17 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11013, 543, N'AW00011013', NULL, N'Ian', N'M', N'Jenkins', 0, CAST(N'1968-08-06 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 100000.0000, 2, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Management', N'Gestión', N'Direction', N'1', 3, N'7902 Hudson Ave.', NULL, N'817-555-0185', CAST(N'2003-10-15 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11014, 634, N'AW00011014', NULL, N'Sydney', NULL, N'Bennett', 0, CAST(N'1968-05-09 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 100000.0000, 3, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Management', N'Gestión', N'Direction', N'0', 3, N'9011 Tank Drive', NULL, N'431-555-0156', CAST(N'2003-09-24 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11015, 301, N'AW00011015', NULL, N'Chloe', NULL, N'Young', 0, CAST(N'1979-02-27 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 30000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 1, N'244 Willow Pass Road', NULL, N'208-555-0142', CAST(N'2003-07-22 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11016, 329, N'AW00011016', NULL, N'Wyatt', N'L', N'Hill', 0, CAST(N'1979-04-28 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 30000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 1, N'9666 Northridge Ct.', NULL, N'135-555-0171', CAST(N'2003-08-13 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11017, 39, N'AW00011017', NULL, N'Shannon', NULL, N'Wang', 0, CAST(N'1944-06-26 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 20000.0000, 4, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'7330 Saddlehill Lane', NULL, N'1 (11) 500 555-0195', CAST(N'2001-07-15 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11018, 32, N'AW00011018', NULL, N'Clarence', N'D', N'Rai', 0, CAST(N'1944-10-09 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 30000.0000, 2, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Clerical', N'Administrativo', N'Employé', N'1', 2, N'244 Rivewview', NULL, N'1 (11) 500 555-0137', CAST(N'2001-07-20 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11019, 52, N'AW00011019', NULL, N'Luke', N'L', N'Lal', 0, CAST(N'1978-03-07 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 40000.0000, 0, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 2, N'7832 Landing Dr', NULL, N'262-555-0112', CAST(N'2003-08-16 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11020, 53, N'AW00011020', NULL, N'Jordan', N'C', N'King', 0, CAST(N'1978-09-20 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 40000.0000, 0, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 2, N'7156 Rose Dr.', NULL, N'550-555-0163', CAST(N'2003-07-02 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11021, 536, N'AW00011021', NULL, N'Destiny', NULL, N'Wilson', 0, CAST(N'1978-09-03 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 40000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 1, N'8148 W. Lake Dr.', NULL, N'622-555-0158', CAST(N'2003-07-27 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11022, 609, N'AW00011022', NULL, N'Ethan', N'G', N'Zhang', 0, CAST(N'1978-10-12 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 40000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 1, N'1769 Nicholas Drive', NULL, N'589-555-0185', CAST(N'2003-07-24 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11023, 298, N'AW00011023', NULL, N'Seth', N'M', N'Edwards', 0, CAST(N'1978-10-11 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 40000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 1, N'4499 Valley Crest', NULL, N'452-555-0188', CAST(N'2003-08-21 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11024, 311, N'AW00011024', NULL, N'Russell', NULL, N'Xie', 0, CAST(N'1978-09-17 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 60000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'8734 Oxford Place', NULL, N'746-555-0186', CAST(N'2003-12-29 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11025, 24, N'AW00011025', NULL, N'Alejandro', NULL, N'Beck', 0, CAST(N'1945-12-23 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 10000.0000, 2, 1, N'Partial High School', N'Educación secundaria (en curso)', N'Niveau bac', N'Clerical', N'Administrativo', N'Employé', N'1', 2, N'2596 Franklin Canyon Road', NULL, N'1 (11) 500 555-0178', CAST(N'2001-07-09 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11026, 4, N'AW00011026', NULL, N'Harold', NULL, N'Sai', 0, CAST(N'1946-04-03 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 30000.0000, 2, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Clerical', N'Administrativo', N'Employé', N'0', 2, N'8211 Leeds Ct.', NULL, N'1 (11) 500 555-0131', CAST(N'2001-07-26 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11027, 40, N'AW00011027', NULL, N'Jessie', N'R', N'Zhao', 0, CAST(N'1946-12-07 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 30000.0000, 2, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Clerical', N'Administrativo', N'Employé', N'1', 2, N'213 Valencia Place', NULL, N'1 (11) 500 555-0184', CAST(N'2001-07-19 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11028, 17, N'AW00011028', NULL, N'Jill', NULL, N'Jimenez', 0, CAST(N'1946-04-11 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 30000.0000, 2, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Clerical', N'Administrativo', N'Employé', N'1', 2, N'9111 Rose Ann Ave', NULL, N'1 (11) 500 555-0116', CAST(N'2001-07-29 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11029, 32, N'AW00011029', NULL, N'Jimmy', N'L', N'Moreno', 0, CAST(N'1946-12-21 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 30000.0000, 2, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Clerical', N'Administrativo', N'Employé', N'1', 2, N'6385 Mark Twain', NULL, N'1 (11) 500 555-0146', CAST(N'2001-07-22 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11030, 28, N'AW00011030', NULL, N'Bethany', N'G', N'Yuan', 0, CAST(N'1947-02-22 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 10000.0000, 2, 1, N'Partial High School', N'Educación secundaria (en curso)', N'Niveau bac', N'Clerical', N'Administrativo', N'Employé', N'1', 2, N'636 Vine Hill Way', NULL, N'1 (11) 500 555-0182', CAST(N'2001-08-08 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11031, 8, N'AW00011031', NULL, N'Theresa', N'G', N'Ramos', 0, CAST(N'1947-08-22 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 20000.0000, 4, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'6465 Detroit Ave.', NULL, N'1 (11) 500 555-0195', CAST(N'2001-08-04 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11032, 35, N'AW00011032', NULL, N'Denise', NULL, N'Stone', 0, CAST(N'1947-06-11 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 20000.0000, 4, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'626 Bentley Street', NULL, N'1 (11) 500 555-0169', CAST(N'2001-08-21 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11033, 9, N'AW00011033', NULL, N'Jaime', NULL, N'Nath', 0, CAST(N'1947-09-23 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 20000.0000, 4, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'5927 Rainbow Dr', NULL, N'1 (11) 500 555-0137', CAST(N'2001-08-18 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11034, 12, N'AW00011034', NULL, N'Ebony', NULL, N'Gonzalez', 0, CAST(N'1947-06-19 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 20000.0000, 4, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'5167 Condor Place', NULL, N'1 (11) 500 555-0136', CAST(N'2001-08-04 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11035, 33, N'AW00011035', NULL, N'Wendy', NULL, N'Dominguez', 0, CAST(N'1948-02-24 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 10000.0000, 2, 1, N'Partial High School', N'Educación secundaria (en curso)', N'Niveau bac', N'Clerical', N'Administrativo', N'Employé', N'1', 2, N'1873 Mt. Whitney Dr', NULL, N'1 (11) 500 555-0177', CAST(N'2001-08-09 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11036, 343, N'AW00011036', NULL, N'Jennifer', N'C', N'Russell', 0, CAST(N'1978-12-18 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 60000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'3981 Augustine Drive', NULL, N'115-555-0183', CAST(N'2003-07-26 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11037, 49, N'AW00011037', NULL, N'Chloe', N'M', N'Garcia', 0, CAST(N'1977-11-27 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 40000.0000, 0, 0, N'Partial High School', N'Educación secundaria (en curso)', N'Niveau bac', N'Clerical', N'Administrativo', N'Employé', N'0', 2, N'8915 Woodside Way', NULL, N'229-555-0112', CAST(N'2003-07-24 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11038, 6, N'AW00011038', NULL, N'Diana', N'F', N'Hernandez', 0, CAST(N'1948-03-23 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 10000.0000, 2, 1, N'Partial High School', N'Educación secundaria (en curso)', N'Niveau bac', N'Clerical', N'Administrativo', N'Employé', N'1', 2, N'8357 Sandy Cove Lane', NULL, N'1 (11) 500 555-0114', CAST(N'2001-08-10 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11039, 19, N'AW00011039', NULL, N'Marc', N'J', N'Martin', 0, CAST(N'1948-12-17 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 30000.0000, 3, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Clerical', N'Administrativo', N'Employé', N'1', 2, N'9353 Creekside Dr.', NULL, N'1 (11) 500 555-0183', CAST(N'2001-08-10 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11040, 642, N'AW00011040', NULL, N'Jesse', NULL, N'Murphy', 0, CAST(N'1977-08-01 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 30000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'3350 Kingswood Circle', NULL, N'961-555-0176', CAST(N'2003-10-05 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11041, 325, N'AW00011041', NULL, N'Amanda', N'M', N'Carter', 0, CAST(N'1977-10-16 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 60000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'5826 Escobar', NULL, N'295-555-0145', CAST(N'2003-07-18 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11042, 338, N'AW00011042', NULL, N'Megan', N'J', N'Sanchez', 0, CAST(N'1977-06-13 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 70000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'1397 Paraiso Ct.', NULL, N'404-555-0199', CAST(N'2003-07-25 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11043, 325, N'AW00011043', NULL, N'Nathan', N'M', N'Simmons', 0, CAST(N'1976-02-24 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 60000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'1170 Shaw Rd', NULL, N'296-555-0181', CAST(N'2003-11-09 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11044, 25, N'AW00011044', NULL, N'Adam', N'L', N'Flores', 0, CAST(N'1949-05-24 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 20000.0000, 2, 1, N'Partial High School', N'Educación secundaria (en curso)', N'Niveau bac', N'Clerical', N'Administrativo', N'Employé', N'1', 2, N'6935 Candle Dr', NULL, N'1 (11) 500 555-0163', CAST(N'2001-08-31 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11045, 8, N'AW00011045', NULL, N'Leonard', N'G', N'Nara', 0, CAST(N'1950-05-19 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 30000.0000, 3, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 2, N'7466 La Vista Ave.', NULL, N'1 (11) 500 555-0151', CAST(N'2003-10-12 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11046, 6, N'AW00011046', NULL, N'Christine', NULL, N'Yuan', 0, CAST(N'1950-03-22 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 30000.0000, 3, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'2356 Orange St', NULL, N'1 (11) 500 555-0113', CAST(N'2001-08-09 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11047, 34, N'AW00011047', NULL, N'Jaclyn', N'D', N'Lu', 0, CAST(N'1950-02-27 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 30000.0000, 3, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 2, N'2812 Mazatlan', NULL, N'1 (11) 500 555-0137', CAST(N'2001-08-06 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11048, 39, N'AW00011048', NULL, N'Jeremy', NULL, N'Powell', 0, CAST(N'1950-11-22 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 30000.0000, 3, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'1803 Potomac Dr.', NULL, N'1 (11) 500 555-0183', CAST(N'2001-08-13 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11049, 307, N'AW00011049', NULL, N'Carol', N'C', N'Rai', 0, CAST(N'1980-07-18 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 40000.0000, 0, 0, N'Partial High School', N'Educación secundaria (en curso)', N'Niveau bac', N'Clerical', N'Administrativo', N'Employé', N'1', 2, N'6064 Madrid', NULL, N'654-555-0180', CAST(N'2003-09-10 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11050, 31, N'AW00011050', NULL, N'Alan', NULL, N'Zheng', 0, CAST(N'1951-09-07 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 30000.0000, 3, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'2741 Gainborough Dr.', NULL, N'1 (11) 500 555-0135', CAST(N'2001-08-23 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11051, 21, N'AW00011051', NULL, N'Daniel', NULL, N'Johnson', 0, CAST(N'1951-08-04 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 30000.0000, 3, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 2, N'8085 Sunnyvale Avenue', NULL, N'1 (11) 500 555-0155', CAST(N'2004-07-01 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11052, 8, N'AW00011052', NULL, N'Heidi', NULL, N'Lopez', 0, CAST(N'1951-08-07 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 40000.0000, 2, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Clerical', N'Administrativo', N'Employé', N'0', 2, N'2514 Via Cordona', NULL, N'1 (11) 500 555-0168', CAST(N'2001-08-20 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11053, 359, N'AW00011053', NULL, N'Ana', N'E', N'Price', 0, CAST(N'1980-08-20 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 60000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 2, N'1660 Stonyhill Circle', NULL, N'859-555-0113', CAST(N'2003-07-21 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11054, 34, N'AW00011054', NULL, N'Deanna', NULL, N'Munoz', 0, CAST(N'1952-03-10 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 40000.0000, 2, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'5825 B Way', NULL, N'1 (11) 500 555-0192', CAST(N'2001-08-06 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11055, 22, N'AW00011055', NULL, N'Gilbert', NULL, N'Raje', 0, CAST(N'1952-03-05 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 40000.0000, 2, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'8811 The Trees Dr.', NULL, N'1 (11) 500 555-0129', CAST(N'2001-08-03 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11056, 10, N'AW00011056', NULL, N'Michele', N'L', N'Nath', 0, CAST(N'1953-04-03 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 40000.0000, 3, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'5464 Janin Pl.', NULL, N'1 (11) 500 555-0178', CAST(N'2001-08-29 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11057, 5, N'AW00011057', NULL, N'Carl', N'J', N'Andersen', 0, CAST(N'1953-10-12 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 70000.0000, 2, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Management', N'Gestión', N'Direction', N'1', 2, N'6930 Lake Nadine Place', NULL, N'1 (11) 500 555-0181', CAST(N'2001-08-25 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11058, 29, N'AW00011058', NULL, N'Marc', NULL, N'Diaz', 0, CAST(N'1954-04-27 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 80000.0000, 2, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'6645 Sinaloa', NULL, N'1 (11) 500 555-0149', CAST(N'2001-09-09 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11059, 27, N'AW00011059', NULL, N'Ashlee', N'J', N'Andersen', 0, CAST(N'1954-04-01 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 80000.0000, 2, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'8255 Highland Road', NULL, N'1 (11) 500 555-0112', CAST(N'2003-08-22 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11060, 40, N'AW00011060', NULL, N'Jon', N'L', N'Zhou', 0, CAST(N'1954-03-17 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 80000.0000, 2, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'6574 Hemlock Ave.', NULL, N'1 (11) 500 555-0174', CAST(N'2001-09-19 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11061, 23, N'AW00011061', NULL, N'Todd', N'M', N'Gao', 0, CAST(N'1954-02-27 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 80000.0000, 2, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'8808 Geneva Ave', NULL, N'1 (11) 500 555-0191', CAST(N'2001-09-13 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11062, 547, N'AW00011062', NULL, N'Noah', N'D', N'Powell', 0, CAST(N'1975-09-02 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 40000.0000, 0, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'9794 Marion Ct', NULL, N'767-555-0113', CAST(N'2003-07-11 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11063, 634, N'AW00011063', NULL, N'Angela', NULL, N'Murphy', 0, CAST(N'1975-04-07 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 40000.0000, 0, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'4927 Virgil Street', N'# 21', N'451-555-0162', CAST(N'2003-07-16 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11064, 315, N'AW00011064', NULL, N'Chase', NULL, N'Reed', 0, CAST(N'1975-12-07 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 40000.0000, 0, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'2721 Alexander Pl.', NULL, N'892-555-0184', CAST(N'2003-07-29 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11065, 331, N'AW00011065', NULL, N'Jessica', NULL, N'Henderson', 0, CAST(N'1973-10-09 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 60000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 2, N'9343 Ironwood Way', NULL, N'278-555-0186', CAST(N'2003-08-14 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11066, 543, N'AW00011066', NULL, N'Grace', N'T', N'Butler', 0, CAST(N'1973-11-27 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 70000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Professional', N'Profesional', N'Cadre', N'1', 2, N'4739 Garden Ave.', NULL, N'712-555-0141', CAST(N'2003-12-02 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11067, 632, N'AW00011067', NULL, N'Caleb', N'F', N'Carter', 0, CAST(N'1976-09-25 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 60000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Professional', N'Profesional', N'Cadre', N'1', 2, N'9563 Pennsylvania Blvd.', NULL, N'944-555-0167', CAST(N'2004-02-19 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11068, 40, N'AW00011068', NULL, N'Tiffany', NULL, N'Liang', 0, CAST(N'1955-09-23 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 80000.0000, 2, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'3608 Sinclair Avenue', N'# 701', N'1 (11) 500 555-0177', CAST(N'2003-11-01 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11069, 23, N'AW00011069', NULL, N'Carolyn', NULL, N'Navarro', 0, CAST(N'1955-09-21 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 80000.0000, 2, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 2, N'4606 Springwood Court', NULL, N'1 (11) 500 555-0145', CAST(N'2001-10-18 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11070, 39, N'AW00011070', NULL, N'Willie', N'T', N'Raji', 0, CAST(N'1955-04-05 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 80000.0000, 2, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'6260 Vernal Drive', NULL, N'1 (11) 500 555-0151', CAST(N'2001-10-29 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11071, 24, N'AW00011071', NULL, N'Linda', NULL, N'Serrano', 0, CAST(N'1955-06-26 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 80000.0000, 2, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'9808 Shaw Rd.', NULL, N'1 (11) 500 555-0130', CAST(N'2003-09-02 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11072, 17, N'AW00011072', NULL, N'Casey', NULL, N'Luo', 0, CAST(N'1955-02-06 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 80000.0000, 2, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 2, N'9513 Roslyn Drive', NULL, N'1 (11) 500 555-0125', CAST(N'2001-10-01 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11073, 16, N'AW00011073', NULL, N'Amy', NULL, N'Ye', 0, CAST(N'1956-08-14 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 70000.0000, 2, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'2262 Kirkwood Ct.', NULL, N'1 (11) 500 555-0185', CAST(N'2003-09-24 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11074, 28, N'AW00011074', NULL, N'Levi', N'A', N'Arun', 0, CAST(N'1956-08-28 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 70000.0000, 2, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'4661 Bluetail', NULL, N'1 (11) 500 555-0127', CAST(N'2003-09-24 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11075, 32, N'AW00011075', NULL, N'Felicia', N'L', N'Jimenez', 0, CAST(N'1957-11-16 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 80000.0000, 2, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Professional', N'Profesional', N'Cadre', N'1', 2, N'786 Eastgate Ave', NULL, N'1 (11) 500 555-0165', CAST(N'2001-10-29 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11076, 19, N'AW00011076', NULL, N'Blake', NULL, N'Anderson', 0, CAST(N'1957-07-13 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 80000.0000, 2, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Professional', N'Profesional', N'Cadre', N'1', 2, N'5436 Clear', N'# 101', N'1 (11) 500 555-0113', CAST(N'2001-10-22 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11077, 36, N'AW00011077', NULL, N'Leah', NULL, N'Ye', 0, CAST(N'1957-09-19 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 80000.0000, 2, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Professional', N'Profesional', N'Cadre', N'0', 2, N'1291 Arguello Blvd.', NULL, N'1 (11) 500 555-0154', CAST(N'2001-10-16 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11078, 49, N'AW00011078', NULL, N'Gina', N'E', N'Martin', 0, CAST(N'1974-01-10 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 40000.0000, 0, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Professional', N'Profesional', N'Cadre', N'0', 2, N'1349 Sol St.', NULL, N'196-555-0114', CAST(N'2003-08-19 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11079, 34, N'AW00011079', NULL, N'Donald', NULL, N'Gonzalez', 0, CAST(N'1959-03-11 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 160000.0000, 0, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Management', N'Gestión', N'Direction', N'1', 2, N'4236 Malibu Place', NULL, N'1 (11) 500 555-0137', CAST(N'2003-09-16 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11080, 30, N'AW00011080', NULL, N'Damien', NULL, N'Chander', 0, CAST(N'1959-07-17 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 170000.0000, 0, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Management', N'Gestión', N'Direction', N'1', 2, N'9941 Stonehedge Dr.', NULL, N'1 (11) 500 555-0111', CAST(N'2001-10-11 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11081, 311, N'AW00011081', NULL, N'Savannah', N'C', N'Baker', 0, CAST(N'1966-07-24 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 120000.0000, 2, 2, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Management', N'Gestión', N'Direction', N'1', 3, N'1210 Trafalgar Circle', NULL, N'478-555-0117', CAST(N'2003-08-16 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11082, 322, N'AW00011082', NULL, N'Angela', N'L', N'Butler', 0, CAST(N'1966-08-04 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 130000.0000, 0, 1, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Management', N'Gestión', N'Direction', N'0', 3, N'6040 Listing Ct', NULL, N'579-555-0195', CAST(N'2003-07-26 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11083, 336, N'AW00011083', NULL, N'Alyssa', N'F', N'Cox', 0, CAST(N'1966-03-15 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 130000.0000, 0, 1, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Management', N'Gestión', N'Direction', N'1', 3, N'867 La Orinda Place', NULL, N'561-555-0140', CAST(N'2003-07-10 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11084, 543, N'AW00011084', NULL, N'Lucas', NULL, N'Phillips', 0, CAST(N'1957-09-12 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 80000.0000, 2, 0, N'Partial High School', N'Educación secundaria (en curso)', N'Niveau bac', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 2, N'8668 St. Celestine Court', NULL, N'863-555-0172', CAST(N'2003-07-08 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11085, 345, N'AW00011085', NULL, N'Emily', NULL, N'Johnson', 0, CAST(N'1957-07-19 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 60000.0000, 2, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Professional', N'Profesional', N'Cadre', N'0', 2, N'7926 Stephanie Way', NULL, N'850-555-0184', CAST(N'2004-06-08 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11086, 369, N'AW00011086', NULL, N'Ryan', NULL, N'Brown', 0, CAST(N'1957-12-23 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 70000.0000, 2, 1, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Professional', N'Profesional', N'Cadre', N'1', 0, N'2939 Wesley Ct.', NULL, N'539-555-0198', CAST(N'2004-01-03 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11087, 307, N'AW00011087', NULL, N'Tamara', N'L', N'Liang', 0, CAST(N'1957-10-03 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 70000.0000, 3, 2, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Professional', N'Profesional', N'Cadre', N'0', 0, N'3791 Rossmor Parkway', NULL, N'178-555-0152', CAST(N'2003-08-29 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11088, 359, N'AW00011088', NULL, N'Hunter', NULL, N'Davis', 0, CAST(N'1957-11-25 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 80000.0000, 2, 1, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Management', N'Gestión', N'Direction', N'1', 0, N'4308 Sand Pointe Lane', NULL, N'612-555-0141', CAST(N'2003-07-17 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11089, 337, N'AW00011089', NULL, N'Abigail', N'M', N'Price', 0, CAST(N'1957-02-05 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 80000.0000, 2, 1, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Management', N'Gestión', N'Direction', N'1', 1, N'2685 Blackburn Ct', NULL, N'532-555-0117', CAST(N'2003-07-02 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11090, 338, N'AW00011090', NULL, N'Trevor', NULL, N'Bryant', 0, CAST(N'1957-12-17 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 90000.0000, 2, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Professional', N'Profesional', N'Cadre', N'1', 1, N'5781 Sharon Dr.', NULL, N'853-555-0174', CAST(N'2002-02-07 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11091, 50, N'AW00011091', NULL, N'Dalton', NULL, N'Perez', 0, CAST(N'1957-04-04 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 90000.0000, 2, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Professional', N'Profesional', N'Cadre', N'1', 1, N'6083 San Jose', NULL, N'559-555-0115', CAST(N'2003-08-02 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11092, 22, N'AW00011092', NULL, N'Cheryl', N'A', N'Diaz', 0, CAST(N'1967-05-06 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 90000.0000, 2, 2, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'1', 0, N'7297 Kaywood Drive', NULL, N'1 (11) 500 555-0192', CAST(N'2001-10-09 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11093, 19, N'AW00011093', NULL, N'Aimee', N'A', N'He', 0, CAST(N'1967-09-10 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 100000.0000, 0, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Management', N'Gestión', N'Direction', N'1', 0, N'1833 Olympic Drive', NULL, N'1 (11) 500 555-0161', CAST(N'2001-10-08 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11094, 33, N'AW00011094', NULL, N'Cedric', N'W', N'Ma', 0, CAST(N'1962-04-01 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 70000.0000, 1, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 1, N'3407 Oak Brook Place', NULL, N'1 (11) 500 555-0115', CAST(N'2003-10-09 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11095, 13, N'AW00011095', NULL, N'Chad', NULL, N'Kumar', 0, CAST(N'1962-09-01 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 70000.0000, 1, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 1, N'1681 Lighthouse Way', NULL, N'1 (11) 500 555-0151', CAST(N'2001-10-02 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11096, 12, N'AW00011096', NULL, N'Andrés', NULL, N'Anand', 0, CAST(N'1962-08-10 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'andré[email protected]', 60000.0000, 1, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'1', 1, N'5423 Los Gatos Ct.', NULL, N'1 (11) 500 555-0184', CAST(N'2001-10-12 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11097, 40, N'AW00011097', NULL, N'Edwin', N'R', N'Nara', 0, CAST(N'1961-10-27 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 60000.0000, 1, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 1, N'719 William Way', NULL, N'1 (11) 500 555-0112', CAST(N'2001-10-05 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11098, 14, N'AW00011098', NULL, N'Mallory', N'S', N'Rubio', 0, CAST(N'1961-05-01 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 60000.0000, 1, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 1, N'6452 Harris Circle', NULL, N'1 (11) 500 555-0157', CAST(N'2003-08-15 00:00:00.000' AS DateTime), N'0-1 Miles')

GO

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11099, 13, N'AW00011099', NULL, N'Adam', NULL, N'Ross', 0, CAST(N'1961-03-08 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 60000.0000, 1, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'1', 1, N'4378 Westminster Place', NULL, N'1 (11) 500 555-0186', CAST(N'2001-10-08 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11100, 28, N'AW00011100', NULL, N'Latasha', N'L', N'Navarro', 0, CAST(N'1960-09-15 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 60000.0000, 1, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 1, N'6954 Ranch Road', NULL, N'1 (11) 500 555-0123', CAST(N'2001-10-17 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11101, 33, N'AW00011101', NULL, N'Abby', N'L', N'Sai', 0, CAST(N'1965-05-08 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 70000.0000, 0, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'0', 1, N'7074 N. Spoonwood Court', NULL, N'1 (11) 500 555-0174', CAST(N'2001-10-30 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11102, 18, N'AW00011102', NULL, N'Julia', N'L', N'Nelson', 0, CAST(N'1965-04-21 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 80000.0000, 5, 5, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'1', 4, N'2196 Coat Ct.', NULL, N'1 (11) 500 555-0124', CAST(N'2004-01-17 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11103, 3, N'AW00011103', NULL, N'Cassie', NULL, N'Chande', 0, CAST(N'1964-10-17 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 70000.0000, 0, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'1', 1, N'9448 San Marino Ct.', NULL, N'1 (11) 500 555-0166', CAST(N'2001-10-16 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11104, 23, N'AW00011104', NULL, N'Edgar', N'A', N'Sara', 0, CAST(N'1964-03-11 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 70000.0000, 0, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'0', 1, N'6127 Lilly Lane', NULL, N'1 (11) 500 555-0125', CAST(N'2001-11-04 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11105, 8, N'AW00011105', NULL, N'Candace', NULL, N'Fernandez', 0, CAST(N'1964-12-28 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 70000.0000, 0, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'0', 1, N'5029 Blue Ridge', NULL, N'1 (11) 500 555-0162', CAST(N'2001-11-14 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11106, 40, N'AW00011106', NULL, N'Jessie', NULL, N'Liu', 0, CAST(N'1964-09-11 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 70000.0000, 0, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'0', 1, N'3063 Blue Jay Drive', NULL, N'1 (11) 500 555-0163', CAST(N'2001-11-18 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11107, 17, N'AW00011107', NULL, N'Bianca', NULL, N'Lin', 0, CAST(N'1959-09-09 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 90000.0000, 1, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'1', 1, N'7530 Eola', NULL, N'1 (11) 500 555-0121', CAST(N'2001-11-01 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11108, 13, N'AW00011108', NULL, N'Kari', N'C', N'Alvarez', 0, CAST(N'1963-07-14 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 70000.0000, 0, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'0', 2, N'9178 Thornhill Place', NULL, N'1 (11) 500 555-0169', CAST(N'2001-11-03 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11109, 38, N'AW00011109', NULL, N'Ruben', N'D', N'Kapoor', 0, CAST(N'1963-11-05 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 70000.0000, 0, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'0', 2, N'1984 Glendale Circle', NULL, N'1 (11) 500 555-0132', CAST(N'2001-11-10 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11110, 3, N'AW00011110', NULL, N'Curtis', NULL, N'Yang', 0, CAST(N'1962-06-06 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 60000.0000, 1, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 1, N'4052 Mt. Wilson Way', NULL, N'1 (11) 500 555-0127', CAST(N'2001-11-01 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11111, 34, N'AW00011111', NULL, N'Meredith', N'T', N'Gutierrez', 0, CAST(N'1962-02-23 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 60000.0000, 1, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 1, N'7610 Northridge Ct.', NULL, N'1 (11) 500 555-0179', CAST(N'2001-11-20 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11112, 25, N'AW00011112', NULL, N'Crystal', N'C', N'Wang', 0, CAST(N'1962-09-09 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 60000.0000, 1, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 1, N'2773 Kirkwood Dr', NULL, N'1 (11) 500 555-0134', CAST(N'2001-11-25 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11113, 30, N'AW00011113', NULL, N'Micheal', N'A', N'Blanco', 0, CAST(N'1962-02-21 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 70000.0000, 5, 4, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'1', 2, N'596 Marfargoa Drive', NULL, N'1 (11) 500 555-0131', CAST(N'2003-08-05 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11114, 14, N'AW00011114', NULL, N'Leslie', N'C', N'Moreno', 0, CAST(N'1962-05-28 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 70000.0000, 5, 4, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'7941 Cristobal', NULL, N'1 (11) 500 555-0115', CAST(N'2003-09-19 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11115, 17, N'AW00011115', NULL, N'Alvin', N'D', N'Cai', 0, CAST(N'1962-02-12 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 70000.0000, 5, 4, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'7759 Azalea Avenue', NULL, N'1 (11) 500 555-0191', CAST(N'2003-08-14 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11116, 18, N'AW00011116', NULL, N'Clinton', N'E', N'Carlson', 0, CAST(N'1962-10-07 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 70000.0000, 5, 4, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'7943 Cunha Ct.', NULL, N'1 (11) 500 555-0184', CAST(N'2003-09-16 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11117, 8, N'AW00011117', NULL, N'April', NULL, N'Deng', 0, CAST(N'1961-02-21 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 70000.0000, 5, 4, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 3, N'485 Ash Lane', NULL, N'1 (11) 500 555-0182', CAST(N'2001-11-06 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11118, 6, N'AW00011118', NULL, N'Alvin', N'M', N'Zeng', 0, CAST(N'1957-07-03 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 80000.0000, 1, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 1, N'3853 Wildcat Circle', N'Unit 13c12', N'1 (11) 500 555-0174', CAST(N'2004-01-11 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11119, 13, N'AW00011119', NULL, N'Evan', N'V', N'James', 0, CAST(N'1935-04-10 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 30000.0000, 2, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Clerical', N'Administrativo', N'Employé', N'0', 2, N'4157 Sierra Ridge', NULL, N'1 (11) 500 555-0187', CAST(N'2003-08-07 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11120, 18, N'AW00011120', NULL, N'Beth', N'H', N'Jiménez', 0, CAST(N'1936-08-09 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 40000.0000, 2, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Management', N'Gestión', N'Direction', N'1', 1, N'7401 Las Palmas', NULL, N'1 (11) 500 555-0164', CAST(N'2001-11-14 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11121, 10, N'AW00011121', NULL, N'Orlando', NULL, N'Suarez', 0, CAST(N'1960-11-18 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 70000.0000, 5, 4, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 3, N'7743 Hames Dr', NULL, N'1 (11) 500 555-0198', CAST(N'2003-12-26 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11122, 12, N'AW00011122', NULL, N'Byron', NULL, N'Vazquez', 0, CAST(N'1960-04-02 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 70000.0000, 5, 4, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 3, N'3187 Hackamore Lane', NULL, N'1 (11) 500 555-0136', CAST(N'2003-08-25 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11123, 39, N'AW00011123', NULL, N'Philip', N'A', N'Alvarez', 0, CAST(N'1960-06-20 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 70000.0000, 5, 4, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 3, N'2775 Mt. Olivet Pl.', NULL, N'1 (11) 500 555-0191', CAST(N'2003-10-19 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11124, 40, N'AW00011124', NULL, N'Ross', N'F', N'Jordan', 0, CAST(N'1957-07-27 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 80000.0000, 1, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 1, N'6973 Dublin Court', NULL, N'1 (11) 500 555-0126', CAST(N'2001-11-05 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11125, 37, N'AW00011125', NULL, N'Dana', N'J', N'Navarro', 0, CAST(N'1956-04-08 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 70000.0000, 1, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 1, N'8481 Zartop Street', NULL, N'1 (11) 500 555-0172', CAST(N'2003-08-04 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11126, 11, N'AW00011126', NULL, N'Shaun', NULL, N'Carson', 0, CAST(N'1949-04-07 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 10000.0000, 2, 1, N'High School', N'Educación secundaria', N'Bac + 2', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 2, N'57 Wolf Way', NULL, N'1 (11) 500 555-0155', CAST(N'2001-11-28 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11127, 361, N'AW00011127', NULL, N'Jan', NULL, N'Edwards', 0, CAST(N'1975-10-21 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 40000.0000, 0, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 1, N'9409 The Alameda', NULL, N'111-555-0118', CAST(N'2003-10-12 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11128, 635, N'AW00011128', NULL, N'Samantha', NULL, N'Long', 0, CAST(N'1975-12-05 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 40000.0000, 0, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 1, N'1606 Alderwood Lane', NULL, N'175-555-0139', CAST(N'2003-12-21 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11129, 638, N'AW00011129', NULL, N'Julia', N'M', N'Wright', 0, CAST(N'1975-08-05 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 40000.0000, 0, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 1, N'7397 Central Blvd.', NULL, N'456-555-0174', CAST(N'2002-02-06 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11130, 543, N'AW00011130', NULL, N'Caroline', N'L', N'Russell', 0, CAST(N'1980-01-06 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 30000.0000, 0, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'3884 Bates Court', NULL, N'424-555-0137', CAST(N'2004-06-11 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11131, 50, N'AW00011131', NULL, N'Amanda', NULL, N'Rivera', 0, CAST(N'1980-03-12 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 30000.0000, 0, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 2, N'9573 Royal Oak Rd.', NULL, N'918-555-0126', CAST(N'2004-04-20 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11132, 51, N'AW00011132', NULL, N'Melissa', N'E', N'Richardson', 0, CAST(N'1980-10-26 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 30000.0000, 0, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 2, N'6832 Fruitwood Dr', NULL, N'928-555-0118', CAST(N'2003-10-11 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11133, 542, N'AW00011133', NULL, N'Angela', NULL, N'Griffin', 0, CAST(N'1980-09-08 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 30000.0000, 0, 0, N'Partial High School', N'Educación secundaria (en curso)', N'Niveau bac', N'Clerical', N'Administrativo', N'Employé', N'0', 2, N'3828 Baltic Sea Ct', NULL, N'598-555-0174', CAST(N'2004-07-02 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11134, 30, N'AW00011134', NULL, N'Larry', N'D', N'Townsend', 0, CAST(N'1946-02-26 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 10000.0000, 5, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'7034 Carson', NULL, N'1 (11) 500 555-0130', CAST(N'2001-11-03 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11135, 302, N'AW00011135', NULL, N'Marcus', N'L', N'Harris', 0, CAST(N'1979-11-03 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 30000.0000, 0, 0, N'Partial High School', N'Educación secundaria (en curso)', N'Niveau bac', N'Clerical', N'Administrativo', N'Employé', N'0', 2, N'9068 Quiet Place Drive', NULL, N'442-555-0119', CAST(N'2003-10-20 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11136, 53, N'AW00011136', NULL, N'Brianna', N'D', N'Morgan', 0, CAST(N'1978-10-26 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 40000.0000, 0, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 2, N'9005 Eagle Ct.', NULL, N'954-555-0117', CAST(N'2003-07-07 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11137, 641, N'AW00011137', NULL, N'Jasmine', N'A', N'Taylor', 0, CAST(N'1978-07-20 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 40000.0000, 0, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'2457 Matterhorn Court', NULL, N'557-555-0146', CAST(N'2004-02-01 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11138, 325, N'AW00011138', NULL, N'Lauren', NULL, N'Davis', 0, CAST(N'1978-09-15 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 40000.0000, 0, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 2, N'8105 Pembrook Court', NULL, N'832-555-0121', CAST(N'2004-03-22 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11139, 28, N'AW00011139', NULL, N'Tanya', NULL, N'Moreno', 0, CAST(N'1938-11-09 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 30000.0000, 2, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Clerical', N'Administrativo', N'Employé', N'0', 2, N'6155 Wilbur Drive', NULL, N'1 (11) 500 555-0185', CAST(N'2004-03-17 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11140, 301, N'AW00011140', NULL, N'Javier', N'L', N'Alvarez', 0, CAST(N'1977-02-11 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 30000.0000, 0, 0, N'Partial High School', N'Educación secundaria (en curso)', N'Niveau bac', N'Clerical', N'Administrativo', N'Employé', N'0', 2, N'8935 Etcheverry Dr.', NULL, N'763-555-0134', CAST(N'2003-09-20 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11141, 314, N'AW00011141', NULL, N'Nicole', NULL, N'Ramirez', 0, CAST(N'1977-06-21 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 40000.0000, 0, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 2, N'1101 C Street', NULL, N'152-555-0162', CAST(N'2003-11-17 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11142, 51, N'AW00011142', NULL, N'Eduardo', NULL, N'Patterson', 0, CAST(N'1977-08-14 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 40000.0000, 0, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 2, N'6255 Macalvey Dr.', NULL, N'190-555-0184', CAST(N'2003-08-17 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11143, 334, N'AW00011143', NULL, N'Jonathan', N'M', N'Henderson', 0, CAST(N'1977-02-04 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 40000.0000, 0, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'165 East Lane Road', NULL, N'149-555-0113', CAST(N'2003-12-17 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11144, 607, N'AW00011144', NULL, N'Edward', NULL, N'Hernandez', 0, CAST(N'1979-09-09 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 40000.0000, 0, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 2, N'7607 Pine Hollow Road', NULL, N'178-555-0196', CAST(N'2003-07-29 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11145, 536, N'AW00011145', NULL, N'Jasmine', N'L', N'Coleman', 0, CAST(N'1979-12-08 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 40000.0000, 0, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 2, N'1961 Oak Grove Road', NULL, N'857-555-0115', CAST(N'2003-07-29 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11146, 8, N'AW00011146', NULL, N'Karla', N'L', N'Goel', 0, CAST(N'1939-08-26 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 40000.0000, 2, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Management', N'Gestión', N'Direction', N'1', 2, N'3272 Corrie Lane', NULL, N'1 (11) 500 555-0137', CAST(N'2003-08-09 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11147, 40, N'AW00011147', NULL, N'Ernest', N'L', N'Wu', 0, CAST(N'1939-02-05 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 60000.0000, 2, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Management', N'Gestión', N'Direction', N'1', 1, N'1832 RiverRock Dr', NULL, N'1 (11) 500 555-0139', CAST(N'2001-11-13 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11148, 22, N'AW00011148', NULL, N'Ross', NULL, N'Vazquez', 0, CAST(N'1941-08-16 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 40000.0000, 2, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Management', N'Gestión', N'Direction', N'1', 2, N'1201 Paso Del Rio Way', NULL, N'1 (11) 500 555-0163', CAST(N'2003-09-08 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11149, 25, N'AW00011149', NULL, N'Theodore', NULL, N'Gill', 0, CAST(N'1941-04-20 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 40000.0000, 2, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Management', N'Gestión', N'Direction', N'1', 2, N'9120 Pinewood Court', NULL, N'1 (11) 500 555-0194', CAST(N'2003-12-06 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11150, 39, N'AW00011150', NULL, N'Russell', N'M', N'Shen', 0, CAST(N'1941-03-15 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 40000.0000, 2, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Management', N'Gestión', N'Direction', N'1', 2, N'4755 Easley Drive', NULL, N'1 (11) 500 555-0191', CAST(N'2003-09-28 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11151, 18, N'AW00011151', NULL, N'Melinda', N'G', N'Gill', 0, CAST(N'1942-02-25 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 60000.0000, 2, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Management', N'Gestión', N'Direction', N'0', 1, N'805 Rainier Dr.', NULL, N'1 (11) 500 555-0117', CAST(N'2001-11-15 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11152, 633, N'AW00011152', NULL, N'James', N'J', N'Williams', 0, CAST(N'1976-01-10 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 40000.0000, 0, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'6827 Seagull Court', NULL, N'355-555-0153', CAST(N'2003-07-13 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11153, 635, N'AW00011153', NULL, N'Angela', N'R', N'James', 0, CAST(N'1976-06-23 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 40000.0000, 0, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'8877 Weatherly Drive', NULL, N'847-555-0111', CAST(N'2003-09-30 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11154, 553, N'AW00011154', NULL, N'Megan', N'G', N'Walker', 0, CAST(N'1976-08-21 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 40000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 1, N'6898 Holiday Hills', NULL, N'918-555-0186', CAST(N'2003-07-14 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11155, 301, N'AW00011155', NULL, N'Hunter', N'J', N'Robinson', 0, CAST(N'1976-01-26 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 40000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 1, N'8356 Mori Court', NULL, N'891-555-0125', CAST(N'2003-07-10 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11156, 334, N'AW00011156', NULL, N'Maria', NULL, N'Roberts', 0, CAST(N'1976-02-07 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 40000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 1, N'9452 Mariposa Ct.', NULL, N'158-555-0199', CAST(N'2003-07-12 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11157, 642, N'AW00011157', NULL, N'Hannah', N'E', N'Long', 0, CAST(N'1975-06-11 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 40000.0000, 0, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'1832 Preston Ct.', NULL, N'974-555-0177', CAST(N'2004-01-25 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11158, 361, N'AW00011158', NULL, N'Jason', N'K', N'Wright', 0, CAST(N'1975-10-08 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 40000.0000, 0, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'6771 Bundros Court', NULL, N'694-555-0176', CAST(N'2003-07-23 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11159, 385, N'AW00011159', NULL, N'Brianna', N'A', N'Hughes', 0, CAST(N'1975-09-17 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 40000.0000, 0, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 2, N'6793 Bonifacio St.', NULL, N'319-555-0183', CAST(N'2004-03-11 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11160, 311, N'AW00011160', NULL, N'Maurice', N'M', N'Tang', 0, CAST(N'1974-01-08 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 40000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 1, N'2886 Chaparral Court', N'Space # 45', N'947-555-0172', CAST(N'2003-08-25 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11161, 311, N'AW00011161', NULL, N'Emily', NULL, N'Wood', 0, CAST(N'1974-04-22 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 40000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 1, N'1562 Black Walnut', NULL, N'184-555-0114', CAST(N'2003-12-03 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11162, 331, N'AW00011162', NULL, N'Chase', NULL, N'Cox', 0, CAST(N'1974-03-05 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 40000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 1, N'P.O. Box 8070', NULL, N'764-555-0116', CAST(N'2003-08-22 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11163, 372, N'AW00011163', NULL, N'Gabriel', NULL, N'Wang', 0, CAST(N'1974-12-20 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 40000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 1, N'8002 Crane Court', NULL, N'617-555-0150', CAST(N'2003-11-02 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11164, 374, N'AW00011164', NULL, N'Devin', NULL, N'Brooks', 0, CAST(N'1974-05-05 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 40000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 1, N'4231 Highland Dr.', NULL, N'502-555-0138', CAST(N'2003-10-29 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11165, 348, N'AW00011165', NULL, N'Jocelyn', NULL, N'Alexander', 0, CAST(N'1973-07-18 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 60000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 1, N'3376 Bank Way', NULL, N'354-555-0134', CAST(N'2003-11-26 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11166, 631, N'AW00011166', NULL, N'Ashley', NULL, N'Martinez', 0, CAST(N'1972-04-24 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 70000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 2, N'6993 Whyte Park Ave.', NULL, N'131-555-0194', CAST(N'2004-04-16 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11167, 618, N'AW00011167', NULL, N'Jasmine', N'J', N'Barnes', 0, CAST(N'1972-08-01 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 80000.0000, 0, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Management', N'Gestión', N'Direction', N'0', 1, N'9183 Via Del Sol', NULL, N'178-555-0156', CAST(N'2003-07-11 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11168, 348, N'AW00011168', NULL, N'David', NULL, N'Rodriguez', 0, CAST(N'1968-05-15 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 80000.0000, 0, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Management', N'Gestión', N'Direction', N'0', 1, N'38 Shangri-la Rd.', NULL, N'730-555-0128', CAST(N'2003-07-19 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11169, 312, N'AW00011169', NULL, N'Bryce', NULL, N'Richardson', 0, CAST(N'1968-06-22 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 90000.0000, 4, 4, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Management', N'Gestión', N'Direction', N'1', 1, N'1841 Blackwood Drive', NULL, N'178-555-0176', CAST(N'2003-11-27 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11170, 612, N'AW00011170', NULL, N'Carol', N'T', N'Howard', 0, CAST(N'1968-02-05 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 90000.0000, 4, 4, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Management', N'Gestión', N'Direction', N'1', 1, N'6281 Edward Ave', NULL, N'845-555-0127', CAST(N'2004-02-27 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11171, 385, N'AW00011171', NULL, N'Jonathan', N'E', N'Hill', 0, CAST(N'1967-10-09 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 100000.0000, 1, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Management', N'Gestión', N'Direction', N'1', 2, N'3731 Chinquapin Ct', NULL, N'134-555-0196', CAST(N'2002-02-20 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11172, 626, N'AW00011172', NULL, N'Gabrielle', N'J', N'Adams', 0, CAST(N'1967-11-21 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 100000.0000, 1, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Management', N'Gestión', N'Direction', N'1', 2, N'5621 Arcadia Pl.', NULL, N'403-555-0152', CAST(N'2003-11-04 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11173, 552, N'AW00011173', NULL, N'Sarah', N'F', N'Thomas', 0, CAST(N'1967-09-01 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 110000.0000, 0, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Management', N'Gestión', N'Direction', N'0', 4, N'5636 Mt. Whitney Dr.', NULL, N'868-555-0188', CAST(N'2003-09-03 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11174, 338, N'AW00011174', NULL, N'Nicholas', NULL, N'Robinson', 0, CAST(N'1967-07-13 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 110000.0000, 0, 1, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Management', N'Gestión', N'Direction', N'1', 0, N'1318 Lasalle Street', NULL, N'949-555-0138', CAST(N'2004-01-14 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11175, 300, N'AW00011175', NULL, N'Luis', NULL, N'Wang', 0, CAST(N'1963-03-05 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 70000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'6943 Patterson Blvd.', NULL, N'418-555-0127', CAST(N'2002-02-28 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11176, 50, N'AW00011176', NULL, N'Mason', N'D', N'Roberts', 0, CAST(N'1968-01-25 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 90000.0000, 4, 4, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Management', N'Gestión', N'Direction', N'1', 1, N'5753 Megan Dr.', NULL, N'539-555-0162', CAST(N'2003-08-06 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11177, 359, N'AW00011177', NULL, N'Jose', N'M', N'Flores', 0, CAST(N'1942-07-04 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 110000.0000, 2, 4, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Management', N'Gestión', N'Direction', N'1', 2, N'3991 Rambling Rose Drive', NULL, N'157-555-0182', CAST(N'2003-09-30 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11178, 334, N'AW00011178', NULL, N'Nathan', N'J', N'Johnson', 0, CAST(N'1943-08-24 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 100000.0000, 2, 3, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Management', N'Gestión', N'Direction', N'1', 3, N'8927 Daylight Place', NULL, N'117-555-0182', CAST(N'2003-08-25 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11179, 300, N'AW00011179', NULL, N'Molly', N'E', N'Rodriguez', 0, CAST(N'1943-06-14 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 120000.0000, 2, 4, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Management', N'Gestión', N'Direction', N'1', 3, N'5556 Riverland Dr.', NULL, N'135-555-0185', CAST(N'2003-09-13 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11180, 307, N'AW00011180', NULL, N'April', NULL, N'Anand', 0, CAST(N'1943-01-02 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 160000.0000, 1, 3, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Management', N'Gestión', N'Direction', N'1', 4, N'3531 Brookview Drive', NULL, N'702-555-0144', CAST(N'2003-09-18 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11181, 338, N'AW00011181', NULL, N'Devin', N'P', N'Martin', 0, CAST(N'1943-08-08 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 170000.0000, 2, 3, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Management', N'Gestión', N'Direction', N'1', 2, N'1085 Greenbelt Way', N'Unit B-105', N'735-555-0197', CAST(N'2003-11-08 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11182, 638, N'AW00011182', NULL, N'Stephanie', NULL, N'Torres', 0, CAST(N'1944-08-25 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 70000.0000, 4, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Management', N'Gestión', N'Direction', N'1', 2, N'6968 Mildred Ln.', NULL, N'567-555-0176', CAST(N'2004-02-29 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11183, 368, N'AW00011183', NULL, N'Jasmine', N'W', N'Lee', 0, CAST(N'1944-07-15 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 70000.0000, 4, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Management', N'Gestión', N'Direction', N'1', 2, N'7502 Contuti Avenue', NULL, N'147-555-0199', CAST(N'2003-11-01 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11184, 311, N'AW00011184', NULL, N'Meghan', NULL, N'Hernandez', 0, CAST(N'1944-11-16 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 70000.0000, 4, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Management', N'Gestión', N'Direction', N'1', 2, N'5872 L St.', NULL, N'967-555-0188', CAST(N'2004-02-11 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11185, 53, N'AW00011185', NULL, N'Ashley', NULL, N'Henderson', 0, CAST(N'1944-10-08 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 70000.0000, 4, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Management', N'Gestión', N'Direction', N'1', 2, N'8834 San Jose Ave.', NULL, N'173-555-0121', CAST(N'2003-08-25 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11186, 352, N'AW00011186', NULL, N'Sarah', N'C', N'Price', 0, CAST(N'1944-05-21 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 70000.0000, 4, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Management', N'Gestión', N'Direction', N'1', 2, N'4815 Paraiso Ct.', NULL, N'180-555-0133', CAST(N'2004-04-20 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11187, 612, N'AW00011187', NULL, N'Jennifer', N'S', N'Cooper', 0, CAST(N'1944-02-22 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 60000.0000, 4, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Management', N'Gestión', N'Direction', N'1', 2, N'2429 Longview Road', NULL, N'857-555-0111', CAST(N'2003-10-05 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11188, 361, N'AW00011188', NULL, N'Catherine', NULL, N'Morris', 0, CAST(N'1944-09-06 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 60000.0000, 4, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Management', N'Gestión', N'Direction', N'0', 2, N'6542 Stonewood Drive', NULL, N'795-555-0117', CAST(N'2004-05-04 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11189, 609, N'AW00011189', NULL, N'Lawrence', N'W', N'Blanco', 0, CAST(N'1944-07-15 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 60000.0000, 4, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Management', N'Gestión', N'Direction', N'1', 2, N'7502 Contuti Avenue', NULL, N'656-555-0171', CAST(N'2002-02-26 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11190, 300, N'AW00011190', NULL, N'Carson', NULL, N'Bryant', 0, CAST(N'1944-06-22 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 70000.0000, 5, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Management', N'Gestión', N'Direction', N'1', 2, N'2995 Youngsdale Dr.', NULL, N'240-555-0142', CAST(N'2004-02-29 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11191, 310, N'AW00011191', NULL, N'Kristi', N'E', N'Perez', 0, CAST(N'1945-12-18 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 70000.0000, 5, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Management', N'Gestión', N'Direction', N'1', 3, N'1769 Lislin Ct', NULL, N'123-555-0181', CAST(N'2002-02-11 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11192, 637, N'AW00011192', NULL, N'James', N'C', N'Brown', 0, CAST(N'1945-09-13 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 60000.0000, 4, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Management', N'Gestión', N'Direction', N'1', 2, N'673 Old Mountain View Dr.', NULL, N'725-555-0117', CAST(N'2003-12-25 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11193, 553, N'AW00011193', NULL, N'Ian', N'A', N'Gray', 0, CAST(N'1945-02-13 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 60000.0000, 4, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Management', N'Gestión', N'Direction', N'1', 2, N'5941 Gill Dr.', NULL, N'596-555-0190', CAST(N'2003-08-29 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11194, 352, N'AW00011194', NULL, N'Jacqueline', N'R', N'Price', 0, CAST(N'1945-06-10 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 60000.0000, 4, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Management', N'Gestión', N'Direction', N'1', 2, N'872 Mark Twain Dr', NULL, N'266-555-0112', CAST(N'2003-09-14 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11195, 635, N'AW00011195', NULL, N'Megan', NULL, N'Henderson', 0, CAST(N'1946-02-10 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 60000.0000, 5, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Management', N'Gestión', N'Direction', N'1', 3, N'8411 Mt. Olivet Place', NULL, N'560-555-0150', CAST(N'2003-10-16 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11196, 536, N'AW00011196', NULL, N'Alfredo', NULL, N'Romero', 0, CAST(N'1946-06-07 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 60000.0000, 5, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Management', N'Gestión', N'Direction', N'1', 3, N'2499 Greendell Pl', NULL, N'342-555-0110', CAST(N'2003-09-04 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11197, 637, N'AW00011197', NULL, N'Andrea', NULL, N'Morris', 0, CAST(N'1946-06-18 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 70000.0000, 3, 1, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Management', N'Gestión', N'Direction', N'0', 1, N'1883 Green View Court', NULL, N'715-555-0178', CAST(N'2003-11-03 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11198, 368, N'AW00011198', NULL, N'Brooke', NULL, N'Sanders', 0, CAST(N'1946-11-26 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 70000.0000, 4, 1, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Management', N'Gestión', N'Direction', N'1', 1, N'5192 Dumbarton Drive', NULL, N'215-555-0156', CAST(N'2003-08-09 00:00:00.000' AS DateTime), N'10+ Miles')

GO

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11199, 302, N'AW00011199', NULL, N'Jacqueline', NULL, N'Bennett', 0, CAST(N'1946-11-06 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 70000.0000, 4, 1, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Management', N'Gestión', N'Direction', N'1', 1, N'8948 Chinquapin Court', NULL, N'413-555-0174', CAST(N'2003-09-19 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11200, 69, N'AW00011200', NULL, N'Jason', N'L', N'Griffin', 0, CAST(N'1947-11-22 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 70000.0000, 4, 1, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Management', N'Gestión', N'Direction', N'1', 1, N'7239 Nicholas Drive', NULL, N'232-555-0160', CAST(N'2003-08-11 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11201, 369, N'AW00011201', NULL, N'Amanda', NULL, N'Foster', 0, CAST(N'1947-08-18 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 70000.0000, 4, 1, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Management', N'Gestión', N'Direction', N'1', 1, N'3984 San Francisco', NULL, N'505-555-0159', CAST(N'2004-01-02 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11202, 334, N'AW00011202', NULL, N'Alexia', N'L', N'Price', 0, CAST(N'1947-08-26 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 80000.0000, 5, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Management', N'Gestión', N'Direction', N'0', 2, N'2079 Wellington Ct', NULL, N'552-555-0118', CAST(N'2004-03-18 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11203, 60, N'AW00011203', NULL, N'Luis', N'D', N'Diaz', 0, CAST(N'1948-08-21 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 40000.0000, 2, 1, N'High School', N'Educación secundaria', N'Bac + 2', N'Professional', N'Profesional', N'Cadre', N'1', 2, N'3682 Diablo View Road', NULL, N'171-555-0126', CAST(N'2003-08-24 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11204, 536, N'AW00011204', NULL, N'Destiny', N'C', N'Rivera', 0, CAST(N'1948-06-01 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 40000.0000, 2, 1, N'High School', N'Educación secundaria', N'Bac + 2', N'Professional', N'Profesional', N'Cadre', N'1', 2, N'6965 Appalachian Drive', NULL, N'743-555-0111', CAST(N'2004-02-10 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11205, 612, N'AW00011205', NULL, N'Abby', NULL, N'Fernandez', 0, CAST(N'1948-07-24 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 40000.0000, 2, 1, N'High School', N'Educación secundaria', N'Bac + 2', N'Professional', N'Profesional', N'Cadre', N'1', 2, N'8330 Glenside Court', NULL, N'134-555-0119', CAST(N'2004-01-28 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11206, 626, N'AW00011206', NULL, N'Blake', NULL, N'Flores', 0, CAST(N'1948-09-24 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 60000.0000, 2, 1, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Professional', N'Profesional', N'Cadre', N'1', 1, N'9410 Ferry St.', NULL, N'975-555-0163', CAST(N'2003-11-12 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11207, 635, N'AW00011207', NULL, N'Danielle', NULL, N'Cox', 0, CAST(N'1948-07-19 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 60000.0000, 2, 1, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Professional', N'Profesional', N'Cadre', N'1', 1, N'2346 Wren Ave', NULL, N'396-555-0158', CAST(N'2003-08-04 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11208, 325, N'AW00011208', NULL, N'Maria', NULL, N'Reed', 0, CAST(N'1948-02-04 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 60000.0000, 2, 1, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Management', N'Gestión', N'Direction', N'1', 0, N'1413 Bridgeview St', NULL, N'156-555-0163', CAST(N'2003-09-05 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11209, 336, N'AW00011209', NULL, N'Allison', NULL, N'Evans', 0, CAST(N'1948-01-13 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 60000.0000, 2, 1, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Management', N'Gestión', N'Direction', N'1', 0, N'3515 Sutton Circle', NULL, N'988-555-0151', CAST(N'2003-09-26 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11210, 383, N'AW00011210', NULL, N'Edward', N'J', N'Wood', 0, CAST(N'1948-06-08 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 70000.0000, 4, 1, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Professional', N'Profesional', N'Cadre', N'1', 2, N'1039 Adelaide St.', NULL, N'229-555-0114', CAST(N'2003-11-07 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11211, 50, N'AW00011211', NULL, N'Samantha', NULL, N'Russell', 0, CAST(N'1949-10-12 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 40000.0000, 2, 1, N'High School', N'Educación secundaria', N'Bac + 2', N'Professional', N'Profesional', N'Cadre', N'1', 2, N'9256 Village Oaks Dr.', NULL, N'547-555-0121', CAST(N'2003-08-05 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11212, 53, N'AW00011212', NULL, N'Chloe', NULL, N'Campbell', 0, CAST(N'1949-11-05 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 40000.0000, 2, 1, N'High School', N'Educación secundaria', N'Bac + 2', N'Professional', N'Profesional', N'Cadre', N'1', 2, N'3562 East Ave.', N'# 4', N'205-555-0169', CAST(N'2003-08-03 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11213, 614, N'AW00011213', NULL, N'Stephanie', N'B', N'Murphy', 0, CAST(N'1949-05-14 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 60000.0000, 2, 1, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Professional', N'Profesional', N'Cadre', N'1', 2, N'5514 Grant Street', NULL, N'293-555-0151', CAST(N'2003-09-29 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11214, 545, N'AW00011214', NULL, N'Charles', N'O', N'Miller', 0, CAST(N'1949-11-07 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 60000.0000, 2, 1, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Professional', N'Profesional', N'Cadre', N'1', 2, N'2719 Little Dr', NULL, N'389-555-0115', CAST(N'2004-02-15 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11215, 62, N'AW00011215', NULL, N'Ana', NULL, N'Perry', 0, CAST(N'1950-06-21 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 40000.0000, 2, 1, N'Partial High School', N'Educación secundaria (en curso)', N'Niveau bac', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'3114 Arlington Way', NULL, N'446-555-0134', CAST(N'2003-08-19 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11216, 547, N'AW00011216', NULL, N'Jasmine', N'A', N'Torres', 0, CAST(N'1950-05-20 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 60000.0000, 2, 1, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Professional', N'Profesional', N'Cadre', N'1', 2, N'8328 San Francisco', NULL, N'939-555-0130', CAST(N'2002-02-15 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11217, 547, N'AW00011217', NULL, N'Natalie', N'P', N'Adams', 0, CAST(N'1950-02-11 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 60000.0000, 2, 1, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Professional', N'Profesional', N'Cadre', N'1', 2, N'6592 Bent Tree Lane', NULL, N'300-555-0150', CAST(N'2002-02-10 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11218, 642, N'AW00011218', NULL, N'Olivia', NULL, N'Brown', 0, CAST(N'1950-09-11 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 60000.0000, 2, 1, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Professional', N'Profesional', N'Cadre', N'0', 2, N'3964 Stony Hill Circle', NULL, N'414-555-0147', CAST(N'2003-09-01 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11219, 553, N'AW00011219', NULL, N'Charles', NULL, N'Cook', 0, CAST(N'1950-12-02 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 60000.0000, 2, 1, N'High School', N'Educación secundaria', N'Bac + 2', N'Professional', N'Profesional', N'Cadre', N'1', 2, N'6871 Bel Air Dr.', NULL, N'755-555-0111', CAST(N'2004-05-01 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11220, 310, N'AW00011220', NULL, N'Erica', N'C', N'Huang', 0, CAST(N'1950-02-23 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 60000.0000, 2, 1, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Professional', N'Profesional', N'Cadre', N'1', 1, N'9142 All Ways Drive', NULL, N'618-555-0157', CAST(N'2003-09-15 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11221, 334, N'AW00011221', NULL, N'Nathan', NULL, N'Perry', 0, CAST(N'1950-06-10 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 70000.0000, 4, 2, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Professional', N'Profesional', N'Cadre', N'1', 1, N'9714 Nicholas Drive', NULL, N'271-555-0191', CAST(N'2003-10-09 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11222, 369, N'AW00011222', NULL, N'Alexandra', NULL, N'Rivera', 0, CAST(N'1950-08-17 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 80000.0000, 3, 1, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Management', N'Gestión', N'Direction', N'1', 1, N'4999 Corte Segunda', NULL, N'488-555-0143', CAST(N'2004-05-04 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11223, 52, N'AW00011223', NULL, N'Hailey', N'I', N'Patterson', 0, CAST(N'1951-09-16 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 70000.0000, 2, 1, N'High School', N'Educación secundaria', N'Bac + 2', N'Professional', N'Profesional', N'Cadre', N'1', 2, N'5045 Vancouver Way', N'# 133', N'480-555-0126', CAST(N'2003-08-02 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11224, 612, N'AW00011224', NULL, N'Tiffany', N'J', N'Li', 0, CAST(N'1951-09-06 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 70000.0000, 2, 1, N'High School', N'Educación secundaria', N'Bac + 2', N'Professional', N'Profesional', N'Cadre', N'1', 2, N'6404 Del Mar Ave', NULL, N'197-555-0118', CAST(N'2002-02-07 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11225, 635, N'AW00011225', NULL, N'Madison', N'D', N'Lee', 0, CAST(N'1951-02-16 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 60000.0000, 2, 1, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Professional', N'Profesional', N'Cadre', N'1', 1, N'5927 Seaview Avenue', NULL, N'471-555-0142', CAST(N'2003-12-24 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11226, 552, N'AW00011226', NULL, N'Sydney', N'T', N'Ross', 0, CAST(N'1951-09-27 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 60000.0000, 2, 1, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Professional', N'Profesional', N'Cadre', N'1', 1, N'5252 Santa Fe', NULL, N'219-555-0146', CAST(N'2003-08-25 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11227, 310, N'AW00011227', NULL, N'Marshall', N'D', N'Chavez', 0, CAST(N'1951-08-12 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 60000.0000, 2, 1, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Professional', N'Profesional', N'Cadre', N'1', 2, N'9022 Estudillo Street', NULL, N'712-555-0116', CAST(N'2002-02-03 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11228, 316, N'AW00011228', NULL, N'Ashley', N'R', N'Jones', 0, CAST(N'1951-04-19 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 60000.0000, 2, 1, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Professional', N'Profesional', N'Cadre', N'1', 2, N'7681 Willow Pass Road', NULL, N'996-555-0169', CAST(N'2004-04-27 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11229, 355, N'AW00011229', NULL, N'Adrian', N'C', N'Stewart', 0, CAST(N'1951-12-03 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 70000.0000, 4, 2, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Professional', N'Profesional', N'Cadre', N'1', 1, N'6898 Shaw Rd.', NULL, N'812-555-0122', CAST(N'2004-01-28 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11230, 369, N'AW00011230', NULL, N'Amber', NULL, N'Turner', 0, CAST(N'1951-04-03 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 70000.0000, 4, 2, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Professional', N'Profesional', N'Cadre', N'0', 2, N'6345 Ridge Circle', NULL, N'155-555-0131', CAST(N'2004-01-17 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11231, 611, N'AW00011231', NULL, N'Dennis', NULL, N'Zhang', 0, CAST(N'1952-11-14 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 60000.0000, 2, 1, N'High School', N'Educación secundaria', N'Bac + 2', N'Professional', N'Profesional', N'Cadre', N'1', 2, N'3951 Calle Verde Drive', NULL, N'710-555-0134', CAST(N'2003-08-14 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11232, 616, N'AW00011232', NULL, N'Hailey', N'R', N'Bryant', 0, CAST(N'1952-09-27 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 60000.0000, 3, 1, N'High School', N'Educación secundaria', N'Bac + 2', N'Professional', N'Profesional', N'Cadre', N'0', 2, N'2828 Rogers Ave.', NULL, N'156-555-0195', CAST(N'2004-03-23 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11233, 299, N'AW00011233', NULL, N'Todd', NULL, N'Li', 0, CAST(N'1952-09-09 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 70000.0000, 4, 2, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Professional', N'Profesional', N'Cadre', N'1', 2, N'5897 Scottsdale Rd.', NULL, N'680-555-0147', CAST(N'2003-08-12 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11234, 337, N'AW00011234', NULL, N'Anna', NULL, N'Griffin', 0, CAST(N'1952-11-19 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 70000.0000, 4, 2, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Professional', N'Profesional', N'Cadre', N'1', 2, N'7221 Peachwillow Street', NULL, N'965-555-0146', CAST(N'2003-08-12 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11235, 607, N'AW00011235', NULL, N'Angel', N'J', N'Stewart', 0, CAST(N'1952-02-08 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 70000.0000, 4, 2, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Professional', N'Profesional', N'Cadre', N'1', 2, N'2585 La Salle Ct.', NULL, N'540-555-0122', CAST(N'2004-01-05 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11236, 609, N'AW00011236', NULL, N'Jeremy', NULL, N'Butler', 0, CAST(N'1952-03-05 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 70000.0000, 5, 2, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Professional', N'Profesional', N'Cadre', N'1', 2, N'8811 The Trees Dr.', NULL, N'980-555-0117', CAST(N'2004-04-05 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11237, 161, N'AW00011237', NULL, N'Clarence', N'M', N'Anand', 0, CAST(N'1958-09-23 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 130000.0000, 2, 3, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Management', N'Gestión', N'Direction', N'0', 4, N'Welt Platz 6', NULL, N'1 (11) 500 555-0191', CAST(N'2002-03-08 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11238, 232, N'AW00011238', NULL, N'Mayra', NULL, N'Prasad', 0, CAST(N'1958-08-10 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 130000.0000, 2, 3, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Management', N'Gestión', N'Direction', N'0', 4, N'1119 Elderwood Dr.', N'#3', N'1 (11) 500 555-0116', CAST(N'2001-07-09 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11239, 249, N'AW00011239', NULL, N'Latoya', N'C', N'Goel', 0, CAST(N'1958-10-06 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 130000.0000, 2, 4, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Professional', N'Profesional', N'Cadre', N'0', 2, N'8154 Pheasant Circle', NULL, N'1 (11) 500 555-0149', CAST(N'2001-07-22 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11240, 273, N'AW00011240', NULL, N'Anne', N'B', N'Hernandez', 0, CAST(N'1958-12-11 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 160000.0000, 2, 3, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Professional', N'Profesional', N'Cadre', N'1', 4, N'76 Woodcrest Dr.', NULL, N'1 (11) 500 555-0119', CAST(N'2001-08-30 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11241, 211, N'AW00011241', NULL, N'Lisa', NULL, N'Cai', 0, CAST(N'1957-10-11 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 100000.0000, 2, 3, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Professional', N'Profesional', N'Cadre', N'1', 4, N'102, rue de Berri', NULL, N'1 (11) 500 555-0125', CAST(N'2003-03-14 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11242, 209, N'AW00011242', NULL, N'Larry', NULL, N'Munoz', 0, CAST(N'1957-11-11 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 110000.0000, 2, 4, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Professional', N'Profesional', N'Cadre', N'1', 3, N'Midi-Couleurs', NULL, N'1 (11) 500 555-0193', CAST(N'2003-03-23 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11243, 237, N'AW00011243', NULL, N'Robin', N'V', N'Alvarez', 0, CAST(N'1957-10-09 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 150000.0000, 2, 3, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Professional', N'Profesional', N'Cadre', N'1', 3, N'4086 Emmons Canyon Lane', NULL, N'1 (11) 500 555-0198', CAST(N'2001-08-24 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11244, 267, N'AW00011244', NULL, N'Alexis', N'M', N'Coleman', 0, CAST(N'1957-11-26 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 170000.0000, 2, 3, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Management', N'Gestión', N'Direction', N'0', 3, N'7140 Camelback Road', NULL, N'1 (11) 500 555-0115', CAST(N'2001-08-15 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11245, 132, N'AW00011245', NULL, N'Ricky', N'D', N'Vazquez', 0, CAST(N'1956-10-27 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 120000.0000, 3, 4, N'High School', N'Educación secundaria', N'Bac + 2', N'Professional', N'Profesional', N'Cadre', N'0', 4, N'Roßstr 9928', NULL, N'1 (11) 500 555-0147', CAST(N'2002-03-29 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11246, 147, N'AW00011246', NULL, N'Latasha', NULL, N'Rubio', 0, CAST(N'1956-10-09 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 120000.0000, 3, 4, N'High School', N'Educación secundaria', N'Bac + 2', N'Professional', N'Profesional', N'Cadre', N'0', 4, N'Alderstr 7690', NULL, N'1 (11) 500 555-0178', CAST(N'2002-04-05 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11247, 242, N'AW00011247', NULL, N'Claudia', N'M', N'Zhou', 0, CAST(N'1956-06-06 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 130000.0000, 3, 4, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Professional', N'Profesional', N'Cadre', N'0', 3, N'6516 Beauer Lane', NULL, N'1 (11) 500 555-0116', CAST(N'2001-08-21 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11248, 223, N'AW00011248', NULL, N'Tristan', N'P', N'Alexander', 0, CAST(N'1955-03-26 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 110000.0000, 3, 4, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Professional', N'Profesional', N'Cadre', N'1', 4, N'88, avenue des Champs-Elysées', NULL, N'1 (11) 500 555-0124', CAST(N'2004-01-15 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11249, 178, N'AW00011249', NULL, N'Cindy', N'A', N'Patel', 0, CAST(N'1955-07-13 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 130000.0000, 3, 4, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Professional', N'Profesional', N'Cadre', N'1', 3, N'Essener Straße 123', NULL, N'1 (11) 500 555-0149', CAST(N'2002-04-11 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11250, 276, N'AW00011250', NULL, N'Shannon', N'D', N'Liu', 0, CAST(N'1955-03-12 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 170000.0000, 3, 4, N'High School', N'Educación secundaria', N'Bac + 2', N'Professional', N'Profesional', N'Cadre', N'1', 2, N'4185 Keywood Ct.', NULL, N'1 (11) 500 555-0119', CAST(N'2001-09-17 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11251, 50, N'AW00011251', NULL, N'Xavier', NULL, N'Long', 0, CAST(N'1932-07-04 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 30000.0000, 4, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Professional', N'Profesional', N'Cadre', N'0', 2, N'9245 Dantley Way', NULL, N'243-555-0114', CAST(N'2004-04-20 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11252, 335, N'AW00011252', NULL, N'Nicholas', N'D', N'Thompson', 0, CAST(N'1932-06-07 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 90000.0000, 3, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Management', N'Gestión', N'Direction', N'1', 1, N'504 O St.', NULL, N'377-555-0147', CAST(N'2002-02-14 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11253, 69, N'AW00011253', NULL, N'José', N'M', N'Hernandez', 0, CAST(N'1933-02-28 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'josé[email protected]', 60000.0000, 2, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Management', N'Gestión', N'Direction', N'1', 2, N'5703 Donald Dr.', NULL, N'712-555-0130', CAST(N'2003-09-02 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11254, 612, N'AW00011254', NULL, N'Johnathan', N'W', N'Vance', 0, CAST(N'1933-03-03 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 70000.0000, 4, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Management', N'Gestión', N'Direction', N'1', 2, N'9430 Versailles Pl', NULL, N'494-555-0166', CAST(N'2004-05-26 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11255, 612, N'AW00011255', NULL, N'Colin', NULL, N'Lin', 0, CAST(N'1933-04-04 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 70000.0000, 4, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Management', N'Gestión', N'Direction', N'1', 2, N'6083 San Jose', NULL, N'599-555-0132', CAST(N'2003-08-27 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11256, 626, N'AW00011256', NULL, N'Katelyn', N'L', N'Hernandez', 0, CAST(N'1933-09-20 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 70000.0000, 4, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Management', N'Gestión', N'Direction', N'1', 2, N'7496 Deerfield Dr.', NULL, N'249-555-0116', CAST(N'2003-10-17 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11257, 345, N'AW00011257', NULL, N'Jacqueline', NULL, N'Powell', 0, CAST(N'1933-01-06 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 120000.0000, 1, 2, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Management', N'Gestión', N'Direction', N'1', 4, N'4076 Northwood Dr', NULL, N'796-555-0111', CAST(N'2002-02-24 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11258, 352, N'AW00011258', NULL, N'Xavier', NULL, N'Hill', 0, CAST(N'1933-06-28 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 120000.0000, 1, 2, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Management', N'Gestión', N'Direction', N'1', 4, N'2707 Virgil Street', NULL, N'559-555-0149', CAST(N'2003-11-22 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11259, 548, N'AW00011259', NULL, N'Victoria', N'C', N'Stewart', 0, CAST(N'1965-03-27 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 100000.0000, 4, 1, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Professional', N'Profesional', N'Cadre', N'1', 4, N'3623 Barquentine Court', NULL, N'230-555-0139', CAST(N'2002-03-07 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11260, 302, N'AW00011260', NULL, N'Katelyn', N'L', N'Kelly', 0, CAST(N'1965-04-12 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 110000.0000, 2, 2, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Management', N'Gestión', N'Direction', N'1', 3, N'7085 Solano Drive', NULL, N'507-555-0132', CAST(N'2003-08-09 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11261, 359, N'AW00011261', NULL, N'Stephanie', NULL, N'Collins', 0, CAST(N'1965-04-24 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 130000.0000, 1, 2, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Management', N'Gestión', N'Direction', N'1', 1, N'2868 Central Avenue', NULL, N'209-555-0173', CAST(N'2002-03-30 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11262, 60, N'AW00011262', NULL, N'Jennifer', NULL, N'Simmons', 0, CAST(N'1964-05-04 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 80000.0000, 4, 3, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Management', N'Gestión', N'Direction', N'1', 0, N'7959 Mt. Wilson Way', NULL, N'148-555-0115', CAST(N'2003-08-31 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11263, 612, N'AW00011263', NULL, N'Trinity', NULL, N'Richardson', 0, CAST(N'1964-09-11 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 90000.0000, 5, 5, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Professional', N'Profesional', N'Cadre', N'1', 3, N'3063 Blue Jay Drive', NULL, N'111-555-0116', CAST(N'2002-03-01 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11264, 618, N'AW00011264', NULL, N'Eduardo', NULL, N'Martin', 0, CAST(N'1964-06-17 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 90000.0000, 5, 5, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Professional', N'Profesional', N'Cadre', N'0', 3, N'5137 Pheasant Court', NULL, N'342-555-0195', CAST(N'2003-07-06 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11265, 623, N'AW00011265', NULL, N'Elizabeth', N'P', N'Jones', 0, CAST(N'1964-07-13 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 90000.0000, 5, 5, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Professional', N'Profesional', N'Cadre', N'1', 3, N'2253 Firestone Dr.', NULL, N'941-555-0110', CAST(N'2003-07-07 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11266, 632, N'AW00011266', NULL, N'Taylor', NULL, N'Howard', 0, CAST(N'1964-05-05 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 90000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Professional', N'Profesional', N'Cadre', N'0', 1, N'7396 Stratton Circle', NULL, N'162-555-0131', CAST(N'2002-03-13 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11267, 302, N'AW00011267', NULL, N'David', NULL, N'Diaz', 0, CAST(N'1964-10-02 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 120000.0000, 4, 2, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Professional', N'Profesional', N'Cadre', N'1', 4, N'2075 Browse Ct', NULL, N'613-555-0119', CAST(N'2002-03-20 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11268, 312, N'AW00011268', NULL, N'Katelyn', N'A', N'Carter', 0, CAST(N'1964-05-03 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 130000.0000, 2, 2, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Management', N'Gestión', N'Direction', N'1', 2, N'3050 Monte Cresta Avenue', NULL, N'103-555-0195', CAST(N'2003-11-30 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11269, 314, N'AW00011269', NULL, N'Ryan', N'W', N'Foster', 0, CAST(N'1964-10-13 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 130000.0000, 2, 2, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Management', N'Gestión', N'Direction', N'1', 2, N'5376 Sahara Drive', NULL, N'961-555-0133', CAST(N'2004-02-23 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11270, 334, N'AW00011270', NULL, N'Robert', N'L', N'Lee', 0, CAST(N'1964-05-04 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 130000.0000, 2, 2, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Management', N'Gestión', N'Direction', N'1', 3, N'5461 Camino Verde Ct.', NULL, N'447-555-0174', CAST(N'2002-03-13 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11271, 360, N'AW00011271', NULL, N'Danielle', N'C', N'Reed', 0, CAST(N'1964-06-05 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 150000.0000, 2, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Management', N'Gestión', N'Direction', N'0', 4, N'6683 Carrick Ct', NULL, N'136-555-0114', CAST(N'2002-03-30 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11272, 300, N'AW00011272', NULL, N'Lauren', N'L', N'Martinez', 0, CAST(N'1956-11-10 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 70000.0000, 4, 3, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Professional', N'Profesional', N'Cadre', N'1', 0, N'4357 Tosca Way', NULL, N'977-555-0117', CAST(N'2002-03-22 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11273, 331, N'AW00011273', NULL, N'Nathan', N'E', N'Lal', 0, CAST(N'1956-10-01 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 90000.0000, 2, 1, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Professional', N'Profesional', N'Cadre', N'1', 0, N'7064 Cypress Ave', NULL, N'147-555-0121', CAST(N'2003-11-15 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11274, 609, N'AW00011274', NULL, N'Kyle', N'M', N'Foster', 0, CAST(N'1934-04-12 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 50000.0000, 2, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Management', N'Gestión', N'Direction', N'1', 2, N'5617 Landing Dr', NULL, N'846-555-0126', CAST(N'2002-03-01 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11275, 310, N'AW00011275', NULL, N'Jenny', N'D', N'Rai', 0, CAST(N'1934-01-18 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 80000.0000, 4, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Management', N'Gestión', N'Direction', N'1', 2, N'1440 Willow Pass Dr.', NULL, N'780-555-0119', CAST(N'2002-03-02 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11276, 49, N'AW00011276', NULL, N'Nancy', N'E', N'Chapman', 0, CAST(N'1963-09-19 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 80000.0000, 4, 3, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Professional', N'Profesional', N'Cadre', N'1', 2, N'1480 Shoenic', NULL, N'909-555-0129', CAST(N'2003-08-02 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11277, 62, N'AW00011277', NULL, N'Charles', N'P', N'Jackson', 0, CAST(N'1963-06-10 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 80000.0000, 4, 3, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Professional', N'Profesional', N'Cadre', N'1', 2, N'3400 Folson Drive', NULL, N'194-555-0175', CAST(N'2003-08-06 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11278, 614, N'AW00011278', NULL, N'Jonathan', NULL, N'Phillips', 0, CAST(N'1963-08-20 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 90000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Professional', N'Profesional', N'Cadre', N'0', 1, N'8772 Rock Creek Way', NULL, N'967-555-0176', CAST(N'2002-03-19 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11279, 616, N'AW00011279', NULL, N'Amanda', N'S', N'Cook', 0, CAST(N'1963-09-12 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 90000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Professional', N'Profesional', N'Cadre', N'1', 1, N'9187 Vista Del Sol', NULL, N'252-555-0177', CAST(N'2003-09-04 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11280, 626, N'AW00011280', NULL, N'Robert', NULL, N'Collins', 0, CAST(N'1963-08-21 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 90000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Professional', N'Profesional', N'Cadre', N'1', 1, N'5271 Sierra Road', NULL, N'966-555-0171', CAST(N'2004-01-02 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11281, 301, N'AW00011281', NULL, N'Megan', N'J', N'Barnes', 0, CAST(N'1963-10-10 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 110000.0000, 4, 2, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Management', N'Gestión', N'Direction', N'1', 4, N'40 Ellis St.', NULL, N'807-555-0156', CAST(N'2002-03-16 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11282, 612, N'AW00011282', NULL, N'Christian', N'A', N'Thomas', 0, CAST(N'1962-01-16 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 90000.0000, 5, 4, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Professional', N'Profesional', N'Cadre', N'1', 4, N'5205 Coralie Drive', NULL, N'692-555-0172', CAST(N'2002-03-03 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11283, 299, N'AW00011283', NULL, N'Arturo', NULL, N'Lal', 0, CAST(N'1962-10-26 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 110000.0000, 1, 3, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Management', N'Gestión', N'Direction', N'1', 2, N'4593 Mendouno Dr.', NULL, N'638-555-0164', CAST(N'2003-11-30 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11284, 307, N'AW00011284', NULL, N'Theresa', NULL, N'Serrano', 0, CAST(N'1962-03-27 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 110000.0000, 1, 3, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Management', N'Gestión', N'Direction', N'1', 2, N'9007 S Royal Links Circle', NULL, N'777-555-0162', CAST(N'2003-08-10 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11285, 322, N'AW00011285', NULL, N'Jeremy', N'J', N'Anderson', 0, CAST(N'1962-03-19 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 120000.0000, 1, 3, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Professional', N'Profesional', N'Cadre', N'0', 4, N'7655 Greer Ave', NULL, N'940-555-0176', CAST(N'2004-01-28 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11286, 374, N'AW00011286', NULL, N'Hunter', N'D', N'Griffin', 0, CAST(N'1962-03-03 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 170000.0000, 0, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Management', N'Gestión', N'Direction', N'1', 4, N'4079 Redbird Lane', NULL, N'410-555-0148', CAST(N'2002-03-24 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11287, 49, N'AW00011287', NULL, N'Henry', N'B', N'Garcia', 0, CAST(N'1961-01-16 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 70000.0000, 5, 4, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Professional', N'Profesional', N'Cadre', N'0', 3, N'3268 Hazelwood Lane', NULL, N'282-555-0185', CAST(N'2003-08-02 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11288, 301, N'AW00011288', NULL, N'Cindy', N'K', N'Sanchez', 0, CAST(N'1961-09-16 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 110000.0000, 1, 3, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Management', N'Gestión', N'Direction', N'1', 3, N'7062 Starflower Drive', NULL, N'198-555-0118', CAST(N'2003-09-06 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11289, 315, N'AW00011289', NULL, N'Maria', N'S', N'Carter', 0, CAST(N'1961-03-07 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 130000.0000, 1, 3, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Management', N'Gestión', N'Direction', N'1', 1, N'8603 Elmhurst Lane', NULL, N'239-555-0158', CAST(N'2002-03-11 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11290, 334, N'AW00011290', NULL, N'Katelyn', NULL, N'Sanchez', 0, CAST(N'1961-08-18 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 130000.0000, 1, 3, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Management', N'Gestión', N'Direction', N'1', 3, N'8869 Climbing Vine Court', NULL, N'395-555-0150', CAST(N'2002-03-23 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11291, 335, N'AW00011291', NULL, N'Jenna', NULL, N'Wright', 0, CAST(N'1961-05-05 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 130000.0000, 1, 3, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Management', N'Gestión', N'Direction', N'1', 3, N'232 Pinnacle Drive', NULL, N'118-555-0191', CAST(N'2002-03-07 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11292, 361, N'AW00011292', NULL, N'Seth', NULL, N'Phillips', 0, CAST(N'1961-11-05 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 150000.0000, 1, 2, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Professional', N'Profesional', N'Cadre', N'0', 3, N'4361 Loftus Road', NULL, N'980-555-0196', CAST(N'2002-03-18 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11293, 632, N'AW00011293', NULL, N'Luke', N'S', N'Long', 0, CAST(N'1955-05-27 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 60000.0000, 2, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Professional', N'Profesional', N'Cadre', N'0', 2, N'3177 Dover Way', NULL, N'786-555-0117', CAST(N'2003-08-28 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11294, 618, N'AW00011294', NULL, N'Dalton', N'P', N'Clark', 0, CAST(N'1955-09-03 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 60000.0000, 2, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Professional', N'Profesional', N'Cadre', N'0', 2, N'4381 Amazonas', NULL, N'388-555-0195', CAST(N'2004-03-28 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11295, 311, N'AW00011295', NULL, N'Taylor', N'G', N'Lewis', 0, CAST(N'1954-05-16 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 80000.0000, 2, 0, N'Partial High School', N'Educación secundaria (en curso)', N'Niveau bac', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'8827 Ward Court', NULL, N'291-555-0174', CAST(N'2002-03-28 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11296, 616, N'AW00011296', NULL, N'Haley', NULL, N'Richardson', 0, CAST(N'1935-10-07 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 50000.0000, 2, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Management', N'Gestión', N'Direction', N'1', 2, N'6203 Laurel Drive', NULL, N'620-555-0129', CAST(N'2002-03-04 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11297, 301, N'AW00011297', NULL, N'Noah', NULL, N'Coleman', 0, CAST(N'1935-02-02 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 70000.0000, 4, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Management', N'Gestión', N'Direction', N'1', 2, N'5562 Galindo Street', NULL, N'847-555-0167', CAST(N'2002-03-29 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11298, 307, N'AW00011298', NULL, N'Jon', NULL, N'Luo', 0, CAST(N'1935-03-03 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 70000.0000, 4, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Management', N'Gestión', N'Direction', N'1', 2, N'3560 River Rock Lane', NULL, N'127-555-0189', CAST(N'2002-03-15 00:00:00.000' AS DateTime), N'1-2 Miles')

GO

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11299, 301, N'AW00011299', NULL, N'Orlando', N'E', N'Vazquez', 0, CAST(N'1936-04-01 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 70000.0000, 4, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Management', N'Gestión', N'Direction', N'1', 2, N'8547 Catherine Way', NULL, N'757-555-0143', CAST(N'2002-03-29 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11300, 54, N'AW00011300', NULL, N'Fernando', NULL, N'Barnes', 0, CAST(N'1960-03-03 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 80000.0000, 5, 4, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Professional', N'Profesional', N'Cadre', N'0', 3, N'7633 Greenhills Circle', NULL, N'469-555-0125', CAST(N'2003-08-04 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11301, 607, N'AW00011301', NULL, N'Cameron', N'L', N'Rodriguez', 0, CAST(N'1960-06-09 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 80000.0000, 5, 4, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Professional', N'Profesional', N'Cadre', N'1', 4, N'1217 Mariposa', NULL, N'727-555-0119', CAST(N'2003-12-11 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11302, 539, N'AW00011302', NULL, N'Spencer', NULL, N'Russell', 0, CAST(N'1960-12-12 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 90000.0000, 4, 3, N'High School', N'Educación secundaria', N'Bac + 2', N'Professional', N'Profesional', N'Cadre', N'0', 3, N'2396 Mink Court', NULL, N'834-555-0131', CAST(N'2002-03-09 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11303, 614, N'AW00011303', NULL, N'Julia', NULL, N'Coleman', 0, CAST(N'1960-10-11 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 90000.0000, 4, 3, N'High School', N'Educación secundaria', N'Bac + 2', N'Professional', N'Profesional', N'Cadre', N'0', 3, N'3128 Ramsey Circle', NULL, N'907-555-0170', CAST(N'2002-03-05 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11304, 547, N'AW00011304', NULL, N'Julia', N'B', N'Garcia', 0, CAST(N'1960-03-17 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 100000.0000, 0, 3, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Professional', N'Profesional', N'Cadre', N'1', 0, N'6179 Mt. Hamilton Dr.', NULL, N'923-555-0183', CAST(N'2003-09-21 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11305, 307, N'AW00011305', NULL, N'Sean', N'A', N'Evans', 0, CAST(N'1960-06-19 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 110000.0000, 3, 3, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Professional', N'Profesional', N'Cadre', N'0', 4, N'7118 Elliott Dr.', NULL, N'791-555-0174', CAST(N'2003-09-26 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11306, 312, N'AW00011306', NULL, N'Micah', N'A', N'Zhou', 0, CAST(N'1960-06-22 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 110000.0000, 3, 3, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Professional', N'Profesional', N'Cadre', N'0', 4, N'6105 Brownstone Rd', NULL, N'497-555-0185', CAST(N'2004-01-01 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11307, 314, N'AW00011307', NULL, N'Hunter', N'P', N'Rodriguez', 0, CAST(N'1954-11-04 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 80000.0000, 2, 0, N'Partial High School', N'Educación secundaria (en curso)', N'Niveau bac', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'4343 Cook Street', NULL, N'996-555-0142', CAST(N'2002-03-07 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11308, 546, N'AW00011308', NULL, N'Ian', N'T', N'Gonzales', 0, CAST(N'1954-03-05 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 60000.0000, 2, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Professional', N'Profesional', N'Cadre', N'0', 2, N'7122 Athene Dr.', NULL, N'904-555-0153', CAST(N'2004-03-10 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11309, 536, N'AW00011309', NULL, N'Victoria', NULL, N'Lewis', 0, CAST(N'1954-06-12 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 60000.0000, 2, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Professional', N'Profesional', N'Cadre', N'1', 2, N'4426 Tanager Road', NULL, N'586-555-0191', CAST(N'2004-01-10 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11310, 360, N'AW00011310', NULL, N'Erin', N'A', N'Sanders', 0, CAST(N'1953-07-09 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 70000.0000, 3, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Management', N'Gestión', N'Direction', N'1', 2, N'7541 Black Point Pl', NULL, N'233-555-0160', CAST(N'2004-02-13 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11311, 626, N'AW00011311', NULL, N'Gabrielle', N'D', N'Lopez', 0, CAST(N'1953-08-24 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 70000.0000, 3, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Management', N'Gestión', N'Direction', N'0', 2, N'8619 Parkside Dr.', NULL, N'783-555-0174', CAST(N'2003-10-20 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11312, 626, N'AW00011312', NULL, N'Sara', NULL, N'Richardson', 0, CAST(N'1953-04-03 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 70000.0000, 3, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Management', N'Gestión', N'Direction', N'1', 2, N'7375 Kipling Court', NULL, N'296-555-0174', CAST(N'2003-11-18 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11313, 632, N'AW00011313', NULL, N'Trevor', NULL, N'Jenkins', 0, CAST(N'1953-02-27 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 70000.0000, 3, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Management', N'Gestión', N'Direction', N'1', 2, N'4697 Yosemite Dr.', NULL, N'120-555-0129', CAST(N'2003-11-08 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11314, 618, N'AW00011314', NULL, N'Mya', NULL, N'Flores', 0, CAST(N'1953-12-21 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 70000.0000, 3, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Management', N'Gestión', N'Direction', N'0', 2, N'8439 Rio Grande Drive', N'Unit A', N'522-555-0140', CAST(N'2003-08-29 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11315, 632, N'AW00011315', NULL, N'Hailey', N'J', N'Ward', 0, CAST(N'1953-10-01 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 70000.0000, 3, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Management', N'Gestión', N'Direction', N'0', 2, N'6321 Maya', NULL, N'767-555-0151', CAST(N'2003-11-21 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11316, 51, N'AW00011316', NULL, N'Luke', NULL, N'Allen', 0, CAST(N'1953-11-17 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 60000.0000, 3, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Management', N'Gestión', N'Direction', N'1', 2, N'419 Deermeadow Way', NULL, N'786-555-0133', CAST(N'2003-07-16 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11317, 548, N'AW00011317', NULL, N'Victoria', N'D', N'Russell', 0, CAST(N'1952-09-17 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 40000.0000, 3, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Professional', N'Profesional', N'Cadre', N'0', 2, N'9268 Keller Ridge', NULL, N'663-555-0197', CAST(N'2002-03-04 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11318, 614, N'AW00011318', NULL, N'Jessica', NULL, N'Wilson', 0, CAST(N'1952-10-26 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 40000.0000, 3, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Professional', N'Profesional', N'Cadre', N'0', 2, N'1652 Willcrest Circle', NULL, N'702-555-0180', CAST(N'2004-04-19 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11319, 348, N'AW00011319', NULL, N'Jade', N'E', N'Bailey', 0, CAST(N'1937-04-27 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 70000.0000, 4, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Management', N'Gestión', N'Direction', N'0', 2, N'8119 Northridge Ct', N'# 1', N'819-555-0160', CAST(N'2002-03-12 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11320, 325, N'AW00011320', NULL, N'Morgan', N'M', N'Hill', 0, CAST(N'1937-06-26 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 80000.0000, 4, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Management', N'Gestión', N'Direction', N'1', 2, N'6951 Harmony Way', NULL, N'510-555-0120', CAST(N'2003-12-17 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11321, 612, N'AW00011321', NULL, N'Terrance', N'D', N'Raman', 0, CAST(N'1938-07-08 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 90000.0000, 5, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Management', N'Gestión', N'Direction', N'1', 2, N'2297 Via Valencia', NULL, N'879-555-0124', CAST(N'2003-08-27 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11322, 611, N'AW00011322', NULL, N'Sydney', NULL, N'Garcia', 0, CAST(N'1938-03-15 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 90000.0000, 5, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Management', N'Gestión', N'Direction', N'1', 2, N'252 Hemlock Drive', NULL, N'783-555-0116', CAST(N'2003-09-25 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11323, 314, N'AW00011323', NULL, N'Jose', NULL, N'Patterson', 0, CAST(N'1938-06-20 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 120000.0000, 2, 4, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Management', N'Gestión', N'Direction', N'1', 3, N'648 Newport Drive', NULL, N'768-555-0153', CAST(N'2002-03-13 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11324, 325, N'AW00011324', NULL, N'Zachary', NULL, N'Anderson', 0, CAST(N'1939-05-14 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 90000.0000, 5, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Management', N'Gestión', N'Direction', N'1', 2, N'2476 Mt. Whitney Way', NULL, N'693-555-0118', CAST(N'2002-03-29 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11325, 637, N'AW00011325', NULL, N'Elijah', N'E', N'Ross', 0, CAST(N'1939-07-02 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 90000.0000, 5, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Management', N'Gestión', N'Direction', N'1', 2, N'6679 Cornelius Dr', NULL, N'409-555-0142', CAST(N'2002-03-22 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11326, 300, N'AW00011326', NULL, N'Rafael', N'M', N'Xie', 0, CAST(N'1939-06-26 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 130000.0000, 2, 3, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Management', N'Gestión', N'Direction', N'1', 4, N'369 Peabody Road', NULL, N'663-555-0137', CAST(N'2002-03-18 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11327, 301, N'AW00011327', NULL, N'Jaime', N'C', N'Moreno', 0, CAST(N'1940-03-04 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 90000.0000, 5, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Management', N'Gestión', N'Direction', N'1', 2, N'83 Mountain View Blvd', NULL, N'457-555-0178', CAST(N'2002-03-29 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11328, 55, N'AW00011328', NULL, N'Julian', N'M', N'Griffin', 0, CAST(N'1940-01-01 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 90000.0000, 5, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Management', N'Gestión', N'Direction', N'1', 2, N'7398 Withersed Lane', NULL, N'636-555-0197', CAST(N'2003-07-09 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11329, 311, N'AW00011329', NULL, N'Andy', NULL, N'Alvarez', 0, CAST(N'1940-07-25 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 90000.0000, 5, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Management', N'Gestión', N'Direction', N'1', 2, N'9466 Morning Glory Dr.', NULL, N'367-555-0172', CAST(N'2002-03-28 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11330, 59, N'AW00011330', NULL, N'Ryan', N'M', N'Thompson', 0, CAST(N'1940-05-13 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 110000.0000, 2, 4, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Management', N'Gestión', N'Direction', N'1', 1, N'3407 Pinon Dr.', NULL, N'138-555-0142', CAST(N'2003-08-16 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11331, 63, N'AW00011331', NULL, N'Samantha', NULL, N'Jenkins', 0, CAST(N'1968-07-06 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 90000.0000, 4, 4, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'1046 Cloverleaf Circle', NULL, N'936-555-0152', CAST(N'2003-08-11 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11332, 153, N'AW00011332', NULL, N'Deanna', N'D', N'Ramos', 0, CAST(N'1962-10-04 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 10000.0000, 1, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Manual', N'Obrero', N'Ouvrier', N'1', 0, N'Roßstr 9938', NULL, N'1 (11) 500 555-0138', CAST(N'2002-04-17 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11333, 261, N'AW00011333', NULL, N'Emily', N'R', N'Miller', 0, CAST(N'1962-07-10 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 20000.0000, 1, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Clerical', N'Administrativo', N'Employé', N'1', 0, N'9075 Calle Verde', NULL, N'1 (11) 500 555-0110', CAST(N'2001-09-21 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11334, 269, N'AW00011334', NULL, N'Nicole', NULL, N'Brown', 0, CAST(N'1961-03-22 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 10000.0000, 1, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Manual', N'Obrero', N'Ouvrier', N'1', 0, N'1135 W St.', NULL, N'1 (11) 500 555-0187', CAST(N'2001-09-04 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11335, 120, N'AW00011335', NULL, N'Carla', N'L', N'Raman', 0, CAST(N'1961-06-24 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 10000.0000, 1, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Manual', N'Obrero', N'Ouvrier', N'1', 0, N'Winterfeldtstr 255', NULL, N'1 (11) 500 555-0124', CAST(N'2002-04-25 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11336, 204, N'AW00011336', NULL, N'Shaun', NULL, N'Raji', 0, CAST(N'1962-03-12 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 20000.0000, 1, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Clerical', N'Administrativo', N'Employé', N'1', 0, N'44, rue du Départ', NULL, N'1 (11) 500 555-0122', CAST(N'2003-03-31 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11337, 273, N'AW00011337', NULL, N'Jerome', NULL, N'Romero', 0, CAST(N'1961-09-21 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 10000.0000, 1, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Manual', N'Obrero', N'Ouvrier', N'1', 0, N'7289 Brookview Dr.', NULL, N'1 (11) 500 555-0112', CAST(N'2001-09-09 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11338, 154, N'AW00011338', NULL, N'Frank', N'F', N'Navarro', 0, CAST(N'1961-08-10 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 20000.0000, 1, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Clerical', N'Administrativo', N'Employé', N'1', 0, N'Buergermeister-ulrich-str 2987', NULL, N'1 (11) 500 555-0139', CAST(N'2002-04-13 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11339, 202, N'AW00011339', NULL, N'Dennis', N'M', N'She', 0, CAST(N'1961-07-08 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 20000.0000, 1, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Clerical', N'Administrativo', N'Employé', N'1', 0, N'828, rue de Berri', NULL, N'1 (11) 500 555-0141', CAST(N'2003-04-10 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11340, 192, N'AW00011340', NULL, N'Melody', N'C', N'Munoz', 0, CAST(N'1936-04-06 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 10000.0000, 1, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Clerical', N'Administrativo', N'Employé', N'1', 0, N'9, avenue Reille', NULL, N'1 (11) 500 555-0147', CAST(N'2003-04-30 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11341, 236, N'AW00011341', NULL, N'Randy', N'A', N'Zeng', 0, CAST(N'1936-08-21 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 20000.0000, 1, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Clerical', N'Administrativo', N'Employé', N'1', 0, N'2334 Brandywine Way', NULL, N'1 (11) 500 555-0144', CAST(N'2001-10-12 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11342, 191, N'AW00011342', NULL, N'Marshall', N'L', N'Wang', 0, CAST(N'1962-03-11 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 30000.0000, 5, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Clerical', N'Administrativo', N'Employé', N'1', 0, N'68062, rue des Grands Champs', NULL, N'1 (11) 500 555-0161', CAST(N'2004-01-13 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11343, 264, N'AW00011343', NULL, N'Arthur', N'P', N'Carlson', 0, CAST(N'1958-09-13 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 10000.0000, 1, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Manual', N'Obrero', N'Ouvrier', N'1', 0, N'6507 Fieldcrest Dr.', NULL, N'1 (11) 500 555-0166', CAST(N'2001-10-05 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11344, 262, N'AW00011344', NULL, N'Jessie', NULL, N'Jimenez', 0, CAST(N'1957-07-24 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 10000.0000, 1, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Manual', N'Obrero', N'Ouvrier', N'1', 0, N'5723 C Wharton Way', NULL, N'1 (11) 500 555-0193', CAST(N'2001-11-13 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11345, 224, N'AW00011345', NULL, N'Robin', NULL, N'Ramos', 0, CAST(N'1957-03-12 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 10000.0000, 1, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Manual', N'Obrero', N'Ouvrier', N'1', 0, N'6, rue de l´Esplanade', NULL, N'1 (11) 500 555-0111', CAST(N'2003-04-25 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11346, 196, N'AW00011346', NULL, N'Deanna', N'E', N'Gutierrez', 0, CAST(N'1955-05-22 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 10000.0000, 2, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Manual', N'Obrero', N'Ouvrier', N'1', 1, N'Attaché de Presse', N'Place d´ Armes', N'1 (11) 500 555-0112', CAST(N'2003-04-04 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11347, 156, N'AW00011347', NULL, N'Roy', N'T', N'Navarro', 0, CAST(N'1955-12-23 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 10000.0000, 2, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Manual', N'Obrero', N'Ouvrier', N'1', 1, N'Viktoria-Luise-Platz 43', NULL, N'1 (11) 500 555-0137', CAST(N'2003-09-17 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11348, 151, N'AW00011348', NULL, N'Shawn', NULL, N'Rai', 0, CAST(N'1955-09-22 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 10000.0000, 2, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Manual', N'Obrero', N'Ouvrier', N'1', 1, N'Westheimer Straße 7606', NULL, N'1 (11) 500 555-0117', CAST(N'2003-10-02 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11349, 134, N'AW00011349', NULL, N'Mindy', N'J', N'Luo', 0, CAST(N'1954-09-03 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 10000.0000, 2, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Manual', N'Obrero', N'Ouvrier', N'1', 1, N'Brunnenstr 7566', N'Verkaufsabteilung', N'1 (11) 500 555-0194', CAST(N'2004-07-16 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11350, 265, N'AW00011350', NULL, N'Cara', NULL, N'Zhou', 0, CAST(N'1937-01-14 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 30000.0000, 1, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Clerical', N'Administrativo', N'Employé', N'1', 0, N'7280 Greendell Pl', NULL, N'1 (11) 500 555-0118', CAST(N'2003-08-09 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11351, 253, N'AW00011351', NULL, N'Anne', N'R', N'Ramos', 0, CAST(N'1939-04-06 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 20000.0000, 1, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Clerical', N'Administrativo', N'Employé', N'1', 0, N'7113 Eastgate Ave.', NULL, N'1 (11) 500 555-0148', CAST(N'2001-12-13 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11352, 222, N'AW00011352', NULL, N'Raymond', N'A', N'Rodriguez', 0, CAST(N'1940-03-07 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 10000.0000, 2, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Manual', N'Obrero', N'Ouvrier', N'1', 1, N'24, impasse Ste-Madeleine', NULL, N'1 (11) 500 555-0131', CAST(N'2003-11-02 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11353, 271, N'AW00011353', NULL, N'Carrie', N'L', N'Ortega', 0, CAST(N'1941-06-11 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 30000.0000, 1, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Clerical', N'Administrativo', N'Employé', N'1', 0, N'1883 Cowell Rd.', NULL, N'1 (11) 500 555-0111', CAST(N'2001-12-13 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11354, 119, N'AW00011354', NULL, N'Deanna', NULL, N'Suarez', 0, CAST(N'1942-02-23 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 20000.0000, 1, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Manual', N'Obrero', N'Ouvrier', N'1', 0, N'Dunckerstr 22525', NULL, N'1 (11) 500 555-0146', CAST(N'2004-06-05 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11355, 275, N'AW00011355', NULL, N'Roberto', NULL, N'Gutierrez', 0, CAST(N'1942-12-28 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 40000.0000, 1, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Clerical', N'Administrativo', N'Employé', N'1', 0, N'3545 Chickpea Ct.', NULL, N'1 (11) 500 555-0124', CAST(N'2004-03-29 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11356, 6, N'AW00011356', NULL, N'Terrence', NULL, N'Carson', 0, CAST(N'1980-05-27 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 10000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Manual', N'Obrero', N'Ouvrier', N'0', 1, N'6613 Thornhill Place', NULL, N'1 (11) 500 555-0189', CAST(N'2001-11-10 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11357, 21, N'AW00011357', NULL, N'Ramon', NULL, N'Ye', 0, CAST(N'1979-03-23 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 10000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Manual', N'Obrero', N'Ouvrier', N'0', 1, N'3245 Vista Oak Dr.', NULL, N'1 (11) 500 555-0143', CAST(N'2001-12-19 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11358, 2, N'AW00011358', NULL, N'Cynthia', NULL, N'Malhotra', 0, CAST(N'1978-11-11 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 10000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Manual', N'Obrero', N'Ouvrier', N'0', 1, N'6757 Pamplona Ct.', NULL, N'1 (11) 500 555-0187', CAST(N'2001-12-29 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11359, 7, N'AW00011359', NULL, N'Jarrod', NULL, N'Prasad', 0, CAST(N'1978-09-04 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 10000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Manual', N'Obrero', N'Ouvrier', N'0', 1, N'7657 H St.', NULL, N'1 (11) 500 555-0154', CAST(N'2001-12-14 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11360, 26, N'AW00011360', NULL, N'Tyrone', NULL, N'Serrano', 0, CAST(N'1978-08-02 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 10000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Manual', N'Obrero', N'Ouvrier', N'1', 1, N'3767 View Dr.', NULL, N'1 (11) 500 555-0176', CAST(N'2001-12-28 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11361, 10, N'AW00011361', NULL, N'Cindy', N'G', N'Ramos', 0, CAST(N'1977-04-28 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 10000.0000, 0, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Manual', N'Obrero', N'Ouvrier', N'1', 2, N'6565 Jamie Way', NULL, N'1 (11) 500 555-0173', CAST(N'2004-04-03 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11362, 33, N'AW00011362', NULL, N'Damien', N'M', N'Shan', 0, CAST(N'1977-11-11 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 10000.0000, 0, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Manual', N'Obrero', N'Ouvrier', N'0', 2, N'5312 Riverwood Circle', NULL, N'1 (11) 500 555-0142', CAST(N'2003-09-30 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11363, 35, N'AW00011363', NULL, N'Julian', NULL, N'Ross', 0, CAST(N'1977-10-20 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 10000.0000, 0, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Manual', N'Obrero', N'Ouvrier', N'0', 2, N'3346 Larkwood Ct.', NULL, N'1 (11) 500 555-0126', CAST(N'2001-12-09 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11364, 34, N'AW00011364', NULL, N'Jennifer', NULL, N'Collins', 0, CAST(N'1979-09-23 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 10000.0000, 1, 1, N'High School', N'Educación secundaria', N'Bac + 2', N'Manual', N'Obrero', N'Ouvrier', N'0', 0, N'4536 Killdeer Court', NULL, N'1 (11) 500 555-0196', CAST(N'2001-12-08 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11365, 29, N'AW00011365', NULL, N'Brittney', NULL, N'Sun', 0, CAST(N'1979-06-09 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 10000.0000, 1, 1, N'High School', N'Educación secundaria', N'Bac + 2', N'Manual', N'Obrero', N'Ouvrier', N'0', 0, N'8856 Mt. Wilson Way', NULL, N'1 (11) 500 555-0155', CAST(N'2001-12-01 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11366, 37, N'AW00011366', NULL, N'Virginia', N'R', N'Patel', 0, CAST(N'1979-10-25 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 20000.0000, 0, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Clerical', N'Administrativo', N'Employé', N'1', 0, N'3118 Creekside Drive', NULL, N'1 (11) 500 555-0146', CAST(N'2003-12-26 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11367, 12, N'AW00011367', NULL, N'Calvin', N'J', N'Nara', 0, CAST(N'1979-02-22 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 20000.0000, 0, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Clerical', N'Administrativo', N'Employé', N'1', 0, N'5795 Morning Glory Dr.', NULL, N'1 (11) 500 555-0193', CAST(N'2004-01-08 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11368, 26, N'AW00011368', NULL, N'Edward', NULL, N'Miller', 0, CAST(N'1978-11-25 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 10000.0000, 1, 1, N'High School', N'Educación secundaria', N'Bac + 2', N'Manual', N'Obrero', N'Ouvrier', N'0', 0, N'598 Limeridge Drive', NULL, N'1 (11) 500 555-0151', CAST(N'2001-12-25 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11369, 29, N'AW00011369', NULL, N'Ashlee', N'D', N'Tang', 0, CAST(N'1978-08-04 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 20000.0000, 0, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Clerical', N'Administrativo', N'Employé', N'0', 0, N'4111 Vista Diablo', NULL, N'1 (11) 500 555-0187', CAST(N'2004-01-06 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11370, 38, N'AW00011370', NULL, N'Alicia', NULL, N'Xu', 0, CAST(N'1978-04-01 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 20000.0000, 0, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Clerical', N'Administrativo', N'Employé', N'1', 0, N'3743 Grenadine Way', NULL, N'1 (11) 500 555-0113', CAST(N'2004-01-14 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11371, 26, N'AW00011371', NULL, N'Lacey', N'C', N'Jai', 0, CAST(N'1978-05-27 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 20000.0000, 0, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Clerical', N'Administrativo', N'Employé', N'1', 0, N'6208 Prestwick Dr.', NULL, N'1 (11) 500 555-0149', CAST(N'2004-05-10 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11372, 20, N'AW00011372', NULL, N'Wendy', N'H', N'Romero', 0, CAST(N'1978-05-15 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 20000.0000, 0, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Clerical', N'Administrativo', N'Employé', N'1', 0, N'24 San Vincente Drive', NULL, N'1 (11) 500 555-0114', CAST(N'2001-12-08 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11373, 135, N'AW00011373', NULL, N'Carly', N'H', N'Luo', 0, CAST(N'1943-09-20 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 30000.0000, 1, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Clerical', N'Administrativo', N'Employé', N'1', 0, N'Hellweg 4644', NULL, N'1 (11) 500 555-0138', CAST(N'2004-02-28 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11374, 162, N'AW00011374', NULL, N'Jimmy', N'M', N'Ortega', 0, CAST(N'1943-06-28 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 30000.0000, 1, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Clerical', N'Administrativo', N'Employé', N'1', 0, N'Postfach 11 11 22', NULL, N'1 (11) 500 555-0183', CAST(N'2003-10-17 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11375, 240, N'AW00011375', NULL, N'Francisco', NULL, N'Martinez', 0, CAST(N'1943-05-09 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 30000.0000, 1, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Clerical', N'Administrativo', N'Employé', N'1', 0, N'5508 Glenmount Dr.', NULL, N'1 (11) 500 555-0119', CAST(N'2004-04-19 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11376, 268, N'AW00011376', NULL, N'Lance', NULL, N'Vazquez', 0, CAST(N'1943-06-10 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 40000.0000, 1, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Clerical', N'Administrativo', N'Employé', N'1', 0, N'9159 Shepberry Court', NULL, N'1 (11) 500 555-0112', CAST(N'2004-04-17 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11377, 161, N'AW00011377', N'Mr.', N'David', N'R.', N'Robinett', 0, CAST(N'1961-02-23 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 30000.0000, 4, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Clerical', N'Administrativo', N'Employé', N'1', 0, N'Pappelallee 6667', NULL, N'238-555-0100', CAST(N'2003-09-01 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11378, 184, N'AW00011378', NULL, N'Shannon', NULL, N'Liang', 0, CAST(N'1960-05-22 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 10000.0000, 1, 1, N'High School', N'Educación secundaria', N'Bac + 2', N'Manual', N'Obrero', N'Ouvrier', N'0', 1, N'7445 Meaham Drive', NULL, N'1 (11) 500 555-0159', CAST(N'2003-04-20 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11379, 214, N'AW00011379', NULL, N'Gary', NULL, N'Vazquez', 0, CAST(N'1959-11-18 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 10000.0000, 1, 1, N'High School', N'Educación secundaria', N'Bac + 2', N'Manual', N'Obrero', N'Ouvrier', N'1', 1, N'5, rue de la Cavalerie', NULL, N'1 (11) 500 555-0130', CAST(N'2003-04-05 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11380, 175, N'AW00011380', NULL, N'Mitchell', N'L', N'Kumar', 0, CAST(N'1959-03-02 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 20000.0000, 2, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Manual', N'Obrero', N'Ouvrier', N'1', 1, N'Husemann Straße 6464', NULL, N'1 (11) 500 555-0119', CAST(N'2002-04-13 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11381, 249, N'AW00011381', NULL, N'Meredith', NULL, N'Raman', 0, CAST(N'1959-08-22 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 20000.0000, 2, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Manual', N'Obrero', N'Ouvrier', N'1', 1, N'6092 Chestnut', NULL, N'1 (11) 500 555-0162', CAST(N'2001-12-13 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11382, 189, N'AW00011382', NULL, N'Edward', NULL, N'Patterson', 0, CAST(N'1958-01-19 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 20000.0000, 2, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Manual', N'Obrero', N'Ouvrier', N'1', 1, N'211, avenue Foch', NULL, N'1 (11) 500 555-0118', CAST(N'2003-05-07 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11383, 206, N'AW00011383', NULL, N'Marie', NULL, N'Gill', 0, CAST(N'1960-08-28 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 30000.0000, 3, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Clerical', N'Administrativo', N'Employé', N'1', 0, N'571, rue Malar', NULL, N'1 (11) 500 555-0192', CAST(N'2004-07-04 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11384, 211, N'AW00011384', NULL, N'Tiffany', N'E', N'Wang', 0, CAST(N'1960-10-16 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 30000.0000, 3, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Clerical', N'Administrativo', N'Employé', N'1', 0, N'5, rue Malar', NULL, N'1 (11) 500 555-0192', CAST(N'2004-02-03 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11385, 279, N'AW00011385', NULL, N'Miguel', N'C', N'Allen', 0, CAST(N'1960-08-11 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 30000.0000, 3, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Clerical', N'Administrativo', N'Employé', N'1', 0, N'6834 Violetta', NULL, N'1 (11) 500 555-0128', CAST(N'2004-01-07 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11386, 127, N'AW00011386', NULL, N'Jaclyn', NULL, N'Cai', 0, CAST(N'1960-11-05 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 30000.0000, 3, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Clerical', N'Administrativo', N'Employé', N'1', 0, N'Postfach 55 00 00', NULL, N'1 (11) 500 555-0164', CAST(N'2004-05-05 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11387, 238, N'AW00011387', NULL, N'Megan', N'C', N'Ramirez', 0, CAST(N'1959-06-02 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 40000.0000, 3, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Clerical', N'Administrativo', N'Employé', N'1', 0, N'507 Sahara Drive', NULL, N'1 (11) 500 555-0192', CAST(N'2002-01-26 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11388, 279, N'AW00011388', NULL, N'Joseph', NULL, N'Martin', 0, CAST(N'1959-07-24 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 40000.0000, 3, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Clerical', N'Administrativo', N'Employé', N'1', 0, N'7028 San Gabriel Dr.', NULL, N'1 (11) 500 555-0143', CAST(N'2002-01-03 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11389, 130, N'AW00011389', NULL, N'Karl', N'J', N'Shan', 0, CAST(N'1970-04-24 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 10000.0000, 1, 1, N'High School', N'Educación secundaria', N'Bac + 2', N'Manual', N'Obrero', N'Ouvrier', N'0', 1, N'Nollendorfplatz 48', NULL, N'1 (11) 500 555-0198', CAST(N'2004-05-20 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11390, 208, N'AW00011390', NULL, N'Christine', N'J', N'Raji', 0, CAST(N'1970-10-19 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 10000.0000, 1, 1, N'High School', N'Educación secundaria', N'Bac + 2', N'Manual', N'Obrero', N'Ouvrier', N'0', 1, N'11, boulevard Tremblay', NULL, N'1 (11) 500 555-0153', CAST(N'2004-05-10 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11391, 135, N'AW00011391', NULL, N'Lindsay', N'T', N'Xie', 0, CAST(N'1970-12-27 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 10000.0000, 2, 2, N'High School', N'Educación secundaria', N'Bac + 2', N'Manual', N'Obrero', N'Ouvrier', N'1', 0, N'Am Grossen Dern 4624', NULL, N'1 (11) 500 555-0115', CAST(N'2004-04-28 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11392, 131, N'AW00011392', NULL, N'Willie', NULL, N'Zhao', 0, CAST(N'1970-02-07 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 10000.0000, 2, 2, N'High School', N'Educación secundaria', N'Bac + 2', N'Manual', N'Obrero', N'Ouvrier', N'1', 0, N'Königstr 282', NULL, N'1 (11) 500 555-0120', CAST(N'2003-09-30 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11393, 182, N'AW00011393', NULL, N'Kurt', N'B', N'Pal', 0, CAST(N'1969-01-17 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 10000.0000, 2, 2, N'High School', N'Educación secundaria', N'Bac + 2', N'Manual', N'Obrero', N'Ouvrier', N'1', 0, N'55, avenue de l´ Union Centrale', NULL, N'1 (11) 500 555-0117', CAST(N'2004-01-17 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11394, 259, N'AW00011394', NULL, N'George', NULL, N'McDonald', 0, CAST(N'1969-10-23 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 10000.0000, 2, 2, N'High School', N'Educación secundaria', N'Bac + 2', N'Manual', N'Obrero', N'Ouvrier', N'1', 0, N'9186 West Boyd Rd.', NULL, N'1 (11) 500 555-0150', CAST(N'2002-01-04 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11395, 118, N'AW00011395', NULL, N'Beth', N'C', N'Gutierrez', 0, CAST(N'1970-10-18 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 30000.0000, 0, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Clerical', N'Administrativo', N'Employé', N'1', 0, N'Rehstr 1346', NULL, N'1 (11) 500 555-0110', CAST(N'2002-05-17 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11396, 175, N'AW00011396', NULL, N'Ian', N'G', N'Lopez', 0, CAST(N'1969-10-05 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 10000.0000, 2, 2, N'High School', N'Educación secundaria', N'Bac + 2', N'Manual', N'Obrero', N'Ouvrier', N'0', 1, N'Zur Lindung 6', NULL, N'1 (11) 500 555-0182', CAST(N'2004-04-28 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11397, 197, N'AW00011397', NULL, N'Latoya', N'R', N'Shan', 0, CAST(N'1969-06-04 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 20000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Manual', N'Obrero', N'Ouvrier', N'0', 1, N'Attaché de Presse', NULL, N'1 (11) 500 555-0122', CAST(N'2004-01-08 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11398, 261, N'AW00011398', NULL, N'Colin', N'N', N'Nath', 0, CAST(N'1969-09-09 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 30000.0000, 0, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Clerical', N'Administrativo', N'Employé', N'1', 0, N'8900 Escobar', NULL, N'1 (11) 500 555-0115', CAST(N'2002-01-03 00:00:00.000' AS DateTime), N'0-1 Miles')

GO

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11399, 202, N'AW00011399', NULL, N'Brenda', N'F', N'Mehta', 0, CAST(N'1969-08-04 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 30000.0000, 1, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Clerical', N'Administrativo', N'Employé', N'1', 0, N'11, avenue du Port', NULL, N'1 (11) 500 555-0155', CAST(N'2003-10-15 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11400, 251, N'AW00011400', NULL, N'Franklin', NULL, N'Raji', 0, CAST(N'1969-04-19 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 40000.0000, 0, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Clerical', N'Administrativo', N'Employé', N'1', 0, N'3477 Mt. Washington Way', NULL, N'1 (11) 500 555-0180', CAST(N'2002-01-15 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11401, 204, N'AW00011401', NULL, N'Linda', NULL, N'Navarro', 0, CAST(N'1969-08-26 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 40000.0000, 0, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Clerical', N'Administrativo', N'Employé', N'1', 0, N'6, route de Marseille', NULL, N'1 (11) 500 555-0189', CAST(N'2003-05-01 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11402, 183, N'AW00011402', NULL, N'Kelli', N'R', N'Cai', 0, CAST(N'1969-11-20 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 40000.0000, 0, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Clerical', N'Administrativo', N'Employé', N'1', 0, N'1216, place de la Concorde', NULL, N'1 (11) 500 555-0145', CAST(N'2003-05-11 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11403, 179, N'AW00011403', NULL, N'Nancy', NULL, N'Schmidt', 0, CAST(N'1969-01-09 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 40000.0000, 0, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Clerical', N'Administrativo', N'Employé', N'1', 0, N'340, boulevard d´Albi', NULL, N'1 (11) 500 555-0150', CAST(N'2003-05-01 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11404, 133, N'AW00011404', NULL, N'Megan', N'E', N'Taylor', 0, CAST(N'1952-01-01 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 10000.0000, 3, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Manual', N'Obrero', N'Ouvrier', N'0', 2, N'Berliner Platz 43', NULL, N'1 (11) 500 555-0178', CAST(N'2003-08-14 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11405, 143, N'AW00011405', NULL, N'Bonnie', NULL, N'Goel', 0, CAST(N'1952-02-17 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 10000.0000, 3, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Manual', N'Obrero', N'Ouvrier', N'0', 2, N'Carlsplatz 89', NULL, N'1 (11) 500 555-0143', CAST(N'2003-10-02 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11406, 199, N'AW00011406', NULL, N'Latoya', N'L', N'Xu', 0, CAST(N'1952-07-03 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 20000.0000, 2, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Manual', N'Obrero', N'Ouvrier', N'1', 1, N'101, rue de Terre Neuve', NULL, N'1 (11) 500 555-0141', CAST(N'2003-05-08 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11407, 170, N'AW00011407', NULL, N'Mario', NULL, N'She', 0, CAST(N'1952-04-02 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 20000.0000, 2, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Manual', N'Obrero', N'Ouvrier', N'1', 1, N'Conesweg 720', NULL, N'1 (11) 500 555-0156', CAST(N'2003-12-25 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11408, 257, N'AW00011408', NULL, N'Darren', N'M', N'Gill', 0, CAST(N'1953-05-14 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 10000.0000, 2, 1, N'High School', N'Educación secundaria', N'Bac + 2', N'Manual', N'Obrero', N'Ouvrier', N'0', 2, N'8132 Twincreek Ct', NULL, N'1 (11) 500 555-0166', CAST(N'2003-09-06 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11409, 208, N'AW00011409', NULL, N'Jacqueline', N'H', N'Hayes', 0, CAST(N'1968-03-05 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 10000.0000, 2, 2, N'High School', N'Educación secundaria', N'Bac + 2', N'Manual', N'Obrero', N'Ouvrier', N'1', 1, N'33, rue Georges-Clémenceau', NULL, N'1 (11) 500 555-0162', CAST(N'2003-05-21 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11410, 201, N'AW00011410', NULL, N'Maurice', NULL, N'Goel', 0, CAST(N'1968-08-25 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 20000.0000, 1, 1, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Manual', N'Obrero', N'Ouvrier', N'1', 0, N'15, avenue de la Gare', NULL, N'1 (11) 500 555-0179', CAST(N'2003-05-17 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11411, 121, N'AW00011411', NULL, N'Devin', N'A', N'Ross', 0, CAST(N'1954-02-12 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 80000.0000, 3, 2, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Professional', N'Profesional', N'Cadre', N'0', 1, N'Postenweg 2428', NULL, N'1 (11) 500 555-0172', CAST(N'2004-02-05 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11412, 121, N'AW00011412', NULL, N'Sydney', N'S', N'Bryant', 0, CAST(N'1954-04-09 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 80000.0000, 4, 2, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Professional', N'Profesional', N'Cadre', N'1', 1, N'Postfach 99 92 92', NULL, N'1 (11) 500 555-0156', CAST(N'2002-05-08 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11413, 238, N'AW00011413', NULL, N'Megan', N'L', N'Stewart', 0, CAST(N'1954-04-15 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 80000.0000, 4, 2, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Professional', N'Profesional', N'Cadre', N'0', 1, N'8192 Seagull Court', NULL, N'1 (11) 500 555-0116', CAST(N'2002-02-10 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11414, 241, N'AW00011414', NULL, N'Ian', NULL, N'Richardson', 0, CAST(N'1954-03-18 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 80000.0000, 4, 2, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Professional', N'Profesional', N'Cadre', N'1', 1, N'726 W. Buchanan Rd.', NULL, N'1 (11) 500 555-0119', CAST(N'2002-02-13 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11415, 127, N'AW00011415', NULL, N'Randy', N'H', N'She', 0, CAST(N'1944-06-05 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 90000.0000, 5, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Professional', N'Profesional', N'Cadre', N'0', 2, N'Roßstr 5538', NULL, N'1 (11) 500 555-0141', CAST(N'2004-02-17 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11416, 185, N'AW00011416', NULL, N'Katrina', NULL, N'Becker', 0, CAST(N'1945-03-19 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 60000.0000, 3, 1, N'Partial High School', N'Educación secundaria (en curso)', N'Niveau bac', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 4, N'8205, rue Malar', NULL, N'1 (11) 500 555-0153', CAST(N'2003-05-11 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11417, 222, N'AW00011417', NULL, N'Lacey', N'C', N'Zheng', 0, CAST(N'1945-02-26 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 70000.0000, 5, 1, N'High School', N'Educación secundaria', N'Bac + 2', N'Professional', N'Profesional', N'Cadre', N'1', 2, N'4, rue de Linois', NULL, N'1 (11) 500 555-0174', CAST(N'2003-05-08 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11418, 160, N'AW00011418', NULL, N'Rafael', N'J', N'Hu', 0, CAST(N'1945-02-09 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 90000.0000, 5, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Professional', N'Profesional', N'Cadre', N'0', 2, N'Zeiter Weg 7765', NULL, N'1 (11) 500 555-0159', CAST(N'2004-06-19 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11419, 273, N'AW00011419', NULL, N'Kyle', N'D', N'Scott', 0, CAST(N'1945-02-18 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 150000.0000, 3, 4, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Management', N'Gestión', N'Direction', N'1', 4, N'9381 Alpine Rd.', NULL, N'1 (11) 500 555-0178', CAST(N'2003-09-13 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11420, 189, N'AW00011420', NULL, N'Jordan', N'C', N'Turner', 0, CAST(N'1946-07-12 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 100000.0000, 2, 3, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Management', N'Gestión', N'Direction', N'1', 4, N'100, rue Maillard', NULL, N'1 (11) 500 555-0176', CAST(N'2003-05-05 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11421, 172, N'AW00011421', NULL, N'Amy', N'C', N'Sun', 0, CAST(N'1946-07-19 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 110000.0000, 3, 4, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Management', N'Gestión', N'Direction', N'1', 4, N'Am Karlshof 2500', NULL, N'1 (11) 500 555-0111', CAST(N'2002-05-06 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11422, 268, N'AW00011422', NULL, N'Dustin', N'F', N'Deng', 0, CAST(N'1946-09-01 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 170000.0000, 4, 4, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Management', N'Gestión', N'Direction', N'1', 3, N'8185 Sol Street', NULL, N'1 (11) 500 555-0168', CAST(N'2002-02-22 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11423, 147, N'AW00011423', NULL, N'Jasmine', NULL, N'Stewart', 0, CAST(N'1954-11-05 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 80000.0000, 4, 2, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Professional', N'Profesional', N'Cadre', N'0', 1, N'Heidestieg Straße 8224', NULL, N'1 (11) 500 555-0165', CAST(N'2002-06-12 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11424, 164, N'AW00011424', NULL, N'Pamela', N'S', N'Garcia', 0, CAST(N'1953-12-07 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 80000.0000, 4, 2, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Professional', N'Profesional', N'Cadre', N'1', 2, N'Postfach 11 09 99', NULL, N'1 (11) 500 555-0182', CAST(N'2003-10-23 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11425, 184, N'AW00011425', NULL, N'Ariana', N'D', N'Gray', 0, CAST(N'1954-08-06 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 90000.0000, 4, 2, N'High School', N'Educación secundaria', N'Bac + 2', N'Professional', N'Profesional', N'Cadre', N'1', 2, N'3675 Palms Dr', NULL, N'1 (11) 500 555-0191', CAST(N'2003-05-26 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11426, 156, N'AW00011426', NULL, N'Kristopher', NULL, N'Mehta', 0, CAST(N'1953-10-02 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 110000.0000, 3, 4, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Management', N'Gestión', N'Direction', N'1', 4, N'Herzogstr 328', N'Einkaufsabteilung', N'1 (11) 500 555-0181', CAST(N'2003-10-11 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11427, 168, N'AW00011427', NULL, N'Desiree', N'S', N'Dominguez', 0, CAST(N'1953-12-18 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 110000.0000, 2, 5, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Professional', N'Profesional', N'Cadre', N'1', 2, N'Holzstr 4222', NULL, N'1 (11) 500 555-0133', CAST(N'2002-06-22 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11428, 173, N'AW00011428', NULL, N'Deanna', NULL, N'Perez', 0, CAST(N'1953-08-22 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 120000.0000, 2, 5, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Management', N'Gestión', N'Direction', N'1', 2, N'Marienplatz 56', NULL, N'1 (11) 500 555-0191', CAST(N'2002-06-07 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11429, 218, N'AW00011429', NULL, N'Marco', NULL, N'Lopez', 0, CAST(N'1952-07-16 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 80000.0000, 4, 1, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Professional', N'Profesional', N'Cadre', N'1', 2, N'313, rue de l''Espace De Schengen', NULL, N'1 (11) 500 555-0186', CAST(N'2003-06-17 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11430, 155, N'AW00011430', NULL, N'Casey', N'K', N'Yuan', 0, CAST(N'1952-03-24 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 90000.0000, 4, 1, N'High School', N'Educación secundaria', N'Bac + 2', N'Professional', N'Profesional', N'Cadre', N'1', 2, N'Hunzinger Allee 153', NULL, N'1 (11) 500 555-0184', CAST(N'2003-09-20 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11431, 120, N'AW00011431', NULL, N'Bryant', NULL, N'Garcia', 0, CAST(N'1952-10-27 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 110000.0000, 4, 5, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Professional', N'Profesional', N'Cadre', N'1', 2, N'Am Gallberg 94', NULL, N'1 (11) 500 555-0115', CAST(N'2002-06-23 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11432, 206, N'AW00011432', NULL, N'Dominique', N'L', N'Prasad', 0, CAST(N'1951-09-11 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 80000.0000, 4, 2, N'High School', N'Educación secundaria', N'Bac + 2', N'Professional', N'Profesional', N'Cadre', N'1', 2, N'765, rue Villedo', NULL, N'1 (11) 500 555-0148', CAST(N'2003-06-13 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11433, 224, N'AW00011433', NULL, N'Maurice', N'M', N'Shan', 0, CAST(N'1951-09-02 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 80000.0000, 5, 2, N'High School', N'Educación secundaria', N'Bac + 2', N'Professional', N'Profesional', N'Cadre', N'0', 2, N'59, rue Montcalm', NULL, N'1 (11) 500 555-0130', CAST(N'2003-06-05 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11434, 274, N'AW00011434', NULL, N'Andre', NULL, N'Lopez', 0, CAST(N'1951-05-06 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 170000.0000, 5, 5, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Professional', N'Profesional', N'Cadre', N'1', 4, N'638 Shangri-la Rd.', NULL, N'1 (11) 500 555-0111', CAST(N'2003-12-17 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11435, 168, N'AW00011435', NULL, N'Robin', NULL, N'Romero', 0, CAST(N'1950-03-06 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 100000.0000, 3, 4, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Management', N'Gestión', N'Direction', N'1', 4, N'Hüttenstr 9995', NULL, N'1 (11) 500 555-0168', CAST(N'2004-07-07 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11436, 273, N'AW00011436', NULL, N'Taylor', NULL, N'Cox', 0, CAST(N'1950-09-18 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 160000.0000, 3, 5, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Management', N'Gestión', N'Direction', N'0', 4, N'6409 Buckthorn Court', NULL, N'1 (11) 500 555-0125', CAST(N'2003-11-23 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11437, 190, N'AW00011437', NULL, N'Alfredo', NULL, N'Moreno', 0, CAST(N'1949-12-17 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 90000.0000, 4, 1, N'High School', N'Educación secundaria', N'Bac + 2', N'Management', N'Gestión', N'Direction', N'1', 3, N'882, rue Villedo', NULL, N'1 (11) 500 555-0166', CAST(N'2004-06-21 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11438, 162, N'AW00011438', NULL, N'Jenny', NULL, N'Nara', 0, CAST(N'1949-10-14 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 130000.0000, 4, 5, N'High School', N'Educación secundaria', N'Bac + 2', N'Management', N'Gestión', N'Direction', N'1', 4, N'Alderstr 8642', NULL, N'1 (11) 500 555-0164', CAST(N'2003-08-09 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11439, 217, N'AW00011439', NULL, N'Janet', NULL, N'Munoz', 0, CAST(N'1948-05-17 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 90000.0000, 4, 1, N'High School', N'Educación secundaria', N'Bac + 2', N'Management', N'Gestión', N'Direction', N'0', 3, N'61, rue Pierre-Demoulin', NULL, N'1 (11) 500 555-0148', CAST(N'2003-06-02 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11440, 187, N'AW00011440', NULL, N'Sergio', N'C', N'Weber', 0, CAST(N'1947-09-27 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 80000.0000, 5, 0, N'Partial High School', N'Educación secundaria (en curso)', N'Niveau bac', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 2, N'6, place de Fontenoy', NULL, N'1 (11) 500 555-0178', CAST(N'2003-09-28 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11441, 192, N'AW00011441', NULL, N'Erika', NULL, N'Gomez', 0, CAST(N'1947-06-12 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 90000.0000, 5, 0, N'Partial High School', N'Educación secundaria (en curso)', N'Niveau bac', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 2, N'2, place Beaubernard', NULL, N'1 (11) 500 555-0155', CAST(N'2004-07-11 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11442, 224, N'AW00011442', NULL, N'Joseph', N'D', N'Harris', 0, CAST(N'1947-11-14 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 90000.0000, 5, 0, N'Partial High School', N'Educación secundaria (en curso)', N'Niveau bac', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'8, rue des Vendangeurs', NULL, N'1 (11) 500 555-0116', CAST(N'2004-04-01 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11443, 31, N'AW00011443', NULL, N'Grace', NULL, N'Griffin', 0, CAST(N'1976-05-22 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 60000.0000, 0, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'0', 4, N'9825 Mt. Dell Drive', NULL, N'1 (11) 500 555-0170', CAST(N'2001-12-08 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11444, 32, N'AW00011444', NULL, N'Tina', N'C', N'Mehta', 0, CAST(N'1976-04-28 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 70000.0000, 0, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'1', 3, N'5357 Willow Drive', NULL, N'1 (11) 500 555-0192', CAST(N'2001-12-02 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11445, 15, N'AW00011445', NULL, N'Kari', N'S', N'Kim', 0, CAST(N'1974-07-21 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 70000.0000, 0, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'0', 3, N'977 Davona Drive', NULL, N'1 (11) 500 555-0136', CAST(N'2001-12-07 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11446, 5, N'AW00011446', NULL, N'Bethany', N'K', N'Chander', 0, CAST(N'1974-08-12 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 70000.0000, 0, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'0', 3, N'3464 Chilpancingo Park', NULL, N'1 (11) 500 555-0179', CAST(N'2001-12-19 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11447, 25, N'AW00011447', NULL, N'Jennifer', NULL, N'Roberts', 0, CAST(N'1974-08-16 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 70000.0000, 0, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'1', 4, N'618 Natalie Drive', NULL, N'1 (11) 500 555-0112', CAST(N'2001-12-29 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11448, 35, N'AW00011448', NULL, N'Kyle', NULL, N'Patterson', 0, CAST(N'1975-04-28 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 80000.0000, 0, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'1', 3, N'5444 Bohon Circle', NULL, N'1 (11) 500 555-0145', CAST(N'2001-12-17 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11449, 37, N'AW00011449', NULL, N'Alvin', N'E', N'Hu', 0, CAST(N'1975-02-02 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 80000.0000, 0, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'1', 3, N'8468 Clifford Court', NULL, N'1 (11) 500 555-0144', CAST(N'2001-12-20 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11450, 28, N'AW00011450', NULL, N'Brett', NULL, N'Mehta', 0, CAST(N'1975-11-12 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 130000.0000, 4, 5, N'High School', N'Educación secundaria', N'Bac + 2', N'Management', N'Gestión', N'Direction', N'1', 4, N'7411 Crivello Avenue', NULL, N'1 (11) 500 555-0187', CAST(N'2001-12-30 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11451, 10, N'AW00011451', NULL, N'Ruben', N'L', N'Muñoz', 0, CAST(N'1974-11-09 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 70000.0000, 0, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'0', 4, N'3255 Olive Hill', NULL, N'1 (11) 500 555-0142', CAST(N'2002-01-29 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11452, 21, N'AW00011452', NULL, N'Erika', N'A', N'Rubio', 0, CAST(N'1973-11-05 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 80000.0000, 0, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'0', 3, N'5065 Maywood Lane', NULL, N'1 (11) 500 555-0159', CAST(N'2002-01-11 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11453, 31, N'AW00011453', NULL, N'Stanley', N'H', N'Malhotra', 0, CAST(N'1973-08-21 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 80000.0000, 0, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'0', 3, N'9218 Old Mt. View Drive', NULL, N'1 (11) 500 555-0139', CAST(N'2002-01-15 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11454, 35, N'AW00011454', NULL, N'Melinda', NULL, N'Navarro', 0, CAST(N'1974-04-22 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 80000.0000, 0, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'0', 3, N'1562 Black Walnut', NULL, N'1 (11) 500 555-0145', CAST(N'2002-01-31 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11455, 36, N'AW00011455', NULL, N'Ross', NULL, N'Sanz', 0, CAST(N'1974-04-21 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 100000.0000, 0, 5, N'High School', N'Educación secundaria', N'Bac + 2', N'Management', N'Gestión', N'Direction', N'1', 2, N'6782 First Ave', NULL, N'1 (11) 500 555-0147', CAST(N'2002-01-01 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11456, 17, N'AW00011456', NULL, N'Jon', N'C', N'Gao', 0, CAST(N'1974-07-08 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 120000.0000, 5, 5, N'Partial High School', N'Educación secundaria (en curso)', N'Niveau bac', N'Professional', N'Profesional', N'Cadre', N'1', 4, N'6455 Garnet Lane', NULL, N'1 (11) 500 555-0136', CAST(N'2002-01-17 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11457, 19, N'AW00011457', NULL, N'Jaime', N'C', N'Gutierrez', 0, CAST(N'1973-05-21 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 90000.0000, 0, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'1', 3, N'6615 Camel Place', NULL, N'1 (11) 500 555-0173', CAST(N'2002-01-17 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11458, 16, N'AW00011458', NULL, N'Bianca', N'K', N'Liu', 0, CAST(N'1973-04-05 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 100000.0000, 0, 5, N'High School', N'Educación secundaria', N'Bac + 2', N'Management', N'Gestión', N'Direction', N'1', 2, N'811 Via Cordona', NULL, N'1 (11) 500 555-0179', CAST(N'2003-10-01 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11459, 13, N'AW00011459', NULL, N'Tasha', NULL, N'Deng', 0, CAST(N'1972-10-13 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 80000.0000, 0, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'0', 3, N'9627 Kendall Rd', NULL, N'1 (11) 500 555-0171', CAST(N'2002-01-27 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11460, 33, N'AW00011460', NULL, N'Melvin', N'R', N'Chande', 0, CAST(N'1972-10-07 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 90000.0000, 0, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'0', 3, N'5075 Reading Dr.', NULL, N'1 (11) 500 555-0121', CAST(N'2002-01-21 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11461, 6, N'AW00011461', NULL, N'Victor', NULL, N'Jimenez', 0, CAST(N'1972-03-25 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 90000.0000, 0, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'0', 3, N'7201 Elk Dr.', NULL, N'1 (11) 500 555-0176', CAST(N'2002-01-31 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11462, 8, N'AW00011462', NULL, N'Laura', N'L', N'Lin', 0, CAST(N'1972-01-19 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 110000.0000, 0, 5, N'High School', N'Educación secundaria', N'Bac + 2', N'Management', N'Gestión', N'Direction', N'1', 4, N'3378 Coldwater Drive', NULL, N'1 (11) 500 555-0151', CAST(N'2002-01-16 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11463, 28, N'AW00011463', NULL, N'Alisha', N'E', N'Beck', 0, CAST(N'1972-03-12 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 110000.0000, 0, 5, N'High School', N'Educación secundaria', N'Bac + 2', N'Management', N'Gestión', N'Direction', N'0', 4, N'1328 Huntleigh Dr.', NULL, N'1 (11) 500 555-0169', CAST(N'2003-09-06 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11464, 38, N'AW00011464', NULL, N'Alejandro', NULL, N'Huang', 0, CAST(N'1971-11-16 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 90000.0000, 0, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'1', 4, N'6171 Golf Club Rd', NULL, N'1 (11) 500 555-0112', CAST(N'2002-01-22 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11465, 23, N'AW00011465', NULL, N'Louis', NULL, N'Luo', 0, CAST(N'1971-02-19 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 90000.0000, 0, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'0', 4, N'4187 Banbury Loop', NULL, N'1 (11) 500 555-0185', CAST(N'2002-01-14 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11466, 6, N'AW00011466', NULL, N'Grant', N'H', N'Tang', 0, CAST(N'1971-08-03 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 150000.0000, 0, 5, N'Partial High School', N'Educación secundaria (en curso)', N'Niveau bac', N'Management', N'Gestión', N'Direction', N'1', 4, N'2710 Saddlehill Lane', NULL, N'1 (11) 500 555-0195', CAST(N'2003-11-23 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11467, 17, N'AW00011467', NULL, N'Arturo', N'C', N'Zheng', 0, CAST(N'1969-10-07 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 170000.0000, 1, 5, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Management', N'Gestión', N'Direction', N'1', 4, N'9719 Hamilton Ave', NULL, N'1 (11) 500 555-0154', CAST(N'2004-02-01 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11468, 278, N'AW00011468', NULL, N'Jaclyn', NULL, N'Andersen', 0, CAST(N'1975-06-18 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 40000.0000, 1, 1, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 0, N'8274 Gladstone Drive', NULL, N'1 (11) 500 555-0126', CAST(N'2002-02-08 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11469, 278, N'AW00011469', NULL, N'Edwin', NULL, N'Raji', 0, CAST(N'1973-04-16 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 10000.0000, 0, 0, N'Partial High School', N'Educación secundaria (en curso)', N'Niveau bac', N'Manual', N'Obrero', N'Ouvrier', N'0', 2, N'6045 Nightingale Drive', NULL, N'1 (11) 500 555-0143', CAST(N'2004-02-10 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11470, 177, N'AW00011470', NULL, N'Jay', N'C', N'Suarez', 0, CAST(N'1973-09-25 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 20000.0000, 0, 0, N'Partial High School', N'Educación secundaria (en curso)', N'Niveau bac', N'Manual', N'Obrero', N'Ouvrier', N'0', 2, N'Heidestieg Straße 8664', NULL, N'1 (11) 500 555-0195', CAST(N'2002-07-25 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11471, 207, N'AW00011471', NULL, N'Latasha', NULL, N'Suarez', 0, CAST(N'1973-09-25 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 30000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Clerical', N'Administrativo', N'Employé', N'1', 1, N'29, avenue de la Gare', NULL, N'1 (11) 500 555-0180', CAST(N'2003-11-18 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11472, 24, N'AW00011472', NULL, N'Kenneth', NULL, N'Kumar', 0, CAST(N'1963-04-03 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 60000.0000, 3, 2, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'1', 2, N'7815 Driftwood Drive', NULL, N'1 (11) 500 555-0153', CAST(N'2002-01-26 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11473, 221, N'AW00011473', NULL, N'Grace', N'M', N'Henderson', 0, CAST(N'1980-08-02 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 20000.0000, 0, 0, N'Partial High School', N'Educación secundaria (en curso)', N'Niveau bac', N'Manual', N'Obrero', N'Ouvrier', N'0', 2, N'1039, rue Mazagran', NULL, N'1 (11) 500 555-0164', CAST(N'2003-12-04 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11474, 265, N'AW00011474', NULL, N'Melvin', N'A', N'Xu', 0, CAST(N'1980-02-22 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 20000.0000, 0, 0, N'Partial High School', N'Educación secundaria (en curso)', N'Niveau bac', N'Manual', N'Obrero', N'Ouvrier', N'1', 2, N'4092 Folson Drive', NULL, N'1 (11) 500 555-0113', CAST(N'2004-03-29 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11475, 251, N'AW00011475', NULL, N'Cesar', N'L', N'Subram', 0, CAST(N'1978-10-09 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 30000.0000, 0, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Manual', N'Obrero', N'Ouvrier', N'0', 1, N'8778 So. Silver Spring', NULL, N'1 (11) 500 555-0118', CAST(N'2003-10-25 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11476, 241, N'AW00011476', NULL, N'Erika', N'K', N'Navarro', 0, CAST(N'1974-11-17 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 40000.0000, 1, 1, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 0, N'37 Amaranth Way', NULL, N'1 (11) 500 555-0145', CAST(N'2004-05-04 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11477, 127, N'AW00011477', NULL, N'Tristan', NULL, N'Hughes', 0, CAST(N'1973-06-25 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 30000.0000, 0, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Manual', N'Obrero', N'Ouvrier', N'0', 1, N'Platz des Landtags 33', NULL, N'1 (11) 500 555-0121', CAST(N'2004-03-28 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11478, 218, N'AW00011478', NULL, N'Billy', N'C', N'Hernandez', 0, CAST(N'1973-02-25 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 30000.0000, 0, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Manual', N'Obrero', N'Ouvrier', N'0', 1, N'570, avenue des Champs-Elysées', NULL, N'1 (11) 500 555-0121', CAST(N'2003-10-21 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11479, 182, N'AW00011479', NULL, N'Darryl', N'L', N'Wu', 0, CAST(N'1973-04-22 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 40000.0000, 1, 1, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 0, N'52, rue de Berri', NULL, N'1 (11) 500 555-0180', CAST(N'2003-06-08 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11480, 224, N'AW00011480', NULL, N'Colleen', N'A', N'Ma', 0, CAST(N'1973-03-11 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 40000.0000, 1, 1, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 0, N'2, place Beaubernard', NULL, N'1 (11) 500 555-0160', CAST(N'2003-06-28 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11481, 156, N'AW00011481', NULL, N'Erica', NULL, N'Hu', 0, CAST(N'1973-05-23 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 40000.0000, 1, 1, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 0, N'Am Gallberg 46', N'Einkaufsabteilung', N'1 (11) 500 555-0117', CAST(N'2002-07-30 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11482, 272, N'AW00011482', NULL, N'Adrienne', N'C', N'Torres', 0, CAST(N'1972-07-19 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 30000.0000, 0, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Manual', N'Obrero', N'Ouvrier', N'0', 1, N'9684 La Vista Avenue', NULL, N'1 (11) 500 555-0120', CAST(N'2002-03-11 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11483, 199, N'AW00011483', NULL, N'Calvin', N'E', N'Chande', 0, CAST(N'1972-05-22 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 40000.0000, 1, 1, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 1, N'9, rue de l´Avenir', NULL, N'1 (11) 500 555-0197', CAST(N'2003-06-25 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11484, 171, N'AW00011484', NULL, N'Erick', N'L', N'Sai', 0, CAST(N'1972-03-06 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 40000.0000, 2, 2, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Clerical', N'Administrativo', N'Employé', N'1', 0, N'Hauptstr 6057', NULL, N'1 (11) 500 555-0161', CAST(N'2002-07-05 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11485, 237, N'AW00011485', NULL, N'Donald', NULL, N'Chandra', 0, CAST(N'1972-08-07 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 40000.0000, 2, 2, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Clerical', N'Administrativo', N'Employé', N'0', 0, N'1644 Alicante Court', NULL, N'1 (11) 500 555-0191', CAST(N'2002-03-17 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11486, 117, N'AW00011486', NULL, N'Ariana', N'F', N'Rogers', 0, CAST(N'1971-05-25 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 10000.0000, 0, 0, N'Partial High School', N'Educación secundaria (en curso)', N'Niveau bac', N'Manual', N'Obrero', N'Ouvrier', N'1', 2, N'Königstr 381', NULL, N'1 (11) 500 555-0118', CAST(N'2004-05-27 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11487, 186, N'AW00011487', NULL, N'Morgan', N'C', N'Jones', 0, CAST(N'1971-07-09 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 10000.0000, 0, 0, N'Partial High School', N'Educación secundaria (en curso)', N'Niveau bac', N'Manual', N'Obrero', N'Ouvrier', N'0', 2, N'55, impasse Notre-Dame', NULL, N'1 (11) 500 555-0155', CAST(N'2004-06-17 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11488, 256, N'AW00011488', NULL, N'Jermaine', NULL, N'Lopez', 0, CAST(N'1971-09-21 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 20000.0000, 0, 0, N'Partial High School', N'Educación secundaria (en curso)', N'Niveau bac', N'Manual', N'Obrero', N'Ouvrier', N'1', 2, N'5456 Old Oak Drive', NULL, N'1 (11) 500 555-0181', CAST(N'2002-04-30 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11489, 262, N'AW00011489', NULL, N'Deborah', N'S', N'Goel', 0, CAST(N'1971-03-07 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 20000.0000, 0, 0, N'Partial High School', N'Educación secundaria (en curso)', N'Niveau bac', N'Manual', N'Obrero', N'Ouvrier', N'0', 2, N'3670 All Ways Drive', NULL, N'1 (11) 500 555-0168', CAST(N'2002-04-30 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11490, 217, N'AW00011490', NULL, N'Danny', NULL, N'Rubio', 0, CAST(N'1971-01-06 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 20000.0000, 0, 0, N'Partial High School', N'Educación secundaria (en curso)', N'Niveau bac', N'Manual', N'Obrero', N'Ouvrier', N'0', 2, N'5, avenue de la Gare', NULL, N'1 (11) 500 555-0122', CAST(N'2003-10-06 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11491, 255, N'AW00011491', NULL, N'Andre', NULL, N'Perez', 0, CAST(N'1971-04-06 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 20000.0000, 0, 0, N'Partial High School', N'Educación secundaria (en curso)', N'Niveau bac', N'Manual', N'Obrero', N'Ouvrier', N'0', 2, N'70 Tobi Drive', NULL, N'1 (11) 500 555-0112', CAST(N'2002-05-10 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11492, 115, N'AW00011492', NULL, N'Terrence', N'C', N'Chander', 0, CAST(N'1971-11-19 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 30000.0000, 0, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Manual', N'Obrero', N'Ouvrier', N'0', 1, N'Reiherweg 5014', NULL, N'1 (11) 500 555-0155', CAST(N'2002-08-14 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11493, 255, N'AW00011493', NULL, N'Dawn', N'T', N'Wu', 0, CAST(N'1970-12-02 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 40000.0000, 2, 2, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Clerical', N'Administrativo', N'Employé', N'1', 0, N'6344 St Paul Way', NULL, N'1 (11) 500 555-0139', CAST(N'2002-05-17 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11494, 267, N'AW00011494', NULL, N'Jimmy', N'M', N'Gutierrez', 0, CAST(N'1970-07-28 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 40000.0000, 2, 2, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Clerical', N'Administrativo', N'Employé', N'1', 0, N'9627 N. Civic Drive', NULL, N'1 (11) 500 555-0112', CAST(N'2002-06-25 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11495, 154, N'AW00011495', NULL, N'Francis', NULL, N'Jimenez', 0, CAST(N'1971-09-04 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 40000.0000, 2, 2, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Clerical', N'Administrativo', N'Employé', N'1', 1, N'Curieweg 3991', NULL, N'1 (11) 500 555-0143', CAST(N'2004-04-28 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11496, 272, N'AW00011496', NULL, N'Gary', NULL, N'Ortega', 0, CAST(N'1970-10-17 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 40000.0000, 2, 2, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Clerical', N'Administrativo', N'Employé', N'1', 2, N'5009 Grasswood Circle', NULL, N'1 (11) 500 555-0197', CAST(N'2002-06-02 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11497, 261, N'AW00011497', NULL, N'Katrina', N'R', N'Nath', 0, CAST(N'1970-11-26 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 40000.0000, 2, 2, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Clerical', N'Administrativo', N'Employé', N'1', 2, N'8874 Folson Drive', NULL, N'1 (11) 500 555-0154', CAST(N'2004-05-07 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11498, 49, N'AW00011498', NULL, N'Arturo', N'C', N'Sun', 0, CAST(N'1974-01-15 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 40000.0000, 3, 3, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Clerical', N'Administrativo', N'Employé', N'1', 2, N'4023 Jasper Court', NULL, N'694-555-0114', CAST(N'2003-09-01 00:00:00.000' AS DateTime), N'1-2 Miles')

GO

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11499, 311, N'AW00011499', NULL, N'Pedro', N'A', N'Vance', 0, CAST(N'1974-11-14 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 40000.0000, 3, 3, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Clerical', N'Administrativo', N'Employé', N'1', 2, N'4438 Chrislend Court', NULL, N'149-555-0132', CAST(N'2003-10-08 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11500, 52, N'AW00011500', NULL, N'Sarah', N'V', N'Simmons', 0, CAST(N'1974-09-18 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 40000.0000, 0, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 0, N'1005 Valley Oak Plaza', NULL, N'579-555-0169', CAST(N'2003-08-04 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11501, 49, N'AW00011501', NULL, N'Brandy', N'P', N'Chandra', 0, CAST(N'1975-07-07 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 40000.0000, 3, 3, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Clerical', N'Administrativo', N'Employé', N'1', 2, N'7089 Monti Circle', NULL, N'323-555-0162', CAST(N'2003-09-28 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11502, 63, N'AW00011502', NULL, N'Jared', NULL, N'Peterson', 0, CAST(N'1975-03-07 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 40000.0000, 4, 4, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Clerical', N'Administrativo', N'Employé', N'1', 1, N'6878 Dublin', NULL, N'879-555-0159', CAST(N'2003-08-03 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11503, 312, N'AW00011503', NULL, N'Dennis', N'G', N'Wu', 0, CAST(N'1930-10-13 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 50000.0000, 1, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 0, N'9810 Rishell Ct.', NULL, N'724-555-0194', CAST(N'2003-11-27 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11504, 315, N'AW00011504', NULL, N'Jordan', N'P', N'Baker', 0, CAST(N'1931-04-20 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 40000.0000, 1, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 1, N'3427 B Wildbrook Ct.', NULL, N'138-555-0117', CAST(N'2003-11-02 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11505, 43, N'AW00011505', NULL, N'Jasmine', N'A', N'Powell', 0, CAST(N'1966-07-07 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 60000.0000, 0, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 0, N'5684 San Marino Ct.', NULL, N'847-555-0156', CAST(N'2003-08-26 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11506, 60, N'AW00011506', NULL, N'Nicholas', N'S', N'Brown', 0, CAST(N'1966-05-17 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 60000.0000, 0, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 0, N'2813 Dew Drop Circle', NULL, N'883-555-0144', CAST(N'2003-09-09 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11507, 69, N'AW00011507', NULL, N'Isabella', N'A', N'Russell', 0, CAST(N'1966-11-20 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 60000.0000, 0, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 0, N'2427 Pastime Dr', NULL, N'168-555-0190', CAST(N'2003-08-21 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11508, 626, N'AW00011508', NULL, N'Elizabeth', N'R', N'Wilson', 0, CAST(N'1966-07-07 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 60000.0000, 0, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 0, N'1144 N. Jackson Way', NULL, N'469-555-0110', CAST(N'2003-11-03 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11509, 347, N'AW00011509', NULL, N'Roger', NULL, N'Harui', 0, CAST(N'1953-07-26 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 30000.0000, 1, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 1, N'3989 Tice Valley Blvd.', NULL, N'731-555-0184', CAST(N'2004-01-30 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11510, 54, N'AW00011510', NULL, N'Seth', N'H', N'Roberts', 0, CAST(N'1953-07-13 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 30000.0000, 1, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 1, N'5989 Concord Ave', NULL, N'199-555-0147', CAST(N'2003-09-13 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11511, 543, N'AW00011511', NULL, N'Caleb', NULL, N'Perry', 0, CAST(N'1953-06-14 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 30000.0000, 1, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 1, N'2324 Cherry Street', NULL, N'786-555-0137', CAST(N'2003-09-14 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11512, 59, N'AW00011512', NULL, N'Natalie', N'L', N'Campbell', 0, CAST(N'1954-08-13 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 20000.0000, 3, 0, N'Partial High School', N'Educación secundaria (en curso)', N'Niveau bac', N'Manual', N'Obrero', N'Ouvrier', N'1', 2, N'3481 Broadmoor Drive', NULL, N'178-555-0147', CAST(N'2004-06-30 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11513, 62, N'AW00011513', NULL, N'Alyssa', N'A', N'Howard', 0, CAST(N'1954-09-27 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 20000.0000, 3, 0, N'Partial High School', N'Educación secundaria (en curso)', N'Niveau bac', N'Manual', N'Obrero', N'Ouvrier', N'0', 2, N'5780 Conifer Terrace', NULL, N'805-555-0188', CAST(N'2003-12-10 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11514, 642, N'AW00011514', NULL, N'Dalton', NULL, N'Diaz', 0, CAST(N'1954-04-20 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 30000.0000, 1, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Clerical', N'Administrativo', N'Employé', N'1', 1, N'8033 Danesta Dr.', NULL, N'994-555-0158', CAST(N'2003-12-26 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11515, 301, N'AW00011515', NULL, N'Shannon', N'H', N'Huang', 0, CAST(N'1954-02-25 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 30000.0000, 1, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Clerical', N'Administrativo', N'Employé', N'1', 1, N'4679 Duke Way', NULL, N'458-555-0116', CAST(N'2002-03-03 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11516, 310, N'AW00011516', NULL, N'Mya', NULL, N'Gonzales', 0, CAST(N'1954-10-21 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 30000.0000, 1, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Clerical', N'Administrativo', N'Employé', N'1', 1, N'8826 Fine Drive', NULL, N'211-555-0110', CAST(N'2002-03-18 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11517, 355, N'AW00011517', NULL, N'Katherine', N'A', N'Bryant', 0, CAST(N'1954-06-20 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 40000.0000, 1, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Clerical', N'Administrativo', N'Employé', N'1', 1, N'8761 Dancing Court', NULL, N'802-555-0135', CAST(N'2003-12-28 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11518, 545, N'AW00011518', NULL, N'Edward', NULL, N'Washington', 0, CAST(N'1955-05-10 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 40000.0000, 1, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Clerical', N'Administrativo', N'Employé', N'1', 1, N'2747 Carmel Dr.', NULL, N'446-555-0170', CAST(N'2004-04-29 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11519, 49, N'AW00011519', NULL, N'Jerome', N'B', N'Navarro', 0, CAST(N'1955-03-17 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 40000.0000, 1, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Clerical', N'Administrativo', N'Employé', N'1', 1, N'9537 Ridgewood Drive', NULL, N'934-555-0191', CAST(N'2003-09-14 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11520, 60, N'AW00011520', NULL, N'Jada', N'A', N'Morgan', 0, CAST(N'1955-04-11 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 40000.0000, 1, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Clerical', N'Administrativo', N'Employé', N'1', 1, N'8394 Lincoln Drive', NULL, N'160-555-0131', CAST(N'2003-08-26 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11521, 644, N'AW00011521', NULL, N'Ariana', NULL, N'Peterson', 0, CAST(N'1955-12-09 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 40000.0000, 1, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Clerical', N'Administrativo', N'Employé', N'1', 1, N'9052 Blue Ridge Dr', NULL, N'298-555-0145', CAST(N'2003-09-06 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11522, 546, N'AW00011522', NULL, N'Christian', N'J', N'Hughes', 0, CAST(N'1955-12-23 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 80000.0000, 5, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 0, N'3279 W 46th St', NULL, N'231-555-0168', CAST(N'2002-03-06 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11523, 54, N'AW00011523', NULL, N'Lucas', N'V', N'Taylor', 0, CAST(N'1956-08-10 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 40000.0000, 1, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Clerical', N'Administrativo', N'Employé', N'1', 1, N'2328 California Street', NULL, N'149-555-0146', CAST(N'2003-08-19 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11524, 374, N'AW00011524', NULL, N'Alyssa', N'L', N'Jackson', 0, CAST(N'1956-01-23 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 40000.0000, 1, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Clerical', N'Administrativo', N'Employé', N'1', 1, N'8752 Greenway Drive', NULL, N'398-555-0193', CAST(N'2004-02-29 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11525, 543, N'AW00011525', NULL, N'Ariana', NULL, N'Cook', 0, CAST(N'1956-01-09 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 40000.0000, 1, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Clerical', N'Administrativo', N'Employé', N'1', 1, N'869 Aspen Drive', NULL, N'160-555-0119', CAST(N'2002-03-09 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11526, 70, N'AW00011526', NULL, N'Katherine', N'P', N'Diaz', 0, CAST(N'1956-08-06 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 40000.0000, 1, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Clerical', N'Administrativo', N'Employé', N'1', 1, N'8160 Star Tree Court', NULL, N'147-555-0124', CAST(N'2003-08-07 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11527, 361, N'AW00011527', NULL, N'Jenna', N'J', N'Green', 0, CAST(N'1956-06-04 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 40000.0000, 1, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Clerical', N'Administrativo', N'Employé', N'1', 1, N'905 Johnson Road', NULL, N'961-555-0153', CAST(N'2003-08-11 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11528, 325, N'AW00011528', NULL, N'Joan', NULL, N'Washington', 0, CAST(N'1957-08-19 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 40000.0000, 1, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Clerical', N'Administrativo', N'Employé', N'1', 1, N'2932 Esperanza Dr', NULL, N'732-555-0144', CAST(N'2002-03-15 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11529, 547, N'AW00011529', NULL, N'Austin', N'L', N'Bryant', 0, CAST(N'1957-11-16 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 40000.0000, 1, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Clerical', N'Administrativo', N'Employé', N'1', 1, N'786 Eastgate Ave', NULL, N'537-555-0113', CAST(N'2002-03-27 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11530, 54, N'AW00011530', NULL, N'Andrew', N'C', N'Martinez', 0, CAST(N'1957-07-26 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 40000.0000, 1, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Clerical', N'Administrativo', N'Employé', N'1', 1, N'3183 Trasher Road', NULL, N'226-555-0113', CAST(N'2003-08-01 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11531, 300, N'AW00011531', NULL, N'Nina', N'R', N'Yuan', 0, CAST(N'1957-01-07 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 40000.0000, 1, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Clerical', N'Administrativo', N'Employé', N'1', 1, N'4851 Heights Ave.', NULL, N'568-555-0198', CAST(N'2002-03-02 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11532, 634, N'AW00011532', NULL, N'Lauren', NULL, N'Miller', 0, CAST(N'1957-02-26 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 40000.0000, 1, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Clerical', N'Administrativo', N'Employé', N'1', 1, N'6437 Brookview Dr.', NULL, N'827-555-0183', CAST(N'2003-10-07 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11533, 280, N'AW00011533', NULL, N'Ebony', N'E', N'Gill', 0, CAST(N'1957-07-21 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 40000.0000, 1, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Clerical', N'Administrativo', N'Employé', N'1', 1, N'3235 Mi Casa Court', NULL, N'327-555-0157', CAST(N'2003-11-15 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11534, 337, N'AW00011534', NULL, N'Cameron', N'M', N'Lewis', 0, CAST(N'1958-11-13 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 60000.0000, 4, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 0, N'7665 Terrace Road', NULL, N'199-555-0180', CAST(N'2002-03-21 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11535, 543, N'AW00011535', NULL, N'Devin', NULL, N'Nelson', 0, CAST(N'1958-07-03 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 60000.0000, 4, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 0, N'2569 Webster Drive', NULL, N'256-555-0111', CAST(N'2002-03-05 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11536, 322, N'AW00011536', NULL, N'Logan', N'J', N'Chow', 0, CAST(N'1958-04-17 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 60000.0000, 4, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 0, N'6024 Lacanda', NULL, N'545-555-0121', CAST(N'2002-03-27 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11537, 310, N'AW00011537', NULL, N'Dakota', NULL, N'Ross', 0, CAST(N'1958-03-24 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 60000.0000, 4, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 0, N'1024 Walnut Blvd.', NULL, N'186-555-0170', CAST(N'2002-03-24 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11538, 352, N'AW00011538', NULL, N'Nicole', N'B', N'Taylor', 0, CAST(N'1959-08-28 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 60000.0000, 4, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 0, N'112 Kathleen Drive', NULL, N'217-555-0170', CAST(N'2002-03-19 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11539, 311, N'AW00011539', NULL, N'Justin', NULL, N'Washington', 0, CAST(N'1959-08-22 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 60000.0000, 4, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 0, N'6092 Chestnut', NULL, N'701-555-0175', CAST(N'2002-03-26 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11540, 312, N'AW00011540', NULL, N'Alberto', N'C', N'Navarro', 0, CAST(N'1959-01-28 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 60000.0000, 4, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 0, N'7615 Buena Vista', NULL, N'535-555-0131', CAST(N'2002-03-16 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11541, 547, N'AW00011541', NULL, N'Aidan', N'D', N'Ross', 0, CAST(N'1959-04-12 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 60000.0000, 4, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 0, N'2209 Sequoia Drive', NULL, N'154-555-0143', CAST(N'2002-03-15 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11542, 278, N'AW00011542', NULL, N'Alejandro', N'L', N'Tang', 0, CAST(N'1968-09-10 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 20000.0000, 1, 1, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Manual', N'Obrero', N'Ouvrier', N'0', 0, N'5545 Clemson Court', NULL, N'1 (11) 500 555-0124', CAST(N'2003-11-12 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11543, 201, N'AW00011543', NULL, N'Sheena', NULL, N'Chande', 0, CAST(N'1968-02-17 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 20000.0000, 1, 1, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Manual', N'Obrero', N'Ouvrier', N'1', 1, N'9, rue des Vendangeurs', NULL, N'1 (11) 500 555-0178', CAST(N'2004-06-23 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11544, 127, N'AW00011544', NULL, N'Joel', N'A', N'Garcia', 0, CAST(N'1968-05-07 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 30000.0000, 1, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Clerical', N'Administrativo', N'Employé', N'1', 0, N'Essener Straße 8', NULL, N'1 (11) 500 555-0159', CAST(N'2004-02-29 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11545, 200, N'AW00011545', NULL, N'Reginald', NULL, N'Dominguez', 0, CAST(N'1968-03-25 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 30000.0000, 1, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Clerical', N'Administrativo', N'Employé', N'1', 0, N'88, rue Georges-Clémenceau', NULL, N'1 (11) 500 555-0137', CAST(N'2004-01-14 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11546, 189, N'AW00011546', NULL, N'Christine', NULL, N'Chande', 0, CAST(N'1968-03-14 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 30000.0000, 1, 1, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Clerical', N'Administrativo', N'Employé', N'1', 0, N'522bis, rue des Peupliers', NULL, N'1 (11) 500 555-0179', CAST(N'2003-06-05 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11547, 201, N'AW00011547', NULL, N'Cindy', N'E', N'Sai', 0, CAST(N'1968-03-08 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 40000.0000, 0, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Clerical', N'Administrativo', N'Employé', N'1', 0, N'88, allée des Princes', NULL, N'1 (11) 500 555-0111', CAST(N'2003-06-28 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11548, 230, N'AW00011548', NULL, N'Raymond', NULL, N'Sanchez', 0, CAST(N'1968-10-12 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 40000.0000, 0, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Clerical', N'Administrativo', N'Employé', N'1', 0, N'2381 Tupelo Drive', NULL, N'1 (11) 500 555-0160', CAST(N'2002-06-04 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11549, 257, N'AW00011549', NULL, N'Crystal', N'J', N'Liang', 0, CAST(N'1968-09-06 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 40000.0000, 0, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Clerical', N'Administrativo', N'Employé', N'1', 0, N'5077 Bannock Ct.', NULL, N'1 (11) 500 555-0120', CAST(N'2002-06-23 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11550, 263, N'AW00011550', NULL, N'Deb', NULL, N'Torres', 0, CAST(N'1968-08-08 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 40000.0000, 0, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Clerical', N'Administrativo', N'Employé', N'1', 0, N'7553 Harness Circle', NULL, N'1 (11) 500 555-0125', CAST(N'2002-07-23 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11551, 215, N'AW00011551', NULL, N'Shannon', NULL, N'Alvarez', 0, CAST(N'1967-05-25 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 10000.0000, 3, 3, N'High School', N'Educación secundaria', N'Bac + 2', N'Manual', N'Obrero', N'Ouvrier', N'1', 1, N'268, avenue de l´Europe', NULL, N'1 (11) 500 555-0159', CAST(N'2003-09-02 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11552, 135, N'AW00011552', NULL, N'Eddie', N'L', N'Rubio', 0, CAST(N'1967-05-27 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 20000.0000, 1, 1, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Manual', N'Obrero', N'Ouvrier', N'0', 1, N'Heiderplatz 662', NULL, N'1 (11) 500 555-0159', CAST(N'2004-07-09 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11553, 266, N'AW00011553', NULL, N'Sharon', N'D', N'Luo', 0, CAST(N'1967-09-09 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 20000.0000, 1, 1, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Manual', N'Obrero', N'Ouvrier', N'1', 1, N'6804 Coldwater Drive', NULL, N'1 (11) 500 555-0118', CAST(N'2004-02-23 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11554, 224, N'AW00011554', NULL, N'Sydney', NULL, N'Simmons', 0, CAST(N'1926-09-28 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 10000.0000, 4, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Manual', N'Obrero', N'Ouvrier', N'1', 2, N'88, avenue de l´ Union Centrale', NULL, N'1 (11) 500 555-0198', CAST(N'2003-11-09 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11555, 237, N'AW00011555', NULL, N'Alexandria', N'R', N'Henderson', 0, CAST(N'1926-07-08 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 40000.0000, 1, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Clerical', N'Administrativo', N'Employé', N'1', 0, N'11, rue de la Cavalerie', NULL, N'1 (11) 500 555-0182', CAST(N'2003-11-09 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11556, 271, N'AW00011556', NULL, N'Lucas', N'J', N'Evans', 0, CAST(N'1967-05-14 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 20000.0000, 1, 1, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Manual', N'Obrero', N'Ouvrier', N'1', 1, N'3663 A St.', NULL, N'1 (11) 500 555-0153', CAST(N'2004-06-23 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11557, 278, N'AW00011557', NULL, N'Felicia', NULL, N'Ramos', 0, CAST(N'1967-01-15 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 30000.0000, 1, 1, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Clerical', N'Administrativo', N'Employé', N'0', 0, N'9557 Steven Circle', NULL, N'1 (11) 500 555-0191', CAST(N'2004-02-09 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11558, 276, N'AW00011558', NULL, N'Ivan', N'E', N'Malhotra', 0, CAST(N'1967-08-22 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 30000.0000, 1, 1, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Clerical', N'Administrativo', N'Employé', N'0', 0, N'5086 Nottingham Place', NULL, N'1 (11) 500 555-0198', CAST(N'2004-06-02 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11559, 161, N'AW00011559', NULL, N'Frederick', N'M', N'Subram', 0, CAST(N'1967-12-16 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 30000.0000, 1, 1, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Clerical', N'Administrativo', N'Employé', N'0', 1, N'Rotthäuser Weg 636', NULL, N'1 (11) 500 555-0111', CAST(N'2004-06-01 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11560, 248, N'AW00011560', NULL, N'Whitney', NULL, N'Srini', 0, CAST(N'1967-08-13 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 30000.0000, 1, 1, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Clerical', N'Administrativo', N'Employé', N'0', 1, N'7341 Rockne Drive', NULL, N'1 (11) 500 555-0115', CAST(N'2004-06-05 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11561, 159, N'AW00011561', NULL, N'Briana', NULL, N'Dominguez', 0, CAST(N'1966-07-24 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 10000.0000, 5, 5, N'Partial High School', N'Educación secundaria (en curso)', N'Niveau bac', N'Manual', N'Obrero', N'Ouvrier', N'1', 2, N'Hüttenstr 7005', NULL, N'1 (11) 500 555-0166', CAST(N'2002-08-22 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11562, 158, N'AW00011562', NULL, N'Jarrod', NULL, N'Gonzalez', 0, CAST(N'1966-04-19 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 20000.0000, 1, 1, N'High School', N'Educación secundaria', N'Bac + 2', N'Manual', N'Obrero', N'Ouvrier', N'1', 1, N'Nonnendamm 22', NULL, N'1 (11) 500 555-0151', CAST(N'2003-12-28 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11563, 247, N'AW00011563', NULL, N'Cesar', NULL, N'Srini', 0, CAST(N'1966-02-01 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 20000.0000, 1, 1, N'High School', N'Educación secundaria', N'Bac + 2', N'Manual', N'Obrero', N'Ouvrier', N'0', 1, N'1547 Larkwood Ct.', NULL, N'1 (11) 500 555-0189', CAST(N'2004-01-06 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11564, 146, N'AW00011564', NULL, N'Jorge', N'L', N'Liang', 0, CAST(N'1966-07-12 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 20000.0000, 1, 1, N'High School', N'Educación secundaria', N'Bac + 2', N'Manual', N'Obrero', N'Ouvrier', N'0', 2, N'Heiderweg 4982', NULL, N'1 (11) 500 555-0161', CAST(N'2002-08-19 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11565, 229, N'AW00011565', NULL, N'Erik', N'S', N'Diaz', 0, CAST(N'1966-07-02 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 20000.0000, 2, 2, N'High School', N'Educación secundaria', N'Bac + 2', N'Manual', N'Obrero', N'Ouvrier', N'1', 0, N'4408 Trinity Ave.', NULL, N'1 (11) 500 555-0157', CAST(N'2004-03-11 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11566, 226, N'AW00011566', NULL, N'April', N'L', N'Shan', 0, CAST(N'1967-09-02 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 40000.0000, 0, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Clerical', N'Administrativo', N'Employé', N'1', 0, N'401, boulevard du Montparnasse', NULL, N'1 (11) 500 555-0172', CAST(N'2003-08-01 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11567, 165, N'AW00011567', NULL, N'Carla', NULL, N'Perez', 0, CAST(N'1967-09-23 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 40000.0000, 0, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Clerical', N'Administrativo', N'Employé', N'1', 0, N'Klara Straße 8463', NULL, N'1 (11) 500 555-0146', CAST(N'2003-09-16 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11568, 236, N'AW00011568', NULL, N'Alexia', NULL, N'Foster', 0, CAST(N'1966-10-23 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 20000.0000, 2, 2, N'High School', N'Educación secundaria', N'Bac + 2', N'Manual', N'Obrero', N'Ouvrier', N'1', 0, N'7246 Gloria Terr.', NULL, N'1 (11) 500 555-0182', CAST(N'2002-07-13 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11569, 274, N'AW00011569', NULL, N'Troy', NULL, N'Malhotra', 0, CAST(N'1966-05-10 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 30000.0000, 1, 1, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Clerical', N'Administrativo', N'Employé', N'1', 1, N'1629 Queens Road', NULL, N'1 (11) 500 555-0125', CAST(N'2004-05-23 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11570, 124, N'AW00011570', NULL, N'Kristin', N'K', N'Andersen', 0, CAST(N'1966-01-22 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 30000.0000, 1, 1, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'Zimmerstr 137', NULL, N'1 (11) 500 555-0199', CAST(N'2002-09-26 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11571, 183, N'AW00011571', NULL, N'Joel', NULL, N'Sai', 0, CAST(N'1966-05-18 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 30000.0000, 1, 1, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'99, rue du Puits Dixme', NULL, N'1 (11) 500 555-0144', CAST(N'2003-06-15 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11572, 186, N'AW00011572', NULL, N'Billy', NULL, N'Moreno', 0, CAST(N'1966-03-15 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 30000.0000, 1, 1, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'8733, rue Basse-du-Rocher', NULL, N'1 (11) 500 555-0165', CAST(N'2003-06-12 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11573, 276, N'AW00011573', NULL, N'Meagan', N'W', N'Subram', 0, CAST(N'1965-11-15 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 20000.0000, 2, 2, N'High School', N'Educación secundaria', N'Bac + 2', N'Manual', N'Obrero', N'Ouvrier', N'1', 1, N'7469 Paradise Ct.', NULL, N'1 (11) 500 555-0144', CAST(N'2004-01-28 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11574, 274, N'AW00011574', NULL, N'Karla', N'V', N'Luo', 0, CAST(N'1965-07-17 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 20000.0000, 2, 2, N'High School', N'Educación secundaria', N'Bac + 2', N'Manual', N'Obrero', N'Ouvrier', N'1', 1, N'7390 Discovery Bay', NULL, N'1 (11) 500 555-0139', CAST(N'2003-09-16 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11575, 243, N'AW00011575', NULL, N'Jackson', NULL, N'Campbell', 0, CAST(N'1965-04-21 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 20000.0000, 2, 2, N'High School', N'Educación secundaria', N'Bac + 2', N'Manual', N'Obrero', N'Ouvrier', N'1', 2, N'2109 Mt. Washington', NULL, N'1 (11) 500 555-0182', CAST(N'2002-07-23 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11576, 185, N'AW00011576', NULL, N'Micah', N'V', N'Zhu', 0, CAST(N'1965-02-10 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 30000.0000, 1, 1, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'68, avenue de l´ Union Centrale', NULL, N'1 (11) 500 555-0185', CAST(N'2003-06-18 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11577, 194, N'AW00011577', NULL, N'Janet', NULL, N'Serrano', 0, CAST(N'1965-10-22 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 30000.0000, 1, 1, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'6788 Edward Ave', NULL, N'1 (11) 500 555-0135', CAST(N'2003-06-24 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11578, 222, N'AW00011578', NULL, N'Trisha', NULL, N'Huang', 0, CAST(N'1964-11-08 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 10000.0000, 3, 2, N'Partial High School', N'Educación secundaria (en curso)', N'Niveau bac', N'Manual', N'Obrero', N'Ouvrier', N'1', 2, N'33, place de la République', NULL, N'1 (11) 500 555-0128', CAST(N'2003-06-02 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11579, 272, N'AW00011579', NULL, N'Clayton', NULL, N'Beck', 0, CAST(N'1964-08-20 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 20000.0000, 3, 3, N'High School', N'Educación secundaria', N'Bac + 2', N'Manual', N'Obrero', N'Ouvrier', N'1', 1, N'3626 N Ranchford Court', NULL, N'1 (11) 500 555-0184', CAST(N'2004-02-01 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11580, 230, N'AW00011580', NULL, N'Melvin', NULL, N'Raje', 0, CAST(N'1933-09-12 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 30000.0000, 1, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 1, N'9113 Flamingo Dr.', NULL, N'1 (11) 500 555-0167', CAST(N'2003-10-18 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11581, 193, N'AW00011581', NULL, N'Cindy', NULL, N'Jordan', 0, CAST(N'1966-09-04 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 40000.0000, 0, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'1', 0, N'987, rue de la Centenaire', NULL, N'1 (11) 500 555-0161', CAST(N'2003-08-15 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11582, 222, N'AW00011582', NULL, N'Claudia', N'E', N'Ma', 0, CAST(N'1963-04-13 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 30000.0000, 2, 2, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Clerical', N'Administrativo', N'Employé', N'1', 0, N'222, rue de Cambrai', NULL, N'1 (11) 500 555-0167', CAST(N'2003-06-10 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11583, 207, N'AW00011583', NULL, N'Karla', N'M', N'Xu', 0, CAST(N'1965-09-26 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 30000.0000, 2, 2, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Clerical', N'Administrativo', N'Employé', N'1', 0, N'79, rue de la Comédie', NULL, N'1 (11) 500 555-0160', CAST(N'2003-06-24 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11584, 171, N'AW00011584', NULL, N'Devin', N'J', N'Carter', 0, CAST(N'1965-11-22 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 40000.0000, 1, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 0, N'Buergermeister-ulrich-str 5', NULL, N'1 (11) 500 555-0183', CAST(N'2004-03-19 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11585, 231, N'AW00011585', NULL, N'Kari', N'L', N'Perez', 0, CAST(N'1965-03-08 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 40000.0000, 1, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 0, N'6124 Clayton Road', NULL, N'1 (11) 500 555-0192', CAST(N'2004-07-13 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11586, 278, N'AW00011586', NULL, N'Alberto', NULL, N'Romero', 0, CAST(N'1965-12-15 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 40000.0000, 1, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 0, N'2348 Fruitwood', NULL, N'1 (11) 500 555-0133', CAST(N'2004-04-30 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11587, 184, N'AW00011587', NULL, N'Kevin', NULL, N'Bryant', 0, CAST(N'1964-10-21 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 30000.0000, 2, 2, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Clerical', N'Administrativo', N'Employé', N'1', 2, N'21, rue du Puits Dixme', NULL, N'1 (11) 500 555-0186', CAST(N'2003-06-02 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11588, 223, N'AW00011588', NULL, N'Candace', NULL, N'Mehta', 0, CAST(N'1964-07-14 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 30000.0000, 2, 2, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Clerical', N'Administrativo', N'Employé', N'0', 2, N'24, rue Royale', NULL, N'1 (11) 500 555-0112', CAST(N'2003-06-02 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11589, 257, N'AW00011589', NULL, N'Ebony', NULL, N'Malhotra', 0, CAST(N'1964-05-04 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 40000.0000, 1, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 0, N'7959 Mt. Wilson Way', NULL, N'1 (11) 500 555-0113', CAST(N'2003-12-06 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11590, 221, N'AW00011590', NULL, N'Erika', N'F', N'Diaz', 0, CAST(N'1963-10-18 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 30000.0000, 2, 2, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Clerical', N'Administrativo', N'Employé', N'1', 2, N'Attaché de Presse', NULL, N'1 (11) 500 555-0124', CAST(N'2003-06-04 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11591, 209, N'AW00011591', NULL, N'Stacey', N'W', N'Lu', 0, CAST(N'1963-05-16 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 30000.0000, 3, 3, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Clerical', N'Administrativo', N'Employé', N'1', 0, N'67, avenue de l´ Union Centrale', NULL, N'1 (11) 500 555-0157', CAST(N'2001-07-14 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11592, 198, N'AW00011592', NULL, N'Darrell', N'T', N'Raji', 0, CAST(N'1978-09-04 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 20000.0000, 0, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Manual', N'Obrero', N'Ouvrier', N'0', 1, N'68, impasse Notre-Dame', NULL, N'1 (11) 500 555-0178', CAST(N'2001-07-14 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11593, 183, N'AW00011593', NULL, N'Armando', NULL, N'Moreno', 0, CAST(N'1977-03-25 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 20000.0000, 0, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Manual', N'Obrero', N'Ouvrier', N'1', 1, N'121, rue de Cambrai', NULL, N'1 (11) 500 555-0165', CAST(N'2001-07-24 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11594, 213, N'AW00011594', NULL, N'Corey', NULL, N'Goel', 0, CAST(N'1979-11-04 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 20000.0000, 4, 4, N'High School', N'Educación secundaria', N'Bac + 2', N'Manual', N'Obrero', N'Ouvrier', N'1', 2, N'11, rue de l''Espace De Schengen', NULL, N'1 (11) 500 555-0111', CAST(N'2004-02-18 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11595, 117, N'AW00011595', NULL, N'Sebastian', NULL, N'Howard', 0, CAST(N'1979-07-02 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 20000.0000, 5, 5, N'High School', N'Educación secundaria', N'Bac + 2', N'Manual', N'Obrero', N'Ouvrier', N'1', 3, N'Höhenstr 9419', NULL, N'1 (11) 500 555-0112', CAST(N'2004-07-02 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11596, 267, N'AW00011596', NULL, N'Roger', N'E', N'Raje', 0, CAST(N'1963-09-03 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 40000.0000, 1, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 0, N'9100 Main Street', NULL, N'1 (11) 500 555-0154', CAST(N'2004-04-03 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11597, 225, N'AW00011597', NULL, N'Janelle', N'C', N'Chandra', 0, CAST(N'1978-02-06 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 30000.0000, 3, 3, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Clerical', N'Administrativo', N'Employé', N'1', 2, N'25, avenue de la Gare', NULL, N'1 (11) 500 555-0161', CAST(N'2004-07-08 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11598, 174, N'AW00011598', NULL, N'Meredith', N'B', N'Ruiz', 0, CAST(N'1978-07-02 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 30000.0000, 3, 3, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Clerical', N'Administrativo', N'Employé', N'1', 3, N'Holzstr 6444', NULL, N'1 (11) 500 555-0113', CAST(N'2002-09-12 00:00:00.000' AS DateTime), N'0-1 Miles')

GO

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11599, 211, N'AW00011599', NULL, N'Melody', NULL, N'Diaz', 0, CAST(N'1977-09-16 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 20000.0000, 0, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Manual', N'Obrero', N'Ouvrier', N'0', 1, N'Attaché de Presse', NULL, N'1 (11) 500 555-0114', CAST(N'2001-07-21 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11600, 218, N'AW00011600', NULL, N'Linda', N'D', N'Rubio', 0, CAST(N'1977-04-07 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 30000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Clerical', N'Administrativo', N'Employé', N'0', 1, N'2616, rue de Linois', NULL, N'1 (11) 500 555-0153', CAST(N'2003-11-07 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11601, 209, N'AW00011601', NULL, N'Ivan', N'S', N'Raman', 0, CAST(N'1977-08-21 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 30000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Clerical', N'Administrativo', N'Employé', N'1', 1, N'335, rue Basse-du-Rocher', NULL, N'1 (11) 500 555-0119', CAST(N'2001-07-22 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11602, 135, N'AW00011602', NULL, N'Larry', NULL, N'Gill', 0, CAST(N'1977-04-13 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 30000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Clerical', N'Administrativo', N'Employé', N'0', 1, N'Am Gallberg 645', NULL, N'1 (11) 500 555-0125', CAST(N'2004-01-11 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11603, 244, N'AW00011603', NULL, N'Geoffrey', NULL, N'Gonzalez', 0, CAST(N'1977-02-06 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 30000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Clerical', N'Administrativo', N'Employé', N'0', 1, N'1538 Golden Meadow', NULL, N'1 (11) 500 555-0131', CAST(N'2002-07-21 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11604, 275, N'AW00011604', NULL, N'Edgar', NULL, N'Sanchez', 0, CAST(N'1977-06-03 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 30000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Clerical', N'Administrativo', N'Employé', N'1', 1, N'6543 Jacobsen Street', NULL, N'1 (11) 500 555-0117', CAST(N'2002-07-06 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11605, 176, N'AW00011605', NULL, N'Heidi', N'L', N'Subram', 0, CAST(N'1976-11-20 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 20000.0000, 0, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Manual', N'Obrero', N'Ouvrier', N'0', 1, N'Auf den Kuhlen Straße 9', NULL, N'1 (11) 500 555-0183', CAST(N'2002-09-09 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11606, 212, N'AW00011606', NULL, N'Melody', NULL, N'Ramos', 0, CAST(N'1975-02-03 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 10000.0000, 0, 0, N'Partial High School', N'Educación secundaria (en curso)', N'Niveau bac', N'Manual', N'Obrero', N'Ouvrier', N'0', 2, N'2, rue de la Comédie', NULL, N'1 (11) 500 555-0182', CAST(N'2001-07-11 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11607, 202, N'AW00011607', NULL, N'Clinton', N'H', N'Moreno', 0, CAST(N'1975-05-09 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 20000.0000, 0, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Manual', N'Obrero', N'Ouvrier', N'1', 1, N'610, rue des Rosiers', NULL, N'1 (11) 500 555-0152', CAST(N'2001-07-22 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11608, 217, N'AW00011608', NULL, N'Cesar', N'E', N'Madan', 0, CAST(N'1976-03-04 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 20000.0000, 0, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Manual', N'Obrero', N'Ouvrier', N'0', 1, N'774, rue Descartes', NULL, N'1 (11) 500 555-0157', CAST(N'2004-06-15 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11609, 277, N'AW00011609', NULL, N'Eugene', N'E', N'Ye', 0, CAST(N'1976-06-26 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 30000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Clerical', N'Administrativo', N'Employé', N'0', 1, N'2877 Bounty Way', NULL, N'1 (11) 500 555-0128', CAST(N'2002-07-31 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11610, 269, N'AW00011610', NULL, N'Blake', NULL, N'Collins', 0, CAST(N'1975-04-23 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 30000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Clerical', N'Administrativo', N'Employé', N'0', 1, N'4519 Lydia Lane', NULL, N'1 (11) 500 555-0140', CAST(N'2002-07-13 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11611, 183, N'AW00011611', NULL, N'Ernest', NULL, N'Lin', 0, CAST(N'1974-02-27 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 20000.0000, 0, 0, N'Partial High School', N'Educación secundaria (en curso)', N'Niveau bac', N'Manual', N'Obrero', N'Ouvrier', N'0', 1, N'65, rue Faubourg St Antoine', NULL, N'1 (11) 500 555-0190', CAST(N'2001-07-26 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11612, 230, N'AW00011612', NULL, N'Keith', NULL, N'Andersen', 0, CAST(N'1974-10-11 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 20000.0000, 0, 0, N'Partial High School', N'Educación secundaria (en curso)', N'Niveau bac', N'Manual', N'Obrero', N'Ouvrier', N'0', 2, N'2411 Clark Creek Lane', NULL, N'1 (11) 500 555-0182', CAST(N'2002-08-05 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11613, 158, N'AW00011613', NULL, N'Meredith', N'M', N'Prasad', 0, CAST(N'1975-11-03 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 30000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Clerical', N'Administrativo', N'Employé', N'0', 1, N'Hunzinger Allee 292', NULL, N'1 (11) 500 555-0162', CAST(N'2002-11-14 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11614, 172, N'AW00011614', NULL, N'Katrina', N'M', N'Sharma', 0, CAST(N'1975-08-17 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 30000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Clerical', N'Administrativo', N'Employé', N'0', 1, N'Nollendorfplatz 62', NULL, N'1 (11) 500 555-0115', CAST(N'2002-11-11 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11615, 242, N'AW00011615', NULL, N'Dwayne', N'H', N'Navarro', 0, CAST(N'1975-11-21 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 40000.0000, 1, 1, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 0, N'5717 Monterey Ave', NULL, N'1 (11) 500 555-0163', CAST(N'2002-08-25 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11616, 260, N'AW00011616', NULL, N'Casey', NULL, N'Nath', 0, CAST(N'1975-03-09 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 40000.0000, 1, 1, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 0, N'3728 Chinquapin Ct.', NULL, N'1 (11) 500 555-0130', CAST(N'2002-08-06 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11617, 326, N'AW00011617', NULL, N'Sean', NULL, N'Brooks', 0, CAST(N'1959-04-04 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 60000.0000, 4, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 0, N'6616 Baird Court', NULL, N'294-555-0111', CAST(N'2002-03-13 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11618, 49, N'AW00011618', NULL, N'Brian', N'M', N'Ramirez', 0, CAST(N'1959-04-24 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 60000.0000, 4, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 0, N'9145 Danesta Dr.', NULL, N'167-555-0144', CAST(N'2003-08-13 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11619, 69, N'AW00011619', NULL, N'Sierra', N'J', N'Young', 0, CAST(N'1973-05-01 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 50000.0000, 0, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 0, N'3230 Virginia Hills', NULL, N'410-555-0125', CAST(N'2003-08-12 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11620, 609, N'AW00011620', NULL, N'Megan', N'M', N'Rodriguez', 0, CAST(N'1973-04-20 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 50000.0000, 0, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 0, N'7285 Roanwood Way', NULL, N'156-555-0144', CAST(N'2003-08-12 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11621, 611, N'AW00011621', NULL, N'Leah', N'R', N'She', 0, CAST(N'1973-02-19 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 50000.0000, 0, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 0, N'8120 E Leland', NULL, N'787-555-0163', CAST(N'2004-02-02 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11622, 623, N'AW00011622', NULL, N'Gabriel', NULL, N'Allen', 0, CAST(N'1973-12-17 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 50000.0000, 0, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 0, N'8520 Waterview Place', NULL, N'787-555-0146', CAST(N'2003-10-10 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11623, 322, N'AW00011623', NULL, N'Angela', NULL, N'Perry', 0, CAST(N'1973-06-27 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 50000.0000, 1, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 0, N'4117 Missing Canyon Court', NULL, N'198-555-0159', CAST(N'2002-03-10 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11624, 339, N'AW00011624', NULL, N'Ryan', N'C', N'Smith', 0, CAST(N'1973-03-23 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 50000.0000, 1, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 0, N'5462 El Pintado Rd.', NULL, N'394-555-0168', CAST(N'2002-03-24 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11625, 352, N'AW00011625', NULL, N'Zachary', N'S', N'Moore', 0, CAST(N'1973-01-19 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 50000.0000, 1, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 0, N'9734 Jane Ct.', NULL, N'209-555-0118', CAST(N'2002-03-27 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11626, 360, N'AW00011626', NULL, N'Destiny', NULL, N'Rogers', 0, CAST(N'1973-06-14 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 50000.0000, 1, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 0, N'3588 Vancouver Way', NULL, N'262-555-0170', CAST(N'2002-03-04 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11627, 372, N'AW00011627', NULL, N'Dalton', NULL, N'Gray', 0, CAST(N'1973-02-27 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 60000.0000, 1, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 0, N'4833 Nottingham Pl.', NULL, N'263-555-0144', CAST(N'2004-02-28 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11628, 298, N'AW00011628', NULL, N'Mariah', N'M', N'Wood', 0, CAST(N'1972-05-17 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 40000.0000, 1, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 0, N'4088 Mills Place', NULL, N'662-555-0125', CAST(N'2002-03-15 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11629, 345, N'AW00011629', NULL, N'Isaiah', N'D', N'Wright', 0, CAST(N'1971-02-08 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 40000.0000, 4, 4, N'High School', N'Educación secundaria', N'Bac + 2', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 3, N'7501 Sandy Cove Lane', NULL, N'525-555-0190', CAST(N'2002-03-28 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11630, 637, N'AW00011630', NULL, N'Haley', NULL, N'Powell', 0, CAST(N'1971-12-25 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 60000.0000, 1, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 0, N'418 Alfred Avenue', NULL, N'200-555-0198', CAST(N'2002-03-24 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11631, 52, N'AW00011631', NULL, N'Antonio', N'C', N'Bennett', 0, CAST(N'1971-02-13 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 60000.0000, 1, 1, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 0, N'6200 Mt. Pisgah', NULL, N'380-555-0192', CAST(N'2003-08-11 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11632, 51, N'AW00011632', NULL, N'Alexandra', N'D', N'Jenkins', 0, CAST(N'1971-05-06 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 60000.0000, 1, 1, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 0, N'346 Sutcliffe Pl.', NULL, N'664-555-0121', CAST(N'2003-08-03 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11633, 612, N'AW00011633', NULL, N'Thomas', NULL, N'Anderson', 0, CAST(N'1972-05-26 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 40000.0000, 1, 1, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 0, N'8307 Monument Blvd.', NULL, N'315-555-0121', CAST(N'2004-05-16 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11634, 633, N'AW00011634', NULL, N'Samuel', NULL, N'Collins', 0, CAST(N'1972-06-12 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 60000.0000, 1, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 0, N'2240 Inverness Dr.', NULL, N'385-555-0179', CAST(N'2003-09-12 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11635, 300, N'AW00011635', NULL, N'Darrell', NULL, N'Chande', 0, CAST(N'1972-08-14 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 60000.0000, 1, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 0, N'3767 Banana Court', NULL, N'455-555-0152', CAST(N'2003-08-12 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11636, 314, N'AW00011636', NULL, N'Kimberly', N'K', N'Cox', 0, CAST(N'1972-12-22 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 60000.0000, 1, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'1', 0, N'752 Shuey Ave', NULL, N'383-555-0177', CAST(N'2004-03-14 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11637, 338, N'AW00011637', NULL, N'Morgan', NULL, N'Hernandez', 0, CAST(N'1972-08-14 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 70000.0000, 1, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'1', 0, N'3767 Benet Court', NULL, N'379-555-0153', CAST(N'2003-08-12 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11638, 339, N'AW00011638', NULL, N'Antonio', N'E', N'Powell', 0, CAST(N'1972-03-12 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 70000.0000, 1, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'1', 0, N'1328 Huntleigh Dr.', NULL, N'966-555-0128', CAST(N'2004-04-21 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11639, 339, N'AW00011639', NULL, N'Angelica', NULL, N'Perry', 0, CAST(N'1972-12-23 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 70000.0000, 1, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'1', 0, N'4059 High Street', NULL, N'936-555-0157', CAST(N'2004-05-12 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11640, 51, N'AW00011640', NULL, N'Chloe', N'A', N'Wilson', 0, CAST(N'1970-05-03 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 50000.0000, 1, 1, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 0, N'8885 Alta Vista', NULL, N'748-555-0137', CAST(N'2003-09-16 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11641, 49, N'AW00011641', NULL, N'James', N'D', N'Chen', 0, CAST(N'1970-08-12 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 50000.0000, 1, 1, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 0, N'3797 Baird Court', NULL, N'143-555-0119', CAST(N'2003-08-03 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11642, 59, N'AW00011642', NULL, N'Morgan', N'T', N'Hughes', 0, CAST(N'1970-12-26 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 50000.0000, 1, 1, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 1, N'3441 Wellington Ct.', NULL, N'165-555-0182', CAST(N'2003-08-13 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11643, 612, N'AW00011643', NULL, N'Naomi', N'L', N'Munoz', 0, CAST(N'1970-07-27 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 50000.0000, 1, 1, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 1, N'316 Rose Ann Ave', NULL, N'293-555-0147', CAST(N'2003-10-23 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11644, 634, N'AW00011644', NULL, N'Charles', N'S', N'Torres', 0, CAST(N'1969-10-07 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 40000.0000, 2, 2, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 0, N'7347 Ready Road', NULL, N'202-555-0114', CAST(N'2003-11-18 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11645, 548, N'AW00011645', NULL, N'Gabriella', N'M', N'Turner', 0, CAST(N'1969-10-19 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 40000.0000, 2, 2, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 0, N'9976 Manila Avenue', NULL, N'131-555-0142', CAST(N'2004-05-13 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11646, 612, N'AW00011646', NULL, N'Anna', N'A', N'Foster', 0, CAST(N'1969-03-19 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 40000.0000, 2, 2, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 0, N'6580 Poor Ridge Court', NULL, N'288-555-0189', CAST(N'2004-01-16 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11647, 49, N'AW00011647', NULL, N'Randy', N'J', N'Wu', 0, CAST(N'1969-09-22 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 40000.0000, 2, 2, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 0, N'589 Ashwood Dr.', NULL, N'189-555-0124', CAST(N'2003-08-19 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11648, 307, N'AW00011648', NULL, N'Kevin', N'R', N'Scott', 0, CAST(N'1969-04-16 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 60000.0000, 1, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'1', 0, N'4414 Kendree St.', NULL, N'364-555-0111', CAST(N'2004-02-29 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11649, 345, N'AW00011649', NULL, N'Ian', N'M', N'White', 0, CAST(N'1969-01-26 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 60000.0000, 1, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'1', 0, N'6289 Duck Horn Court', NULL, N'200-555-0138', CAST(N'2003-10-07 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11650, 325, N'AW00011650', NULL, N'Caleb', NULL, N'Hayes', 0, CAST(N'1969-07-26 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 60000.0000, 1, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'1', 0, N'3824 White Dr', NULL, N'243-555-0128', CAST(N'2003-08-19 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11651, 49, N'AW00011651', NULL, N'Patricia', NULL, N'Garcia', 0, CAST(N'1971-12-17 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 60000.0000, 1, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'1', 0, N'2500 Ward Court', NULL, N'501-555-0174', CAST(N'2003-09-05 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11652, 68, N'AW00011652', NULL, N'Samuel', N'V', N'Russell', 0, CAST(N'1971-05-05 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 60000.0000, 1, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'1', 0, N'9668 Fieldbrook Pl', NULL, N'828-555-0112', CAST(N'2003-12-28 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11653, 543, N'AW00011653', NULL, N'Sydney', NULL, N'Peterson', 0, CAST(N'1971-06-08 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 60000.0000, 1, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'1', 0, N'3152 Woodcrest Drive', NULL, N'848-555-0130', CAST(N'2003-10-18 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11654, 298, N'AW00011654', NULL, N'Ariana', N'C', N'Sanchez', 0, CAST(N'1971-09-19 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 60000.0000, 1, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'1', 0, N'5278 Mill Road', NULL, N'435-555-0160', CAST(N'2002-04-20 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11655, 311, N'AW00011655', NULL, N'Tamara', NULL, N'Sharma', 0, CAST(N'1971-04-01 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 70000.0000, 2, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'1', 0, N'4221 Birch Bark Road', NULL, N'164-555-0166', CAST(N'2004-04-01 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11656, 329, N'AW00011656', NULL, N'Katelyn', N'K', N'Perez', 0, CAST(N'1971-09-20 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 70000.0000, 3, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'1', 0, N'7494 Sunset Circle', NULL, N'864-555-0116', CAST(N'2004-03-14 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11657, 347, N'AW00011657', NULL, N'Megan', N'A', N'Cox', 0, CAST(N'1971-05-04 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 70000.0000, 3, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'1', 0, N'9825 Coralie Drive', NULL, N'466-555-0163', CAST(N'2003-11-26 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11658, 348, N'AW00011658', NULL, N'Robert', NULL, N'Mitchell', 0, CAST(N'1969-02-07 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 60000.0000, 1, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'1', 0, N'9350 Mt. Hood Circle', NULL, N'132-555-0112', CAST(N'2003-10-25 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11659, 66, N'AW00011659', NULL, N'Miguel', NULL, N'Adams', 0, CAST(N'1969-04-22 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 60000.0000, 1, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'1', 0, N'4912 Mellowood Street', NULL, N'910-555-0185', CAST(N'2003-11-10 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11660, 60, N'AW00011660', NULL, N'Miranda', NULL, N'Gonzales', 0, CAST(N'1969-01-22 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 60000.0000, 1, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'1', 0, N'2458 Blocking Ct.', NULL, N'343-555-0197', CAST(N'2003-11-09 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11661, 49, N'AW00011661', NULL, N'Jeremiah', N'S', N'James', 0, CAST(N'1970-01-07 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 60000.0000, 1, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'1', 0, N'4909 Vine Lane', NULL, N'716-555-0117', CAST(N'2003-10-08 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11662, 545, N'AW00011662', NULL, N'Ethan', NULL, N'Kumar', 0, CAST(N'1970-07-04 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 60000.0000, 2, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'1', 0, N'447 Barberry Court', NULL, N'214-555-0118', CAST(N'2003-11-07 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11663, 644, N'AW00011663', NULL, N'Seth', N'A', N'Williams', 0, CAST(N'1970-02-25 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 70000.0000, 4, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'1', 0, N'3796 Peachwillow', NULL, N'878-555-0119', CAST(N'2002-04-30 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11664, 302, N'AW00011664', NULL, N'Alyssa', N'L', N'Morgan', 0, CAST(N'1970-02-09 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 70000.0000, 4, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'1', 0, N'6751 Yosemite Ct.', NULL, N'144-555-0113', CAST(N'2002-04-29 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11665, 307, N'AW00011665', NULL, N'Janet', NULL, N'Dominguez', 0, CAST(N'1970-12-13 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 70000.0000, 4, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'1', 0, N'8914 Jam Way', NULL, N'142-555-0139', CAST(N'2002-04-15 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11666, 374, N'AW00011666', NULL, N'Angel', NULL, N'Baker', 0, CAST(N'1970-12-17 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 80000.0000, 2, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'1', 0, N'7119 Iowa Drive', NULL, N'616-555-0161', CAST(N'2002-04-19 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11667, 644, N'AW00011667', NULL, N'Blake', N'S', N'Moore', 0, CAST(N'1967-06-21 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 70000.0000, 2, 2, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 1, N'1245 Clay Road', NULL, N'485-555-0144', CAST(N'2004-01-05 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11668, 300, N'AW00011668', NULL, N'Jada', N'C', N'Collins', 0, CAST(N'1967-09-07 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 70000.0000, 2, 2, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 1, N'1978 Medina Dr.', NULL, N'169-555-0194', CAST(N'2004-06-18 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11669, 642, N'AW00011669', NULL, N'Isabella', NULL, N'Simmons', 0, CAST(N'1967-10-21 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 70000.0000, 2, 2, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 1, N'3495 Virginia Lane', NULL, N'424-555-0125', CAST(N'2004-02-19 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11670, 326, N'AW00011670', NULL, N'Jacqueline', NULL, N'Perry', 0, CAST(N'1967-10-17 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 70000.0000, 2, 2, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 1, N'2326 MountainAire Parkway', NULL, N'172-555-0136', CAST(N'2003-10-15 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11671, 316, N'AW00011671', NULL, N'Jessica', N'L', N'Brown', 0, CAST(N'1966-05-18 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 60000.0000, 3, 3, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 0, N'8874 Dallis Drive', NULL, N'895-555-0138', CAST(N'2002-04-23 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11672, 300, N'AW00011672', NULL, N'Chad', N'C', N'Jai', 0, CAST(N'1966-09-21 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 60000.0000, 3, 3, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 1, N'1386 Fillet Ave.', NULL, N'355-555-0162', CAST(N'2004-01-26 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11673, 612, N'AW00011673', NULL, N'Susan', N'C', N'Ye', 0, CAST(N'1966-02-07 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 60000.0000, 3, 3, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 1, N'2093 Dubhe Court', NULL, N'268-555-0189', CAST(N'2003-08-03 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11674, 385, N'AW00011674', NULL, N'Morgan', N'B', N'Rogers', 0, CAST(N'1966-08-18 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 60000.0000, 0, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'1', 0, N'1168 Escobar', NULL, N'405-555-0116', CAST(N'2003-12-01 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11675, 616, N'AW00011675', NULL, N'Devin', N'J', N'Martinez', 0, CAST(N'1966-02-02 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 70000.0000, 4, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'1', 0, N'5571 Crawford', NULL, N'594-555-0155', CAST(N'2002-04-27 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11676, 475, N'AW00011676', NULL, N'Alan', NULL, N'Hu', 0, CAST(N'1966-02-13 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 80000.0000, 0, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'1', 0, N'970 Pheasant Circle', NULL, N'723-555-0187', CAST(N'2004-02-21 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11677, 50, N'AW00011677', NULL, N'Charles', NULL, N'Walker', 0, CAST(N'1969-10-14 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 60000.0000, 2, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'1', 0, N'189 Richview Dr', NULL, N'162-555-0110', CAST(N'2003-10-07 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11678, 654, N'AW00011678', NULL, N'Johnny', N'A', N'Chavez', 0, CAST(N'1969-01-28 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 70000.0000, 5, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'1', 0, N'4778 Geary Road', NULL, N'895-555-0161', CAST(N'2002-04-12 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11679, 633, N'AW00011679', NULL, N'Dalton', N'W', N'Richardson', 0, CAST(N'1969-05-08 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 70000.0000, 5, 5, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'1', 2, N'6453 Castle Hill Road', NULL, N'385-555-0179', CAST(N'2004-04-15 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11680, 634, N'AW00011680', NULL, N'Kaylee', N'E', N'Nelson', 0, CAST(N'1969-09-04 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 70000.0000, 5, 5, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'1', 2, N'7755 West Road', NULL, N'139-555-0186', CAST(N'2004-03-04 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11681, 641, N'AW00011681', NULL, N'Abigail', N'E', N'Jones', 0, CAST(N'1969-08-07 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 70000.0000, 5, 5, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'1', 2, N'1433 C Mt. Hood Crest', NULL, N'889-555-0151', CAST(N'2003-09-08 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11682, 642, N'AW00011682', NULL, N'Kaitlyn', NULL, N'Hall', 0, CAST(N'1969-03-16 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 70000.0000, 5, 5, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'0', 2, N'5715 5th Ave.', NULL, N'209-555-0173', CAST(N'2004-03-08 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11683, 316, N'AW00011683', NULL, N'Greg', N'M', N'Taylor', 0, CAST(N'1969-01-05 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 80000.0000, 2, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'1', 0, N'1052 Stanford Street', NULL, N'959-555-0135', CAST(N'2002-04-07 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11684, 634, N'AW00011684', NULL, N'Devin', NULL, N'Parker', 0, CAST(N'1965-10-01 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 40000.0000, 0, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'0', 1, N'4024 Calhoun Court', NULL, N'897-555-0155', CAST(N'2004-01-02 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11685, 545, N'AW00011685', NULL, N'Jose', N'A', N'Griffin', 0, CAST(N'1965-02-07 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 40000.0000, 0, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'0', 1, N'4769 Book Ct', NULL, N'789-555-0114', CAST(N'2003-09-12 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11686, 325, N'AW00011686', NULL, N'Luke', N'C', N'Edwards', 0, CAST(N'1965-04-13 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 40000.0000, 0, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'0', 1, N'4895 Hickory Drive', NULL, N'815-555-0192', CAST(N'2003-09-09 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11687, 331, N'AW00011687', NULL, N'Cody', NULL, N'Torres', 0, CAST(N'1965-07-13 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 40000.0000, 0, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'0', 1, N'3889 Castle Hill Road', NULL, N'269-555-0120', CAST(N'2003-10-14 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11688, 638, N'AW00011688', NULL, N'Victoria', N'A', N'Morris', 0, CAST(N'1965-12-25 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 80000.0000, 3, 3, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'7675 Moss Hollow Court', NULL, N'178-555-0156', CAST(N'2002-04-04 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11689, 614, N'AW00011689', NULL, N'Ian', N'D', N'Diaz', 0, CAST(N'1965-09-06 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 80000.0000, 3, 3, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'4091 Hill Meadow Pl.', NULL, N'136-555-0185', CAST(N'2004-02-27 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11690, 632, N'AW00011690', NULL, N'Caroline', NULL, N'Butler', 0, CAST(N'1965-01-13 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 60000.0000, 0, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'1', 0, N'5629 Seagull Court', NULL, N'101-555-0110', CAST(N'2002-04-27 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11691, 329, N'AW00011691', NULL, N'Kaitlyn', NULL, N'Wilson', 0, CAST(N'1964-01-03 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 40000.0000, 0, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'0', 1, N'24 Roslyn Drive', NULL, N'968-555-0196', CAST(N'2003-08-12 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11692, 301, N'AW00011692', NULL, N'Caleb', N'A', N'Gonzales', 0, CAST(N'1964-06-19 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 40000.0000, 0, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'0', 1, N'2150 Pershing Dr', NULL, N'475-555-0114', CAST(N'2004-01-08 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11693, 50, N'AW00011693', NULL, N'Hailey', N'W', N'Diaz', 0, CAST(N'1964-09-24 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 50000.0000, 4, 4, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 2, N'9063 Vista Aven.', NULL, N'835-555-0168', CAST(N'2003-08-01 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11694, 310, N'AW00011694', NULL, N'Jonathon', N'L', N'Ortega', 0, CAST(N'1964-03-24 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 50000.0000, 4, 4, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 4, N'4453 Bannock Ct.', NULL, N'733-555-0157', CAST(N'2003-10-13 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11695, 300, N'AW00011695', NULL, N'Logan', NULL, N'Campbell', 0, CAST(N'1964-01-11 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 50000.0000, 5, 5, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 3, N'8910 Hilltop Road', NULL, N'164-555-0159', CAST(N'2003-10-11 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11696, 642, N'AW00011696', NULL, N'Mackenzie', N'T', N'Campbell', 0, CAST(N'1964-04-05 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 50000.0000, 5, 5, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 3, N'5905 Hawthorne Dr.', NULL, N'786-555-0184', CAST(N'2002-04-03 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11697, 348, N'AW00011697', NULL, N'Eduardo', NULL, N'Lee', 0, CAST(N'1964-06-24 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 50000.0000, 4, 2, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'265 Jeff Ct', NULL, N'993-555-0176', CAST(N'2004-02-08 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11698, 53, N'AW00011698', NULL, N'Jackson', NULL, N'Wright', 0, CAST(N'1964-11-25 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 50000.0000, 4, 2, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'7796 Adobe Drive', NULL, N'112-555-0181', CAST(N'2003-10-02 00:00:00.000' AS DateTime), N'2-5 Miles')

GO

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11699, 644, N'AW00011699', NULL, N'Chase', NULL, N'Peterson', 0, CAST(N'1963-03-16 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 60000.0000, 4, 2, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 2, N'4315 Glenside Ct.', NULL, N'369-555-0167', CAST(N'2003-11-30 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11700, 385, N'AW00011700', NULL, N'Xavier', NULL, N'Richardson', 0, CAST(N'1963-11-25 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 60000.0000, 4, 2, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'0', 2, N'3249 E Leland', NULL, N'578-555-0132', CAST(N'2003-08-06 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11701, 347, N'AW00011701', NULL, N'David', NULL, N'Hayes', 0, CAST(N'1963-08-24 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 60000.0000, 4, 2, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'1', 2, N'3570 Book Ct', NULL, N'872-555-0191', CAST(N'2003-10-26 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11702, 302, N'AW00011702', NULL, N'Jenny', N'S', N'Zhou', 0, CAST(N'1963-10-17 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 60000.0000, 4, 2, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'1', 2, N'2107 Cardinal', NULL, N'763-555-0124', CAST(N'2003-11-18 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11703, 331, N'AW00011703', NULL, N'Kaylee', NULL, N'Baker', 0, CAST(N'1968-06-24 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 60000.0000, 0, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'0', 1, N'4668 Chilpancingo Park', NULL, N'609-555-0179', CAST(N'2003-08-17 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11704, 368, N'AW00011704', NULL, N'Evan', N'G', N'Hernandez', 0, CAST(N'1968-06-01 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 60000.0000, 0, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'0', 1, N'6337 Margo Drive', NULL, N'592-555-0143', CAST(N'2004-01-08 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11705, 385, N'AW00011705', NULL, N'Brooke', NULL, N'Richardson', 0, CAST(N'1968-05-21 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 60000.0000, 2, 2, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'1', 0, N'4171 Miller Avenue', NULL, N'752-555-0155', CAST(N'2002-04-30 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11706, 302, N'AW00011706', NULL, N'Blake', N'M', N'Perez', 0, CAST(N'1963-02-14 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 60000.0000, 4, 2, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'1', 2, N'3064 Fern Leaf Lane', NULL, N'146-555-0191', CAST(N'2003-09-09 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11707, 385, N'AW00011707', NULL, N'Natalie', NULL, N'Cook', 0, CAST(N'1963-12-22 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 60000.0000, 4, 2, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'1', 3, N'1064 William Way', NULL, N'468-555-0193', CAST(N'2002-04-12 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11708, 336, N'AW00011708', NULL, N'Elizabeth', NULL, N'Weisman', 0, CAST(N'1963-09-19 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 60000.0000, 4, 2, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'1', 3, N'7085 Valley Run', NULL, N'117-555-0118', CAST(N'2002-04-27 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11709, 69, N'AW00011709', NULL, N'Hailey', NULL, N'Collins', 0, CAST(N'1963-02-19 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 60000.0000, 3, 2, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'0', 0, N'5609 Gary Drive', NULL, N'394-555-0185', CAST(N'2003-09-12 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11710, 331, N'AW00011710', NULL, N'Zoe', N'R', N'Ramirez', 0, CAST(N'1962-03-20 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 40000.0000, 3, 2, N'High School', N'Educación secundaria', N'Bac + 2', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'8085 Grasswood Ct', NULL, N'712-555-0144', CAST(N'2004-05-26 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11711, 54, N'AW00011711', NULL, N'Daniel', NULL, N'Davis', 0, CAST(N'1962-12-08 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 70000.0000, 1, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'0', 1, N'263 La Orinda Pl.', NULL, N'217-555-0147', CAST(N'2003-08-11 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11712, 50, N'AW00011712', NULL, N'Shelby', NULL, N'Rogers', 0, CAST(N'1962-11-03 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 70000.0000, 1, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 1, N'16 White Pl.', NULL, N'187-555-0139', CAST(N'2003-08-08 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11713, 623, N'AW00011713', NULL, N'Kyle', N'C', N'Zhang', 0, CAST(N'1962-03-20 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 70000.0000, 1, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 1, N'4417 W. Watson Court', NULL, N'793-555-0118', CAST(N'2004-01-08 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11714, 359, N'AW00011714', NULL, N'Alexandria', N'E', N'Long', 0, CAST(N'1962-10-18 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 70000.0000, 1, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 1, N'5543 Hamilton Ave.', NULL, N'676-555-0172', CAST(N'2003-08-22 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11715, 361, N'AW00011715', NULL, N'Chloe', N'F', N'Robinson', 0, CAST(N'1962-09-21 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 70000.0000, 1, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 1, N'6779 Willcrest Circle', NULL, N'570-555-0117', CAST(N'2004-06-28 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11716, 314, N'AW00011716', NULL, N'Evan', NULL, N'Kelly', 0, CAST(N'1961-10-21 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 40000.0000, 4, 2, N'High School', N'Educación secundaria', N'Bac + 2', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'9531 Lancaster', NULL, N'222-555-0139', CAST(N'2003-12-02 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11717, 539, N'AW00011717', NULL, N'Marcus', N'J', N'Jones', 0, CAST(N'1961-09-02 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 60000.0000, 1, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 1, N'4836 Marina', NULL, N'465-555-0162', CAST(N'2003-11-26 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11718, 546, N'AW00011718', NULL, N'Sarah', N'T', N'Jones', 0, CAST(N'1961-11-14 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 60000.0000, 1, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 1, N'2935 Pine Creek Way', NULL, N'585-555-0177', CAST(N'2003-09-07 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11719, 49, N'AW00011719', NULL, N'Blake', N'P', N'Green', 0, CAST(N'1960-05-08 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 40000.0000, 4, 2, N'High School', N'Educación secundaria', N'Bac + 2', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'2850 D Bel Air Dr', NULL, N'397-555-0128', CAST(N'2003-10-28 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11720, 359, N'AW00011720', NULL, N'Morgan', N'P', N'Morris', 0, CAST(N'1960-03-26 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 40000.0000, 4, 2, N'High School', N'Educación secundaria', N'Bac + 2', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'9671 Leewood Place', NULL, N'178-555-0115', CAST(N'2003-11-18 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11721, 336, N'AW00011721', NULL, N'Jennifer', N'A', N'Alexander', 0, CAST(N'1960-01-22 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 40000.0000, 4, 2, N'High School', N'Educación secundaria', N'Bac + 2', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'4195 San Paolo', NULL, N'623-555-0122', CAST(N'2003-12-17 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11722, 609, N'AW00011722', NULL, N'Julian', N'S', N'Hughes', 0, CAST(N'1960-07-02 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 60000.0000, 1, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 1, N'4408 Trinity Ave.', NULL, N'301-555-0114', CAST(N'2004-01-31 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11723, 64, N'AW00011723', NULL, N'Luke', N'A', N'Coleman', 0, CAST(N'1967-08-21 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 70000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 1, N'613 Glen Wood Drive', NULL, N'959-555-0119', CAST(N'2003-08-04 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11724, 65, N'AW00011724', NULL, N'Jason', NULL, N'Carter', 0, CAST(N'1967-04-15 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 70000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 1, N'4848 Azalea Ave.', NULL, N'234-555-0170', CAST(N'2003-08-09 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11725, 612, N'AW00011725', NULL, N'Jose', N'K', N'Li', 0, CAST(N'1967-09-17 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 70000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 1, N'2033 Woodbury Place', NULL, N'145-555-0188', CAST(N'2003-10-03 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11726, 612, N'AW00011726', NULL, N'Micah', N'R', N'Liang', 0, CAST(N'1967-07-17 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 70000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 1, N'4685 York Dr', NULL, N'843-555-0120', CAST(N'2004-04-12 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11727, 343, N'AW00011727', NULL, N'Benjamin', NULL, N'Taylor', 0, CAST(N'1967-07-09 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 60000.0000, 0, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'0', 1, N'2078 Jennifer Way', NULL, N'571-555-0135', CAST(N'2002-04-14 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11728, 553, N'AW00011728', NULL, N'Logan', N'H', N'White', 0, CAST(N'1960-01-07 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 60000.0000, 1, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 1, N'5087 Bonita Ave.', NULL, N'710-555-0132', CAST(N'2003-12-13 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11729, 623, N'AW00011729', NULL, N'Caleb', NULL, N'Campbell', 0, CAST(N'1960-05-06 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 60000.0000, 1, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 1, N'1895 San Carlos Ave.', NULL, N'459-555-0187', CAST(N'2004-01-28 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11730, 634, N'AW00011730', NULL, N'Emma', NULL, N'Torres', 0, CAST(N'1960-10-02 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 60000.0000, 1, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 1, N'6062 Mota Dr.', NULL, N'192-555-0182', CAST(N'2003-11-12 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11731, 302, N'AW00011731', NULL, N'Tanya', N'H', N'Gill', 0, CAST(N'1960-08-19 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 60000.0000, 1, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 1, N'8850 Thunderbird Drive', NULL, N'742-555-0111', CAST(N'2003-09-17 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11732, 525, N'AW00011732', NULL, N'Erick', NULL, N'Sanchez', 0, CAST(N'1959-02-08 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 60000.0000, 1, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 1, N'664 Book Pl', NULL, N'827-555-0145', CAST(N'2003-12-11 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11733, 311, N'AW00011733', NULL, N'Kristi', N'J', N'Schmidt', 0, CAST(N'1959-07-27 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 60000.0000, 1, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 1, N'1536 Camino Verde Ct.', NULL, N'995-555-0114', CAST(N'2004-07-04 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11734, 312, N'AW00011734', NULL, N'Omar', N'J', N'Chen', 0, CAST(N'1959-08-25 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 60000.0000, 1, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 1, N'3181 Hacienda', NULL, N'938-555-0117', CAST(N'2003-12-23 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11735, 626, N'AW00011735', NULL, N'Sydney', N'K', N'Gray', 0, CAST(N'1959-01-22 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 60000.0000, 1, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 1, N'1229 Apollo Way', NULL, N'637-555-0114', CAST(N'2003-08-28 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11736, 322, N'AW00011736', NULL, N'Sebastian', NULL, N'Sanchez', 0, CAST(N'1959-09-25 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 60000.0000, 1, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 1, N'7706 California St.', NULL, N'404-555-0117', CAST(N'2004-04-19 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11737, 355, N'AW00011737', NULL, N'Megan', N'A', N'Martin', 0, CAST(N'1959-02-08 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 60000.0000, 4, 3, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'1', 0, N'8243 Gilardy Drive', NULL, N'612-555-0171', CAST(N'2003-08-18 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11738, 59, N'AW00011738', NULL, N'Elijah', NULL, N'Alexander', 0, CAST(N'1959-10-09 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 60000.0000, 4, 3, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'1', 0, N'6933 Sutton Circle', NULL, N'100-555-0155', CAST(N'2003-08-06 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11739, 65, N'AW00011739', NULL, N'Aaron', N'L', N'King', 0, CAST(N'1959-05-14 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 70000.0000, 2, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'1', 1, N'2243 W St.', NULL, N'600-555-0195', CAST(N'2003-07-17 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11740, 68, N'AW00011740', NULL, N'Jan', N'M', N'Hall', 0, CAST(N'1959-04-24 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 70000.0000, 5, 5, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'0', 3, N'5793 West Road', NULL, N'118-555-0131', CAST(N'2003-09-08 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11741, 307, N'AW00011741', NULL, N'Tamara', N'L', N'Chander', 0, CAST(N'1959-07-26 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 80000.0000, 4, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'1', 0, N'6344 Dartmouth Way', NULL, N'112-555-0164', CAST(N'2002-04-17 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11742, 355, N'AW00011742', NULL, N'Edward', NULL, N'Lewis', 0, CAST(N'1958-11-02 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 60000.0000, 3, 2, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'0', 1, N'3508 Canning Road', NULL, N'936-555-0189', CAST(N'2002-04-05 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11743, 372, N'AW00011743', NULL, N'Chase', N'E', N'Kelly', 0, CAST(N'1958-03-16 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 60000.0000, 1, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'1', 1, N'5940 Dleta Road', NULL, N'153-555-0118', CAST(N'2002-04-27 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11744, 372, N'AW00011744', NULL, N'Stephanie', N'D', N'Campbell', 0, CAST(N'1958-09-07 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 60000.0000, 1, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'1', 1, N'6339 E. 108th Street', NULL, N'712-555-0117', CAST(N'2003-10-15 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11745, 644, N'AW00011745', NULL, N'Allison', NULL, N'Gonzalez', 0, CAST(N'1958-10-13 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 60000.0000, 1, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'1', 1, N'3345 Macaroon Drive', NULL, N'728-555-0144', CAST(N'2002-04-12 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11746, 642, N'AW00011746', NULL, N'Seth', NULL, N'Brooks', 0, CAST(N'1958-12-01 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 60000.0000, 1, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'1', 1, N'733 Eaker Way', NULL, N'771-555-0118', CAST(N'2003-08-01 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11747, 614, N'AW00011747', NULL, N'Destiny', NULL, N'Davis', 0, CAST(N'1958-02-09 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 70000.0000, 5, 4, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'1', 1, N'7121 Oakleaf Ct.', NULL, N'251-555-0153', CAST(N'2004-02-08 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11748, 69, N'AW00011748', NULL, N'Blake', NULL, N'Hill', 0, CAST(N'1958-07-18 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 70000.0000, 5, 4, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'1', 1, N'1315 Norse Drive', NULL, N'171-555-0174', CAST(N'2003-12-09 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11749, 2, N'AW00011749', NULL, N'Eduardo', N'C', N'Jackson', 0, CAST(N'1969-09-13 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 80000.0000, 4, 4, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Management', N'Gestión', N'Direction', N'0', 1, N'5524 Virgil St', NULL, N'1 (11) 500 555-0114', CAST(N'2003-10-10 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11750, 10, N'AW00011750', NULL, N'Latoya', N'A', N'She', 0, CAST(N'1968-03-24 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 60000.0000, 2, 2, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'1', 1, N'2681 Black Walnut Ct.', NULL, N'1 (11) 500 555-0166', CAST(N'2002-01-14 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11751, 36, N'AW00011751', NULL, N'Victoria', NULL, N'Gonzales', 0, CAST(N'1970-07-17 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 80000.0000, 4, 4, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Management', N'Gestión', N'Direction', N'1', 1, N'1872 Walnut Avenue', NULL, N'1 (11) 500 555-0176', CAST(N'2002-01-08 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11752, 4, N'AW00011752', NULL, N'Lauren', NULL, N'Bryant', 0, CAST(N'1970-05-07 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 80000.0000, 4, 4, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Management', N'Gestión', N'Direction', N'1', 1, N'7551 Santa Lucia', NULL, N'1 (11) 500 555-0156', CAST(N'2003-08-31 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11753, 2, N'AW00011753', NULL, N'Felicia', N'J', N'Ortega', 0, CAST(N'1970-03-18 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 80000.0000, 4, 4, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Management', N'Gestión', N'Direction', N'1', 1, N'452 Rain Drop Circle', NULL, N'1 (11) 500 555-0185', CAST(N'2003-10-21 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11754, 7, N'AW00011754', NULL, N'Janet', N'L', N'Ortega', 0, CAST(N'1970-07-08 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 90000.0000, 2, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'1', 0, N'4921 Oakwood Circle', NULL, N'1 (11) 500 555-0182', CAST(N'2002-01-16 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11755, 25, N'AW00011755', NULL, N'Willie', N'J', N'Pal', 0, CAST(N'1968-05-15 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 60000.0000, 2, 2, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'1', 1, N'9893 Hastings Dr', NULL, N'1 (11) 500 555-0164', CAST(N'2003-12-02 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11756, 17, N'AW00011756', NULL, N'Linda', N'C', N'Ortega', 0, CAST(N'1968-09-13 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 60000.0000, 2, 2, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'0', 1, N'3544 Brush Creek Drive', NULL, N'1 (11) 500 555-0150', CAST(N'2002-01-28 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11757, 33, N'AW00011757', NULL, N'Vincent', N'L', N'Cai', 0, CAST(N'1968-05-14 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 70000.0000, 5, 5, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'1', 3, N'5917 Panoramic Avenue', NULL, N'1 (11) 500 555-0116', CAST(N'2003-08-27 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11758, 3, N'AW00011758', NULL, N'Colin', NULL, N'Yuan', 0, CAST(N'1968-12-22 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 70000.0000, 5, 5, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'1', 3, N'1064 William Way', NULL, N'1 (11) 500 555-0170', CAST(N'2003-10-01 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11759, 28, N'AW00011759', NULL, N'Dawn', N'L', N'Nath', 0, CAST(N'1969-11-22 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 110000.0000, 1, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Management', N'Gestión', N'Direction', N'0', 1, N'6969 Eaker Way', NULL, N'1 (11) 500 555-0193', CAST(N'2002-01-10 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11760, 29, N'AW00011760', NULL, N'Melody', N'R', N'Moreno', 0, CAST(N'1967-10-27 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 70000.0000, 5, 5, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'1', 4, N'6312 San Ramon Road', NULL, N'1 (11) 500 555-0163', CAST(N'2003-10-02 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11761, 31, N'AW00011761', NULL, N'Edgar', NULL, N'Mehta', 0, CAST(N'1967-04-19 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 70000.0000, 5, 5, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'1', 4, N'4173 Willow Pass Road', NULL, N'1 (11) 500 555-0180', CAST(N'2002-02-05 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11762, 19, N'AW00011762', NULL, N'Randall', N'R', N'Gomez', 0, CAST(N'1967-08-24 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 70000.0000, 5, 5, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'1', 4, N'1159 Lacassie Ave', NULL, N'1 (11) 500 555-0179', CAST(N'2002-02-07 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11763, 16, N'AW00011763', NULL, N'Ross', N'R', N'Fernandez', 0, CAST(N'1967-02-11 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 80000.0000, 5, 5, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Management', N'Gestión', N'Direction', N'1', 2, N'8461 Everett Ct', NULL, N'1 (11) 500 555-0177', CAST(N'2003-08-03 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11764, 10, N'AW00011764', NULL, N'Jessie', N'R', N'Ramos', 0, CAST(N'1967-07-17 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 80000.0000, 5, 5, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Management', N'Gestión', N'Direction', N'1', 3, N'5613 Gary Drive', NULL, N'1 (11) 500 555-0112', CAST(N'2002-03-12 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11765, 11, N'AW00011765', NULL, N'Marc', NULL, N'Torres', 0, CAST(N'1966-10-11 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 80000.0000, 5, 5, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'1', 3, N'1439 N. Michell Canyon Road', NULL, N'1 (11) 500 555-0131', CAST(N'2002-03-15 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11766, 38, N'AW00011766', NULL, N'Candace', N'M', N'Raman', 0, CAST(N'1966-07-04 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 90000.0000, 0, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'0', 0, N'1060 Mcelroy Court', NULL, N'1 (11) 500 555-0148', CAST(N'2002-03-22 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11767, 24, N'AW00011767', NULL, N'Meagan', NULL, N'Madan', 0, CAST(N'1966-05-24 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 90000.0000, 0, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'0', 0, N'8250 11th Avenue', NULL, N'1 (11) 500 555-0112', CAST(N'2002-03-20 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11768, 30, N'AW00011768', NULL, N'Clayton', NULL, N'Nara', 0, CAST(N'1966-10-08 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 90000.0000, 2, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'1', 0, N'4642 Peabody Road', NULL, N'1 (11) 500 555-0162', CAST(N'2002-03-06 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11769, 55, N'AW00011769', NULL, N'Haley', N'L', N'Hernandez', 0, CAST(N'1973-08-17 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 50000.0000, 0, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 0, N'1671 Via Del Verdes', NULL, N'120-555-0112', CAST(N'2003-10-30 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11770, 607, N'AW00011770', NULL, N'Peter', N'T', N'Nara', 0, CAST(N'1973-08-23 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 50000.0000, 0, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 0, N'6489 Kentucky Drive', NULL, N'244-555-0113', CAST(N'2004-02-09 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11771, 627, N'AW00011771', NULL, N'Isaac', N'D', N'Rivera', 0, CAST(N'1973-10-08 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 50000.0000, 0, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 0, N'7962 Macalvey Drive', NULL, N'750-555-0140', CAST(N'2003-10-02 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11772, 642, N'AW00011772', NULL, N'Cameron', N'M', N'Moore', 0, CAST(N'1973-01-24 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 50000.0000, 1, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 0, N'5551 Silverado Dr.', NULL, N'293-555-0136', CAST(N'2002-04-10 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11773, 316, N'AW00011773', NULL, N'Gavin', N'E', N'Diaz', 0, CAST(N'1973-07-06 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 50000.0000, 1, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 0, N'6082 Trafalgar Circle', NULL, N'726-555-0116', CAST(N'2002-04-25 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11774, 343, N'AW00011774', NULL, N'Emma', NULL, N'Sanchez', 0, CAST(N'1973-04-12 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 50000.0000, 1, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 0, N'4996 Hillview Drive', NULL, N'365-555-0125', CAST(N'2002-04-28 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11775, 352, N'AW00011775', NULL, N'Sierra', NULL, N'Roberts', 0, CAST(N'1973-05-25 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 50000.0000, 1, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 0, N'1721 Concord Blvd', NULL, N'111-555-0177', CAST(N'2002-04-05 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11776, 368, N'AW00011776', NULL, N'Seth', N'A', N'Mitchell', 0, CAST(N'1973-07-03 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 50000.0000, 1, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 0, N'8125 Westbury Drive', NULL, N'171-555-0140', CAST(N'2002-04-07 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11777, 302, N'AW00011777', NULL, N'Miranda', NULL, N'Long', 0, CAST(N'1972-07-24 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 40000.0000, 1, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 0, N'8970 Cash Avenue', NULL, N'258-555-0111', CAST(N'2002-04-16 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11778, 638, N'AW00011778', NULL, N'Haley', N'A', N'Henderson', 0, CAST(N'1971-03-21 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 60000.0000, 1, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 0, N'1019 Chance Drive', NULL, N'868-555-0128', CAST(N'2002-04-29 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11779, 553, N'AW00011779', NULL, N'Sarah', N'P', N'Jackson', 0, CAST(N'1971-07-19 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 60000.0000, 1, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 0, N'1058 Park Blvd.', NULL, N'653-555-0150', CAST(N'2002-04-19 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11780, 614, N'AW00011780', NULL, N'Jessica', N'K', N'Alexander', 0, CAST(N'1971-11-20 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 60000.0000, 1, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 0, N'3459 Tri-state Ave', NULL, N'617-555-0146', CAST(N'2002-04-17 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11781, 314, N'AW00011781', NULL, N'Carlos', NULL, N'Gray', 0, CAST(N'1971-03-10 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 60000.0000, 1, 1, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 0, N'4239 Water St.', NULL, N'252-555-0175', CAST(N'2003-09-07 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11782, 301, N'AW00011782', NULL, N'Barbara', N'K', N'Jai', 0, CAST(N'1971-03-17 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 60000.0000, 1, 1, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 0, N'9834 Hamlet', NULL, N'361-555-0177', CAST(N'2004-02-03 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11783, 359, N'AW00011783', NULL, N'Sara', N'A', N'Mitchell', 0, CAST(N'1971-11-17 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 60000.0000, 1, 1, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 0, N'9024 Dumbarton Drive', NULL, N'537-555-0144', CAST(N'2003-09-24 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11784, 53, N'AW00011784', NULL, N'Jose', NULL, N'Turner', 0, CAST(N'1972-12-19 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 40000.0000, 1, 1, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 0, N'6648 Choctaw Court', NULL, N'189-555-0195', CAST(N'2003-10-14 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11785, 607, N'AW00011785', NULL, N'Theodore', N'D', N'Diaz', 0, CAST(N'1972-02-25 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 40000.0000, 1, 1, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 0, N'4956 Vista Del Diablo', NULL, N'690-555-0189', CAST(N'2003-10-23 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11786, 634, N'AW00011786', NULL, N'Ian', N'G', N'Murphy', 0, CAST(N'1972-09-13 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 60000.0000, 1, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 0, N'2391 St. Peter Court', NULL, N'754-555-0141', CAST(N'2004-07-01 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11787, 301, N'AW00011787', NULL, N'Jerry', NULL, N'Nath', 0, CAST(N'1972-09-05 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 60000.0000, 1, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 0, N'6096 Pheasant Circle', NULL, N'271-555-0115', CAST(N'2004-04-15 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11788, 338, N'AW00011788', NULL, N'Destiny', N'A', N'James', 0, CAST(N'1972-02-19 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 70000.0000, 1, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'1', 0, N'6538 Camelback Road', NULL, N'913-555-0130', CAST(N'2003-11-10 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11789, 343, N'AW00011789', NULL, N'Bailey', NULL, N'Phillips', 0, CAST(N'1970-02-20 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 50000.0000, 1, 1, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 0, N'571 Lafayette Drive', NULL, N'474-555-0183', CAST(N'2003-09-08 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11790, 307, N'AW00011790', NULL, N'Timothy', N'C', N'Gonzalez', 0, CAST(N'1970-05-21 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 50000.0000, 1, 1, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 0, N'6615 Cambelback Place', NULL, N'147-555-0193', CAST(N'2003-09-12 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11791, 641, N'AW00011791', NULL, N'Chase', N'D', N'Morgan', 0, CAST(N'1970-04-21 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 60000.0000, 1, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'1', 0, N'5446 N. Civic Dr.', NULL, N'194-555-0127', CAST(N'2004-04-01 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11792, 310, N'AW00011792', NULL, N'Alexia', N'J', N'Perry', 0, CAST(N'1969-05-27 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 40000.0000, 1, 1, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 1, N'879 Hillview Ct', NULL, N'193-555-0135', CAST(N'2003-11-04 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11793, 301, N'AW00011793', NULL, N'Xavier', N'G', N'Rogers', 0, CAST(N'1969-03-20 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 40000.0000, 1, 1, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 1, N'1480 Oliveria Road', NULL, N'457-555-0162', CAST(N'2003-08-08 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11794, 334, N'AW00011794', NULL, N'Lauren', NULL, N'Ross', 0, CAST(N'1969-11-01 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 40000.0000, 2, 2, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 0, N'5375 Clearland Circle', NULL, N'143-555-0123', CAST(N'2004-05-31 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11795, 315, N'AW00011795', NULL, N'Nicole', NULL, N'Thomas', 0, CAST(N'1969-02-15 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 40000.0000, 2, 2, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 0, N'4303 Athene Drive', NULL, N'667-555-0136', CAST(N'2004-01-13 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11796, 315, N'AW00011796', NULL, N'Isabel', N'C', N'Jenkins', 0, CAST(N'1969-02-07 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 40000.0000, 2, 2, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 0, N'9348 Notre Dame Ave', NULL, N'774-555-0127', CAST(N'2002-04-18 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11797, 348, N'AW00011797', NULL, N'Devin', N'R', N'Coleman', 0, CAST(N'1969-03-07 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 40000.0000, 2, 2, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 0, N'4143 Heather Pl.', NULL, N'792-555-0157', CAST(N'2002-04-16 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11798, 611, N'AW00011798', NULL, N'Brendan', N'Q', N'Chande', 0, CAST(N'1969-02-12 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 40000.0000, 2, 2, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 0, N'1519 Sheffield Place', NULL, N'551-555-0157', CAST(N'2002-04-17 00:00:00.000' AS DateTime), N'2-5 Miles')

GO

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11799, 612, N'AW00011799', NULL, N'Jessie', N'B', N'Wang', 0, CAST(N'1969-09-13 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 40000.0000, 2, 2, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 0, N'4593 Camino Peral', NULL, N'527-555-0124', CAST(N'2002-04-12 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11800, 536, N'AW00011800', NULL, N'Jennifer', N'M', N'Baker', 0, CAST(N'1969-11-07 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 60000.0000, 1, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'1', 0, N'8998 Katharyn Drive', NULL, N'506-555-0157', CAST(N'2004-02-11 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11801, 536, N'AW00011801', NULL, N'Aaron', N'J', N'Sharma', 0, CAST(N'1969-09-16 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 60000.0000, 1, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'1', 0, N'4073 Niagara Court', NULL, N'500-555-0177', CAST(N'2004-06-14 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11802, 59, N'AW00011802', NULL, N'Madison', N'A', N'Taylor', 0, CAST(N'1971-08-09 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 60000.0000, 1, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'1', 0, N'627 La Salle Street', NULL, N'635-555-0173', CAST(N'2003-08-29 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11803, 631, N'AW00011803', NULL, N'Jan', N'L', N'Hernandez', 0, CAST(N'1971-09-12 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 60000.0000, 1, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'1', 0, N'3553 Grant Street', NULL, N'845-555-0160', CAST(N'2004-01-30 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11804, 634, N'AW00011804', NULL, N'Haley', N'M', N'Turner', 0, CAST(N'1971-04-18 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 60000.0000, 1, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'1', 0, N'5450 Bellows Ct.', NULL, N'489-555-0139', CAST(N'2003-11-30 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11805, 300, N'AW00011805', NULL, N'Richard', N'M', N'Green', 0, CAST(N'1971-03-12 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 70000.0000, 2, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'1', 0, N'5407 Cougar Way', NULL, N'142-555-0146', CAST(N'2003-10-25 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11806, 302, N'AW00011806', NULL, N'Jennifer', N'S', N'Stewart', 0, CAST(N'1971-08-10 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 70000.0000, 2, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'1', 0, N'1500 Grant Street', NULL, N'159-555-0111', CAST(N'2003-08-25 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11807, 343, N'AW00011807', NULL, N'Lucas', NULL, N'Baker', 0, CAST(N'1971-09-04 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 70000.0000, 3, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'1', 0, N'1086 Ash Lane', NULL, N'787-555-0141', CAST(N'2003-10-15 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11808, 54, N'AW00011808', NULL, N'James', NULL, N'Parker', 0, CAST(N'1969-04-12 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 60000.0000, 1, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'1', 0, N'751 Countrywood Ct.', NULL, N'730-555-0125', CAST(N'2003-09-27 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11809, 300, N'AW00011809', NULL, N'Juan', NULL, N'Gray', 0, CAST(N'1968-01-02 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 60000.0000, 2, 2, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 0, N'1289 Quigley St.', NULL, N'995-555-0114', CAST(N'2002-04-23 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11810, 611, N'AW00011810', NULL, N'Antonio', N'K', N'Washington', 0, CAST(N'1967-01-07 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 40000.0000, 0, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'0', 1, N'7095 Curletto Dr.', NULL, N'373-555-0139', CAST(N'2002-04-22 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11811, 310, N'AW00011811', NULL, N'Abigail', N'C', N'Brooks', 0, CAST(N'1967-06-15 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 40000.0000, 0, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'1', 1, N'1617 Crossbow Way', NULL, N'367-555-0138', CAST(N'2002-04-17 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11812, 644, N'AW00011812', NULL, N'Andrew', N'N', N'Rodriguez', 0, CAST(N'1967-09-22 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 40000.0000, 0, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'0', 1, N'3997 Via De Luna', NULL, N'586-555-0118', CAST(N'2002-04-05 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11813, 552, N'AW00011813', NULL, N'Mary', NULL, N'Patterson', 0, CAST(N'1967-11-12 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 40000.0000, 0, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'0', 1, N'1102 Ravenwood', NULL, N'956-555-0136', CAST(N'2002-04-18 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11814, 542, N'AW00011814', NULL, N'Dalton', N'L', N'Morgan', 0, CAST(N'1970-07-08 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 60000.0000, 2, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'1', 0, N'4921 Oakwood Circle', NULL, N'530-555-0182', CAST(N'2003-12-25 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11815, 642, N'AW00011815', NULL, N'Hannah', N'J', N'Patterson', 0, CAST(N'1970-04-24 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 70000.0000, 3, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'1', 0, N'3327 Rockridge Dr.', NULL, N'110-555-0136', CAST(N'2002-04-04 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11816, 300, N'AW00011816', NULL, N'Joe', N'A', N'Torres', 0, CAST(N'1970-10-23 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 70000.0000, 4, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'1', 0, N'8069 Vine Hill Way', NULL, N'450-555-0115', CAST(N'2002-04-04 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11817, 310, N'AW00011817', NULL, N'Morgan', N'C', N'Miller', 0, CAST(N'1970-11-27 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 70000.0000, 4, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'1', 0, N'5929 William Reed Dr.', NULL, N'339-555-0137', CAST(N'2002-04-15 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11818, 312, N'AW00011818', NULL, N'Daniel', N'C', N'Garcia', 0, CAST(N'1970-04-22 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 70000.0000, 4, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'1', 0, N'4010 Willow Pass Road', NULL, N'125-555-0145', CAST(N'2002-04-23 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11819, 616, N'AW00011819', NULL, N'Jose', NULL, N'Lal', 0, CAST(N'1967-10-10 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 70000.0000, 2, 2, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 1, N'6264 Center Ave', NULL, N'152-555-0130', CAST(N'2003-08-19 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11820, 69, N'AW00011820', NULL, N'Katelyn', NULL, N'Lopez', 0, CAST(N'1966-08-26 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 60000.0000, 0, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'1', 0, N'8873 Folson Drive', NULL, N'316-555-0185', CAST(N'2003-08-13 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11821, 300, N'AW00011821', NULL, N'Austin', NULL, N'Johnson', 0, CAST(N'1966-04-15 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 60000.0000, 0, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'1', 0, N'6569 Endriss', NULL, N'163-555-0134', CAST(N'2004-01-31 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11822, 336, N'AW00011822', NULL, N'Rohinton', N'H', N'Wadia', 0, CAST(N'1966-06-13 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 60000.0000, 0, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'1', 0, N'5935 Seawind Dr.', NULL, N'792-555-0137', CAST(N'2003-11-21 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11823, 53, N'AW00011823', NULL, N'Morgan', NULL, N'Turner', 0, CAST(N'1966-10-24 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 70000.0000, 0, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'1', 0, N'6091 Bluefish Lane', NULL, N'856-555-0168', CAST(N'2003-11-19 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11824, 55, N'AW00011824', NULL, N'Jill', N'C', N'Martin', 0, CAST(N'1966-10-07 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 70000.0000, 4, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'1', 0, N'9719 Hamilton Ave', NULL, N'884-555-0127', CAST(N'2003-09-19 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11825, 298, N'AW00011825', NULL, N'Aimee', NULL, N'She', 0, CAST(N'1966-05-18 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 70000.0000, 5, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'1', 0, N'6752 Covington Court', NULL, N'137-555-0149', CAST(N'2002-04-18 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11826, 300, N'AW00011826', NULL, N'Jessie', N'J', N'Alonso', 0, CAST(N'1966-02-15 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 70000.0000, 5, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'1', 0, N'7342 Dew Drop Circle', NULL, N'579-555-0138', CAST(N'2002-04-29 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11827, 55, N'AW00011827', NULL, N'Sara', N'M', N'Baker', 0, CAST(N'1969-09-20 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 60000.0000, 2, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'1', 0, N'5269 Mt. Trinity Court', NULL, N'256-555-0180', CAST(N'2003-08-24 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11828, 545, N'AW00011828', NULL, N'Katherine', NULL, N'Martinez', 0, CAST(N'1969-06-08 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 70000.0000, 5, 5, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'1', 2, N'3836 Carletto Drive', NULL, N'584-555-0118', CAST(N'2003-10-05 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11829, 637, N'AW00011829', NULL, N'Sophia', NULL, N'Campbell', 0, CAST(N'1969-11-02 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 70000.0000, 5, 5, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'1', 2, N'8122 Mink Court', NULL, N'766-555-0146', CAST(N'2003-09-14 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11830, 336, N'AW00011830', NULL, N'Taylor', N'N', N'Garcia', 0, CAST(N'1969-01-15 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 80000.0000, 3, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'1', 0, N'6986 Ida Ave.', NULL, N'301-555-0163', CAST(N'2002-04-01 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11831, 358, N'AW00011831', NULL, N'Christian', NULL, N'Ross', 0, CAST(N'1969-11-24 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 80000.0000, 3, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'1', 0, N'971 Harness Circle', NULL, N'123-555-0152', CAST(N'2002-04-29 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11832, 644, N'AW00011832', NULL, N'Zoe', NULL, N'Murphy', 0, CAST(N'1965-04-05 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 40000.0000, 0, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'0', 1, N'3426 Calhoun Court', NULL, N'798-555-0157', CAST(N'2003-08-22 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11833, 59, N'AW00011833', NULL, N'Oscar', N'G', N'Price', 0, CAST(N'1965-07-23 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 80000.0000, 3, 3, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 1, N'5049 Teakwood Dr.', NULL, N'389-555-0114', CAST(N'2003-12-14 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11834, 339, N'AW00011834', NULL, N'Fernando', N'M', N'Flores', 0, CAST(N'1965-10-25 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 80000.0000, 3, 3, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 1, N'3789 Linden Lane', NULL, N'162-555-0175', CAST(N'2002-04-24 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11835, 53, N'AW00011835', NULL, N'Elijah', N'M', N'Russell', 0, CAST(N'1965-06-19 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 80000.0000, 3, 3, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'1592 Working Drive', NULL, N'188-555-0159', CAST(N'2003-07-14 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11836, 616, N'AW00011836', NULL, N'Garrett', NULL, N'Travers', 0, CAST(N'1965-04-27 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 80000.0000, 3, 3, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'7947 Stillman Court', NULL, N'879-555-0116', CAST(N'2003-09-25 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11837, 360, N'AW00011837', NULL, N'Haley', NULL, N'Alexander', 0, CAST(N'1965-08-09 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 80000.0000, 3, 3, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'80 Mozden Lane', NULL, N'951-555-0164', CAST(N'2002-04-15 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11838, 536, N'AW00011838', NULL, N'Justin', N'J', N'Rodriguez', 0, CAST(N'1965-02-09 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 80000.0000, 3, 3, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 2, N'761 Orchard View Ave.', NULL, N'211-555-0112', CAST(N'2003-12-02 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11839, 369, N'AW00011839', NULL, N'Tyler', NULL, N'Brown', 0, CAST(N'1965-07-25 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 60000.0000, 0, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'1', 1, N'9271 Prestwick Ave.', NULL, N'801-555-0121', CAST(N'2002-04-28 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11840, 336, N'AW00011840', NULL, N'Julian', N'D', N'Patterson', 0, CAST(N'1965-05-17 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 60000.0000, 0, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'1', 1, N'9240 Limewood Pl.', NULL, N'603-555-0169', CAST(N'2003-11-01 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11841, 52, N'AW00011841', NULL, N'Sean', NULL, N'Nelson', 0, CAST(N'1964-03-16 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 40000.0000, 0, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'0', 1, N'4594 Hill Drive', NULL, N'314-555-0153', CAST(N'2003-11-21 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11842, 631, N'AW00011842', NULL, N'Justin', NULL, N'Wilson', 0, CAST(N'1964-10-04 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 50000.0000, 4, 4, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 3, N'7164 Pinncale Drive', NULL, N'585-555-0152', CAST(N'2003-11-13 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11843, 536, N'AW00011843', NULL, N'Christy', NULL, N'Nara', 0, CAST(N'1964-11-11 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 50000.0000, 4, 4, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 3, N'4678 Ygnacio Valley Road', NULL, N'639-555-0189', CAST(N'2003-08-11 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11844, 307, N'AW00011844', NULL, N'Michele', N'J', N'Alvarez', 0, CAST(N'1964-04-08 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 50000.0000, 4, 4, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 3, N'9249 Martin St', NULL, N'103-555-0162', CAST(N'2004-04-07 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11845, 63, N'AW00011845', NULL, N'Natalie', N'A', N'Jones', 0, CAST(N'1924-08-18 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 30000.0000, 2, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 2, N'1442 Hill Top Rd', NULL, N'119-555-0148', CAST(N'2003-08-17 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11846, 337, N'AW00011846', NULL, N'Savannah', N'A', N'Reed', 0, CAST(N'1964-06-15 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 50000.0000, 4, 2, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'4080 Pelican Loop', NULL, N'503-555-0151', CAST(N'2003-10-30 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11847, 547, N'AW00011847', NULL, N'Cassidy', NULL, N'Diaz', 0, CAST(N'1964-12-01 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 50000.0000, 4, 2, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 2, N'3797 Concord Royale', NULL, N'323-555-0140', CAST(N'2003-12-30 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11848, 648, N'AW00011848', NULL, N'Joshua', N'C', N'Lewis', 0, CAST(N'1964-02-28 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 50000.0000, 4, 2, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'7166 Brock Lane', NULL, N'365-555-0198', CAST(N'2004-01-28 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11849, 331, N'AW00011849', NULL, N'Faith', N'C', N'Reed', 0, CAST(N'1964-09-13 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 50000.0000, 4, 2, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'2751 Trail Way', N'Unit B', N'727-555-0162', CAST(N'2004-05-30 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11850, 347, N'AW00011850', NULL, N'Brooke', N'C', N'Ramirez', 0, CAST(N'1964-03-23 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 50000.0000, 4, 2, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'8004 Water Street', NULL, N'729-555-0139', CAST(N'2003-10-10 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11851, 311, N'AW00011851', NULL, N'Jada', NULL, N'Mitchell', 0, CAST(N'1963-09-08 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 60000.0000, 4, 2, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'1', 2, N'6848 Calico Way', NULL, N'416-555-0196', CAST(N'2003-12-18 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11852, 334, N'AW00011852', NULL, N'Kyle', N'M', N'Russell', 0, CAST(N'1963-10-25 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 60000.0000, 4, 2, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'0', 2, N'1345 Prospect Street', NULL, N'473-555-0199', CAST(N'2004-01-11 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11853, 311, N'AW00011853', NULL, N'Grace', NULL, N'Jones', 0, CAST(N'1968-11-18 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 60000.0000, 0, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'1', 1, N'8866 Alpha Way', NULL, N'388-555-0168', CAST(N'2003-11-11 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11854, 383, N'AW00011854', NULL, N'Jason', N'K', N'Mitchell', 0, CAST(N'1968-04-18 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 60000.0000, 2, 2, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'0', 0, N'7537 Clark Creek Lane', NULL, N'480-555-0139', CAST(N'2002-04-27 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11855, 302, N'AW00011855', NULL, N'Christian', NULL, N'Walker', 0, CAST(N'1963-08-13 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 60000.0000, 4, 2, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'1', 4, N'1575 Brown Street', NULL, N'531-555-0113', CAST(N'2003-10-29 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11856, 539, N'AW00011856', NULL, N'Seth', N'M', N'Hernandez', 0, CAST(N'1963-08-17 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 60000.0000, 3, 2, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'1', 0, N'4107 St. Raphael Drive', NULL, N'195-555-0146', CAST(N'2004-06-01 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11857, 614, N'AW00011857', NULL, N'Isabella', NULL, N'Young', 0, CAST(N'1963-03-12 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 60000.0000, 3, 2, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'0', 0, N'9175 Benton Street', NULL, N'747-555-0149', CAST(N'2004-04-08 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11858, 361, N'AW00011858', NULL, N'Jordan', N'A', N'Coleman', 0, CAST(N'1962-12-07 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 40000.0000, 3, 2, N'High School', N'Educación secundaria', N'Bac + 2', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'8005 Ranchhand Court', NULL, N'996-555-0179', CAST(N'2003-09-28 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11859, 631, N'AW00011859', NULL, N'Blake', N'J', N'Garcia', 0, CAST(N'1962-09-09 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 70000.0000, 1, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 1, N'9322 Driving Drive', NULL, N'713-555-0128', CAST(N'2003-10-24 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11860, 343, N'AW00011860', NULL, N'Nicole', NULL, N'Walker', 0, CAST(N'1962-01-09 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 70000.0000, 1, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 1, N'8362 Abbey Court', NULL, N'129-555-0165', CAST(N'2004-01-04 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11861, 71, N'AW00011861', NULL, N'Katherine', NULL, N'Carter', 0, CAST(N'1962-04-24 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 70000.0000, 1, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 1, N'591 Laguna Street', N'# 439', N'572-555-0120', CAST(N'2003-11-15 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11862, 616, N'AW00011862', NULL, N'Olivia', NULL, N'Peterson', 0, CAST(N'1961-09-15 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 40000.0000, 4, 2, N'High School', N'Educación secundaria', N'Bac + 2', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'9212 Tupelo Drive', NULL, N'409-555-0135', CAST(N'2003-11-17 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11863, 638, N'AW00011863', NULL, N'Jessica', NULL, N'Wood', 0, CAST(N'1961-10-11 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 60000.0000, 1, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 1, N'1439 N. Canyon Road', NULL, N'130-555-0137', CAST(N'2004-03-06 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11864, 642, N'AW00011864', NULL, N'Elizabeth', N'W', N'Thompson', 0, CAST(N'1961-09-06 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 60000.0000, 1, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 1, N'2894 Encino Dr.', NULL, N'465-555-0154', CAST(N'2003-09-02 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11865, 343, N'AW00011865', NULL, N'Chloe', N'R', N'Rivera', 0, CAST(N'1961-02-06 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 60000.0000, 1, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 1, N'6282 Mcneil Place', NULL, N'372-555-0142', CAST(N'2003-08-21 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11866, 325, N'AW00011866', NULL, N'Lucas', N'L', N'Scott', 0, CAST(N'1961-07-02 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 60000.0000, 1, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 1, N'1218 Woodside Court', NULL, N'764-555-0119', CAST(N'2003-08-22 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11867, 343, N'AW00011867', NULL, N'Nathaniel', N'C', N'James', 0, CAST(N'1960-04-24 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 40000.0000, 4, 2, N'High School', N'Educación secundaria', N'Bac + 2', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'4268 Weaver Court', NULL, N'112-555-0116', CAST(N'2003-12-06 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11868, 68, N'AW00011868', NULL, N'Jessica', N'M', N'Peterson', 0, CAST(N'1967-08-04 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 70000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 1, N'1613 Santa Maria', NULL, N'974-555-0184', CAST(N'2003-08-06 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11869, 71, N'AW00011869', NULL, N'Kaitlyn', N'A', N'Adams', 0, CAST(N'1967-11-06 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 70000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 1, N'3815 Berry Dr.', NULL, N'512-555-0158', CAST(N'2003-09-21 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11870, 612, N'AW00011870', NULL, N'Jillian', NULL, N'Garcia', 0, CAST(N'1967-07-14 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 70000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 1, N'6375 Freda Drive', NULL, N'386-555-0159', CAST(N'2004-01-21 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11871, 626, N'AW00011871', NULL, N'Dalton', N'L', N'Bennett', 0, CAST(N'1967-08-16 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 70000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 1, N'4188 Green Valley Road', NULL, N'941-555-0138', CAST(N'2003-08-27 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11872, 325, N'AW00011872', NULL, N'Faith', N'L', N'Patterson', 0, CAST(N'1967-07-21 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 60000.0000, 0, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'0', 1, N'1141 Rolling Hill Way', NULL, N'148-555-0143', CAST(N'2002-04-23 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11873, 372, N'AW00011873', NULL, N'Ryan', NULL, N'Zhang', 0, CAST(N'1967-04-12 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 60000.0000, 0, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'0', 1, N'4176 Cotton Ct', NULL, N'295-555-0128', CAST(N'2002-04-09 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11874, 385, N'AW00011874', NULL, N'Adrian', NULL, N'Bell', 0, CAST(N'1967-03-10 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 60000.0000, 0, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'0', 1, N'302 Briarcliff Ct.', NULL, N'254-555-0175', CAST(N'2004-01-20 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11875, 51, N'AW00011875', NULL, N'Jonathan', NULL, N'Brown', 0, CAST(N'1960-08-03 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 60000.0000, 1, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 1, N'5373 Montgomery Ave.', NULL, N'108-555-0111', CAST(N'2003-10-22 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11876, 348, N'AW00011876', NULL, N'Madison', N'L', N'White', 0, CAST(N'1960-11-13 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 60000.0000, 1, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 1, N'27 Athens Circle', NULL, N'813-555-0171', CAST(N'2003-12-21 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11877, 345, N'AW00011877', NULL, N'Alexis', NULL, N'Diaz', 0, CAST(N'1960-10-07 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 60000.0000, 1, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 1, N'8541 Summerfield Drive', NULL, N'409-555-0139', CAST(N'2004-04-07 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11878, 607, N'AW00011878', NULL, N'Christine', NULL, N'Nara', 0, CAST(N'1960-02-08 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 60000.0000, 1, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 1, N'5784 Yeoman Dr.', NULL, N'792-555-0139', CAST(N'2004-06-02 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11879, 536, N'AW00011879', NULL, N'Edgar', NULL, N'Sai', 0, CAST(N'1960-10-03 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 60000.0000, 1, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 1, N'9037 Saddlehill Lane', NULL, N'525-555-0117', CAST(N'2003-08-31 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11880, 548, N'AW00011880', NULL, N'Melissa', NULL, N'Sanchez', 0, CAST(N'1959-08-20 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 60000.0000, 1, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 1, N'2524 Fish Dr', NULL, N'409-555-0153', CAST(N'2003-10-12 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11881, 326, N'AW00011881', NULL, N'Richard', N'T', N'Mitchell', 0, CAST(N'1959-07-24 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 60000.0000, 4, 3, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'1', 0, N'8998 Adobe Drive', NULL, N'142-555-0165', CAST(N'2004-06-04 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11882, 637, N'AW00011882', NULL, N'Patrick', N'L', N'Stewart', 0, CAST(N'1959-03-12 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 60000.0000, 4, 3, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'1', 0, N'2880 Ponderosa Dr.', NULL, N'115-555-0181', CAST(N'2003-08-21 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11883, 612, N'AW00011883', NULL, N'Hannah', N'C', N'Anderson', 0, CAST(N'1959-08-14 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 70000.0000, 5, 5, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'1', 3, N'5622 Geary', NULL, N'819-555-0146', CAST(N'2003-08-25 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11884, 607, N'AW00011884', NULL, N'Latoya', N'S', N'Shen', 0, CAST(N'1959-04-26 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 80000.0000, 5, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'1', 0, N'2328 Sand View Way', NULL, N'390-555-0186', CAST(N'2003-08-21 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11885, 302, N'AW00011885', NULL, N'Kurt', NULL, N'Sharma', 0, CAST(N'1959-09-25 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 80000.0000, 2, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'1', 0, N'4461 Centennial Way', NULL, N'146-555-0179', CAST(N'2002-04-30 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11886, 369, N'AW00011886', NULL, N'Katelyn', NULL, N'Parker', 0, CAST(N'1958-01-20 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 60000.0000, 3, 2, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'1', 1, N'7111 Concord Ct.', NULL, N'451-555-0135', CAST(N'2002-04-30 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11887, 312, N'AW00011887', NULL, N'Joseph', NULL, N'White', 0, CAST(N'1958-04-05 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 60000.0000, 1, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'1', 1, N'8656 Lakespring Place', NULL, N'149-555-0116', CAST(N'2003-11-29 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11888, 49, N'AW00011888', NULL, N'Aaron', N'N', N'Ross', 0, CAST(N'1958-12-22 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 60000.0000, 1, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'1', 1, N'2111 Ringing Dr', NULL, N'175-555-0139', CAST(N'2003-09-19 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11889, 633, N'AW00011889', NULL, N'Blake', NULL, N'Patterson', 0, CAST(N'1958-05-28 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 60000.0000, 1, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'1', 1, N'8129 Golden Rain', NULL, N'473-555-0194', CAST(N'2003-08-27 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11890, 299, N'AW00011890', NULL, N'Whitney', NULL, N'Lopez', 0, CAST(N'1958-11-15 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 70000.0000, 5, 4, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'1', 1, N'3098 Eastgate Ave', NULL, N'307-555-0113', CAST(N'2003-09-30 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11891, 300, N'AW00011891', NULL, N'Jamie', N'E', N'Liang', 0, CAST(N'1958-09-17 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 70000.0000, 5, 4, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Professional', N'Profesional', N'Cadre', N'1', 2, N'3213 Glenside Dr', NULL, N'138-555-0111', CAST(N'2003-09-08 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11892, 14, N'AW00011892', NULL, N'Julio', N'M', N'Ortega', 0, CAST(N'1969-10-08 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 90000.0000, 1, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Management', N'Gestión', N'Direction', N'1', 0, N'1681 Via Estrella', NULL, N'1 (11) 500 555-0180', CAST(N'2002-03-07 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11893, 18, N'AW00011893', NULL, N'Orlando', N'J', N'Carlson', 0, CAST(N'1969-02-09 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 90000.0000, 2, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Management', N'Gestión', N'Direction', N'1', 0, N'761 Orchard View Ave.', NULL, N'1 (11) 500 555-0111', CAST(N'2002-03-03 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11894, 25, N'AW00011894', NULL, N'Ann', NULL, N'Gonzalez', 0, CAST(N'1969-05-04 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 100000.0000, 1, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Management', N'Gestión', N'Direction', N'1', 0, N'4166 Deercreek Ln.', NULL, N'1 (11) 500 555-0118', CAST(N'2002-03-25 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11895, 23, N'AW00011895', NULL, N'Dustin', NULL, N'Chander', 0, CAST(N'1969-07-21 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 100000.0000, 1, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Management', N'Gestión', N'Direction', N'1', 0, N'5553 Cash Avenue', NULL, N'1 (11) 500 555-0196', CAST(N'2002-03-15 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11896, 16, N'AW00011896', NULL, N'Frank', NULL, N'Carlson', 0, CAST(N'1969-11-18 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 100000.0000, 1, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Management', N'Gestión', N'Direction', N'1', 0, N'8851 Northridge Dr.', NULL, N'1 (11) 500 555-0160', CAST(N'2002-03-04 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11897, 38, N'AW00011897', NULL, N'Orlando', N'I', N'Ashe', 0, CAST(N'1968-11-28 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 60000.0000, 2, 2, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'0', 1, N'9478 Rheem Dr.', NULL, N'1 (11) 500 555-0184', CAST(N'2002-03-02 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11898, 20, N'AW00011898', NULL, N'Angela', N'T', N'Henderson', 0, CAST(N'1970-07-03 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 80000.0000, 4, 4, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Management', N'Gestión', N'Direction', N'1', 1, N'9377 Ash Lane', NULL, N'1 (11) 500 555-0118', CAST(N'2002-03-17 00:00:00.000' AS DateTime), N'0-1 Miles')

GO

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11899, 36, N'AW00011899', NULL, N'Brenda', NULL, N'Perez', 0, CAST(N'1970-09-16 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 80000.0000, 4, 4, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Management', N'Gestión', N'Direction', N'1', 1, N'9935 San Carlos Avenue', NULL, N'1 (11) 500 555-0181', CAST(N'2002-03-07 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11900, 10, N'AW00011900', NULL, N'Byron', NULL, N'Carlson', 0, CAST(N'1970-03-07 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 90000.0000, 2, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'1', 0, N'4002 Fawn Glen Circle', NULL, N'1 (11) 500 555-0115', CAST(N'2002-03-24 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11901, 3, N'AW00011901', NULL, N'Stacy', NULL, N'Alvarez', 0, CAST(N'1968-02-19 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 60000.0000, 2, 2, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'0', 1, N'3917 Catalpa Court', NULL, N'1 (11) 500 555-0171', CAST(N'2002-03-13 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11902, 7, N'AW00011902', NULL, N'Drew', NULL, N'Pal', 0, CAST(N'1967-03-18 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 70000.0000, 5, 5, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'1', 3, N'8991 Olivera', NULL, N'1 (11) 500 555-0151', CAST(N'2003-08-25 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11903, 21, N'AW00011903', NULL, N'Kate', N'L', N'Raji', 0, CAST(N'1969-04-27 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 110000.0000, 1, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Management', N'Gestión', N'Direction', N'1', 0, N'1225 Santa Lucia', NULL, N'1 (11) 500 555-0124', CAST(N'2002-03-24 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11904, 34, N'AW00011904', NULL, N'Kaylee', NULL, N'Cook', 0, CAST(N'1969-11-09 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 110000.0000, 1, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Management', N'Gestión', N'Direction', N'1', 1, N'5742 Curtis Drive', NULL, N'1 (11) 500 555-0188', CAST(N'2002-03-20 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11905, 31, N'AW00011905', NULL, N'Isaiah', NULL, N'Ramirez', 0, CAST(N'1969-06-16 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 110000.0000, 1, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Management', N'Gestión', N'Direction', N'1', 1, N'1069 Central Blvd.', NULL, N'1 (11) 500 555-0177', CAST(N'2002-03-01 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11906, 20, N'AW00011906', NULL, N'Gabriella', NULL, N'Sanders', 0, CAST(N'1967-02-18 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 80000.0000, 5, 5, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Management', N'Gestión', N'Direction', N'1', 3, N'4938 Nightingale Drive', NULL, N'1 (11) 500 555-0115', CAST(N'2002-03-13 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11907, 19, N'AW00011907', NULL, N'Sarah', NULL, N'Garcia', 0, CAST(N'1967-09-08 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 80000.0000, 5, 5, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Management', N'Gestión', N'Direction', N'1', 3, N'9481 Laguna Street', NULL, N'1 (11) 500 555-0145', CAST(N'2002-03-31 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11908, 38, N'AW00011908', NULL, N'Rafael', N'A', N'Tang', 0, CAST(N'1966-07-11 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 80000.0000, 5, 5, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Management', N'Gestión', N'Direction', N'1', 3, N'8839 Leonard Dr', NULL, N'1 (11) 500 555-0157', CAST(N'2002-03-22 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11909, 26, N'AW00011909', NULL, N'Nichole', N'M', N'She', 0, CAST(N'1966-02-10 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 80000.0000, 5, 5, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Management', N'Gestión', N'Direction', N'0', 3, N'7484 Roundtree Drive', NULL, N'1 (11) 500 555-0168', CAST(N'2002-03-23 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11910, 4, N'AW00011910', NULL, N'Jaclyn', N'F', N'Zheng', 0, CAST(N'1966-06-12 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 80000.0000, 5, 5, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Management', N'Gestión', N'Direction', N'1', 3, N'7413 Alpine Drive', NULL, N'1 (11) 500 555-0117', CAST(N'2002-04-11 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11911, 34, N'AW00011911', NULL, N'Rachael', N'D', N'Kapoor', 0, CAST(N'1966-11-16 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 80000.0000, 5, 5, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Management', N'Gestión', N'Direction', N'1', 3, N'4159 Bayshore Rd.', NULL, N'1 (11) 500 555-0149', CAST(N'2003-12-03 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11912, 27, N'AW00011912', NULL, N'Rachael', NULL, N'Sai', 0, CAST(N'1965-12-17 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 60000.0000, 3, 3, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'1', 1, N'5108 Heights Avenue', NULL, N'1 (11) 500 555-0196', CAST(N'2002-04-29 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11913, 37, N'AW00011913', N'Ms.', N'Rebecca', N'A.', N'Robinson', 0, CAST(N'1965-06-11 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 60000.0000, 3, 3, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'1', 1, N'1861 Chinquapin Ct', NULL, N'648-555-0100', CAST(N'2004-06-05 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11914, 13, N'AW00011914', NULL, N'Meagan', N'M', N'Rana', 0, CAST(N'1968-05-08 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 70000.0000, 0, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'0', 1, N'7867 F Mt Hood Circle', NULL, N'1 (11) 500 555-0118', CAST(N'2002-04-20 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11915, 13, N'AW00011915', NULL, N'Philip', N'P', N'Carlson', 0, CAST(N'1968-03-16 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 70000.0000, 0, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'1', 1, N'6672 Mt. Dias Blvd.', NULL, N'1 (11) 500 555-0110', CAST(N'2002-04-04 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11916, 40, N'AW00011916', NULL, N'Joe', N'D', N'Rana', 0, CAST(N'1965-09-07 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 70000.0000, 0, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'0', 1, N'6339 E. 108th Street', NULL, N'1 (11) 500 555-0177', CAST(N'2002-04-03 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11917, 3, N'AW00011917', NULL, N'Roy', N'R', N'Sanz', 0, CAST(N'1965-10-22 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 70000.0000, 0, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'1', 1, N'5087 Valle Vista Avenue', NULL, N'1 (11) 500 555-0156', CAST(N'2002-04-29 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11918, 2, N'AW00011918', NULL, N'Kaylee', N'L', N'Hill', 0, CAST(N'1964-03-03 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 60000.0000, 3, 3, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'1', 2, N'8205 Soto St.', NULL, N'1 (11) 500 555-0131', CAST(N'2002-04-15 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11919, 26, N'AW00011919', NULL, N'Warren', NULL, N'Andersen', 0, CAST(N'1964-02-18 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 60000.0000, 4, 4, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'1', 2, N'7783 Limewood Pl', NULL, N'1 (11) 500 555-0181', CAST(N'2002-04-07 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11920, 20, N'AW00011920', NULL, N'Adrienne', NULL, N'Gomez', 0, CAST(N'1964-02-28 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 60000.0000, 4, 4, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'1', 3, N'4373 Sherry Circle', NULL, N'1 (11) 500 555-0149', CAST(N'2002-04-12 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11921, 33, N'AW00011921', NULL, N'Gilbert', NULL, N'Zhu', 0, CAST(N'1964-12-23 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 60000.0000, 4, 4, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'1', 3, N'2939 West Ct.', NULL, N'1 (11) 500 555-0127', CAST(N'2004-03-22 00:00:00.000' AS DateTime), N'10+ Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11922, 69, N'AW00011922', NULL, N'James', NULL, N'Davis', 0, CAST(N'1968-08-20 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 90000.0000, 4, 4, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 2, N'3704 Elliott Dr.', NULL, N'483-555-0135', CAST(N'2003-08-19 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11923, 343, N'AW00011923', NULL, N'Sarah', NULL, N'Bryant', 0, CAST(N'1979-10-23 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 60000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 1, N'9855 Norse Ct.', NULL, N'197-555-0118', CAST(N'2003-08-16 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11924, 347, N'AW00011924', NULL, N'Ian', N'C', N'Long', 0, CAST(N'1979-10-25 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 60000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 1, N'2389 E Eagle Peak Rd.', NULL, N'212-555-0171', CAST(N'2002-04-28 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11925, 609, N'AW00011925', NULL, N'Ashlee', NULL, N'Jai', 0, CAST(N'1978-11-06 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 40000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 1, N'6468 Gatewood Court', NULL, N'547-555-0176', CAST(N'2002-04-11 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11926, 546, N'AW00011926', NULL, N'Eduardo', NULL, N'Foster', 0, CAST(N'1978-03-18 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 40000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 1, N'609 Power Ave.', NULL, N'522-555-0169', CAST(N'2003-11-05 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11927, 638, N'AW00011927', NULL, N'Nicole', N'D', N'Murphy', 0, CAST(N'1978-07-24 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 40000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 1, N'7468 Franklin Canyon Road', NULL, N'373-555-0118', CAST(N'2004-07-12 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11928, 316, N'AW00011928', NULL, N'Isabella', N'M', N'Morris', 0, CAST(N'1978-09-07 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 60000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'8487 Amador', NULL, N'693-555-0146', CAST(N'2003-12-02 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11929, 17, N'AW00011929', NULL, N'Virginia', NULL, N'Gonzalez', 0, CAST(N'1946-02-12 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 30000.0000, 2, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Clerical', N'Administrativo', N'Employé', N'1', 2, N'7566 Keller Ridge Dr.', NULL, N'1 (11) 500 555-0188', CAST(N'2002-04-16 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11930, 12, N'AW00011930', NULL, N'Jaclyn', N'M', N'Nara', 0, CAST(N'1947-05-04 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 20000.0000, 4, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 2, N'2121 Royal Ann Lane', NULL, N'1 (11) 500 555-0177', CAST(N'2002-04-16 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11931, 352, N'AW00011931', NULL, N'Marcus', N'M', N'Adams', 0, CAST(N'1978-11-13 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 70000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'9246 Westminster Pl', NULL, N'687-555-0170', CAST(N'2003-08-20 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11932, 369, N'AW00011932', NULL, N'Elizabeth', NULL, N'Coleman', 0, CAST(N'1978-08-11 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 70000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 2, N'7546 Gonzalez Ct.', NULL, N'400-555-0120', CAST(N'2003-10-31 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11933, 609, N'AW00011933', NULL, N'Mathew', NULL, N'Rubio', 0, CAST(N'1977-03-04 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 40000.0000, 0, 0, N'Partial High School', N'Educación secundaria (en curso)', N'Niveau bac', N'Clerical', N'Administrativo', N'Employé', N'0', 2, N'9911 Northgate Road', NULL, N'430-555-0126', CAST(N'2002-04-15 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11934, 612, N'AW00011934', NULL, N'Justin', N'L', N'Shan', 0, CAST(N'1977-10-14 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 40000.0000, 0, 0, N'Partial High School', N'Educación secundaria (en curso)', N'Niveau bac', N'Clerical', N'Administrativo', N'Employé', N'1', 2, N'9377 Lightwood Drive', NULL, N'215-555-0113', CAST(N'2002-05-22 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11935, 543, N'AW00011935', NULL, N'Jessica', NULL, N'Taylor', 0, CAST(N'1977-11-19 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 30000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 1, N'5843 Mountaire Pkwy.', NULL, N'144-555-0123', CAST(N'2003-12-08 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11936, 634, N'AW00011936', NULL, N'Hunter', N'S', N'Clark', 0, CAST(N'1977-04-11 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 30000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 1, N'9001 Esperanza', NULL, N'121-555-0144', CAST(N'2003-10-07 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11937, 548, N'AW00011937', NULL, N'Devin', NULL, N'Perez', 0, CAST(N'1977-06-05 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 30000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 2, N'8510 G St.', NULL, N'500-555-0169', CAST(N'2002-05-01 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11938, 314, N'AW00011938', NULL, N'Seth', N'D', N'Alexander', 0, CAST(N'1977-09-21 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 60000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'3842 Algiers Dr.', NULL, N'178-555-0186', CAST(N'2003-09-08 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11939, 329, N'AW00011939', NULL, N'Kevin', N'C', N'Washington', 0, CAST(N'1977-06-22 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 60000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 2, N'9105 Jacobsen Street', NULL, N'970-555-0114', CAST(N'2002-05-13 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11940, 385, N'AW00011940', NULL, N'Tyler', N'E', N'Miller', 0, CAST(N'1977-07-12 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 100000.0000, 3, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Management', N'Gestión', N'Direction', N'1', 3, N'9231 Brook Hollow Ct.', NULL, N'456-555-0191', CAST(N'2004-02-03 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11941, 553, N'AW00011941', NULL, N'Adam', N'L', N'Roberts', 0, CAST(N'1976-11-26 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 60000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'626 Redlands Way', NULL, N'868-555-0122', CAST(N'2004-02-08 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11942, 10, N'AW00011942', NULL, N'George', N'L', N'Gonzalez', 0, CAST(N'1949-06-13 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 20000.0000, 2, 1, N'Partial High School', N'Educación secundaria (en curso)', N'Niveau bac', N'Clerical', N'Administrativo', N'Employé', N'1', 2, N'80 San Remo Ct', NULL, N'1 (11) 500 555-0181', CAST(N'2002-04-17 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11943, 40, N'AW00011943', NULL, N'Dawn', N'E', N'Huang', 0, CAST(N'1949-02-27 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 20000.0000, 2, 1, N'Partial High School', N'Educación secundaria (en curso)', N'Niveau bac', N'Clerical', N'Administrativo', N'Employé', N'1', 2, N'1318 Ramer Ct.', NULL, N'1 (11) 500 555-0154', CAST(N'2002-04-20 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11944, 15, N'AW00011944', NULL, N'Rachael', N'M', N'Rodriguez', 0, CAST(N'1950-10-15 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 30000.0000, 3, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Clerical', N'Administrativo', N'Employé', N'0', 2, N'6335 Benita Way', NULL, N'1 (11) 500 555-0134', CAST(N'2002-04-21 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11945, 311, N'AW00011945', NULL, N'Dennis', NULL, N'Huang', 0, CAST(N'1980-09-11 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 20000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 2, N'1901 Mitchell Canyon Court', NULL, N'183-555-0120', CAST(N'2002-05-01 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11946, 18, N'AW00011946', NULL, N'Brandy', NULL, N'Saunders', 0, CAST(N'1951-01-03 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 30000.0000, 3, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'3809 Lancelot Dr.', NULL, N'1 (11) 500 555-0143', CAST(N'2002-04-23 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11947, 14, N'AW00011947', NULL, N'Jenny', N'R', N'Zheng', 0, CAST(N'1951-10-22 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 30000.0000, 3, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 2, N'8268 Donald Dr', NULL, N'1 (11) 500 555-0162', CAST(N'2002-04-15 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11948, 17, N'AW00011948', NULL, N'Tasha', N'E', N'Xu', 0, CAST(N'1951-04-10 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 30000.0000, 3, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'2013 Filling Ave.', N'#3', N'1 (11) 500 555-0194', CAST(N'2004-03-09 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11949, 374, N'AW00011949', NULL, N'Julia', N'W', N'Brooks', 0, CAST(N'1980-11-05 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 70000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'1657 Morengo Ct.', NULL, N'845-555-0143', CAST(N'2004-01-17 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11950, 312, N'AW00011950', NULL, N'Jordan', NULL, N'Carter', 0, CAST(N'1979-09-10 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 70000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'1127 Oak Street', NULL, N'609-555-0117', CAST(N'2003-08-21 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11951, 35, N'AW00011951', NULL, N'Lacey', N'J', N'Huang', 0, CAST(N'1952-08-06 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 40000.0000, 2, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'8762 Terrace', NULL, N'1 (11) 500 555-0121', CAST(N'2004-02-21 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11952, 34, N'AW00011952', N'Ms.', N'Dorothy', N'B.', N'Robinson', 0, CAST(N'1954-09-23 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 80000.0000, 2, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 2, N'4693 Mills Dr.', NULL, N'423-555-0100', CAST(N'2002-04-07 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11953, 545, N'AW00011953', NULL, N'Courtney', N'D', N'Wright', 0, CAST(N'1975-09-04 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 40000.0000, 0, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 2, N'445 San Carlos Avenue', NULL, N'366-555-0162', CAST(N'2003-08-13 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11954, 325, N'AW00011954', NULL, N'Joseph', N'M', N'Garcia', 0, CAST(N'1975-08-17 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 60000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'1220 Bradford Way', NULL, N'594-555-0120', CAST(N'2002-05-04 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11955, 325, N'AW00011955', NULL, N'Gabriel', N'L', N'Green', 0, CAST(N'1975-04-05 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 60000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'6991 Gloria Terr.', NULL, N'149-555-0162', CAST(N'2002-05-01 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11956, 300, N'AW00011956', NULL, N'Alexandria', NULL, N'Sandberg', 0, CAST(N'1974-09-03 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 40000.0000, 0, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'844 Sol Street', NULL, N'998-555-0194', CAST(N'2002-05-03 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11957, 634, N'AW00011957', NULL, N'Courtney', NULL, N'Hernandez', 0, CAST(N'1973-08-12 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 60000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 2, N'8426 Kendall Rd.', NULL, N'424-555-0199', CAST(N'2003-08-16 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11958, 611, N'AW00011958', NULL, N'Dylan', N'D', N'Lal', 0, CAST(N'1973-01-06 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 70000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Professional', N'Profesional', N'Cadre', N'1', 2, N'6746 River Ash Court', NULL, N'844-555-0156', CAST(N'2003-12-18 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11959, 335, N'AW00011959', NULL, N'Elizabeth', N'K', N'Davis', 0, CAST(N'1973-04-07 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 70000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Professional', N'Profesional', N'Cadre', N'0', 2, N'117 Esperanza Dr', NULL, N'884-555-0119', CAST(N'2003-09-24 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11960, 634, N'AW00011960', NULL, N'Ana', NULL, N'Griffin', 0, CAST(N'1973-07-03 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 70000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Professional', N'Profesional', N'Cadre', N'0', 2, N'6612 Concord', NULL, N'377-555-0180', CAST(N'2003-09-26 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11961, 299, N'AW00011961', NULL, N'Anne', N'A', N'Alvarez', 0, CAST(N'1973-06-24 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 70000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Professional', N'Profesional', N'Cadre', N'1', 2, N'6318 Merriewood Dr.', NULL, N'297-555-0150', CAST(N'2003-08-15 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11962, 298, N'AW00011962', NULL, N'Alexandra', NULL, N'Roberts', 0, CAST(N'1976-11-28 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 60000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Professional', N'Profesional', N'Cadre', N'0', 2, N'9024 Grant Street', NULL, N'685-555-0149', CAST(N'2004-02-12 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11963, 2, N'AW00011963', NULL, N'Antonio', N'G', N'Patterson', 0, CAST(N'1955-06-13 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 80000.0000, 2, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 2, N'2355 Regina Lane', NULL, N'1 (11) 500 555-0197', CAST(N'2002-04-24 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11964, 22, N'AW00011964', N'Ms.', N'Sharon', NULL, N'Salavaria', 0, CAST(N'1956-02-17 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 70000.0000, 2, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 2, N'5652 East View Place', NULL, N'109-555-0100', CAST(N'2002-04-16 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11965, 8, N'AW00011965', NULL, N'Katie', N'B', N'She', 0, CAST(N'1956-10-19 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 70000.0000, 2, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'1174 Royal Ann Lane', NULL, N'1 (11) 500 555-0150', CAST(N'2003-08-14 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11966, 32, N'AW00011966', NULL, N'Rafael', NULL, N'Black', 0, CAST(N'1956-02-17 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 70000.0000, 2, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 2, N'1730 D Reliez Valley Ct.', NULL, N'1 (11) 500 555-0147', CAST(N'2004-05-04 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11967, 25, N'AW00011967', NULL, N'Latasha', NULL, N'Munoz', 0, CAST(N'1957-02-10 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 80000.0000, 2, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Professional', N'Profesional', N'Cadre', N'1', 2, N'4799 Buena Vista', NULL, N'1 (11) 500 555-0118', CAST(N'2002-04-25 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11968, 9, N'AW00011968', NULL, N'Kelsey', N'G', N'Becker', 0, CAST(N'1958-10-21 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 130000.0000, 0, 1, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Management', N'Gestión', N'Direction', N'0', 2, N'6577 La Canada', NULL, N'1 (11) 500 555-0135', CAST(N'2002-04-30 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11969, 30, N'AW00011969', NULL, N'Randy', N'S', N'Xu', 0, CAST(N'1958-07-25 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 130000.0000, 0, 1, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Management', N'Gestión', N'Direction', N'0', 2, N'2140 Clifford Court', NULL, N'1 (11) 500 555-0188', CAST(N'2002-04-21 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11970, 552, N'AW00011970', NULL, N'Bailey', NULL, N'Collins', 0, CAST(N'1973-11-16 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 80000.0000, 0, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Management', N'Gestión', N'Direction', N'0', 1, N'2578 Welle Road', N'# 118', N'968-555-0128', CAST(N'2003-11-26 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11971, 322, N'AW00011971', NULL, N'Amanda', N'P', N'Adams', 0, CAST(N'1973-09-03 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 80000.0000, 0, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Management', N'Gestión', N'Direction', N'0', 1, N'6730 Saddlehill Lane', NULL, N'592-555-0166', CAST(N'2003-10-17 00:00:00.000' AS DateTime), N'2-5 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11972, 614, N'AW00011972', NULL, N'Katherine', N'K', N'Williams', 0, CAST(N'1974-03-23 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 60000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Professional', N'Profesional', N'Cadre', N'0', 2, N'927 Live Oak Ave.', NULL, N'351-555-0197', CAST(N'2004-05-12 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11973, 635, N'AW00011973', NULL, N'Caroline', NULL, N'Barnes', 0, CAST(N'1974-02-03 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 60000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Professional', N'Profesional', N'Cadre', N'0', 2, N'112 RaceCt', NULL, N'820-555-0119', CAST(N'2003-08-31 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11974, 299, N'AW00011974', NULL, N'Randy', N'W', N'Sun', 0, CAST(N'1974-02-07 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 60000.0000, 0, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Professional', N'Profesional', N'Cadre', N'0', 2, N'8540 Ravenwood Dr.', NULL, N'156-555-0147', CAST(N'2004-05-02 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11975, 307, N'AW00011975', NULL, N'Destiny', N'B', N'Garcia', 0, CAST(N'1974-10-04 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 60000.0000, 0, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Professional', N'Profesional', N'Cadre', N'0', 2, N'1993 South Villa Way', NULL, N'928-555-0186', CAST(N'2004-01-18 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11976, 12, N'AW00011976', NULL, N'Audrey', NULL, N'Ramos', 0, CAST(N'1959-05-26 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 120000.0000, 1, 2, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Management', N'Gestión', N'Direction', N'0', 3, N'598 Merry Drive', NULL, N'1 (11) 500 555-0176', CAST(N'2002-04-27 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11977, 10, N'AW00011977', NULL, N'Bonnie', NULL, N'Jai', 0, CAST(N'1959-05-23 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 130000.0000, 0, 1, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Management', N'Gestión', N'Direction', N'1', 3, N'2544 Ashley Way', NULL, N'1 (11) 500 555-0185', CAST(N'2002-05-04 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11978, 322, N'AW00011978', NULL, N'Jackson', NULL, N'Washington', 0, CAST(N'1966-10-22 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 130000.0000, 0, 1, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Management', N'Gestión', N'Direction', N'1', 3, N'1374 Queens Road', NULL, N'644-555-0115', CAST(N'2003-08-07 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11979, 69, N'AW00011979', NULL, N'Christopher', NULL, N'Johnson', 0, CAST(N'1957-05-08 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 80000.0000, 2, 0, N'Partial High School', N'Educación secundaria (en curso)', N'Niveau bac', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 2, N'9234 Carmel Drive', NULL, N'130-555-0198', CAST(N'2003-08-18 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11980, 369, N'AW00011980', NULL, N'Kimberly', NULL, N'Richardson', 0, CAST(N'1957-12-18 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 60000.0000, 2, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Professional', N'Profesional', N'Cadre', N'0', 2, N'7629 Bonanza', NULL, N'116-555-0182', CAST(N'2004-03-26 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11981, 616, N'AW00011981', NULL, N'Alexandria', NULL, N'Howard', 0, CAST(N'1957-02-03 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 60000.0000, 2, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Professional', N'Profesional', N'Cadre', N'0', 2, N'341 Victory Lane', NULL, N'935-555-0120', CAST(N'2003-10-11 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11982, 359, N'AW00011982', NULL, N'Alexandra', NULL, N'Foster', 0, CAST(N'1957-04-04 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 60000.0000, 2, 0, N'High School', N'Educación secundaria', N'Bac + 2', N'Professional', N'Profesional', N'Cadre', N'1', 2, N'6754 Pampered Ct.', N'# 19', N'278-555-0183', CAST(N'2004-02-18 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11983, 298, N'AW00011983', NULL, N'Cheryl', NULL, N'Ortega', 0, CAST(N'1957-02-27 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 70000.0000, 3, 2, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Professional', N'Profesional', N'Cadre', N'1', 0, N'6501 West Way', NULL, N'354-555-0177', CAST(N'2002-05-11 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11984, 59, N'AW00011984', NULL, N'Alex', NULL, N'Campbell', 0, CAST(N'1957-06-06 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 80000.0000, 2, 1, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Management', N'Gestión', N'Direction', N'1', 0, N'4164 Kenneth Ct.', NULL, N'376-555-0156', CAST(N'2003-08-19 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11985, 536, N'AW00011985', NULL, N'Melanie', N'A', N'Hughes', 0, CAST(N'1957-11-18 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 80000.0000, 2, 1, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Management', N'Gestión', N'Direction', N'0', 1, N'2546 Crowe Place', NULL, N'909-555-0153', CAST(N'2003-08-31 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11986, 34, N'AW00011986', NULL, N'Max', N'M', N'Alvarez', 0, CAST(N'1963-07-24 00:00:00.000' AS DateTime), N'S', NULL, N'M', N'[email protected]', 70000.0000, 0, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'1', 1, N'4594 Rose Dr.', NULL, N'1 (11) 500 555-0124', CAST(N'2002-05-25 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11987, 38, N'AW00011987', NULL, N'Diane', N'D', N'Vazquez', 0, CAST(N'1967-11-27 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 90000.0000, 4, 4, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'1', 0, N'6772 Geraldine Dr.', NULL, N'1 (11) 500 555-0128', CAST(N'2003-12-19 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11988, 4, N'AW00011988', NULL, N'Kathryn', NULL, N'Chapman', 0, CAST(N'1962-08-20 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 70000.0000, 1, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 1, N'4095 Minert Rd.', NULL, N'1 (11) 500 555-0127', CAST(N'2002-05-13 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11989, 24, N'AW00011989', NULL, N'Kara', NULL, N'Anand', 0, CAST(N'1962-03-28 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 70000.0000, 1, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 1, N'1088 Ash Lane', NULL, N'1 (11) 500 555-0130', CAST(N'2002-05-06 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11990, 10, N'AW00011990', NULL, N'Joanna', N'J', N'Vazquez', 0, CAST(N'1962-07-15 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 70000.0000, 1, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 1, N'198 Edie Ct.', NULL, N'1 (11) 500 555-0182', CAST(N'2002-05-16 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11991, 9, N'AW00011991', NULL, N'Frederick', NULL, N'Martinez', 0, CAST(N'1962-08-10 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 60000.0000, 1, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'1', 1, N'3410 Hemlock Ave.', NULL, N'1 (11) 500 555-0142', CAST(N'2002-05-04 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11992, 20, N'AW00011992', NULL, N'Tonya', NULL, N'Chande', 0, CAST(N'1961-06-13 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 60000.0000, 1, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 1, N'4766 Palm Ave', NULL, N'1 (11) 500 555-0177', CAST(N'2002-05-20 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11993, 4, N'AW00011993', NULL, N'Rosa', N'I', N'Wang', 0, CAST(N'1961-03-19 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 60000.0000, 1, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'0', 1, N'9135 Rockford Dr.', NULL, N'1 (11) 500 555-0178', CAST(N'2002-05-16 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11994, 27, N'AW00011994', NULL, N'Leah', NULL, N'Hu', 0, CAST(N'1966-10-22 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 110000.0000, 0, 0, N'Graduate Degree', N'Estudios de postgrado', N'Bac + 3', N'Management', N'Gestión', N'Direction', N'0', 3, N'1374 Queens Road', NULL, N'1 (11) 500 555-0191', CAST(N'2002-05-28 00:00:00.000' AS DateTime), N'1-2 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11995, 39, N'AW00011995', NULL, N'Kelvin', N'A', N'Carson', 0, CAST(N'1960-06-14 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 60000.0000, 1, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 1, N'2599 Amaranth Way', NULL, N'1 (11) 500 555-0149', CAST(N'2002-05-11 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11996, 21, N'AW00011996', NULL, N'Veronica', NULL, N'Srini', 0, CAST(N'1960-08-02 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 60000.0000, 1, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 1, N'4681 Deerfield Dr.', NULL, N'1 (11) 500 555-0173', CAST(N'2002-05-07 00:00:00.000' AS DateTime), N'5-10 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11997, 2, N'AW00011997', NULL, N'Kristina', NULL, N'Kapoor', 0, CAST(N'1960-04-07 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 60000.0000, 1, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 1, N'6828 Willow Pass Road', NULL, N'1 (11) 500 555-0140', CAST(N'2002-05-08 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11998, 24, N'AW00011998', NULL, N'Donna', NULL, N'Sharma', 0, CAST(N'1960-08-10 00:00:00.000' AS DateTime), N'M', NULL, N'F', N'[email protected]', 60000.0000, 1, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 1, N'1641 Overhill Rd', NULL, N'1 (11) 500 555-0118', CAST(N'2002-05-19 00:00:00.000' AS DateTime), N'5-10 Miles')

GO

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (11999, 10, N'AW00011999', NULL, N'Johnny', NULL, N'Shan', 0, CAST(N'1960-06-05 00:00:00.000' AS DateTime), N'M', NULL, N'M', N'[email protected]', 60000.0000, 1, 0, N'Partial College', N'Estudios universitarios (en curso)', N'Baccalauréat', N'Skilled Manual', N'Obrero especializado', N'Technicien', N'1', 1, N'7177 Santa Rosa', NULL, N'1 (11) 500 555-0145', CAST(N'2002-05-13 00:00:00.000' AS DateTime), N'0-1 Miles')

INSERT [dbo].[CUSTOMERS_DATA] ([CustomerKey], [GeographyKey], [CustomerAlternateKey], [Title], [FirstName], [MiddleName], [LastName], [NameStyle], [BirthDate], [MaritalStatus], [Suffix], [Gender], [EmailAddress], [YearlyIncome], [TotalChildren], [NumberChildrenAtHome], [EnglishEducation], [SpanishEducation], [FrenchEducation], [EnglishOccupation], [SpanishOccupation], [FrenchOccupation], [HouseOwnerFlag], [NumberCarsOwned], [AddressLine1], [AddressLine2], [Phone], [DateFirstPurchase], [CommuteDistance]) VALUES (12000, 21, N'AW00012000', NULL, N'Ashley', NULL, N'Russell', 0, CAST(N'1965-03-12 00:00:00.000' AS DateTime), N'S', NULL, N'F', N'[email protected]', 70000.0000, 0, 0, N'Bachelors', N'Licenciatura', N'Bac + 4', N'Professional', N'Profesional', N'Cadre', N'0', 1, N'9088 Ironwood Way', NULL, N'1 (11) 500 555-0158', CAST(N'2002-05-19 00:00:00.000' AS DateTime), N'0-1 Miles')

SET IDENTITY_INSERT [dbo].[CUSTOMERS_DATA] OFF

GO

USE [PRODUCT DATABASE]

GO

CREATE TABLE [dbo].[SALES_DATA](

[ProductKey] [int] REFERENCES [PRODUCTS_DATA] ([ProductKey]),

[OrderDateKey] [int] NOT NULL REFERENCES [dbo].[TIME_DATA] ([TimeKey]),

[DueDateKey] [int] NOT NULL REFERENCES [dbo].[TIME_DATA] ([TimeKey]),

[ShipDateKey] [int] NOT NULL REFERENCES [dbo].[TIME_DATA] ([TimeKey]),

[CustomerKey] [int] NOT NULL REFERENCES [CUSTOMERS_DATA] ([CustomerKey]),

[PromotionKey] [int] NOT NULL,

[CurrencyKey] [int] NOT NULL,

[SalesTerritoryKey] [int] NOT NULL,

[SalesOrderNumber] [nvarchar](20) NOT NULL,

[SalesOrderLineNumber] [tinyint] NOT NULL,

[RevisionNumber] [tinyint] NULL,

[OrderQuantity] [smallint] NULL,

[UnitPrice] [money] NULL,

[ExtendedAmount] [money] NULL,

[UnitPriceDiscountPct] [float] NULL,

[DiscountAmount] [float] NULL,

[ProductStandardCost] [money] NULL,

[TotalProductCost] [money] NULL,

[SalesAmount] [money] NULL,

[TaxAmt] [money] NULL,

[Freight] [money] NULL,

[CarrierTrackingNumber] [nvarchar](25) NULL,

[CustomerPONumber] [nvarchar](25) NULL

)

GO

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (346, 1, 13, 8, 11003, 1, 6, 9, N'SO43701', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (351, 2, 14, 9, 11005, 1, 6, 9, N'SO43704', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (344, 2, 14, 9, 11011, 1, 6, 9, N'SO43705', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (350, 9, 21, 16, 11025, 1, 6, 9, N'SO43732', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (346, 9, 21, 16, 11238, 1, 98, 10, N'SO43729', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (346, 10, 22, 17, 11002, 1, 6, 9, N'SO43736', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (312, 11, 23, 18, 11606, 1, 39, 7, N'SO43738', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (347, 12, 24, 19, 11007, 1, 6, 9, N'SO43743', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (311, 14, 26, 21, 11591, 1, 39, 7, N'SO43750', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (313, 14, 26, 21, 11592, 1, 39, 7, N'SO43751', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (350, 15, 27, 22, 11017, 1, 6, 9, N'SO43757', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (346, 17, 29, 24, 11010, 1, 6, 9, N'SO43765', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (350, 18, 30, 25, 11001, 1, 6, 9, N'SO43767', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (347, 19, 31, 26, 11027, 1, 6, 9, N'SO43775', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (345, 20, 32, 27, 11018, 1, 6, 9, N'SO43778', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (311, 21, 33, 28, 11599, 1, 39, 7, N'SO43780', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (344, 22, 34, 29, 11000, 1, 6, 9, N'SO43793', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (347, 22, 34, 29, 11029, 1, 6, 9, N'SO43794', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (351, 22, 34, 29, 11239, 1, 98, 10, N'SO43788', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (311, 22, 34, 29, 11601, 1, 39, 7, N'SO43785', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (311, 22, 34, 29, 11607, 1, 39, 7, N'SO43786', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (312, 24, 36, 31, 11593, 1, 39, 7, N'SO43802', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (345, 26, 38, 33, 11004, 1, 6, 9, N'SO43810', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (346, 26, 38, 33, 11026, 1, 6, 9, N'SO43811', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (312, 26, 38, 33, 11611, 1, 39, 7, N'SO43807', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (346, 27, 39, 34, 11006, 1, 6, 9, N'SO43819', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (348, 28, 40, 35, 11008, 1, 6, 9, N'SO43826', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (349, 29, 41, 36, 11028, 1, 6, 9, N'SO43831', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (350, 30, 42, 37, 11009, 1, 6, 9, N'SO43837', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (351, 34, 46, 41, 11055, 1, 6, 9, N'SO43926', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (347, 35, 47, 42, 11031, 1, 6, 9, N'SO43933', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (346, 35, 47, 42, 11034, 1, 6, 9, N'SO43934', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (345, 37, 49, 44, 11047, 1, 6, 9, N'SO43948', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (344, 37, 49, 44, 11054, 1, 6, 9, N'SO43944', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (344, 39, 51, 46, 11030, 1, 6, 9, N'SO43956', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (348, 40, 52, 47, 11035, 1, 6, 9, N'SO43959', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (349, 40, 52, 47, 11046, 1, 6, 9, N'SO43960', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (351, 41, 53, 48, 11038, 1, 6, 9, N'SO43965', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (347, 41, 53, 48, 11039, 1, 6, 9, N'SO43966', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (351, 44, 56, 51, 11048, 1, 6, 9, N'SO43980', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (344, 46, 58, 53, 11244, 1, 98, 10, N'SO43988', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (348, 49, 61, 56, 11033, 1, 6, 9, N'SO43998', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (349, 51, 63, 58, 11052, 1, 6, 9, N'SO44012', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (348, 52, 64, 59, 11032, 1, 6, 9, N'SO44021', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (350, 52, 64, 59, 11247, 1, 98, 10, N'SO44016', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (350, 54, 66, 61, 11050, 1, 6, 9, N'SO44029', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (344, 55, 67, 62, 11243, 1, 98, 10, N'SO44032', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (351, 56, 68, 63, 11057, 1, 6, 9, N'SO44040', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (350, 60, 72, 67, 11056, 1, 6, 9, N'SO44058', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (344, 61, 73, 68, 11240, 1, 98, 10, N'SO44063', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (351, 62, 74, 69, 11044, 1, 6, 9, N'SO44073', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (346, 66, 78, 73, 11334, 1, 98, 10, N'SO44152', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (347, 71, 83, 78, 11058, 1, 6, 9, N'SO44180', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (350, 71, 83, 78, 11337, 1, 98, 10, N'SO44177', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (348, 75, 87, 82, 11061, 1, 6, 9, N'SO44190', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (347, 79, 91, 86, 11250, 1, 98, 10, N'SO44206', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (345, 81, 93, 88, 11060, 1, 6, 9, N'SO44220', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (344, 83, 95, 90, 11333, 1, 98, 10, N'SO44228', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (344, 93, 105, 100, 11072, 1, 6, 9, N'SO44323', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (351, 94, 106, 101, 11095, 1, 6, 9, N'SO44325', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (351, 97, 109, 104, 11097, 1, 6, 9, N'SO44337', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (345, 97, 109, 104, 11343, 1, 98, 10, N'SO44333', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (347, 100, 112, 107, 11093, 1, 6, 9, N'SO44355', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (345, 100, 112, 107, 11099, 1, 6, 9, N'SO44356', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (348, 101, 113, 108, 11092, 1, 6, 9, N'SO44364', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (351, 103, 115, 110, 11080, 1, 6, 9, N'SO44379', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (351, 104, 116, 111, 11096, 1, 6, 9, N'SO44387', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (347, 104, 116, 111, 11341, 1, 98, 10, N'SO44382', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (351, 108, 120, 115, 11077, 1, 6, 9, N'SO44407', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (351, 108, 120, 115, 11103, 1, 6, 9, N'SO44408', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (349, 109, 121, 116, 11100, 1, 6, 9, N'SO44412', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (345, 110, 122, 117, 11069, 1, 6, 9, N'SO44416', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (344, 114, 126, 121, 11076, 1, 6, 9, N'SO44437', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (346, 121, 133, 128, 11070, 1, 6, 9, N'SO44467', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (351, 121, 133, 128, 11075, 1, 6, 9, N'SO44468', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (345, 122, 134, 129, 11101, 1, 6, 9, N'SO44475', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (349, 124, 136, 131, 11107, 1, 6, 9, N'SO44574', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (344, 124, 136, 131, 11110, 1, 6, 9, N'SO44575', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (348, 126, 138, 133, 11108, 1, 6, 9, N'SO44581', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (346, 126, 138, 133, 11134, 1, 6, 9, N'SO44582', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (346, 127, 139, 134, 11104, 1, 6, 9, N'SO44589', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (345, 128, 140, 135, 11124, 1, 6, 9, N'SO44595', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (345, 129, 141, 136, 11117, 1, 6, 9, N'SO44601', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (349, 133, 145, 140, 11109, 1, 6, 9, N'SO44627', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (348, 133, 145, 140, 11356, 1, 6, 9, N'SO44628', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (351, 136, 148, 143, 11147, 1, 6, 9, N'SO44650', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (344, 136, 148, 143, 11344, 1, 98, 10, N'SO44645', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (346, 137, 149, 144, 11105, 1, 6, 9, N'SO44655', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (350, 137, 149, 144, 11120, 1, 6, 9, N'SO44657', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (349, 138, 150, 145, 11151, 1, 6, 9, N'SO44662', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (346, 141, 153, 148, 11106, 1, 6, 9, N'SO44679', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (344, 143, 155, 150, 11111, 1, 6, 9, N'SO44690', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (348, 148, 160, 155, 11112, 1, 6, 9, N'SO44712', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (344, 151, 163, 158, 11126, 1, 6, 9, N'SO44728', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (350, 154, 166, 161, 11365, 1, 6, 9, N'SO44807', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (351, 155, 167, 162, 11444, 1, 6, 9, N'SO44815', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (346, 160, 172, 167, 11445, 1, 6, 9, N'SO44847', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (348, 161, 173, 168, 11364, 1, 6, 9, N'SO44864', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (351, 161, 173, 168, 11372, 1, 6, 9, N'SO44865', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (350, 161, 173, 168, 11443, 1, 6, 9, N'SO44866', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

GO

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (345, 162, 174, 169, 11363, 1, 6, 9, N'SO44871', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (348, 166, 178, 173, 11351, 1, 98, 10, N'SO44889', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (351, 166, 178, 173, 11353, 1, 98, 10, N'SO44899', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (346, 166, 178, 173, 11381, 1, 98, 10, N'SO44890', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (350, 167, 179, 174, 11359, 1, 6, 9, N'SO44904', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (348, 170, 182, 177, 11448, 1, 6, 9, N'SO44927', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (349, 172, 184, 179, 11357, 1, 6, 9, N'SO44946', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (346, 172, 184, 179, 11446, 1, 6, 9, N'SO44947', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (351, 173, 185, 180, 11449, 1, 6, 9, N'SO44956', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (350, 178, 190, 185, 11368, 1, 6, 9, N'SO44993', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (346, 181, 193, 188, 11360, 1, 6, 9, N'SO45015', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (348, 182, 194, 189, 11358, 1, 6, 9, N'SO45021', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (350, 182, 194, 189, 11447, 1, 6, 9, N'SO45022', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (348, 183, 195, 190, 11450, 1, 6, 9, N'SO45030', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (350, 185, 197, 192, 11455, 1, 6, 9, N'SO45082', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (350, 187, 199, 194, 11388, 1, 98, 10, N'SO45087', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (345, 187, 199, 194, 11398, 1, 98, 10, N'SO45088', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (344, 188, 200, 195, 11394, 1, 98, 10, N'SO45095', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (344, 192, 204, 199, 11751, 1, 6, 9, N'SO45120', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (350, 194, 206, 201, 11759, 1, 6, 9, N'SO45129', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (349, 195, 207, 202, 11452, 1, 6, 9, N'SO45138', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (344, 198, 210, 205, 11465, 1, 6, 9, N'SO45156', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (344, 198, 210, 205, 11750, 1, 6, 9, N'SO45157', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (349, 199, 211, 206, 11400, 1, 98, 10, N'SO45159', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (349, 199, 211, 206, 11453, 1, 6, 9, N'SO45164', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (351, 200, 212, 207, 11462, 1, 6, 9, N'SO45170', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (345, 200, 212, 207, 11754, 1, 6, 9, N'SO45171', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (347, 201, 213, 208, 11456, 1, 6, 9, N'SO45178', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (351, 201, 213, 208, 11457, 1, 6, 9, N'SO45179', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (345, 205, 217, 212, 11460, 1, 6, 9, N'SO45204', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (349, 206, 218, 213, 11464, 1, 6, 9, N'SO45213', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (349, 210, 222, 217, 11387, 1, 98, 10, N'SO45229', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (344, 210, 222, 217, 11472, 1, 6, 9, N'SO45233', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (346, 211, 223, 218, 11459, 1, 6, 9, N'SO45238', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (350, 212, 224, 219, 11756, 1, 6, 9, N'SO45244', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (344, 213, 225, 220, 11451, 1, 6, 9, N'SO45248', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (349, 215, 227, 222, 11454, 1, 6, 9, N'SO45264', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (350, 215, 227, 222, 11461, 1, 6, 9, N'SO45265', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (313, 218, 230, 225, 11227, 1, 100, 4, N'SO45359', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (344, 220, 232, 227, 11761, 1, 6, 9, N'SO45376', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (313, 221, 233, 228, 11129, 1, 100, 1, N'SO45382', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (310, 222, 234, 229, 11090, 1, 100, 4, N'SO45389', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (310, 222, 234, 229, 11224, 1, 100, 1, N'SO45387', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (344, 222, 234, 229, 11762, 1, 6, 9, N'SO45392', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (348, 223, 235, 230, 11468, 1, 98, 10, N'SO45394', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (310, 225, 237, 232, 11217, 1, 100, 1, N'SO45404', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (344, 225, 237, 232, 11413, 1, 98, 10, N'SO45402', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (312, 226, 238, 233, 11191, 1, 100, 4, N'SO45413', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (346, 228, 240, 235, 11414, 1, 98, 10, N'SO45428', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (311, 229, 241, 236, 11252, 1, 100, 4, N'SO45434', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (312, 230, 242, 237, 11216, 1, 100, 1, N'SO45441', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (312, 235, 247, 242, 11171, 1, 100, 4, N'SO45463', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (345, 237, 249, 244, 11422, 1, 98, 10, N'SO45467', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (312, 239, 251, 246, 11257, 1, 100, 4, N'SO45485', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (312, 241, 253, 248, 11189, 1, 100, 1, N'SO45500', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (312, 243, 255, 250, 11175, 1, 100, 4, N'SO45512', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (313, 244, 256, 251, 11263, 1, 100, 1, N'SO45581', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (311, 244, 256, 251, 11274, 1, 100, 1, N'SO45583', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (351, 244, 256, 251, 11905, 1, 6, 9, N'SO45585', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (313, 245, 257, 252, 11275, 1, 100, 4, N'SO45588', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (310, 245, 257, 252, 11531, 1, 100, 4, N'SO45587', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (345, 245, 257, 252, 11897, 1, 6, 9, N'SO45592', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (312, 246, 258, 253, 11282, 1, 100, 1, N'SO45594', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (314, 246, 258, 253, 11515, 1, 100, 4, N'SO45595', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (348, 246, 258, 253, 11893, 1, 6, 9, N'SO45601', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (312, 247, 259, 254, 11296, 1, 100, 1, N'SO45603', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (314, 247, 259, 254, 11317, 1, 100, 1, N'SO45604', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (311, 247, 259, 254, 11626, 1, 100, 4, N'SO45605', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (349, 247, 259, 254, 11896, 1, 6, 9, N'SO45608', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (310, 248, 260, 255, 11303, 1, 100, 1, N'SO45610', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (310, 248, 260, 255, 11535, 1, 100, 1, N'SO45611', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (314, 249, 261, 256, 11522, 1, 100, 1, N'SO45613', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (346, 249, 261, 256, 11768, 1, 6, 9, N'SO45621', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (310, 250, 262, 257, 11259, 1, 100, 1, N'SO45626', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (313, 250, 262, 257, 11291, 1, 100, 4, N'SO45624', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (314, 250, 262, 257, 11307, 1, 100, 4, N'SO45625', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (347, 250, 262, 257, 11892, 1, 6, 9, N'SO45629', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (351, 250, 262, 257, 11899, 1, 6, 9, N'SO45630', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (350, 251, 263, 258, 11237, 1, 100, 8, N'SO45631', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (311, 252, 264, 259, 11302, 1, 100, 1, N'SO45636', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (314, 252, 264, 259, 11525, 1, 100, 1, N'SO45637', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (313, 253, 265, 260, 11623, 1, 100, 4, N'SO45642', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (312, 254, 266, 261, 11289, 1, 100, 4, N'SO45646', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (351, 254, 266, 261, 11482, 1, 98, 10, N'SO45645', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (310, 255, 267, 262, 11319, 1, 100, 4, N'SO45649', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (347, 255, 267, 262, 11764, 1, 6, 9, N'SO45653', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (311, 256, 268, 263, 11266, 1, 100, 1, N'SO45657', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (312, 256, 268, 263, 11270, 1, 100, 4, N'SO45658', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (312, 256, 268, 263, 11323, 1, 100, 4, N'SO45655', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (313, 256, 268, 263, 11617, 1, 100, 4, N'SO45656', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (347, 256, 268, 263, 11901, 1, 6, 9, N'SO45663', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (350, 256, 268, 263, 11906, 1, 6, 9, N'SO45662', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (312, 258, 270, 265, 11298, 1, 100, 4, N'SO45668', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (314, 258, 270, 265, 11528, 1, 100, 4, N'SO45669', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (310, 258, 270, 265, 11541, 1, 100, 1, N'SO45670', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (312, 258, 270, 265, 11628, 1, 100, 4, N'SO45671', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (349, 258, 270, 265, 11765, 1, 6, 9, N'SO45676', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (348, 258, 270, 265, 11895, 1, 6, 9, N'SO45677', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (313, 259, 271, 266, 11281, 1, 100, 4, N'SO45678', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (314, 259, 271, 266, 11540, 1, 100, 4, N'SO45679', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

GO

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (345, 260, 272, 267, 11485, 1, 98, 10, N'SO45684', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (344, 260, 272, 267, 11898, 1, 6, 9, N'SO45691', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (311, 261, 273, 268, 11292, 1, 100, 4, N'SO45695', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (314, 261, 273, 268, 11326, 1, 100, 4, N'SO45696', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (314, 261, 273, 268, 11516, 1, 100, 4, N'SO45697', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (310, 262, 274, 269, 11278, 1, 100, 1, N'SO45700', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (311, 262, 274, 269, 11538, 1, 100, 4, N'SO45701', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (313, 263, 275, 270, 11267, 1, 100, 4, N'SO45706', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (346, 263, 275, 270, 11767, 1, 6, 9, N'SO45712', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (345, 263, 275, 270, 11904, 1, 6, 9, N'SO45707', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (312, 264, 276, 271, 11534, 1, 100, 4, N'SO45714', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (311, 265, 277, 272, 11272, 1, 100, 4, N'SO45718', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (310, 265, 277, 272, 11325, 1, 100, 1, N'SO45717', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (345, 265, 277, 272, 11766, 1, 6, 9, N'SO45721', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (351, 265, 277, 272, 11908, 1, 6, 9, N'SO45722', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (311, 266, 278, 273, 11290, 1, 100, 4, N'SO45723', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (350, 266, 278, 273, 11909, 1, 6, 9, N'SO45727', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (310, 267, 279, 274, 11286, 1, 100, 4, N'SO45731', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (311, 267, 279, 274, 11537, 1, 100, 4, N'SO45732', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (311, 267, 279, 274, 11624, 1, 100, 4, N'SO45733', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (314, 267, 279, 274, 11630, 1, 100, 1, N'SO45734', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (346, 267, 279, 274, 11900, 1, 6, 9, N'SO45738', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (348, 267, 279, 274, 11903, 1, 6, 9, N'SO45739', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (351, 268, 280, 275, 11894, 1, 6, 9, N'SO45744', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (314, 269, 281, 276, 11539, 1, 100, 4, N'SO45747', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (311, 270, 282, 277, 11529, 1, 100, 1, N'SO45754', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (314, 270, 282, 277, 11536, 1, 100, 4, N'SO45755', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (313, 270, 282, 277, 11625, 1, 100, 4, N'SO45756', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (313, 271, 283, 278, 11295, 1, 100, 4, N'SO45759', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (311, 271, 283, 278, 11329, 1, 100, 4, N'SO45760', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (314, 271, 283, 278, 11629, 1, 100, 4, N'SO45761', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (350, 272, 284, 279, 11245, 1, 100, 8, N'SO45765', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (312, 272, 284, 279, 11297, 1, 100, 4, N'SO45766', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (310, 272, 284, 279, 11299, 1, 100, 4, N'SO45767', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (310, 272, 284, 279, 11324, 1, 100, 4, N'SO45768', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (314, 272, 284, 279, 11327, 1, 100, 4, N'SO45769', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (312, 273, 285, 280, 11261, 1, 100, 4, N'SO45774', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (314, 273, 285, 280, 11271, 1, 100, 4, N'SO45771', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (346, 274, 286, 281, 11907, 1, 6, 9, N'SO45777', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (313, 275, 287, 282, 11830, 1, 100, 4, N'SO45816', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (312, 277, 289, 284, 11696, 1, 100, 1, N'SO45824', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (351, 277, 289, 284, 11916, 1, 6, 9, N'SO45832', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (313, 278, 290, 285, 11688, 1, 100, 1, N'SO45835', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (313, 278, 290, 285, 11815, 1, 100, 1, N'SO45833', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (312, 278, 290, 285, 11816, 1, 100, 4, N'SO45834', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (349, 278, 290, 285, 11915, 1, 6, 9, N'SO45839', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (349, 279, 291, 286, 11246, 1, 100, 8, N'SO45840', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (314, 279, 291, 286, 11742, 1, 100, 4, N'SO45842', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (312, 279, 291, 286, 11775, 1, 100, 4, N'SO45843', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (312, 279, 291, 286, 11812, 1, 100, 1, N'SO45844', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (312, 281, 293, 288, 11683, 1, 100, 4, N'SO45851', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (310, 281, 293, 288, 11776, 1, 100, 4, N'SO45850', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (351, 281, 293, 288, 11919, 1, 6, 9, N'SO45857', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (350, 281, 293, 288, 11952, 1, 6, 9, N'SO45858', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (314, 283, 295, 290, 11873, 1, 100, 4, N'SO45863', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (312, 284, 296, 291, 11772, 1, 100, 1, N'SO45867', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (347, 285, 297, 292, 11249, 1, 100, 8, N'SO45872', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (351, 285, 297, 292, 11910, 1, 6, 9, N'SO45877', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (314, 285, 297, 292, 11925, 1, 100, 1, N'SO45873', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (313, 286, 298, 293, 11678, 1, 100, 1, N'SO45884', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (313, 286, 298, 293, 11707, 1, 100, 4, N'SO45880', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (312, 286, 298, 293, 11745, 1, 100, 1, N'SO45882', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (313, 286, 298, 293, 11799, 1, 100, 1, N'SO45883', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (350, 286, 298, 293, 11920, 1, 6, 9, N'SO45889', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (349, 287, 299, 294, 11338, 1, 100, 8, N'SO45890', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (346, 287, 299, 294, 11380, 1, 100, 8, N'SO45891', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (311, 288, 300, 295, 11727, 1, 100, 4, N'SO45895', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (312, 289, 301, 296, 11665, 1, 100, 4, N'SO45901', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (310, 289, 301, 296, 11817, 1, 100, 4, N'SO45899', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (312, 289, 301, 296, 11837, 1, 100, 4, N'SO45900', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (347, 289, 301, 296, 11918, 1, 6, 9, N'SO45908', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (313, 289, 301, 296, 11933, 1, 100, 1, N'SO45897', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (349, 289, 301, 296, 11947, 1, 6, 9, N'SO45909', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (311, 290, 302, 297, 11777, 1, 100, 4, N'SO45910', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (314, 290, 302, 297, 11797, 1, 100, 4, N'SO45911', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (349, 290, 302, 297, 11929, 1, 6, 9, N'SO45914', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (347, 290, 302, 297, 11930, 1, 6, 9, N'SO45915', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (346, 290, 302, 297, 11964, 1, 6, 9, N'SO45916', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (346, 291, 303, 298, 11332, 1, 100, 8, N'SO45917', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (313, 291, 303, 298, 11741, 1, 100, 4, N'SO45918', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (312, 291, 303, 298, 11780, 1, 100, 1, N'SO45919', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (312, 291, 303, 298, 11798, 1, 100, 1, N'SO45921', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (313, 291, 303, 298, 11811, 1, 100, 4, N'SO45923', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (347, 291, 303, 298, 11942, 1, 6, 9, N'SO45925', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (312, 292, 304, 299, 11796, 1, 100, 4, N'SO45927', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (313, 292, 304, 299, 11813, 1, 100, 1, N'SO45928', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (310, 292, 304, 299, 11825, 1, 100, 4, N'SO45929', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (313, 293, 305, 300, 11666, 1, 100, 4, N'SO45934', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (313, 293, 305, 300, 11779, 1, 100, 1, N'SO45933', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (311, 294, 306, 301, 11654, 1, 100, 4, N'SO45938', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (350, 294, 306, 301, 11914, 1, 6, 9, N'SO45946', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (351, 294, 306, 301, 11943, 1, 6, 9, N'SO45947', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (348, 295, 307, 302, 11944, 1, 6, 9, N'SO45951', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (347, 295, 307, 302, 11969, 1, 6, 9, N'SO45952', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (314, 296, 308, 303, 11810, 1, 100, 1, N'SO45954', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (314, 297, 309, 304, 11671, 1, 100, 4, N'SO45960', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (312, 297, 309, 304, 11809, 1, 100, 4, N'SO45957', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (311, 297, 309, 304, 11818, 1, 100, 4, N'SO45958', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (311, 297, 309, 304, 11872, 1, 100, 4, N'SO45959', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (345, 297, 309, 304, 11946, 1, 6, 9, N'SO45966', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

GO

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (311, 298, 310, 305, 11834, 1, 100, 4, N'SO45968', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (348, 298, 310, 305, 11963, 1, 6, 9, N'SO45970', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (345, 299, 311, 306, 11335, 1, 100, 8, N'SO45971', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (313, 299, 311, 306, 11773, 1, 100, 4, N'SO45973', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (350, 299, 311, 306, 11967, 1, 6, 9, N'SO45978', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (314, 301, 313, 308, 11675, 1, 100, 1, N'SO45988', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (313, 301, 313, 308, 11690, 1, 100, 1, N'SO45984', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (314, 301, 313, 308, 11708, 1, 100, 4, N'SO45985', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (314, 301, 313, 308, 11743, 1, 100, 4, N'SO45986', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (310, 301, 313, 308, 11854, 1, 100, 4, N'SO45987', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (351, 301, 313, 308, 11976, 1, 6, 9, N'SO45991', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (311, 302, 314, 309, 11774, 1, 100, 4, N'SO45994', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (312, 302, 314, 309, 11839, 1, 100, 4, N'SO45996', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (313, 302, 314, 309, 11924, 1, 100, 4, N'SO45993', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (311, 303, 315, 310, 11664, 1, 100, 4, N'SO46004', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (310, 303, 315, 310, 11778, 1, 100, 1, N'SO46000', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (310, 303, 315, 310, 11826, 1, 100, 4, N'SO46002', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (312, 303, 315, 310, 11831, 1, 100, 4, N'SO46003', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (348, 303, 315, 310, 11912, 1, 6, 9, N'SO46008', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (344, 303, 315, 310, 11917, 1, 6, 9, N'SO46009', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (348, 304, 316, 311, 11488, 1, 98, 10, N'SO46010', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (351, 304, 316, 311, 11489, 1, 98, 10, N'SO46011', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (312, 304, 316, 311, 11663, 1, 100, 1, N'SO46018', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (311, 304, 316, 311, 11705, 1, 100, 4, N'SO46013', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (312, 304, 316, 311, 11885, 1, 100, 4, N'SO46016', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (314, 304, 316, 311, 11886, 1, 100, 4, N'SO46017', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (346, 304, 316, 311, 11968, 1, 6, 9, N'SO46022', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (311, 305, 317, 312, 11937, 1, 100, 1, N'SO46111', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (312, 305, 317, 312, 11945, 1, 100, 4, N'SO46112', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (310, 305, 317, 312, 11955, 1, 100, 4, N'SO46113', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (310, 307, 319, 314, 11956, 1, 100, 4, N'SO46125', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (312, 308, 320, 315, 11954, 1, 100, 4, N'SO46131', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (347, 308, 320, 315, 11977, 1, 6, 9, N'SO46139', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (350, 308, 320, 315, 11991, 1, 6, 9, N'SO46140', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (345, 310, 322, 317, 11421, 1, 100, 8, N'SO46146', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (349, 310, 322, 317, 11989, 1, 6, 9, N'SO46154', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (351, 311, 323, 318, 11996, 1, 6, 9, N'SO46159', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (351, 312, 324, 319, 11412, 1, 100, 8, N'SO46160', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (347, 312, 324, 319, 11997, 1, 6, 9, N'SO46167', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (349, 314, 326, 321, 11491, 1, 98, 10, N'SO46176', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (313, 315, 327, 322, 11983, 1, 100, 4, N'SO46179', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (346, 315, 327, 322, 11995, 1, 6, 9, N'SO46182', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (313, 317, 329, 324, 11939, 1, 100, 4, N'SO46194', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (348, 317, 329, 324, 11988, 1, 6, 9, N'SO46204', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (346, 317, 329, 324, 11999, 1, 6, 9, N'SO46203', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (351, 320, 332, 327, 11990, 1, 6, 9, N'SO46227', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (349, 320, 332, 327, 11993, 1, 6, 9, N'SO46228', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (344, 321, 333, 328, 11395, 1, 100, 8, N'SO46229', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (344, 321, 333, 328, 11493, 1, 98, 10, N'SO46230', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (350, 323, 335, 330, 11998, 1, 6, 9, N'SO46251', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (347, 323, 335, 330, 12000, 1, 6, 9, N'SO46249', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (346, 324, 336, 331, 11992, 1, 6, 9, N'SO46257', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (312, 326, 338, 333, 11934, 1, 100, 1, N'SO46265', 1, 1, 1, 3578.2700, 3578.2700, 0, 0, 2171.2942, 2171.2942, 3578.2700, 286.2616, 89.4568, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (345, 329, 341, 336, 11986, 1, 6, 9, N'SO46294', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (350, 332, 344, 339, 11994, 1, 6, 9, N'SO46309', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (346, 337, 349, 344, 11496, 1, 98, 10, N'SO46395', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (348, 339, 351, 346, 11548, 1, 98, 10, N'SO46410', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (345, 342, 354, 349, 11428, 1, 100, 8, N'SO46429', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (348, 347, 359, 354, 11423, 1, 100, 8, N'SO46463', 1, 1, 1, 3374.9900, 3374.9900, 0, 0, 1898.0944, 1898.0944, 3374.9900, 269.9992, 84.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (344, 357, 369, 364, 11427, 1, 100, 8, N'SO46537', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (347, 358, 370, 365, 11431, 1, 100, 8, N'SO46542', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (345, 358, 370, 365, 11549, 1, 98, 10, N'SO46543', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (347, 360, 372, 367, 11494, 1, 98, 10, N'SO46564', 1, 1, 1, 3399.9900, 3399.9900, 0, 0, 1912.1544, 1912.1544, 3399.9900, 271.9992, 84.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (356, 370, 382, 377, 11484, 1, 100, 8, N'SO46710', 1, 1, 1, 2071.4196, 2071.4196, 0, 0, 1117.8559, 1117.8559, 2071.4196, 165.7136, 51.7855, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (362, 371, 383, 378, 11604, 2, 98, 10, N'SO46719', 1, 1, 1, 2049.0982, 2049.0982, 0, 0, 1105.8100, 1105.8100, 2049.0982, 163.9279, 51.2275, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (356, 378, 390, 385, 11568, 1, 98, 10, N'SO46777', 1, 1, 1, 2071.4196, 2071.4196, 0, 0, 1117.8559, 1117.8559, 2071.4196, 165.7136, 51.7855, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (352, 378, 390, 385, 11610, 1, 98, 10, N'SO46778', 1, 1, 1, 2071.4196, 2071.4196, 0, 0, 1117.8559, 1117.8559, 2071.4196, 165.7136, 51.7855, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (358, 386, 398, 393, 11603, 1, 98, 10, N'SO46845', 1, 1, 1, 2049.0982, 2049.0982, 0, 0, 1105.8100, 1105.8100, 2049.0982, 163.9279, 51.2275, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (362, 388, 400, 395, 11550, 2, 98, 10, N'SO46862', 1, 1, 1, 2049.0982, 2049.0982, 0, 0, 1105.8100, 1105.8100, 2049.0982, 163.9279, 51.2275, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (362, 388, 400, 395, 11575, 2, 98, 10, N'SO46863', 1, 1, 1, 2049.0982, 2049.0982, 0, 0, 1105.8100, 1105.8100, 2049.0982, 163.9279, 51.2275, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (362, 390, 402, 397, 11470, 2, 100, 8, N'SO46875', 1, 1, 1, 2049.0982, 2049.0982, 0, 0, 1105.8100, 1105.8100, 2049.0982, 163.9279, 51.2275, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (362, 395, 407, 402, 11481, 2, 100, 8, N'SO46919', 1, 1, 1, 2049.0982, 2049.0982, 0, 0, 1105.8100, 1105.8100, 2049.0982, 163.9279, 51.2275, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (362, 396, 408, 403, 11609, 2, 98, 10, N'SO46920', 1, 1, 1, 2049.0982, 2049.0982, 0, 0, 1105.8100, 1105.8100, 2049.0982, 163.9279, 51.2275, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (360, 401, 413, 408, 11612, 1, 98, 10, N'SO47100', 1, 1, 1, 2049.0982, 2049.0982, 0, 0, 1105.8100, 1105.8100, 2049.0982, 163.9279, 51.2275, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (352, 402, 414, 409, 11616, 1, 98, 10, N'SO47107', 1, 1, 1, 2071.4196, 2071.4196, 0, 0, 1117.8559, 1117.8559, 2071.4196, 165.7136, 51.7855, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (358, 410, 422, 417, 11492, 1, 100, 8, N'SO47176', 1, 1, 1, 2049.0982, 2049.0982, 0, 0, 1105.8100, 1105.8100, 2049.0982, 163.9279, 51.2275, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (362, 415, 427, 422, 11564, 2, 100, 8, N'SO47231', 1, 1, 1, 2049.0982, 2049.0982, 0, 0, 1105.8100, 1105.8100, 2049.0982, 163.9279, 51.2275, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (358, 418, 430, 425, 11561, 1, 100, 8, N'SO47255', 1, 1, 1, 2049.0982, 2049.0982, 0, 0, 1105.8100, 1105.8100, 2049.0982, 163.9279, 51.2275, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (352, 421, 433, 428, 11615, 1, 98, 10, N'SO47280', 1, 1, 1, 2071.4196, 2071.4196, 0, 0, 1117.8559, 1117.8559, 2071.4196, 165.7136, 51.7855, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (360, 436, 448, 443, 11605, 1, 100, 8, N'SO47504', 1, 1, 1, 2049.0982, 2049.0982, 0, 0, 1105.8100, 1105.8100, 2049.0982, 163.9279, 51.2275, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (352, 439, 451, 446, 11598, 1, 100, 8, N'SO47528', 1, 1, 1, 2071.4196, 2071.4196, 0, 0, 1117.8559, 1117.8559, 2071.4196, 165.7136, 51.7855, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (356, 453, 465, 460, 11570, 1, 100, 8, N'SO47634', 1, 1, 1, 2071.4196, 2071.4196, 0, 0, 1117.8559, 1117.8559, 2071.4196, 165.7136, 51.7855, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (362, 499, 511, 506, 11614, 2, 100, 8, N'SO48148', 1, 1, 1, 2049.0982, 2049.0982, 0, 0, 1105.8100, 1105.8100, 2049.0982, 163.9279, 51.2275, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (354, 502, 514, 509, 11613, 1, 100, 8, N'SO48170', 1, 1, 1, 2071.4196, 2071.4196, 0, 0, 1117.8559, 1117.8559, 2071.4196, 165.7136, 51.7855, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (360, 622, 634, 629, 11241, 1, 100, 7, N'SO49675', 1, 1, 1, 2049.0982, 2049.0982, 0, 0, 1105.8100, 1105.8100, 2049.0982, 163.9279, 51.2275, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (360, 631, 643, 638, 11242, 1, 100, 7, N'SO49752', 1, 1, 1, 2049.0982, 2049.0982, 0, 0, 1105.8100, 1105.8100, 2049.0982, 163.9279, 51.2275, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (356, 639, 651, 646, 11336, 1, 100, 7, N'SO49814', 1, 1, 1, 2071.4196, 2071.4196, 0, 0, 1117.8559, 1117.8559, 2071.4196, 165.7136, 51.7855, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (360, 643, 655, 650, 11346, 1, 100, 7, N'SO49929', 1, 1, 1, 2049.0982, 2049.0982, 0, 0, 1105.8100, 1105.8100, 2049.0982, 163.9279, 51.2275, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (360, 644, 656, 651, 11379, 1, 100, 7, N'SO49939', 1, 1, 1, 2049.0982, 2049.0982, 0, 0, 1105.8100, 1105.8100, 2049.0982, 163.9279, 51.2275, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (360, 649, 661, 656, 11339, 1, 100, 7, N'SO49985', 1, 1, 1, 2049.0982, 2049.0982, 0, 0, 1105.8100, 1105.8100, 2049.0982, 163.9279, 51.2275, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (354, 659, 671, 666, 11378, 1, 100, 7, N'SO50092', 1, 1, 1, 2071.4196, 2071.4196, 0, 0, 1117.8559, 1117.8559, 2071.4196, 165.7136, 51.7855, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (362, 664, 676, 671, 11345, 2, 100, 7, N'SO50133', 1, 1, 1, 2049.0982, 2049.0982, 0, 0, 1105.8100, 1105.8100, 2049.0982, 163.9279, 51.2275, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (360, 669, 681, 676, 11340, 1, 100, 7, N'SO50184', 1, 1, 1, 2049.0982, 2049.0982, 0, 0, 1105.8100, 1105.8100, 2049.0982, 163.9279, 51.2275, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (356, 670, 682, 677, 11401, 1, 100, 7, N'SO50328', 1, 1, 1, 2071.4196, 2071.4196, 0, 0, 1117.8559, 1117.8559, 2071.4196, 165.7136, 51.7855, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (354, 670, 682, 677, 11403, 1, 100, 7, N'SO50329', 1, 1, 1, 2071.4196, 2071.4196, 0, 0, 1117.8559, 1117.8559, 2071.4196, 165.7136, 51.7855, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (356, 674, 686, 681, 11420, 1, 100, 7, N'SO50380', 1, 1, 1, 2071.4196, 2071.4196, 0, 0, 1117.8559, 1117.8559, 2071.4196, 165.7136, 51.7855, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (358, 676, 688, 683, 11382, 1, 100, 7, N'SO50404', 1, 1, 1, 2049.0982, 2049.0982, 0, 0, 1105.8100, 1105.8100, 2049.0982, 163.9279, 51.2275, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (362, 677, 689, 684, 11406, 2, 100, 7, N'SO50416', 1, 1, 1, 2049.0982, 2049.0982, 0, 0, 1105.8100, 1105.8100, 2049.0982, 163.9279, 51.2275, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (358, 677, 689, 684, 11417, 1, 100, 7, N'SO50417', 1, 1, 1, 2049.0982, 2049.0982, 0, 0, 1105.8100, 1105.8100, 2049.0982, 163.9279, 51.2275, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (352, 680, 692, 687, 11402, 1, 100, 7, N'SO50442', 1, 1, 1, 2071.4196, 2071.4196, 0, 0, 1117.8559, 1117.8559, 2071.4196, 165.7136, 51.7855, NULL, NULL)

GO

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (362, 680, 692, 687, 11416, 2, 100, 7, N'SO50443', 1, 1, 1, 2049.0982, 2049.0982, 0, 0, 1105.8100, 1105.8100, 2049.0982, 163.9279, 51.2275, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (360, 686, 698, 693, 11410, 1, 100, 7, N'SO50505', 1, 1, 1, 2049.0982, 2049.0982, 0, 0, 1105.8100, 1105.8100, 2049.0982, 163.9279, 51.2275, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (358, 690, 702, 697, 11409, 1, 100, 7, N'SO50533', 1, 1, 1, 2049.0982, 2049.0982, 0, 0, 1105.8100, 1105.8100, 2049.0982, 163.9279, 51.2275, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (360, 695, 707, 702, 11425, 1, 100, 7, N'SO50591', 1, 1, 1, 2049.0982, 2049.0982, 0, 0, 1105.8100, 1105.8100, 2049.0982, 163.9279, 51.2275, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (354, 702, 714, 709, 11439, 1, 100, 7, N'SO50777', 1, 1, 1, 2071.4196, 2071.4196, 0, 0, 1117.8559, 1117.8559, 2071.4196, 165.7136, 51.7855, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (356, 702, 714, 709, 11578, 1, 100, 7, N'SO50778', 1, 1, 1, 2071.4196, 2071.4196, 0, 0, 1117.8559, 1117.8559, 2071.4196, 165.7136, 51.7855, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (360, 702, 714, 709, 11587, 1, 100, 7, N'SO50782', 1, 1, 1, 2049.0982, 2049.0982, 0, 0, 1105.8100, 1105.8100, 2049.0982, 163.9279, 51.2275, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (358, 702, 714, 709, 11588, 1, 100, 7, N'SO50783', 1, 1, 1, 2049.0982, 2049.0982, 0, 0, 1105.8100, 1105.8100, 2049.0982, 163.9279, 51.2275, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (362, 704, 716, 711, 11590, 2, 100, 7, N'SO50800', 1, 1, 1, 2049.0982, 2049.0982, 0, 0, 1105.8100, 1105.8100, 2049.0982, 163.9279, 51.2275, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (360, 705, 717, 712, 11433, 1, 100, 7, N'SO50807', 1, 1, 1, 2049.0982, 2049.0982, 0, 0, 1105.8100, 1105.8100, 2049.0982, 163.9279, 51.2275, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (352, 705, 717, 712, 11546, 1, 100, 7, N'SO50808', 1, 1, 1, 2071.4196, 2071.4196, 0, 0, 1117.8559, 1117.8559, 2071.4196, 165.7136, 51.7855, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (356, 708, 720, 715, 11479, 1, 100, 7, N'SO50842', 1, 1, 1, 2071.4196, 2071.4196, 0, 0, 1117.8559, 1117.8559, 2071.4196, 165.7136, 51.7855, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (362, 710, 722, 717, 11582, 2, 100, 7, N'SO50865', 1, 1, 1, 2049.0982, 2049.0982, 0, 0, 1105.8100, 1105.8100, 2049.0982, 163.9279, 51.2275, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (352, 712, 724, 719, 11572, 1, 100, 7, N'SO50889', 1, 1, 1, 2071.4196, 2071.4196, 0, 0, 1117.8559, 1117.8559, 2071.4196, 165.7136, 51.7855, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (352, 713, 725, 720, 11432, 1, 100, 7, N'SO50897', 1, 1, 1, 2071.4196, 2071.4196, 0, 0, 1117.8559, 1117.8559, 2071.4196, 165.7136, 51.7855, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (356, 715, 727, 722, 11571, 1, 100, 7, N'SO50920', 1, 1, 1, 2071.4196, 2071.4196, 0, 0, 1117.8559, 1117.8559, 2071.4196, 165.7136, 51.7855, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (354, 717, 729, 724, 11429, 1, 100, 7, N'SO50942', 1, 1, 1, 2071.4196, 2071.4196, 0, 0, 1117.8559, 1117.8559, 2071.4196, 165.7136, 51.7855, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (354, 718, 730, 725, 11576, 1, 100, 7, N'SO50950', 1, 1, 1, 2071.4196, 2071.4196, 0, 0, 1117.8559, 1117.8559, 2071.4196, 165.7136, 51.7855, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (358, 724, 736, 731, 11577, 1, 100, 7, N'SO51013', 1, 1, 1, 2049.0982, 2049.0982, 0, 0, 1105.8100, 1105.8100, 2049.0982, 163.9279, 51.2275, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (352, 724, 736, 731, 11583, 1, 100, 7, N'SO51014', 1, 1, 1, 2071.4196, 2071.4196, 0, 0, 1117.8559, 1117.8559, 2071.4196, 165.7136, 51.7855, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (356, 725, 737, 732, 11483, 1, 100, 7, N'SO51022', 1, 1, 1, 2071.4196, 2071.4196, 0, 0, 1117.8559, 1117.8559, 2071.4196, 165.7136, 51.7855, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (352, 728, 740, 735, 11480, 1, 100, 7, N'SO51053', 1, 1, 1, 2071.4196, 2071.4196, 0, 0, 1117.8559, 1117.8559, 2071.4196, 165.7136, 51.7855, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (354, 728, 740, 735, 11547, 1, 100, 7, N'SO51054', 1, 1, 1, 2071.4196, 2071.4196, 0, 0, 1117.8559, 1117.8559, 2071.4196, 165.7136, 51.7855, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (353, 731, 743, 738, 11245, 2, 100, 8, N'SO51178', 1, 1, 1, 2319.9900, 2319.9900, 0, 0, 1265.6195, 1265.6195, 2319.9900, 185.5992, 57.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (478, 731, 743, 738, 11245, 1, 100, 8, N'SO51178', 2, 1, 1, 9.9900, 9.9900, 0, 0, 3.7363, 3.7363, 9.9900, 0.7992, 0.2498, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (477, 731, 743, 738, 11245, 1, 100, 8, N'SO51178', 3, 1, 1, 4.9900, 4.9900, 0, 0, 1.8663, 1.8663, 4.9900, 0.3992, 0.1248, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (353, 731, 743, 738, 11263, 1, 100, 1, N'SO51184', 1, 1, 1, 2319.9900, 2319.9900, 0, 0, 1265.6195, 1265.6195, 2319.9900, 185.5992, 57.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (537, 731, 743, 738, 11263, 1, 100, 1, N'SO51184', 2, 1, 1, 35.0000, 35.0000, 0, 0, 13.0900, 13.0900, 35.0000, 2.8000, 0.8750, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (528, 731, 743, 738, 11263, 1, 100, 1, N'SO51184', 3, 1, 1, 4.9900, 4.9900, 0, 0, 1.8663, 1.8663, 4.9900, 0.3992, 0.1248, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (222, 731, 743, 738, 11263, 1, 100, 1, N'SO51184', 4, 1, 1, 34.9900, 34.9900, 0, 0, 13.0863, 13.0863, 34.9900, 2.7992, 0.8748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (357, 732, 744, 739, 11006, 2, 6, 9, N'SO51198', 1, 1, 1, 2319.9900, 2319.9900, 0, 0, 1265.6195, 1265.6195, 2319.9900, 185.5992, 57.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (478, 732, 744, 739, 11006, 1, 6, 9, N'SO51198', 2, 1, 1, 9.9900, 9.9900, 0, 0, 3.7363, 3.7363, 9.9900, 0.7992, 0.2498, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (477, 732, 744, 739, 11006, 1, 6, 9, N'SO51198', 3, 1, 1, 4.9900, 4.9900, 0, 0, 1.8663, 1.8663, 4.9900, 0.3992, 0.1248, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (363, 732, 744, 739, 11020, 2, 19, 6, N'SO51193', 1, 1, 1, 2294.9900, 2294.9900, 0, 0, 1251.9813, 1251.9813, 2294.9900, 183.5992, 57.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (485, 732, 744, 739, 11020, 1, 19, 6, N'SO51193', 2, 1, 1, 21.9800, 21.9800, 0, 0, 8.2205, 8.2205, 21.9800, 1.7584, 0.5495, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (363, 732, 744, 739, 11089, 1, 100, 4, N'SO51194', 1, 1, 1, 2294.9900, 2294.9900, 0, 0, 1251.9813, 1251.9813, 2294.9900, 183.5992, 57.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (485, 732, 744, 739, 11089, 1, 100, 4, N'SO51194', 2, 1, 1, 21.9800, 21.9800, 0, 0, 8.2205, 8.2205, 21.9800, 1.7584, 0.5495, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (217, 732, 744, 739, 11089, 1, 100, 4, N'SO51194', 3, 1, 1, 34.9900, 34.9900, 0, 0, 13.0863, 13.0863, 34.9900, 2.7992, 0.8748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (363, 732, 744, 739, 11241, 1, 100, 7, N'SO51192', 1, 1, 1, 2294.9900, 2294.9900, 0, 0, 1251.9813, 1251.9813, 2294.9900, 183.5992, 57.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (214, 732, 744, 739, 11241, 1, 100, 7, N'SO51192', 2, 1, 1, 34.9900, 34.9900, 0, 0, 13.0863, 13.0863, 34.9900, 2.7992, 0.8748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (363, 732, 744, 739, 11448, 1, 6, 9, N'SO51197', 1, 1, 1, 2294.9900, 2294.9900, 0, 0, 1251.9813, 1251.9813, 2294.9900, 183.5992, 57.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (478, 732, 744, 739, 11448, 1, 6, 9, N'SO51197', 2, 1, 1, 9.9900, 9.9900, 0, 0, 3.7363, 3.7363, 9.9900, 0.7992, 0.2498, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (477, 732, 744, 739, 11448, 1, 6, 9, N'SO51197', 3, 1, 1, 4.9900, 4.9900, 0, 0, 1.8663, 1.8663, 4.9900, 0.3992, 0.1248, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (225, 732, 744, 739, 11448, 1, 6, 9, N'SO51197', 4, 1, 1, 8.9900, 8.9900, 0, 0, 6.9223, 6.9223, 8.9900, 0.7192, 0.2248, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (361, 733, 745, 740, 11108, 1, 6, 9, N'SO51215', 1, 1, 1, 2294.9900, 2294.9900, 0, 0, 1251.9813, 1251.9813, 2294.9900, 183.5992, 57.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (537, 733, 745, 740, 11108, 1, 6, 9, N'SO51215', 2, 1, 1, 35.0000, 35.0000, 0, 0, 13.0900, 13.0900, 35.0000, 2.8000, 0.8750, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (355, 733, 745, 740, 11117, 1, 6, 9, N'SO51216', 1, 1, 1, 2319.9900, 2319.9900, 0, 0, 1265.6195, 1265.6195, 2319.9900, 185.5992, 57.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (485, 733, 745, 740, 11117, 1, 6, 9, N'SO51216', 2, 1, 1, 21.9800, 21.9800, 0, 0, 8.2205, 8.2205, 21.9800, 1.7584, 0.5495, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (478, 733, 745, 740, 11117, 1, 6, 9, N'SO51216', 3, 1, 1, 9.9900, 9.9900, 0, 0, 3.7363, 3.7363, 9.9900, 0.7992, 0.2498, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (477, 733, 745, 740, 11117, 1, 6, 9, N'SO51216', 4, 1, 1, 4.9900, 4.9900, 0, 0, 1.8663, 1.8663, 4.9900, 0.3992, 0.1248, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (225, 733, 745, 740, 11117, 1, 6, 9, N'SO51216', 5, 1, 1, 8.9900, 8.9900, 0, 0, 6.9223, 6.9223, 8.9900, 0.7192, 0.2248, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (355, 733, 745, 740, 11240, 1, 98, 10, N'SO51205', 1, 1, 1, 2319.9900, 2319.9900, 0, 0, 1265.6195, 1265.6195, 2319.9900, 185.5992, 57.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (478, 733, 745, 740, 11240, 1, 98, 10, N'SO51205', 2, 1, 1, 9.9900, 9.9900, 0, 0, 3.7363, 3.7363, 9.9900, 0.7992, 0.2498, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (477, 733, 745, 740, 11240, 1, 98, 10, N'SO51205', 3, 1, 1, 4.9900, 4.9900, 0, 0, 1.8663, 1.8663, 4.9900, 0.3992, 0.1248, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (222, 733, 745, 740, 11240, 1, 98, 10, N'SO51205', 4, 1, 1, 34.9900, 34.9900, 0, 0, 13.0863, 13.0863, 34.9900, 2.7992, 0.8748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (361, 733, 745, 740, 11261, 1, 100, 4, N'SO51210', 1, 1, 1, 2294.9900, 2294.9900, 0, 0, 1251.9813, 1251.9813, 2294.9900, 183.5992, 57.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (222, 733, 745, 740, 11261, 1, 100, 4, N'SO51210', 2, 1, 1, 34.9900, 34.9900, 0, 0, 13.0863, 13.0863, 34.9900, 2.7992, 0.8748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (357, 733, 745, 740, 11338, 1, 100, 8, N'SO51207', 1, 1, 1, 2319.9900, 2319.9900, 0, 0, 1265.6195, 1265.6195, 2319.9900, 185.5992, 57.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (478, 733, 745, 740, 11338, 1, 100, 8, N'SO51207', 2, 1, 1, 9.9900, 9.9900, 0, 0, 3.7363, 3.7363, 9.9900, 0.7992, 0.2498, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (477, 733, 745, 740, 11338, 1, 100, 8, N'SO51207', 3, 1, 1, 4.9900, 4.9900, 0, 0, 1.8663, 1.8663, 4.9900, 0.3992, 0.1248, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (214, 733, 745, 740, 11338, 1, 100, 8, N'SO51207', 4, 1, 1, 34.9900, 34.9900, 0, 0, 13.0863, 13.0863, 34.9900, 2.7992, 0.8748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (361, 733, 745, 740, 11400, 1, 98, 10, N'SO51206', 1, 1, 1, 2294.9900, 2294.9900, 0, 0, 1251.9813, 1251.9813, 2294.9900, 183.5992, 57.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (478, 733, 745, 740, 11400, 1, 98, 10, N'SO51206', 2, 1, 1, 9.9900, 9.9900, 0, 0, 3.7363, 3.7363, 9.9900, 0.7992, 0.2498, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (477, 733, 745, 740, 11400, 1, 98, 10, N'SO51206', 3, 1, 1, 4.9900, 4.9900, 0, 0, 1.8663, 1.8663, 4.9900, 0.3992, 0.1248, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (225, 733, 745, 740, 11400, 1, 98, 10, N'SO51206', 4, 1, 1, 8.9900, 8.9900, 0, 0, 6.9223, 6.9223, 8.9900, 0.7192, 0.2248, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (353, 733, 745, 740, 11449, 1, 6, 9, N'SO51217', 1, 1, 1, 2319.9900, 2319.9900, 0, 0, 1265.6195, 1265.6195, 2319.9900, 185.5992, 57.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (528, 733, 745, 740, 11449, 1, 6, 9, N'SO51217', 2, 1, 1, 4.9900, 4.9900, 0, 0, 1.8663, 1.8663, 4.9900, 0.3992, 0.1248, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (537, 733, 745, 740, 11449, 1, 6, 9, N'SO51217', 3, 1, 1, 35.0000, 35.0000, 0, 0, 13.0900, 13.0900, 35.0000, 2.8000, 0.8750, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (480, 733, 745, 740, 11449, 1, 6, 9, N'SO51217', 4, 1, 1, 2.2900, 2.2900, 0, 0, 0.8565, 0.8565, 2.2900, 0.1832, 0.0573, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (596, 733, 745, 740, 11943, 1, 6, 9, N'SO51218', 1, 1, 1, 539.9900, 539.9900, 0, 0, 294.5797, 294.5797, 539.9900, 43.1992, 13.4998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (359, 734, 746, 741, 11002, 1, 6, 9, N'SO51238', 1, 1, 1, 2294.9900, 2294.9900, 0, 0, 1251.9813, 1251.9813, 2294.9900, 183.5992, 57.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (357, 734, 746, 741, 11061, 1, 6, 9, N'SO51237', 1, 1, 1, 2319.9900, 2319.9900, 0, 0, 1265.6195, 1265.6195, 2319.9900, 185.5992, 57.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (478, 734, 746, 741, 11061, 1, 6, 9, N'SO51237', 2, 1, 1, 9.9900, 9.9900, 0, 0, 3.7363, 3.7363, 9.9900, 0.7992, 0.2498, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (477, 734, 746, 741, 11061, 1, 6, 9, N'SO51237', 3, 1, 1, 4.9900, 4.9900, 0, 0, 1.8663, 1.8663, 4.9900, 0.3992, 0.1248, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (214, 734, 746, 741, 11061, 1, 6, 9, N'SO51237', 4, 1, 1, 34.9900, 34.9900, 0, 0, 13.0863, 13.0863, 34.9900, 2.7992, 0.8748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (353, 734, 746, 741, 11076, 2, 6, 9, N'SO51239', 1, 1, 1, 2319.9900, 2319.9900, 0, 0, 1265.6195, 1265.6195, 2319.9900, 185.5992, 57.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (487, 734, 746, 741, 11076, 1, 6, 9, N'SO51239', 2, 1, 1, 54.9900, 54.9900, 0, 0, 20.5663, 20.5663, 54.9900, 4.3992, 1.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (361, 734, 746, 741, 11105, 1, 6, 9, N'SO51235', 1, 1, 1, 2294.9900, 2294.9900, 0, 0, 1251.9813, 1251.9813, 2294.9900, 183.5992, 57.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (359, 734, 746, 741, 11106, 1, 6, 9, N'SO51236', 1, 1, 1, 2294.9900, 2294.9900, 0, 0, 1251.9813, 1251.9813, 2294.9900, 183.5992, 57.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (363, 734, 746, 741, 11257, 1, 100, 4, N'SO51231', 1, 1, 1, 2294.9900, 2294.9900, 0, 0, 1251.9813, 1251.9813, 2294.9900, 183.5992, 57.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (480, 734, 746, 741, 11257, 1, 100, 4, N'SO51231', 2, 1, 1, 2.2900, 2.2900, 0, 0, 0.8565, 0.8565, 2.2900, 0.1832, 0.0573, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (359, 734, 746, 741, 11292, 1, 100, 4, N'SO51230', 1, 1, 1, 2294.9900, 2294.9900, 0, 0, 1251.9813, 1251.9813, 2294.9900, 183.5992, 57.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (485, 734, 746, 741, 11292, 1, 100, 4, N'SO51230', 2, 1, 1, 21.9800, 21.9800, 0, 0, 8.2205, 8.2205, 21.9800, 1.7584, 0.5495, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (477, 734, 746, 741, 11292, 1, 100, 4, N'SO51230', 3, 1, 1, 4.9900, 4.9900, 0, 0, 1.8663, 1.8663, 4.9900, 0.3992, 0.1248, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (478, 734, 746, 741, 11292, 1, 100, 4, N'SO51230', 4, 1, 1, 9.9900, 9.9900, 0, 0, 3.7363, 3.7363, 9.9900, 0.7992, 0.2498, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (353, 734, 746, 741, 11345, 1, 100, 7, N'SO51224', 1, 1, 1, 2319.9900, 2319.9900, 0, 0, 1265.6195, 1265.6195, 2319.9900, 185.5992, 57.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (537, 734, 746, 741, 11345, 1, 100, 7, N'SO51224', 2, 1, 1, 35.0000, 35.0000, 0, 0, 13.0900, 13.0900, 35.0000, 2.8000, 0.8750, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (355, 734, 746, 741, 11402, 1, 100, 7, N'SO51228', 1, 1, 1, 2319.9900, 2319.9900, 0, 0, 1265.6195, 1265.6195, 2319.9900, 185.5992, 57.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (477, 734, 746, 741, 11402, 1, 100, 7, N'SO51228', 2, 1, 1, 4.9900, 4.9900, 0, 0, 1.8663, 1.8663, 4.9900, 0.3992, 0.1248, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (478, 734, 746, 741, 11402, 1, 100, 7, N'SO51228', 3, 1, 1, 9.9900, 9.9900, 0, 0, 3.7363, 3.7363, 9.9900, 0.7992, 0.2498, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (487, 734, 746, 741, 11402, 1, 100, 7, N'SO51228', 4, 1, 1, 54.9900, 54.9900, 0, 0, 20.5663, 20.5663, 54.9900, 4.3992, 1.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (225, 734, 746, 741, 11402, 1, 100, 7, N'SO51228', 5, 1, 1, 8.9900, 8.9900, 0, 0, 6.9223, 6.9223, 8.9900, 0.7192, 0.2248, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (571, 734, 746, 741, 11615, 1, 98, 10, N'SO51232', 1, 1, 1, 742.3500, 742.3500, 0, 0, 461.4448, 461.4448, 742.3500, 59.3880, 18.5588, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (214, 734, 746, 741, 11615, 1, 98, 10, N'SO51232', 2, 1, 1, 34.9900, 34.9900, 0, 0, 13.0863, 13.0863, 34.9900, 2.7992, 0.8748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (363, 735, 747, 742, 11017, 2, 6, 9, N'SO51256', 1, 1, 1, 2294.9900, 2294.9900, 0, 0, 1251.9813, 1251.9813, 2294.9900, 183.5992, 57.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (485, 735, 747, 742, 11017, 1, 6, 9, N'SO51256', 2, 1, 1, 21.9800, 21.9800, 0, 0, 8.2205, 8.2205, 21.9800, 1.7584, 0.5495, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (361, 735, 747, 742, 11249, 1, 100, 8, N'SO51247', 1, 1, 1, 2294.9900, 2294.9900, 0, 0, 1251.9813, 1251.9813, 2294.9900, 183.5992, 57.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (477, 735, 747, 742, 11249, 1, 100, 8, N'SO51247', 2, 1, 1, 4.9900, 4.9900, 0, 0, 1.8663, 1.8663, 4.9900, 0.3992, 0.1248, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (478, 735, 747, 742, 11249, 1, 100, 8, N'SO51247', 3, 1, 1, 9.9900, 9.9900, 0, 0, 3.7363, 3.7363, 9.9900, 0.7992, 0.2498, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (353, 735, 747, 742, 11334, 2, 98, 10, N'SO51249', 1, 1, 1, 2319.9900, 2319.9900, 0, 0, 1265.6195, 1265.6195, 2319.9900, 185.5992, 57.9998, NULL, NULL)

GO

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (478, 735, 747, 742, 11334, 1, 98, 10, N'SO51249', 2, 1, 1, 9.9900, 9.9900, 0, 0, 3.7363, 3.7363, 9.9900, 0.7992, 0.2498, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (477, 735, 747, 742, 11334, 1, 98, 10, N'SO51249', 3, 1, 1, 4.9900, 4.9900, 0, 0, 1.8663, 1.8663, 4.9900, 0.3992, 0.1248, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (374, 735, 747, 742, 11433, 2, 100, 7, N'SO51251', 1, 1, 1, 2443.3500, 2443.3500, 0, 0, 1554.9479, 1554.9479, 2443.3500, 195.4680, 61.0838, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (573, 735, 747, 742, 11433, 1, 100, 7, N'SO51259', 1, 1, 1, 2384.0700, 2384.0700, 0, 0, 1481.9379, 1481.9379, 2384.0700, 190.7256, 59.6018, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (479, 735, 747, 742, 11433, 1, 100, 7, N'SO51259', 2, 1, 1, 8.9900, 8.9900, 0, 0, 3.3623, 3.3623, 8.9900, 0.7192, 0.2248, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (477, 735, 747, 742, 11433, 1, 100, 7, N'SO51259', 3, 1, 1, 4.9900, 4.9900, 0, 0, 1.8663, 1.8663, 4.9900, 0.3992, 0.1248, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (214, 735, 747, 742, 11433, 1, 100, 7, N'SO51259', 4, 1, 1, 34.9900, 34.9900, 0, 0, 13.0863, 13.0863, 34.9900, 2.7992, 0.8748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (225, 735, 747, 742, 11433, 1, 100, 7, N'SO51259', 5, 1, 1, 8.9900, 8.9900, 0, 0, 6.9223, 6.9223, 8.9900, 0.7192, 0.2248, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (363, 736, 748, 743, 11264, 1, 100, 1, N'SO51265', 1, 1, 1, 2294.9900, 2294.9900, 0, 0, 1251.9813, 1251.9813, 2294.9900, 183.5992, 57.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (485, 736, 748, 743, 11264, 1, 100, 1, N'SO51265', 2, 1, 1, 21.9800, 21.9800, 0, 0, 8.2205, 8.2205, 21.9800, 1.7584, 0.5495, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (228, 736, 748, 743, 11264, 1, 100, 1, N'SO51265', 3, 1, 1, 49.9900, 49.9900, 0, 0, 38.4923, 38.4923, 49.9900, 3.9992, 1.2498, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (225, 736, 748, 743, 11264, 1, 100, 1, N'SO51265', 4, 1, 1, 8.9900, 8.9900, 0, 0, 6.9223, 6.9223, 8.9900, 0.7192, 0.2248, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (361, 736, 748, 743, 11282, 1, 100, 1, N'SO51264', 1, 1, 1, 2294.9900, 2294.9900, 0, 0, 1251.9813, 1251.9813, 2294.9900, 183.5992, 57.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (528, 736, 748, 743, 11282, 1, 100, 1, N'SO51264', 2, 1, 1, 4.9900, 4.9900, 0, 0, 1.8663, 1.8663, 4.9900, 0.3992, 0.1248, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (537, 736, 748, 743, 11282, 1, 100, 1, N'SO51264', 3, 1, 1, 35.0000, 35.0000, 0, 0, 13.0900, 13.0900, 35.0000, 2.8000, 0.8750, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (485, 736, 748, 743, 11282, 1, 100, 1, N'SO51264', 4, 1, 1, 21.9800, 21.9800, 0, 0, 8.2205, 8.2205, 21.9800, 1.7584, 0.5495, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (473, 736, 748, 743, 11282, 1, 100, 1, N'SO51264', 5, 1, 1, 63.5000, 63.5000, 0, 0, 23.7490, 23.7490, 63.5000, 5.0800, 1.5875, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (359, 736, 748, 743, 11340, 1, 100, 7, N'SO51262', 1, 1, 1, 2294.9900, 2294.9900, 0, 0, 1251.9813, 1251.9813, 2294.9900, 183.5992, 57.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (478, 736, 748, 743, 11340, 1, 100, 7, N'SO51262', 2, 1, 1, 9.9900, 9.9900, 0, 0, 3.7363, 3.7363, 9.9900, 0.7992, 0.2498, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (477, 736, 748, 743, 11340, 1, 100, 7, N'SO51262', 3, 1, 1, 4.9900, 4.9900, 0, 0, 1.8663, 1.8663, 4.9900, 0.3992, 0.1248, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (491, 736, 748, 743, 11340, 1, 100, 7, N'SO51262', 4, 1, 1, 53.9900, 53.9900, 0, 0, 41.5723, 41.5723, 53.9900, 4.3192, 1.3498, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (363, 736, 748, 743, 11456, 1, 6, 9, N'SO51267', 1, 1, 1, 2294.9900, 2294.9900, 0, 0, 1251.9813, 1251.9813, 2294.9900, 183.5992, 57.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (485, 736, 748, 743, 11456, 1, 6, 9, N'SO51267', 2, 1, 1, 21.9800, 21.9800, 0, 0, 8.2205, 8.2205, 21.9800, 1.7584, 0.5495, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (478, 736, 748, 743, 11456, 1, 6, 9, N'SO51267', 3, 1, 1, 9.9900, 9.9900, 0, 0, 3.7363, 3.7363, 9.9900, 0.7992, 0.2498, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (477, 736, 748, 743, 11456, 1, 6, 9, N'SO51267', 4, 1, 1, 4.9900, 4.9900, 0, 0, 1.8663, 1.8663, 4.9900, 0.3992, 0.1248, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (214, 736, 748, 743, 11456, 1, 6, 9, N'SO51267', 5, 1, 1, 34.9900, 34.9900, 0, 0, 13.0863, 13.0863, 34.9900, 2.7992, 0.8748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (465, 736, 748, 743, 11456, 1, 6, 9, N'SO51267', 6, 1, 1, 24.4900, 24.4900, 0, 0, 9.1593, 9.1593, 24.4900, 1.9592, 0.6123, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (361, 737, 749, 744, 11008, 1, 6, 9, N'SO51282', 1, 1, 1, 2294.9900, 2294.9900, 0, 0, 1251.9813, 1251.9813, 2294.9900, 183.5992, 57.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (477, 737, 749, 744, 11008, 1, 6, 9, N'SO51282', 2, 1, 1, 4.9900, 4.9900, 0, 0, 1.8663, 1.8663, 4.9900, 0.3992, 0.1248, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (478, 737, 749, 744, 11008, 1, 6, 9, N'SO51282', 3, 1, 1, 9.9900, 9.9900, 0, 0, 3.7363, 3.7363, 9.9900, 0.7992, 0.2498, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (480, 737, 749, 744, 11008, 1, 6, 9, N'SO51282', 4, 1, 1, 2.2900, 2.2900, 0, 0, 0.8565, 0.8565, 2.2900, 0.1832, 0.0573, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (359, 737, 749, 744, 11136, 1, 19, 6, N'SO51276', 1, 1, 1, 2294.9900, 2294.9900, 0, 0, 1251.9813, 1251.9813, 2294.9900, 183.5992, 57.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (485, 737, 749, 744, 11136, 1, 19, 6, N'SO51276', 2, 1, 1, 21.9800, 21.9800, 0, 0, 8.2205, 8.2205, 21.9800, 1.7584, 0.5495, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (472, 737, 749, 744, 11136, 1, 19, 6, N'SO51276', 3, 1, 1, 63.5000, 63.5000, 0, 0, 23.7490, 23.7490, 63.5000, 5.0800, 1.5875, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (359, 737, 749, 744, 11265, 1, 100, 1, N'SO51275', 1, 1, 1, 2294.9900, 2294.9900, 0, 0, 1251.9813, 1251.9813, 2294.9900, 183.5992, 57.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (485, 737, 749, 744, 11265, 1, 100, 1, N'SO51275', 2, 1, 1, 21.9800, 21.9800, 0, 0, 8.2205, 8.2205, 21.9800, 1.7584, 0.5495, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (222, 737, 749, 744, 11265, 1, 100, 1, N'SO51275', 3, 1, 1, 34.9900, 34.9900, 0, 0, 13.0863, 13.0863, 34.9900, 2.7992, 0.8748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (363, 737, 749, 744, 11278, 1, 100, 1, N'SO51277', 1, 1, 1, 2294.9900, 2294.9900, 0, 0, 1251.9813, 1251.9813, 2294.9900, 183.5992, 57.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (217, 737, 749, 744, 11278, 1, 100, 1, N'SO51277', 2, 1, 1, 34.9900, 34.9900, 0, 0, 13.0863, 13.0863, 34.9900, 2.7992, 0.8748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (359, 737, 749, 744, 11341, 1, 98, 10, N'SO51270', 1, 1, 1, 2294.9900, 2294.9900, 0, 0, 1251.9813, 1251.9813, 2294.9900, 183.5992, 57.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (222, 737, 749, 744, 11341, 1, 98, 10, N'SO51270', 2, 1, 1, 34.9900, 34.9900, 0, 0, 13.0863, 13.0863, 34.9900, 2.7992, 0.8748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (225, 737, 749, 744, 11341, 1, 98, 10, N'SO51270', 3, 1, 1, 8.9900, 8.9900, 0, 0, 6.9223, 6.9223, 8.9900, 0.7192, 0.2248, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (355, 738, 750, 745, 11058, 1, 6, 9, N'SO51292', 1, 1, 1, 2319.9900, 2319.9900, 0, 0, 1265.6195, 1265.6195, 2319.9900, 185.5992, 57.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (487, 738, 750, 745, 11058, 1, 6, 9, N'SO51292', 2, 1, 1, 54.9900, 54.9900, 0, 0, 20.5663, 20.5663, 54.9900, 4.3992, 1.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (353, 738, 750, 745, 11060, 2, 6, 9, N'SO51293', 1, 1, 1, 2319.9900, 2319.9900, 0, 0, 1265.6195, 1265.6195, 2319.9900, 185.5992, 57.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (357, 738, 750, 745, 11084, 1, 100, 1, N'SO51289', 1, 1, 1, 2319.9900, 2319.9900, 0, 0, 1265.6195, 1265.6195, 2319.9900, 185.5992, 57.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (480, 738, 750, 745, 11084, 1, 100, 1, N'SO51289', 2, 1, 1, 2.2900, 2.2900, 0, 0, 0.8565, 0.8565, 2.2900, 0.1832, 0.0573, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (357, 738, 750, 745, 11335, 1, 100, 8, N'SO51288', 1, 1, 1, 2319.9900, 2319.9900, 0, 0, 1265.6195, 1265.6195, 2319.9900, 185.5992, 57.9998, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (485, 738, 750, 745, 11335, 1, 100, 8, N'SO51288', 2, 1, 1, 21.9800, 21.9800, 0, 0, 8.2205, 8.2205, 21.9800, 1.7584, 0.5495, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (480, 738, 750, 745, 11335, 1, 100, 8, N'SO51288', 3, 1, 1, 2.2900, 2.2900, 0, 0, 0.8565, 0.8565, 2.2900, 0.1832, 0.0573, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (359, 738, 750, 745, 11445, 1, 6, 9, N'SO51290', 1, 1, 1, 2294.9900, 2294.9900, 0, 0, 1251.9813, 1251.9813, 2294.9900, 183.5992, 57.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (478, 738, 750, 745, 11445, 1, 6, 9, N'SO51290', 2, 1, 1, 9.9900, 9.9900, 0, 0, 3.7363, 3.7363, 9.9900, 0.7992, 0.2498, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (363, 738, 750, 745, 11447, 1, 6, 9, N'SO51291', 1, 1, 1, 2294.9900, 2294.9900, 0, 0, 1251.9813, 1251.9813, 2294.9900, 183.5992, 57.3748, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (478, 738, 750, 745, 11447, 1, 6, 9, N'SO51291', 2, 1, 1, 9.9900, 9.9900, 0, 0, 3.7363, 3.7363, 9.9900, 0.7992, 0.2498, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (477, 738, 750, 745, 11447, 1, 6, 9, N'SO51291', 3, 1, 1, 4.9900, 4.9900, 0, 0, 1.8663, 1.8663, 4.9900, 0.3992, 0.1248, NULL, NULL)

INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (361, 739, 751, 746, 11003,