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, 1, 6, 9, N'SO51315', 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, 739, 751, 746, 11003, 1, 6, 9, N'SO51315', 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, 739, 751, 746, 11003, 1, 6, 9, N'SO51315', 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, 739, 751, 746, 11003, 1, 6, 9, N'SO51315', 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, 739, 751, 746, 11242, 2, 100, 7, N'SO51305', 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 (353, 739, 751, 746, 11328, 2, 19, 6, N'SO51310', 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 (355, 739, 751, 746, 11333, 1, 98, 10, N'SO51306', 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, 739, 751, 746, 11333, 1, 98, 10, N'SO51306', 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, 739, 751, 746, 11333, 1, 98, 10, N'SO51306', 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 (355, 739, 751, 746, 11336, 1, 100, 7, N'SO51307', 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, 739, 751, 746, 11336, 1, 100, 7, N'SO51307', 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, 739, 751, 746, 11336, 1, 100, 7, N'SO51307', 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 (217, 739, 751, 746, 11336, 1, 100, 7, N'SO51307', 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, 740, 752, 747, 11083, 1, 100, 4, N'SO51325', 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, 740, 752, 747, 11083, 1, 100, 4, N'SO51325', 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, 740, 752, 747, 11083, 1, 100, 4, N'SO51325', 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 (217, 740, 752, 747, 11083, 1, 100, 4, N'SO51325', 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, 740, 752, 747, 11155, 2, 100, 4, N'SO51324', 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 (353, 740, 752, 747, 11332, 1, 100, 8, N'SO51323', 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 (222, 740, 752, 747, 11332, 1, 100, 8, N'SO51323', 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, 741, 753, 748, 11054, 1, 6, 9, N'SO51350', 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 (487, 741, 753, 748, 11054, 1, 6, 9, N'SO51350', 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 (488, 741, 753, 748, 11054, 1, 6, 9, N'SO51350', 3, 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 (361, 741, 753, 748, 11062, 1, 100, 1, N'SO51347', 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, 741, 753, 748, 11062, 1, 100, 1, N'SO51347', 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, 741, 753, 748, 11062, 1, 100, 1, N'SO51347', 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, 741, 753, 748, 11093, 1, 6, 9, N'SO51352', 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, 741, 753, 748, 11093, 1, 6, 9, N'SO51352', 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, 741, 753, 748, 11093, 1, 6, 9, N'SO51352', 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 (481, 741, 753, 748, 11093, 1, 6, 9, N'SO51352', 4, 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 (361, 741, 753, 748, 11167, 1, 100, 1, N'SO51348', 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, 741, 753, 748, 11167, 1, 100, 1, N'SO51348', 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 (361, 741, 753, 748, 11267, 1, 100, 4, N'SO51345', 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, 741, 753, 748, 11267, 1, 100, 4, N'SO51345', 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, 741, 753, 748, 11267, 1, 100, 4, N'SO51345', 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 (487, 741, 753, 748, 11267, 1, 100, 4, N'SO51345', 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 (363, 741, 753, 748, 11270, 1, 100, 4, N'SO51346', 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, 741, 753, 748, 11270, 1, 100, 4, N'SO51346', 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, 741, 753, 748, 11270, 1, 100, 4, N'SO51346', 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 (490, 741, 753, 748, 11270, 1, 100, 4, N'SO51346', 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 (376, 741, 753, 748, 11439, 1, 100, 7, N'SO51343', 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 (479, 741, 753, 748, 11439, 1, 100, 7, N'SO51343', 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, 741, 753, 748, 11439, 1, 100, 7, N'SO51343', 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 (355, 741, 753, 748, 11446, 1, 6, 9, N'SO51351', 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 (222, 741, 753, 748, 11446, 1, 6, 9, N'SO51351', 2, 1, 1, 34.9900, 34.9900, 0, 0, 13.0863, 13.0863, 34.9900, 2.7992, 0.8748, 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 (363, 741, 753, 748, 11454, 2, 6, 9, N'SO51354', 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, 742, 754, 749, 11156, 1, 100, 4, N'SO51365', 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, 742, 754, 749, 11156, 1, 100, 4, N'SO51365', 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, 742, 754, 749, 11156, 1, 100, 4, N'SO51365', 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 (487, 742, 754, 749, 11156, 1, 100, 4, N'SO51365', 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 (357, 742, 754, 749, 11388, 1, 98, 10, N'SO51360', 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, 742, 754, 749, 11388, 1, 98, 10, N'SO51360', 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, 742, 754, 749, 11388, 1, 98, 10, N'SO51360', 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 (484, 742, 754, 749, 11388, 1, 98, 10, N'SO51360', 4, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 743, 755, 750, 11070, 1, 6, 9, N'SO51385', 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, 743, 755, 750, 11070, 1, 6, 9, N'SO51385', 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, 743, 755, 750, 11070, 1, 6, 9, N'SO51385', 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, 743, 755, 750, 11070, 1, 6, 9, N'SO51385', 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 (484, 743, 755, 750, 11070, 1, 6, 9, N'SO51385', 5, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 743, 755, 750, 11072, 1, 6, 9, N'SO51386', 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, 743, 755, 750, 11072, 1, 6, 9, N'SO51386', 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 (490, 743, 755, 750, 11072, 1, 6, 9, N'SO51386', 3, 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 (359, 743, 755, 750, 11103, 1, 6, 9, N'SO51384', 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, 743, 755, 750, 11103, 1, 6, 9, N'SO51384', 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, 743, 755, 750, 11103, 1, 6, 9, N'SO51384', 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 (491, 743, 755, 750, 11103, 1, 6, 9, N'SO51384', 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 (465, 743, 755, 750, 11103, 1, 6, 9, N'SO51384', 5, 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 (363, 743, 755, 750, 11129, 2, 100, 1, N'SO51381', 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 (361, 743, 755, 750, 11152, 1, 100, 1, N'SO51382', 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 (353, 743, 755, 750, 11295, 2, 100, 4, N'SO51380', 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, 743, 755, 750, 11295, 1, 100, 4, N'SO51380', 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, 743, 755, 750, 11295, 1, 100, 4, N'SO51380', 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 (483, 743, 755, 750, 11295, 1, 100, 4, N'SO51380', 4, 1, 1, 120.0000, 120.0000, 0, 0, 44.8800, 44.8800, 120.0000, 9.6000, 3.0000, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 743, 755, 750, 11455, 1, 6, 9, N'SO51388', 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 (591, 743, 755, 750, 11942, 1, 6, 9, N'SO51387', 1, 1, 1, 564.9900, 564.9900, 0, 0, 308.2179, 308.2179, 564.9900, 45.1992, 14.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, 743, 755, 750, 11942, 1, 6, 9, N'SO51387', 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, 743, 755, 750, 11942, 1, 6, 9, N'SO51387', 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, 743, 755, 750, 11942, 1, 6, 9, N'SO51387', 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 (355, 744, 756, 751, 11154, 1, 100, 1, N'SO51398', 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 (353, 744, 756, 751, 11191, 2, 100, 4, N'SO51399', 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, 744, 756, 751, 11191, 1, 100, 4, N'SO51399', 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, 744, 756, 751, 11191, 1, 100, 4, N'SO51399', 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 (359, 744, 756, 751, 11835, 1, 19, 6, N'SO51397', 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, 744, 756, 751, 11835, 1, 19, 6, N'SO51397', 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, 744, 756, 751, 11835, 1, 19, 6, N'SO51397', 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 (361, 745, 757, 752, 11010, 1, 6, 9, N'SO51421', 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, 745, 757, 752, 11109, 1, 6, 9, N'SO51420', 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, 745, 757, 752, 11109, 1, 6, 9, N'SO51420', 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, 745, 757, 752, 11109, 1, 6, 9, N'SO51420', 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, 745, 757, 752, 11109, 1, 6, 9, N'SO51420', 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 (483, 745, 757, 752, 11109, 1, 6, 9, N'SO51420', 5, 1, 1, 120.0000, 120.0000, 0, 0, 44.8800, 44.8800, 120.0000, 9.6000, 3.0000, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 745, 757, 752, 11239, 1, 98, 10, N'SO51411', 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, 745, 757, 752, 11239, 1, 98, 10, N'SO51411', 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, 745, 757, 752, 11239, 1, 98, 10, N'SO51411', 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, 745, 757, 752, 11239, 1, 98, 10, N'SO51411', 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, 745, 757, 752, 11239, 1, 98, 10, N'SO51411', 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, 745, 757, 752, 11247, 1, 98, 10, N'SO51408', 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, 745, 757, 752, 11247, 1, 98, 10, N'SO51408', 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 (480, 745, 757, 752, 11247, 1, 98, 10, N'SO51408', 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 (484, 745, 757, 752, 11247, 1, 98, 10, N'SO51408', 4, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 745, 757, 752, 11281, 1, 100, 4, N'SO51417', 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, 745, 757, 752, 11281, 1, 100, 4, N'SO51417', 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, 745, 757, 752, 11281, 1, 100, 4, N'SO51417', 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 (484, 745, 757, 752, 11281, 1, 100, 4, N'SO51417', 4, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 745, 757, 752, 11417, 2, 100, 7, N'SO51409', 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, 745, 757, 752, 11417, 1, 100, 7, N'SO51409', 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 (483, 745, 757, 752, 11417, 1, 100, 7, N'SO51409', 3, 1, 1, 120.0000, 120.0000, 0, 0, 44.8800, 44.8800, 120.0000, 9.6000, 3.0000, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (585, 745, 757, 752, 11550, 1, 98, 10, N'SO51416', 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 (217, 745, 757, 752, 11550, 1, 98, 10, N'SO51416', 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, 746, 758, 753, 11063, 1, 100, 1, N'SO51431', 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, 746, 758, 753, 11063, 1, 100, 1, N'SO51431', 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, 746, 758, 753, 11063, 1, 100, 1, N'SO51431', 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 (490, 746, 758, 753, 11063, 1, 100, 1, N'SO51431', 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 (225, 746, 758, 753, 11063, 1, 100, 1, N'SO51431', 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 (353, 746, 758, 753, 11092, 2, 6, 9, N'SO51432', 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, 746, 758, 753, 11092, 1, 6, 9, N'SO51432', 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, 746, 758, 753, 11243, 1, 98, 10, N'SO51427', 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, 746, 758, 753, 11243, 1, 98, 10, N'SO51427', 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 (214, 746, 758, 753, 11243, 1, 98, 10, N'SO51427', 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 (357, 746, 758, 753, 11275, 1, 100, 4, N'SO51430', 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, 746, 758, 753, 11275, 1, 100, 4, N'SO51430', 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, 746, 758, 753, 11275, 1, 100, 4, N'SO51430', 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 (361, 746, 758, 753, 11316, 1, 19, 6, N'SO51429', 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 (487, 746, 758, 753, 11316, 1, 19, 6, N'SO51429', 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 (357, 747, 759, 754, 11080, 2, 6, 9, N'SO51448', 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, 747, 759, 754, 11080, 1, 6, 9, N'SO51448', 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, 747, 759, 754, 11080, 1, 6, 9, N'SO51448', 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 (357, 747, 759, 754, 11088, 1, 100, 4, N'SO51445', 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, 747, 759, 754, 11088, 1, 100, 4, N'SO51445', 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 (463, 747, 759, 754, 11088, 1, 100, 4, N'SO51445', 3, 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 (353, 747, 759, 754, 11107, 1, 6, 9, N'SO51447', 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, 747, 759, 754, 11107, 1, 6, 9, N'SO51447', 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, 747, 759, 754, 11107, 1, 6, 9, N'SO51447', 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 (353, 747, 759, 754, 11272, 1, 100, 4, N'SO51444', 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, 747, 759, 754, 11272, 1, 100, 4, N'SO51444', 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 (487, 747, 759, 754, 11272, 1, 100, 4, N'SO51444', 3, 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 (363, 747, 759, 754, 11452, 1, 6, 9, N'SO51450', 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 (483, 747, 759, 754, 11452, 1, 6, 9, N'SO51450', 2, 1, 1, 120.0000, 120.0000, 0, 0, 44.8800, 44.8800, 120.0000, 9.6000, 3.0000, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 747, 759, 754, 11739, 2, 19, 6, N'SO51443', 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, 747, 759, 754, 11739, 1, 19, 6, N'SO51443', 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, 747, 759, 754, 11739, 1, 19, 6, N'SO51443', 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 (359, 748, 760, 755, 11041, 1, 100, 4, N'SO51460', 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, 748, 760, 755, 11041, 1, 100, 4, N'SO51460', 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 (471, 748, 760, 755, 11041, 1, 100, 4, N'SO51460', 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 (363, 749, 761, 756, 11168, 1, 100, 4, N'SO51469', 1, 1, 1, 2294.9900, 2294.9900, 0, 0, 1251.9813, 1251.9813, 2294.9900, 183.5992, 57.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 (528, 749, 761, 756, 11168, 1, 100, 4, N'SO51469', 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, 749, 761, 756, 11168, 1, 100, 4, N'SO51469', 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, 749, 761, 756, 11168, 1, 100, 4, N'SO51469', 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 (480, 749, 761, 756, 11168, 1, 100, 4, N'SO51469', 5, 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, 749, 761, 756, 11259, 1, 100, 1, N'SO51468', 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 (483, 749, 761, 756, 11259, 1, 100, 1, N'SO51468', 2, 1, 1, 120.0000, 120.0000, 0, 0, 44.8800, 44.8800, 120.0000, 9.6000, 3.0000, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 750, 762, 757, 11001, 1, 6, 9, N'SO51493', 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, 750, 762, 757, 11001, 1, 6, 9, N'SO51493', 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, 750, 762, 757, 11001, 1, 6, 9, N'SO51493', 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, 750, 762, 757, 11001, 1, 6, 9, N'SO51493', 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 (491, 750, 762, 757, 11001, 1, 6, 9, N'SO51493', 5, 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 (225, 750, 762, 757, 11001, 1, 6, 9, N'SO51493', 6, 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, 750, 762, 757, 11018, 2, 6, 9, N'SO51492', 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, 750, 762, 757, 11018, 1, 6, 9, N'SO51492', 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, 750, 762, 757, 11075, 2, 6, 9, N'SO51491', 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, 750, 762, 757, 11171, 1, 100, 4, N'SO51490', 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, 750, 762, 757, 11171, 1, 100, 4, N'SO51490', 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, 750, 762, 757, 11171, 1, 100, 4, N'SO51490', 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, 750, 762, 757, 11171, 1, 100, 4, N'SO51490', 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 (359, 750, 762, 757, 11289, 1, 100, 4, N'SO51489', 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, 750, 762, 757, 11289, 1, 100, 4, N'SO51489', 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, 750, 762, 757, 11289, 2, 100, 4, N'SO51489', 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 (484, 750, 762, 757, 11289, 1, 100, 4, N'SO51489', 4, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 750, 762, 757, 11484, 1, 100, 8, N'SO51482', 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, 750, 762, 757, 11484, 1, 100, 8, N'SO51482', 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 (217, 750, 762, 757, 11484, 1, 100, 8, N'SO51482', 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, 751, 763, 758, 11053, 1, 100, 4, N'SO51505', 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, 751, 763, 758, 11053, 1, 100, 4, N'SO51505', 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 (585, 751, 763, 758, 11616, 1, 98, 10, N'SO51506', 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 (541, 751, 763, 758, 11616, 1, 98, 10, N'SO51506', 2, 1, 1, 28.9900, 28.9900, 0, 0, 10.8423, 10.8423, 28.9900, 2.3192, 0.7248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (530, 751, 763, 758, 11616, 1, 98, 10, N'SO51506', 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 (484, 751, 763, 758, 11616, 1, 98, 10, N'SO51506', 4, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 752, 764, 759, 11000, 2, 6, 9, N'SO51522', 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, 752, 764, 759, 11000, 1, 6, 9, N'SO51522', 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 (353, 752, 764, 759, 11015, 2, 100, 4, N'SO51520', 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, 752, 764, 759, 11015, 1, 100, 4, N'SO51520', 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 (486, 752, 764, 759, 11015, 1, 100, 4, N'SO51520', 3, 1, 1, 159.0000, 159.0000, 0, 0, 59.4660, 59.4660, 159.0000, 12.7200, 3.9750, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 752, 764, 759, 11237, 2, 100, 8, N'SO51516', 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 (353, 752, 764, 759, 11403, 1, 100, 7, N'SO51512', 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, 752, 764, 759, 11403, 1, 100, 7, N'SO51512', 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, 752, 764, 759, 11403, 1, 100, 7, N'SO51512', 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, 752, 764, 759, 11403, 1, 100, 7, N'SO51512', 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 (489, 752, 764, 759, 11403, 1, 100, 7, N'SO51512', 5, 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 (353, 753, 765, 760, 11158, 2, 100, 4, N'SO51534', 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, 753, 765, 760, 11158, 1, 100, 4, N'SO51534', 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 (489, 753, 765, 760, 11158, 1, 100, 4, N'SO51534', 3, 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, 753, 765, 760, 11291, 2, 100, 4, N'SO51533', 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 (353, 753, 765, 760, 11337, 2, 98, 10, N'SO51531', 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, 753, 765, 760, 11337, 1, 98, 10, N'SO51531', 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, 753, 765, 760, 11337, 1, 98, 10, N'SO51531', 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 (490, 753, 765, 760, 11337, 1, 98, 10, N'SO51531', 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 (359, 754, 766, 761, 11009, 1, 6, 9, N'SO51562', 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, 754, 766, 761, 11009, 1, 6, 9, N'SO51562', 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 (353, 754, 766, 761, 11022, 1, 100, 1, N'SO51556', 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, 754, 766, 761, 11022, 1, 100, 1, N'SO51556', 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, 754, 766, 761, 11025, 1, 6, 9, N'SO51561', 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, 754, 766, 761, 11025, 1, 6, 9, N'SO51561', 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, 754, 766, 761, 11025, 1, 6, 9, N'SO51561', 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 (361, 754, 766, 761, 11037, 1, 19, 6, N'SO51555', 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, 754, 766, 761, 11037, 1, 19, 6, N'SO51555', 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, 754, 766, 761, 11037, 1, 19, 6, N'SO51555', 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 (485, 754, 766, 761, 11037, 1, 19, 6, N'SO51555', 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 (477, 754, 766, 761, 11037, 1, 19, 6, N'SO51555', 5, 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, 754, 766, 761, 11037, 1, 19, 6, N'SO51555', 6, 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, 754, 766, 761, 11037, 2, 19, 6, N'SO51555', 7, 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 (355, 754, 766, 761, 11244, 1, 98, 10, N'SO51544', 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, 754, 766, 761, 11244, 1, 98, 10, N'SO51544', 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, 754, 766, 761, 11266, 1, 100, 1, N'SO51554', 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, 754, 766, 761, 11266, 1, 100, 1, N'SO51554', 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, 754, 766, 761, 11266, 1, 100, 1, N'SO51554', 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, 754, 766, 761, 11266, 1, 100, 1, N'SO51554', 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 (363, 754, 766, 761, 11286, 1, 100, 4, N'SO51553', 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, 754, 766, 761, 11286, 1, 100, 4, N'SO51553', 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 (234, 754, 766, 761, 11286, 1, 100, 4, N'SO51553', 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, 754, 766, 761, 11286, 1, 100, 4, N'SO51553', 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, 754, 766, 761, 11387, 1, 98, 10, N'SO51550', 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 (214, 754, 766, 761, 11387, 1, 98, 10, N'SO51550', 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 (361, 755, 767, 762, 11007, 1, 6, 9, N'SO51581', 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, 755, 767, 762, 11007, 1, 6, 9, N'SO51581', 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, 755, 767, 762, 11007, 1, 6, 9, N'SO51581', 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, 755, 767, 762, 11007, 1, 6, 9, N'SO51581', 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 (222, 755, 767, 762, 11007, 1, 6, 9, N'SO51581', 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 (355, 755, 767, 762, 11042, 1, 100, 4, N'SO51577', 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 (363, 755, 767, 762, 11052, 1, 6, 9, N'SO51582', 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, 755, 767, 762, 11052, 1, 6, 9, N'SO51582', 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, 755, 767, 762, 11052, 1, 6, 9, N'SO51582', 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, 755, 767, 762, 11052, 1, 6, 9, N'SO51582', 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, 755, 767, 762, 11238, 1, 98, 10, N'SO51573', 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, 755, 767, 762, 11238, 1, 98, 10, N'SO51573', 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, 755, 767, 762, 11481, 2, 100, 8, N'SO51576', 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, 755, 767, 762, 11481, 1, 100, 8, N'SO51576', 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 (355, 756, 768, 763, 11004, 1, 6, 9, N'SO51595', 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, 756, 768, 763, 11004, 1, 6, 9, N'SO51595', 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 (214, 756, 768, 763, 11004, 1, 6, 9, N'SO51595', 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 (357, 756, 768, 763, 11036, 1, 100, 4, N'SO51593', 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 (217, 756, 768, 763, 11036, 1, 100, 4, N'SO51593', 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, 756, 768, 763, 11082, 1, 100, 4, N'SO51592', 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, 756, 768, 763, 11082, 1, 100, 4, N'SO51592', 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 (359, 756, 768, 763, 11104, 1, 6, 9, N'SO51594', 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, 756, 768, 763, 11104, 1, 6, 9, N'SO51594', 2, 1, 1, 35.0000, 35.0000, 0, 0, 13.0900, 13.0900, 35.0000, 2.8000, 0.8750, 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 (528, 756, 768, 763, 11104, 1, 6, 9, N'SO51594', 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, 756, 768, 763, 11175, 2, 100, 4, N'SO51591', 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, 756, 768, 763, 11175, 1, 100, 4, N'SO51591', 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 (355, 756, 768, 763, 11271, 1, 100, 4, N'SO51590', 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, 756, 768, 763, 11271, 1, 100, 4, N'SO51590', 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, 756, 768, 763, 11271, 1, 100, 4, N'SO51590', 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 (214, 756, 768, 763, 11271, 1, 100, 4, N'SO51590', 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 (359, 756, 768, 763, 11401, 1, 100, 7, N'SO51589', 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 (487, 756, 768, 763, 11401, 1, 100, 7, N'SO51589', 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 (467, 756, 768, 763, 11401, 2, 100, 7, N'SO51589', 3, 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 (575, 756, 768, 763, 11439, 1, 100, 7, N'SO51602', 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 (214, 756, 768, 763, 11439, 1, 100, 7, N'SO51602', 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 (355, 756, 768, 763, 11453, 1, 6, 9, N'SO51597', 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, 756, 768, 763, 11453, 1, 6, 9, N'SO51597', 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 (484, 756, 768, 763, 11453, 1, 6, 9, N'SO51597', 3, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 757, 769, 764, 11005, 1, 6, 9, N'SO51612', 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, 757, 769, 764, 11005, 1, 6, 9, N'SO51612', 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, 757, 769, 764, 11005, 1, 6, 9, N'SO51612', 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 (480, 757, 769, 764, 11005, 1, 6, 9, N'SO51612', 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 (363, 757, 769, 764, 11021, 1, 100, 1, N'SO51610', 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, 757, 769, 764, 11021, 1, 100, 1, N'SO51610', 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 (487, 757, 769, 764, 11021, 1, 100, 1, N'SO51610', 3, 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 (355, 757, 769, 764, 11246, 1, 100, 8, N'SO51604', 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, 757, 769, 764, 11246, 1, 100, 8, N'SO51604', 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 (355, 758, 770, 765, 11444, 1, 6, 9, N'SO51629', 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, 758, 770, 765, 11444, 1, 6, 9, N'SO51629', 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, 758, 770, 765, 11444, 1, 6, 9, N'SO51629', 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 (361, 759, 771, 766, 11011, 1, 6, 9, N'SO51650', 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, 759, 771, 766, 11064, 1, 100, 4, N'SO51646', 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, 759, 771, 766, 11064, 1, 100, 4, N'SO51646', 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 (357, 759, 771, 766, 11077, 2, 6, 9, N'SO51651', 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, 759, 771, 766, 11077, 1, 6, 9, N'SO51651', 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 (359, 759, 771, 766, 11124, 1, 6, 9, N'SO51649', 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, 759, 771, 766, 11124, 1, 6, 9, N'SO51649', 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, 759, 771, 766, 11124, 1, 6, 9, N'SO51649', 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, 759, 771, 766, 11144, 2, 100, 1, N'SO51647', 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 (487, 759, 771, 766, 11144, 1, 100, 1, N'SO51647', 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 (237, 759, 771, 766, 11144, 2, 100, 1, N'SO51647', 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 (363, 759, 771, 766, 11145, 1, 100, 1, N'SO51648', 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, 759, 771, 766, 11145, 1, 100, 1, N'SO51648', 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, 759, 771, 766, 11145, 1, 100, 1, N'SO51648', 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 (359, 759, 771, 766, 11339, 1, 100, 7, N'SO51641', 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, 759, 771, 766, 11339, 1, 100, 7, N'SO51641', 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 (353, 759, 771, 766, 11450, 1, 6, 9, N'SO51652', 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, 759, 771, 766, 11450, 1, 6, 9, N'SO51652', 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, 759, 771, 766, 11450, 1, 6, 9, N'SO51652', 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, 759, 771, 766, 11450, 1, 6, 9, N'SO51652', 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 (484, 759, 771, 766, 11450, 1, 6, 9, N'SO51652', 5, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 760, 772, 767, 11069, 2, 6, 9, N'SO51667', 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 (353, 760, 772, 767, 11101, 2, 6, 9, N'SO51668', 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 (483, 760, 772, 767, 11101, 1, 6, 9, N'SO51668', 2, 1, 1, 120.0000, 120.0000, 0, 0, 44.8800, 44.8800, 120.0000, 9.6000, 3.0000, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 760, 772, 767, 11252, 2, 100, 4, N'SO51665', 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, 760, 772, 767, 11252, 1, 100, 4, N'SO51665', 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 (357, 761, 773, 768, 11057, 2, 6, 9, N'SO51682', 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 (361, 761, 773, 768, 11090, 1, 100, 4, N'SO51679', 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 (487, 761, 773, 768, 11090, 1, 100, 4, N'SO51679', 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 (463, 761, 773, 768, 11090, 1, 100, 4, N'SO51679', 3, 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 (359, 761, 773, 768, 11095, 1, 6, 9, N'SO51683', 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, 761, 773, 768, 11095, 1, 6, 9, N'SO51683', 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, 761, 773, 768, 11095, 1, 6, 9, N'SO51683', 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 (489, 761, 773, 768, 11095, 1, 6, 9, N'SO51683', 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, 761, 773, 768, 11224, 1, 100, 1, N'SO51678', 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, 761, 773, 768, 11224, 1, 100, 1, N'SO51678', 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 (355, 761, 773, 768, 11290, 1, 100, 4, N'SO51677', 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 (214, 761, 773, 768, 11290, 1, 100, 4, N'SO51677', 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, 761, 773, 768, 11451, 1, 6, 9, N'SO51684', 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, 761, 773, 768, 11451, 1, 6, 9, N'SO51684', 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, 761, 773, 768, 11451, 1, 6, 9, N'SO51684', 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, 761, 773, 768, 11451, 1, 6, 9, N'SO51684', 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 (217, 761, 773, 768, 11451, 1, 6, 9, N'SO51684', 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 (357, 762, 774, 769, 11409, 1, 100, 7, N'SO51877', 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, 762, 774, 769, 11409, 1, 100, 7, N'SO51877', 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, 762, 774, 769, 11409, 1, 100, 7, N'SO51877', 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 (214, 762, 774, 769, 11409, 1, 100, 7, N'SO51877', 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, 762, 774, 769, 11468, 2, 98, 10, N'SO51878', 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 (488, 762, 774, 769, 11530, 1, 19, 6, N'SO51887', 1, 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 (465, 762, 774, 769, 11530, 1, 19, 6, N'SO51887', 2, 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 (530, 762, 774, 769, 11566, 1, 100, 7, N'SO51909', 1, 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 (234, 762, 774, 769, 11566, 1, 100, 7, N'SO51909', 2, 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 (359, 762, 774, 769, 11693, 1, 19, 6, N'SO51916', 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, 762, 774, 769, 11746, 1, 100, 1, N'SO51911', 1, 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, 762, 774, 769, 11746, 1, 100, 1, N'SO51911', 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 (480, 762, 774, 769, 11746, 1, 100, 1, N'SO51911', 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 (479, 763, 775, 770, 11091, 1, 19, 6, N'SO51925', 1, 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, 763, 775, 770, 11091, 1, 19, 6, N'SO51925', 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, 763, 775, 770, 11223, 1, 19, 6, N'SO51942', 1, 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, 763, 775, 770, 11223, 1, 19, 6, N'SO51942', 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 (529, 763, 775, 770, 11276, 1, 19, 6, N'SO51933', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (539, 763, 775, 770, 11276, 1, 19, 6, N'SO51933', 2, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 763, 775, 770, 11276, 1, 19, 6, N'SO51933', 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 (540, 763, 775, 770, 11287, 1, 19, 6, N'SO51936', 1, 1, 1, 32.6000, 32.6000, 0, 0, 12.1924, 12.1924, 32.6000, 2.6080, 0.8150, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 763, 775, 770, 11287, 1, 19, 6, N'SO51936', 2, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 763, 775, 770, 11287, 1, 19, 6, N'SO51936', 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 (463, 763, 775, 770, 11287, 1, 19, 6, N'SO51936', 4, 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 (359, 763, 775, 770, 11296, 1, 100, 1, N'SO51959', 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, 763, 775, 770, 11296, 1, 100, 1, N'SO51959', 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, 763, 775, 770, 11296, 1, 100, 1, N'SO51959', 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 (355, 763, 775, 770, 11420, 1, 100, 7, N'SO51923', 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, 763, 775, 770, 11420, 1, 100, 7, N'SO51923', 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, 763, 775, 770, 11420, 1, 100, 7, N'SO51923', 3, 1, 1, 34.9900, 34.9900, 0, 0, 13.0863, 13.0863, 34.9900, 2.7992, 0.8748, 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 (476, 764, 776, 771, 11212, 1, 19, 6, N'SO51991', 1, 1, 1, 69.9900, 69.9900, 0, 0, 26.1763, 26.1763, 69.9900, 5.5992, 1.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (231, 764, 776, 771, 11212, 1, 19, 6, N'SO51991', 2, 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 (363, 764, 776, 771, 11323, 1, 100, 4, N'SO52010', 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, 764, 776, 771, 11323, 1, 100, 4, N'SO52010', 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, 764, 776, 771, 11323, 1, 100, 4, N'SO52010', 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, 764, 776, 771, 11323, 1, 100, 4, N'SO52010', 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 (486, 764, 776, 771, 11323, 1, 100, 4, N'SO52010', 5, 1, 1, 159.0000, 159.0000, 0, 0, 59.4660, 59.4660, 159.0000, 12.7200, 3.9750, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (490, 764, 776, 771, 11502, 1, 19, 6, N'SO51980', 1, 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 (537, 764, 776, 771, 11632, 1, 19, 6, N'SO52002', 1, 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, 764, 776, 771, 11632, 1, 19, 6, N'SO52002', 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 (485, 764, 776, 771, 11632, 1, 19, 6, N'SO52002', 3, 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, 764, 776, 771, 11632, 1, 19, 6, N'SO52002', 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 (477, 764, 776, 771, 11632, 1, 19, 6, N'SO52002', 5, 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 (538, 764, 776, 771, 11641, 1, 19, 6, N'SO51983', 1, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (490, 764, 776, 771, 11673, 1, 100, 1, N'SO51981', 1, 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 (463, 764, 776, 771, 11763, 1, 6, 9, N'SO51975', 1, 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 (363, 764, 776, 771, 11818, 1, 100, 4, N'SO52008', 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, 764, 776, 771, 11818, 1, 100, 4, N'SO52008', 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 (231, 764, 776, 771, 11818, 1, 100, 4, N'SO52008', 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 (482, 764, 776, 771, 11818, 1, 100, 4, N'SO52008', 4, 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 (361, 764, 776, 771, 11830, 1, 100, 4, N'SO52009', 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, 764, 776, 771, 11830, 1, 100, 4, N'SO52009', 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, 764, 776, 771, 11830, 1, 100, 4, N'SO52009', 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 (484, 765, 777, 772, 11125, 1, 6, 9, N'SO52030', 1, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 765, 777, 772, 11207, 1, 100, 1, N'SO52054', 1, 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, 765, 777, 772, 11207, 1, 100, 1, N'SO52054', 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 (222, 765, 777, 772, 11207, 1, 100, 1, N'SO52054', 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 (225, 765, 777, 772, 11300, 1, 19, 6, N'SO52035', 1, 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 (540, 765, 777, 772, 11300, 1, 19, 6, N'SO52035', 2, 1, 1, 32.6000, 32.6000, 0, 0, 12.1924, 12.1924, 32.6000, 2.6080, 0.8150, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 765, 777, 772, 11325, 1, 100, 1, N'SO52058', 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, 765, 777, 772, 11325, 1, 100, 1, N'SO52058', 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, 765, 777, 772, 11325, 1, 100, 1, N'SO52058', 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, 765, 777, 772, 11325, 1, 100, 1, N'SO52058', 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 (487, 765, 777, 772, 11325, 1, 100, 1, N'SO52058', 5, 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 (489, 765, 777, 772, 11325, 1, 100, 1, N'SO52058', 6, 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 (361, 765, 777, 772, 11344, 1, 98, 10, N'SO52020', 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, 765, 777, 772, 11344, 1, 98, 10, N'SO52020', 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 (355, 765, 777, 772, 11488, 1, 98, 10, N'SO52022', 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, 765, 777, 772, 11488, 1, 98, 10, N'SO52022', 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 (222, 765, 777, 772, 11500, 1, 19, 6, N'SO52023', 1, 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 (537, 765, 777, 772, 11723, 1, 19, 6, N'SO52053', 1, 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, 765, 777, 772, 11723, 1, 19, 6, N'SO52053', 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, 766, 778, 773, 11113, 1, 6, 9, N'SO52072', 1, 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, 766, 778, 773, 11113, 1, 6, 9, N'SO52072', 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 (217, 766, 778, 773, 11113, 1, 6, 9, N'SO52072', 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 (530, 766, 778, 773, 11211, 1, 19, 6, N'SO52074', 1, 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, 766, 778, 773, 11211, 1, 19, 6, N'SO52074', 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 (467, 766, 778, 773, 11211, 1, 19, 6, N'SO52074', 3, 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 (536, 766, 778, 773, 11300, 1, 19, 6, N'SO52083', 1, 1, 1, 29.9900, 29.9900, 0, 0, 11.2163, 11.2163, 29.9900, 2.3992, 0.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 766, 778, 773, 11300, 2, 19, 6, N'SO52083', 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, 766, 778, 773, 11327, 1, 100, 4, N'SO52104', 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, 766, 778, 773, 11327, 1, 100, 4, N'SO52104', 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, 766, 778, 773, 11327, 1, 100, 4, N'SO52104', 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 (480, 766, 778, 773, 11327, 1, 100, 4, N'SO52104', 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 (361, 766, 778, 773, 11522, 1, 100, 1, N'SO52105', 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, 766, 778, 773, 11522, 1, 100, 1, N'SO52105', 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, 766, 778, 773, 11522, 1, 100, 1, N'SO52105', 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 (540, 767, 779, 774, 11176, 1, 19, 6, N'SO52127', 1, 1, 1, 32.6000, 32.6000, 0, 0, 12.1924, 12.1924, 32.6000, 2.6080, 0.8150, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 767, 779, 774, 11176, 1, 19, 6, N'SO52127', 2, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 767, 779, 774, 11176, 1, 19, 6, N'SO52127', 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 (214, 767, 779, 774, 11277, 1, 19, 6, N'SO52113', 1, 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, 767, 779, 774, 11302, 2, 100, 1, N'SO52147', 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, 767, 779, 774, 11302, 1, 100, 1, N'SO52147', 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 (485, 767, 779, 774, 11302, 1, 100, 1, N'SO52147', 3, 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 (484, 767, 779, 774, 11302, 1, 100, 1, N'SO52147', 4, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 767, 779, 774, 11394, 1, 98, 10, N'SO52108', 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, 767, 779, 774, 11394, 1, 98, 10, N'SO52108', 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, 767, 779, 774, 11394, 1, 98, 10, N'SO52108', 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 (484, 767, 779, 774, 11394, 1, 98, 10, N'SO52108', 4, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 767, 779, 774, 11416, 1, 100, 7, N'SO52109', 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, 767, 779, 774, 11416, 1, 100, 7, N'SO52109', 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, 767, 779, 774, 11496, 1, 98, 10, N'SO52112', 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, 767, 779, 774, 11496, 1, 98, 10, N'SO52112', 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 (214, 767, 779, 774, 11496, 1, 98, 10, N'SO52112', 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 (225, 767, 779, 774, 11496, 1, 98, 10, N'SO52112', 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 (237, 767, 779, 774, 11496, 1, 98, 10, N'SO52112', 5, 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 (363, 767, 779, 774, 11547, 1, 100, 7, N'SO52111', 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, 767, 779, 774, 11547, 1, 100, 7, N'SO52111', 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 (488, 767, 779, 774, 11700, 1, 100, 4, N'SO52122', 1, 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 (225, 767, 779, 774, 11700, 1, 100, 4, N'SO52122', 2, 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 (535, 767, 779, 774, 11738, 1, 19, 6, N'SO52125', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 767, 779, 774, 11738, 1, 19, 6, N'SO52125', 2, 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 (537, 767, 779, 774, 11868, 1, 19, 6, N'SO52144', 1, 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, 767, 779, 774, 11868, 1, 19, 6, N'SO52144', 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 (485, 767, 779, 774, 11868, 1, 19, 6, N'SO52144', 3, 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 (353, 768, 780, 775, 11056, 1, 6, 9, N'SO52207', 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, 768, 780, 775, 11056, 1, 6, 9, N'SO52207', 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, 768, 780, 775, 11056, 1, 6, 9, N'SO52207', 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 (489, 768, 780, 775, 11056, 1, 6, 9, N'SO52207', 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 (463, 768, 780, 775, 11056, 1, 6, 9, N'SO52207', 5, 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 (535, 768, 780, 775, 11119, 1, 6, 9, N'SO52164', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 768, 780, 775, 11119, 1, 6, 9, N'SO52164', 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 (484, 768, 780, 775, 11119, 1, 6, 9, N'SO52164', 3, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 768, 780, 775, 11380, 1, 100, 8, N'SO52162', 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, 768, 780, 775, 11380, 1, 100, 8, N'SO52162', 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, 768, 780, 775, 11380, 1, 100, 8, N'SO52162', 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 (484, 768, 780, 775, 11380, 1, 100, 8, N'SO52162', 4, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (483, 768, 780, 775, 11380, 1, 100, 8, N'SO52162', 5, 1, 1, 120.0000, 120.0000, 0, 0, 44.8800, 44.8800, 120.0000, 9.6000, 3.0000, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 768, 780, 775, 11381, 1, 98, 10, N'SO52161', 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, 768, 780, 775, 11381, 1, 98, 10, N'SO52161', 2, 1, 1, 21.9800, 21.9800, 0, 0, 8.2205, 8.2205, 21.9800, 1.7584, 0.5495, 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 (363, 768, 780, 775, 11422, 2, 98, 10, N'SO52160', 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, 768, 780, 775, 11422, 1, 98, 10, N'SO52160', 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, 768, 780, 775, 11422, 1, 98, 10, N'SO52160', 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 (357, 768, 780, 775, 11526, 1, 19, 6, N'SO52202', 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, 768, 780, 775, 11526, 1, 19, 6, N'SO52202', 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, 768, 780, 775, 11526, 1, 19, 6, N'SO52202', 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 (489, 768, 780, 775, 11632, 1, 19, 6, N'SO52169', 1, 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 (214, 768, 780, 775, 11978, 1, 100, 4, N'SO52163', 1, 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 (578, 768, 780, 775, 11996, 1, 6, 9, N'SO52159', 1, 1, 1, 1214.8500, 1214.8500, 0, 0, 755.1508, 755.1508, 1214.8500, 97.1880, 30.3713, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 768, 780, 775, 11996, 1, 6, 9, N'SO52159', 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, 768, 780, 775, 11996, 1, 6, 9, N'SO52159', 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 (487, 768, 780, 775, 11996, 1, 6, 9, N'SO52159', 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 (484, 768, 780, 775, 11996, 1, 6, 9, N'SO52159', 5, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 769, 781, 776, 11055, 1, 6, 9, N'SO52271', 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, 769, 781, 776, 11055, 1, 6, 9, N'SO52271', 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, 769, 781, 776, 11055, 1, 6, 9, N'SO52271', 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 (217, 769, 781, 776, 11055, 1, 6, 9, N'SO52271', 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 (359, 769, 781, 776, 11410, 1, 100, 7, N'SO52213', 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, 769, 781, 776, 11410, 1, 100, 7, N'SO52213', 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 (214, 769, 781, 776, 11410, 1, 100, 7, N'SO52213', 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 (234, 769, 781, 776, 11410, 1, 100, 7, N'SO52213', 4, 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 (357, 769, 781, 776, 11483, 1, 100, 7, N'SO52214', 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 (214, 769, 781, 776, 11483, 1, 100, 7, N'SO52214', 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 (353, 769, 781, 776, 11529, 1, 100, 1, N'SO52267', 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, 769, 781, 776, 11529, 1, 100, 1, N'SO52267', 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, 769, 781, 776, 11529, 1, 100, 1, N'SO52267', 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 (225, 769, 781, 776, 11529, 1, 100, 1, N'SO52267', 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 (477, 769, 781, 776, 11529, 1, 100, 1, N'SO52267', 5, 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 (540, 769, 781, 776, 11712, 1, 19, 6, N'SO52231', 1, 1, 1, 32.6000, 32.6000, 0, 0, 12.1924, 12.1924, 32.6000, 2.6080, 0.8150, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 769, 781, 776, 11793, 1, 100, 4, N'SO52262', 1, 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, 769, 781, 776, 11793, 1, 100, 4, N'SO52262', 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, 769, 781, 776, 11793, 1, 100, 4, N'SO52262', 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 (357, 769, 781, 776, 11885, 1, 100, 4, N'SO52266', 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, 769, 781, 776, 11885, 1, 100, 4, N'SO52266', 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 (591, 769, 781, 776, 11947, 1, 6, 9, N'SO52270', 1, 1, 1, 564.9900, 564.9900, 0, 0, 308.2179, 308.2179, 564.9900, 45.1992, 14.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 (535, 769, 781, 776, 11947, 1, 6, 9, N'SO52270', 2, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 769, 781, 776, 11947, 1, 6, 9, N'SO52270', 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 (217, 769, 781, 776, 11947, 1, 6, 9, N'SO52270', 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 (535, 770, 782, 777, 11146, 1, 6, 9, N'SO52286', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 770, 782, 777, 11146, 1, 6, 9, N'SO52286', 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 (477, 770, 782, 777, 11146, 1, 6, 9, N'SO52286', 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, 770, 782, 777, 11146, 1, 6, 9, N'SO52286', 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 (225, 770, 782, 777, 11146, 1, 6, 9, N'SO52286', 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 (361, 770, 782, 777, 11189, 1, 100, 1, N'SO52321', 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, 770, 782, 777, 11189, 1, 100, 1, N'SO52321', 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, 770, 782, 777, 11189, 1, 100, 1, N'SO52321', 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, 770, 782, 777, 11189, 1, 100, 1, N'SO52321', 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 (482, 770, 782, 777, 11189, 1, 100, 1, N'SO52321', 5, 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 (529, 770, 782, 777, 11198, 1, 100, 4, N'SO52298', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 770, 782, 777, 11198, 1, 100, 4, N'SO52298', 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 (463, 770, 782, 777, 11198, 1, 100, 4, N'SO52298', 3, 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 (530, 770, 782, 777, 11212, 1, 19, 6, N'SO52299', 1, 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, 770, 782, 777, 11216, 1, 100, 1, N'SO52322', 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, 770, 782, 777, 11216, 1, 100, 1, N'SO52322', 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, 770, 782, 777, 11216, 1, 100, 1, N'SO52322', 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, 770, 782, 777, 11216, 1, 100, 1, N'SO52322', 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 (528, 770, 782, 777, 11260, 1, 100, 4, N'SO52314', 1, 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, 770, 782, 777, 11260, 1, 100, 4, N'SO52314', 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 (480, 770, 782, 777, 11260, 1, 100, 4, N'SO52314', 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 (361, 770, 782, 777, 11324, 1, 100, 4, N'SO52319', 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, 770, 782, 777, 11324, 1, 100, 4, N'SO52319', 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 (237, 770, 782, 777, 11324, 1, 100, 4, N'SO52319', 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 (477, 770, 782, 777, 11350, 1, 98, 10, N'SO52317', 1, 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 (479, 770, 782, 777, 11350, 1, 98, 10, N'SO52317', 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 (465, 770, 782, 777, 11350, 1, 98, 10, N'SO52317', 3, 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 (217, 770, 782, 777, 11438, 1, 100, 8, N'SO52316', 1, 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, 770, 782, 777, 11494, 1, 98, 10, N'SO52282', 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, 770, 782, 777, 11494, 1, 98, 10, N'SO52282', 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 (541, 770, 782, 777, 11566, 1, 100, 7, N'SO52309', 1, 1, 1, 28.9900, 28.9900, 0, 0, 10.8423, 10.8423, 28.9900, 2.3192, 0.7248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (530, 770, 782, 777, 11566, 1, 100, 7, N'SO52309', 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 (480, 770, 782, 777, 11566, 2, 100, 7, N'SO52309', 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 (486, 770, 782, 777, 11566, 1, 100, 7, N'SO52309', 4, 1, 1, 159.0000, 159.0000, 0, 0, 59.4660, 59.4660, 159.0000, 12.7200, 3.9750, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 770, 782, 777, 11678, 1, 100, 1, N'SO52320', 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, 770, 782, 777, 11678, 1, 100, 1, N'SO52320', 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 (540, 770, 782, 777, 11724, 1, 19, 6, N'SO52302', 1, 1, 1, 32.6000, 32.6000, 0, 0, 12.1924, 12.1924, 32.6000, 2.6080, 0.8150, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 770, 782, 777, 11724, 1, 19, 6, N'SO52302', 2, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 770, 782, 777, 11724, 1, 19, 6, N'SO52302', 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 (480, 771, 783, 778, 11284, 1, 100, 4, N'SO52335', 1, 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 (484, 771, 783, 778, 11284, 1, 100, 4, N'SO52335', 2, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 771, 783, 778, 11480, 1, 100, 7, N'SO52329', 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, 771, 783, 778, 11480, 1, 100, 7, N'SO52329', 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, 771, 783, 778, 11480, 1, 100, 7, N'SO52329', 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 (540, 772, 784, 779, 11200, 1, 19, 6, N'SO52380', 1, 1, 1, 32.6000, 32.6000, 0, 0, 12.1924, 12.1924, 32.6000, 2.6080, 0.8150, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 772, 784, 779, 11200, 1, 19, 6, N'SO52380', 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 (486, 772, 784, 779, 11200, 1, 19, 6, N'SO52380', 3, 1, 1, 159.0000, 159.0000, 0, 0, 59.4660, 59.4660, 159.0000, 12.7200, 3.9750, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 772, 784, 779, 11331, 1, 19, 6, N'SO52386', 1, 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, 772, 784, 779, 11331, 1, 19, 6, N'SO52386', 2, 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 (480, 772, 784, 779, 11527, 1, 100, 4, N'SO52371', 1, 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 (225, 772, 784, 779, 11631, 1, 19, 6, N'SO52374', 1, 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 (529, 772, 784, 779, 11631, 1, 19, 6, N'SO52375', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (484, 772, 784, 779, 11631, 1, 19, 6, N'SO52375', 2, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 772, 784, 779, 11666, 1, 100, 4, N'SO52396', 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, 772, 784, 779, 11666, 1, 100, 4, N'SO52396', 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, 772, 784, 779, 11666, 1, 100, 4, N'SO52396', 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 (214, 772, 784, 779, 11666, 1, 100, 4, N'SO52396', 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 (359, 772, 784, 779, 11683, 1, 100, 4, N'SO52397', 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, 772, 784, 779, 11683, 1, 100, 4, N'SO52397', 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, 772, 784, 779, 11683, 1, 100, 4, N'SO52397', 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 (225, 772, 784, 779, 11683, 1, 100, 4, N'SO52397', 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 (480, 772, 784, 779, 11711, 1, 19, 6, N'SO52377', 1, 1, 1, 2.2900, 2.2900, 0, 0, 0.8565, 0.8565, 2.2900, 0.1832, 0.0573, 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 (484, 772, 784, 779, 11711, 1, 19, 6, N'SO52377', 2, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (231, 772, 784, 779, 11843, 1, 100, 1, N'SO52376', 1, 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 (467, 772, 784, 779, 11843, 1, 100, 1, N'SO52376', 2, 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 (488, 773, 785, 780, 11091, 1, 19, 6, N'SO52420', 1, 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 (528, 773, 785, 780, 11212, 1, 19, 6, N'SO52446', 1, 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, 773, 785, 780, 11212, 1, 19, 6, N'SO52446', 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 (480, 773, 785, 780, 11212, 1, 19, 6, N'SO52446', 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 (537, 773, 785, 780, 11233, 1, 100, 4, N'SO52443', 1, 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, 773, 785, 780, 11233, 1, 100, 4, N'SO52443', 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, 773, 785, 780, 11233, 1, 100, 4, N'SO52443', 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 (231, 773, 785, 780, 11233, 1, 100, 4, N'SO52443', 4, 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, 773, 785, 780, 11233, 1, 100, 4, N'SO52443', 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 (529, 773, 785, 780, 11234, 1, 100, 4, N'SO52421', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 773, 785, 780, 11234, 1, 100, 4, N'SO52421', 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 (565, 773, 785, 780, 11243, 1, 98, 10, N'SO52454', 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 (479, 773, 785, 780, 11243, 1, 98, 10, N'SO52454', 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, 773, 785, 780, 11243, 1, 98, 10, N'SO52454', 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 (489, 773, 785, 780, 11243, 1, 98, 10, N'SO52454', 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 (361, 773, 785, 780, 11250, 1, 98, 10, N'SO52410', 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, 773, 785, 780, 11250, 1, 98, 10, N'SO52410', 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 (214, 773, 785, 780, 11250, 1, 98, 10, N'SO52410', 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 (539, 773, 785, 780, 11287, 1, 19, 6, N'SO52422', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 773, 785, 780, 11287, 1, 19, 6, N'SO52422', 2, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 773, 785, 780, 11287, 1, 19, 6, N'SO52422', 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 (484, 773, 785, 780, 11287, 1, 19, 6, N'SO52422', 4, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 773, 785, 780, 11307, 1, 100, 4, N'SO52452', 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, 773, 785, 780, 11307, 1, 100, 4, N'SO52452', 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 (214, 773, 785, 780, 11307, 1, 100, 4, N'SO52452', 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 (481, 773, 785, 780, 11307, 2, 100, 4, N'SO52452', 4, 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 (361, 773, 785, 780, 11412, 1, 100, 8, N'SO52409', 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, 773, 785, 780, 11412, 1, 100, 8, N'SO52409', 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, 773, 785, 780, 11412, 1, 100, 8, N'SO52409', 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, 773, 785, 780, 11412, 1, 100, 8, N'SO52409', 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 (217, 773, 785, 780, 11412, 1, 100, 8, N'SO52409', 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 (361, 773, 785, 780, 11457, 1, 6, 9, N'SO52458', 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, 773, 785, 780, 11457, 1, 6, 9, N'SO52458', 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, 773, 785, 780, 11457, 1, 6, 9, N'SO52458', 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 (234, 773, 785, 780, 11457, 1, 6, 9, N'SO52458', 4, 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 (363, 773, 785, 780, 11531, 1, 100, 4, N'SO52453', 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, 773, 785, 780, 11531, 1, 100, 4, N'SO52453', 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 (217, 773, 785, 780, 11619, 1, 19, 6, N'SO52419', 1, 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 (528, 773, 785, 780, 11620, 1, 100, 1, N'SO52445', 1, 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, 773, 785, 780, 11620, 1, 100, 1, N'SO52445', 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 (480, 773, 785, 780, 11620, 1, 100, 1, N'SO52445', 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 (537, 773, 785, 780, 11635, 1, 100, 4, N'SO52444', 1, 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, 773, 785, 780, 11635, 1, 100, 4, N'SO52444', 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, 773, 785, 780, 11637, 1, 100, 4, N'SO52448', 1, 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, 773, 785, 780, 11637, 1, 100, 4, N'SO52448', 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 (537, 773, 785, 780, 11691, 1, 100, 4, N'SO52447', 1, 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, 773, 785, 780, 11691, 1, 100, 4, N'SO52447', 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 (481, 773, 785, 780, 11691, 1, 100, 4, N'SO52447', 3, 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 (363, 774, 786, 781, 11016, 1, 100, 4, N'SO52512', 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, 774, 786, 781, 11016, 1, 100, 4, N'SO52512', 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 (480, 774, 786, 781, 11016, 1, 100, 4, N'SO52512', 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 (528, 774, 786, 781, 11113, 1, 6, 9, N'SO52474', 1, 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 (535, 774, 786, 781, 11113, 1, 6, 9, N'SO52474', 2, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 774, 786, 781, 11113, 1, 6, 9, N'SO52474', 3, 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, 774, 786, 781, 11176, 1, 19, 6, N'SO52472', 1, 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 (463, 774, 786, 781, 11176, 1, 19, 6, N'SO52472', 2, 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 (529, 774, 786, 781, 11223, 1, 19, 6, N'SO52483', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 774, 786, 781, 11223, 1, 19, 6, N'SO52483', 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 (214, 774, 786, 781, 11276, 1, 19, 6, N'SO52473', 1, 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 (539, 774, 786, 781, 11331, 1, 19, 6, N'SO52484', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 774, 786, 781, 11331, 1, 19, 6, N'SO52484', 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 (530, 774, 786, 781, 11331, 1, 19, 6, N'SO52487', 1, 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 (487, 774, 786, 781, 11331, 1, 19, 6, N'SO52487', 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, 774, 786, 781, 11406, 1, 100, 7, N'SO52469', 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, 774, 786, 781, 11406, 1, 100, 7, N'SO52469', 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, 774, 786, 781, 11406, 1, 100, 7, N'SO52469', 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, 774, 786, 781, 11406, 1, 100, 7, N'SO52469', 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, 774, 786, 781, 11406, 1, 100, 7, N'SO52469', 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 (357, 774, 786, 781, 11414, 1, 98, 10, N'SO52470', 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, 774, 786, 781, 11414, 1, 98, 10, N'SO52470', 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 (217, 774, 786, 781, 11414, 1, 98, 10, N'SO52470', 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 (225, 774, 786, 781, 11414, 1, 98, 10, N'SO52470', 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, 774, 786, 781, 11618, 1, 19, 6, N'SO52513', 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, 774, 786, 781, 11618, 1, 19, 6, N'SO52513', 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, 774, 786, 781, 11618, 1, 19, 6, N'SO52513', 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, 774, 786, 781, 11618, 1, 19, 6, N'SO52513', 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 (465, 774, 786, 781, 11642, 1, 19, 6, N'SO52488', 1, 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 (535, 774, 786, 781, 11642, 1, 19, 6, N'SO52488', 2, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 774, 786, 781, 11675, 2, 100, 1, N'SO52514', 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 (529, 774, 786, 781, 11820, 1, 19, 6, N'SO52485', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (538, 774, 786, 781, 11820, 1, 19, 6, N'SO52485', 2, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 774, 786, 781, 11820, 1, 19, 6, N'SO52485', 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 (597, 774, 786, 781, 11946, 1, 6, 9, N'SO52516', 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 (478, 774, 786, 781, 11946, 1, 6, 9, N'SO52516', 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, 774, 786, 781, 11946, 1, 6, 9, N'SO52516', 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 (479, 774, 786, 781, 11953, 1, 100, 1, N'SO52471', 1, 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, 774, 786, 781, 11953, 1, 100, 1, N'SO52471', 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 (225, 774, 786, 781, 11953, 1, 100, 1, N'SO52471', 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 (537, 775, 787, 782, 11065, 1, 100, 4, N'SO52558', 1, 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, 775, 787, 782, 11065, 1, 100, 4, N'SO52558', 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 (486, 775, 787, 782, 11065, 1, 100, 4, N'SO52558', 3, 1, 1, 159.0000, 159.0000, 0, 0, 59.4660, 59.4660, 159.0000, 12.7200, 3.9750, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (535, 775, 787, 782, 11115, 1, 6, 9, N'SO52526', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 775, 787, 782, 11115, 1, 6, 9, N'SO52526', 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 (538, 775, 787, 782, 11176, 1, 19, 6, N'SO52535', 1, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 775, 787, 782, 11176, 1, 19, 6, N'SO52535', 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 (535, 775, 787, 782, 11176, 1, 19, 6, N'SO52538', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 775, 787, 782, 11176, 1, 19, 6, N'SO52538', 2, 1, 1, 4.9900, 4.9900, 0, 0, 1.8663, 1.8663, 4.9900, 0.3992, 0.1248, 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 (237, 775, 787, 782, 11176, 2, 19, 6, N'SO52538', 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 (361, 775, 787, 782, 11227, 1, 100, 4, N'SO52566', 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, 775, 787, 782, 11227, 1, 100, 4, N'SO52566', 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, 775, 787, 782, 11227, 1, 100, 4, N'SO52566', 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, 775, 787, 782, 11227, 1, 100, 4, N'SO52566', 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 (528, 775, 787, 782, 11231, 1, 100, 1, N'SO52560', 1, 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, 775, 787, 782, 11231, 1, 100, 1, N'SO52560', 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 (485, 775, 787, 782, 11231, 1, 100, 1, N'SO52560', 3, 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 (355, 775, 787, 782, 11329, 1, 100, 4, N'SO52567', 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 (541, 775, 787, 782, 11404, 1, 100, 8, N'SO52556', 1, 1, 1, 28.9900, 28.9900, 0, 0, 10.8423, 10.8423, 28.9900, 2.3192, 0.7248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (530, 775, 787, 782, 11404, 1, 100, 8, N'SO52556', 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, 775, 787, 782, 11500, 1, 19, 6, N'SO52561', 1, 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, 775, 787, 782, 11500, 1, 19, 6, N'SO52561', 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 (217, 775, 787, 782, 11500, 1, 19, 6, N'SO52561', 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 (481, 775, 787, 782, 11500, 1, 19, 6, N'SO52561', 4, 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 (217, 775, 787, 782, 11793, 1, 100, 4, N'SO52524', 1, 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, 775, 787, 782, 11831, 1, 100, 4, N'SO52565', 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 (217, 775, 787, 782, 11831, 1, 100, 4, N'SO52565', 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 (529, 775, 787, 782, 11965, 1, 6, 9, N'SO52531', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (490, 775, 787, 782, 11965, 1, 6, 9, N'SO52531', 2, 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 (225, 775, 787, 782, 11965, 1, 6, 9, N'SO52531', 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 (535, 776, 788, 783, 11098, 1, 6, 9, N'SO52579', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 776, 788, 783, 11098, 1, 6, 9, N'SO52579', 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 (355, 776, 788, 783, 11346, 1, 100, 7, N'SO52577', 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, 776, 788, 783, 11346, 1, 100, 7, N'SO52577', 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, 776, 788, 783, 11346, 1, 100, 7, N'SO52577', 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 (217, 776, 788, 783, 11346, 1, 100, 7, N'SO52577', 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 (228, 776, 788, 783, 11346, 1, 100, 7, N'SO52577', 5, 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 (482, 776, 788, 783, 11346, 1, 100, 7, N'SO52577', 6, 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 (529, 776, 788, 783, 11581, 1, 100, 7, N'SO52605', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 776, 788, 783, 11581, 1, 100, 7, N'SO52605', 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 (217, 776, 788, 783, 11961, 1, 100, 4, N'SO52578', 1, 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 (529, 777, 789, 784, 11019, 1, 19, 6, N'SO52626', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (539, 777, 789, 784, 11019, 1, 19, 6, N'SO52626', 2, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (482, 777, 789, 784, 11019, 1, 19, 6, N'SO52626', 3, 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 (537, 777, 789, 784, 11081, 1, 100, 4, N'SO52649', 1, 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, 777, 789, 784, 11081, 1, 100, 4, N'SO52649', 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 (477, 777, 789, 784, 11330, 1, 19, 6, N'SO52634', 1, 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, 777, 789, 784, 11330, 1, 19, 6, N'SO52634', 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 (357, 777, 789, 784, 11432, 1, 100, 7, N'SO52615', 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, 777, 789, 784, 11432, 1, 100, 7, N'SO52615', 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 (353, 777, 789, 784, 11485, 1, 98, 10, N'SO52616', 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, 777, 789, 784, 11485, 1, 98, 10, N'SO52616', 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, 777, 789, 784, 11485, 1, 98, 10, N'SO52616', 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 (473, 777, 789, 784, 11485, 1, 98, 10, N'SO52616', 4, 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 (537, 777, 789, 784, 11724, 1, 19, 6, N'SO52650', 1, 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, 777, 789, 784, 11724, 1, 19, 6, N'SO52650', 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 (480, 777, 789, 784, 11724, 1, 19, 6, N'SO52650', 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 (357, 777, 789, 784, 11817, 2, 100, 4, N'SO52657', 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, 777, 789, 784, 11825, 1, 100, 4, N'SO52658', 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, 777, 789, 784, 11825, 1, 100, 4, N'SO52658', 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 (537, 777, 789, 784, 11923, 1, 100, 4, N'SO52652', 1, 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 (477, 777, 789, 784, 11957, 1, 100, 1, N'SO52617', 1, 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 (479, 777, 789, 784, 11957, 1, 100, 1, N'SO52617', 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 (222, 777, 789, 784, 11957, 1, 100, 1, N'SO52617', 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 (480, 778, 790, 785, 11142, 1, 19, 6, N'SO52682', 1, 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 (537, 778, 790, 785, 11176, 1, 19, 6, N'SO52708', 1, 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, 778, 790, 785, 11176, 1, 19, 6, N'SO52708', 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 (482, 778, 790, 785, 11176, 1, 19, 6, N'SO52708', 3, 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 (537, 778, 790, 785, 11198, 1, 100, 4, N'SO52709', 1, 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, 778, 790, 785, 11425, 1, 100, 7, N'SO52671', 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, 778, 790, 785, 11425, 1, 100, 7, N'SO52671', 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, 778, 790, 785, 11425, 1, 100, 7, N'SO52671', 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 (485, 778, 790, 785, 11425, 1, 100, 7, N'SO52671', 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 (483, 778, 790, 785, 11425, 1, 100, 7, N'SO52671', 5, 1, 1, 120.0000, 120.0000, 0, 0, 44.8800, 44.8800, 120.0000, 9.6000, 3.0000, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 778, 790, 785, 11703, 1, 100, 4, N'SO52681', 1, 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 (488, 778, 790, 785, 11703, 1, 100, 4, N'SO52681', 2, 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 (361, 778, 790, 785, 11834, 1, 100, 4, N'SO52716', 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, 778, 790, 785, 11834, 1, 100, 4, N'SO52716', 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 (530, 778, 790, 785, 11845, 1, 19, 6, N'SO52683', 1, 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, 778, 790, 785, 11845, 1, 19, 6, N'SO52683', 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, 779, 791, 786, 11217, 2, 100, 1, N'SO52759', 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, 779, 791, 786, 11217, 1, 100, 1, N'SO52759', 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, 779, 791, 786, 11378, 1, 100, 7, N'SO52731', 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, 779, 791, 786, 11378, 1, 100, 7, N'SO52731', 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 (217, 779, 791, 786, 11378, 1, 100, 7, N'SO52731', 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 (359, 779, 791, 786, 11534, 1, 100, 4, N'SO52762', 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, 779, 791, 786, 11534, 1, 100, 4, N'SO52762', 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 (465, 779, 791, 786, 11534, 1, 100, 4, N'SO52762', 3, 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, 779, 791, 786, 11665, 1, 100, 4, N'SO52760', 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, 779, 791, 786, 11665, 1, 100, 4, N'SO52760', 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 (214, 779, 791, 786, 11665, 1, 100, 4, N'SO52760', 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 (361, 779, 791, 786, 11688, 1, 100, 1, N'SO52758', 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, 779, 791, 786, 11688, 1, 100, 1, N'SO52758', 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 (231, 779, 791, 786, 11688, 1, 100, 1, N'SO52758', 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, 779, 791, 786, 11688, 1, 100, 1, N'SO52758', 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 (536, 779, 791, 786, 11723, 1, 19, 6, N'SO52740', 1, 1, 1, 29.9900, 29.9900, 0, 0, 11.2163, 11.2163, 29.9900, 2.3992, 0.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 779, 791, 786, 11737, 1, 100, 4, N'SO52734', 1, 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, 779, 791, 786, 11979, 1, 19, 6, N'SO52761', 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, 779, 791, 786, 11979, 1, 19, 6, N'SO52761', 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, 779, 791, 786, 11979, 1, 19, 6, N'SO52761', 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 (484, 779, 791, 786, 11979, 1, 19, 6, N'SO52761', 4, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (530, 780, 792, 787, 11078, 1, 19, 6, N'SO52789', 1, 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, 780, 792, 787, 11078, 1, 19, 6, N'SO52789', 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 (467, 780, 792, 787, 11078, 1, 19, 6, N'SO52789', 3, 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 (477, 780, 792, 787, 11215, 1, 19, 6, N'SO52778', 1, 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 (479, 780, 792, 787, 11215, 1, 19, 6, N'SO52778', 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 (222, 780, 792, 787, 11215, 1, 19, 6, N'SO52778', 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 (228, 780, 792, 787, 11215, 1, 19, 6, N'SO52778', 4, 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 (359, 780, 792, 787, 11398, 1, 98, 10, N'SO52784', 1, 1, 1, 2294.9900, 2294.9900, 0, 0, 1251.9813, 1251.9813, 2294.9900, 183.5992, 57.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 (353, 780, 792, 787, 11523, 1, 19, 6, N'SO52828', 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, 780, 792, 787, 11523, 1, 19, 6, N'SO52828', 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, 780, 792, 787, 11523, 1, 19, 6, N'SO52828', 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 (480, 780, 792, 787, 11637, 1, 100, 4, N'SO52786', 1, 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, 780, 792, 787, 11647, 1, 19, 6, N'SO52826', 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, 780, 792, 787, 11647, 1, 19, 6, N'SO52826', 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, 780, 792, 787, 11647, 1, 19, 6, N'SO52826', 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, 780, 792, 787, 11647, 1, 19, 6, N'SO52826', 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, 780, 792, 787, 11647, 1, 19, 6, N'SO52826', 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 (537, 780, 792, 787, 11650, 1, 100, 4, N'SO52822', 1, 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, 780, 792, 787, 11650, 1, 100, 4, N'SO52822', 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 (222, 780, 792, 787, 11650, 1, 100, 4, N'SO52822', 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 (359, 780, 792, 787, 11663, 1, 100, 1, N'SO52827', 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, 780, 792, 787, 11663, 1, 100, 1, N'SO52827', 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, 780, 792, 787, 11663, 1, 100, 1, N'SO52827', 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 (217, 780, 792, 787, 11663, 1, 100, 1, N'SO52827', 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 (535, 780, 792, 787, 11711, 1, 19, 6, N'SO52791', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 780, 792, 787, 11711, 1, 19, 6, N'SO52791', 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 (528, 780, 792, 787, 11819, 1, 100, 1, N'SO52823', 1, 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, 780, 792, 787, 11819, 1, 100, 1, N'SO52823', 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 (480, 780, 792, 787, 11819, 1, 100, 1, N'SO52823', 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 (353, 780, 792, 787, 11826, 2, 100, 4, N'SO52825', 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 (536, 780, 792, 787, 11922, 1, 19, 6, N'SO52793', 1, 1, 1, 29.9900, 29.9900, 0, 0, 11.2163, 11.2163, 29.9900, 2.3992, 0.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 780, 792, 787, 11922, 1, 19, 6, N'SO52793', 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 (361, 780, 792, 787, 11984, 1, 19, 6, N'SO52829', 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, 780, 792, 787, 11984, 1, 19, 6, N'SO52829', 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, 781, 793, 788, 11382, 2, 100, 7, N'SO52846', 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, 781, 793, 788, 11931, 1, 100, 4, N'SO52852', 1, 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 (228, 781, 793, 788, 11931, 1, 100, 4, N'SO52852', 2, 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 (578, 781, 793, 788, 11998, 1, 6, 9, N'SO52844', 1, 1, 1, 1214.8500, 1214.8500, 0, 0, 755.1508, 755.1508, 1214.8500, 97.1880, 30.3713, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 781, 793, 788, 11998, 1, 6, 9, N'SO52844', 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 (537, 782, 794, 789, 11023, 1, 100, 4, N'SO52912', 1, 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, 782, 794, 789, 11023, 1, 100, 4, N'SO52912', 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 (485, 782, 794, 789, 11023, 1, 100, 4, N'SO52912', 3, 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 (490, 782, 794, 789, 11023, 1, 100, 4, N'SO52912', 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 (529, 782, 794, 789, 11507, 1, 19, 6, N'SO52893', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (463, 782, 794, 789, 11507, 1, 19, 6, N'SO52893', 2, 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 (537, 782, 794, 789, 11865, 1, 100, 4, N'SO52918', 1, 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, 782, 794, 789, 11865, 1, 100, 4, N'SO52918', 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 (231, 782, 794, 789, 11865, 1, 100, 4, N'SO52918', 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 (528, 782, 794, 789, 11882, 1, 100, 1, N'SO52914', 1, 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, 782, 794, 789, 11882, 1, 100, 1, N'SO52914', 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 (537, 782, 794, 789, 11884, 1, 100, 1, N'SO52915', 1, 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, 782, 794, 789, 11884, 1, 100, 1, N'SO52915', 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 (214, 782, 794, 789, 11884, 1, 100, 1, N'SO52915', 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 (528, 782, 794, 789, 11950, 1, 100, 4, N'SO52916', 1, 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, 782, 794, 789, 11950, 1, 100, 4, N'SO52916', 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 (217, 782, 794, 789, 11950, 1, 100, 4, N'SO52916', 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 (479, 783, 795, 790, 11059, 1, 6, 9, N'SO52933', 1, 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, 783, 795, 790, 11059, 1, 6, 9, N'SO52933', 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 (225, 783, 795, 790, 11059, 1, 6, 9, N'SO52933', 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 (489, 783, 795, 790, 11059, 1, 6, 9, N'SO52933', 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 (359, 783, 795, 790, 11162, 1, 100, 4, N'SO52957', 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, 783, 795, 790, 11162, 1, 100, 4, N'SO52957', 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, 783, 795, 790, 11317, 1, 100, 1, N'SO52956', 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 (355, 783, 795, 790, 11459, 1, 6, 9, N'SO52959', 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, 783, 795, 790, 11459, 1, 6, 9, N'SO52959', 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 (490, 783, 795, 790, 11714, 1, 100, 4, N'SO52934', 1, 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 (528, 783, 795, 790, 11832, 1, 100, 1, N'SO52950', 1, 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, 783, 795, 790, 11832, 1, 100, 1, N'SO52950', 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 (214, 783, 795, 790, 11832, 1, 100, 1, N'SO52950', 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 (484, 783, 795, 790, 11866, 1, 100, 4, N'SO52931', 1, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 784, 796, 791, 11212, 1, 19, 6, N'SO52968', 1, 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, 784, 796, 791, 11351, 2, 98, 10, N'SO52966', 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, 784, 796, 791, 11353, 1, 98, 10, N'SO52967', 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, 784, 796, 791, 11353, 1, 98, 10, N'SO52967', 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, 784, 796, 791, 11353, 1, 98, 10, N'SO52967', 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, 784, 796, 791, 11492, 1, 100, 8, N'SO52965', 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 (222, 784, 796, 791, 11492, 1, 100, 8, N'SO52965', 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 (355, 784, 796, 791, 11528, 1, 100, 4, N'SO52998', 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, 784, 796, 791, 11528, 1, 100, 4, N'SO52998', 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, 784, 796, 791, 11528, 1, 100, 4, N'SO52998', 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, 784, 796, 791, 11528, 1, 100, 4, N'SO52998', 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 (467, 784, 796, 791, 11528, 1, 100, 4, N'SO52998', 5, 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 (535, 784, 796, 791, 11965, 1, 6, 9, N'SO52969', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 784, 796, 791, 11965, 1, 6, 9, N'SO52969', 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 (535, 785, 797, 792, 11176, 1, 19, 6, N'SO53026', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (530, 785, 797, 792, 11203, 1, 19, 6, N'SO53020', 1, 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 (540, 785, 797, 792, 11277, 1, 19, 6, N'SO53023', 1, 1, 1, 32.6000, 32.6000, 0, 0, 12.1924, 12.1924, 32.6000, 2.6080, 0.8150, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 785, 797, 792, 11277, 1, 19, 6, N'SO53023', 2, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 785, 797, 792, 11277, 1, 19, 6, N'SO53023', 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 (537, 785, 797, 792, 11277, 1, 19, 6, N'SO53042', 1, 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, 785, 797, 792, 11277, 1, 19, 6, N'SO53042', 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 (480, 785, 797, 792, 11277, 1, 19, 6, N'SO53042', 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 (363, 785, 797, 792, 11297, 1, 100, 4, N'SO53056', 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, 785, 797, 792, 11297, 1, 100, 4, N'SO53056', 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, 785, 797, 792, 11297, 1, 100, 4, N'SO53056', 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, 785, 797, 792, 11297, 1, 100, 4, N'SO53056', 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 (363, 785, 797, 792, 11326, 1, 100, 4, N'SO53055', 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, 785, 797, 792, 11326, 1, 100, 4, N'SO53055', 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, 785, 797, 792, 11326, 1, 100, 4, N'SO53055', 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 (214, 785, 797, 792, 11326, 1, 100, 4, N'SO53055', 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 (355, 785, 797, 792, 11395, 1, 100, 8, N'SO53006', 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, 785, 797, 792, 11395, 1, 100, 8, N'SO53006', 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, 785, 797, 792, 11493, 1, 98, 10, N'SO53005', 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, 785, 797, 792, 11493, 1, 98, 10, N'SO53005', 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, 785, 797, 792, 11530, 1, 19, 6, N'SO53007', 1, 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 (541, 785, 797, 792, 11566, 1, 100, 7, N'SO53041', 1, 1, 1, 28.9900, 28.9900, 0, 0, 10.8423, 10.8423, 28.9900, 2.3192, 0.7248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (530, 785, 797, 792, 11566, 1, 100, 7, N'SO53041', 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 (480, 785, 797, 792, 11566, 2, 100, 7, N'SO53041', 3, 1, 1, 2.2900, 2.2900, 0, 0, 0.8565, 0.8565, 2.2900, 0.1832, 0.0573, 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 (538, 785, 797, 792, 11738, 1, 19, 6, N'SO53019', 1, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (467, 785, 797, 792, 11738, 1, 19, 6, N'SO53019', 2, 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 (529, 785, 797, 792, 11738, 1, 19, 6, N'SO53019', 3, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 785, 797, 792, 11741, 2, 100, 4, N'SO53052', 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, 785, 797, 792, 11741, 1, 100, 4, N'SO53052', 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 (486, 785, 797, 792, 11741, 1, 100, 4, N'SO53052', 3, 1, 1, 159.0000, 159.0000, 0, 0, 59.4660, 59.4660, 159.0000, 12.7200, 3.9750, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 785, 797, 792, 11816, 1, 100, 4, N'SO53053', 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 (222, 785, 797, 792, 11816, 1, 100, 4, N'SO53053', 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 (475, 785, 797, 792, 11827, 1, 19, 6, N'SO53033', 1, 1, 1, 69.9900, 69.9900, 0, 0, 26.1763, 26.1763, 69.9900, 5.5992, 1.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (490, 785, 797, 792, 11827, 1, 19, 6, N'SO53033', 2, 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 (463, 785, 797, 792, 11827, 1, 19, 6, N'SO53033', 3, 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 (363, 785, 797, 792, 11837, 1, 100, 4, N'SO53054', 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, 785, 797, 792, 11837, 1, 100, 4, N'SO53054', 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, 785, 797, 792, 11837, 1, 100, 4, N'SO53054', 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 (222, 785, 797, 792, 11837, 1, 100, 4, N'SO53054', 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 (484, 786, 798, 793, 11122, 1, 6, 9, N'SO53080', 1, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 786, 798, 793, 11160, 1, 100, 4, N'SO53121', 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, 786, 798, 793, 11160, 1, 100, 4, N'SO53121', 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 (529, 786, 798, 793, 11178, 1, 100, 4, N'SO53085', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (471, 786, 798, 793, 11178, 1, 100, 4, N'SO53085', 2, 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 (217, 786, 798, 793, 11178, 1, 100, 4, N'SO53085', 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 (535, 786, 798, 793, 11185, 1, 19, 6, N'SO53092', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 786, 798, 793, 11185, 1, 19, 6, N'SO53092', 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 (214, 786, 798, 793, 11185, 1, 19, 6, N'SO53092', 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 (237, 786, 798, 793, 11185, 1, 19, 6, N'SO53092', 4, 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, 786, 798, 793, 11185, 1, 19, 6, N'SO53092', 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 (530, 786, 798, 793, 11200, 1, 19, 6, N'SO53089', 1, 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 (463, 786, 798, 793, 11200, 1, 19, 6, N'SO53089', 2, 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 (483, 786, 798, 793, 11203, 1, 19, 6, N'SO53069', 1, 1, 1, 120.0000, 120.0000, 0, 0, 44.8800, 44.8800, 120.0000, 9.6000, 3.0000, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 786, 798, 793, 11226, 1, 100, 1, N'SO53088', 1, 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, 786, 798, 793, 11298, 1, 100, 4, N'SO53122', 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, 786, 798, 793, 11298, 1, 100, 4, N'SO53122', 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 (225, 786, 798, 793, 11298, 1, 100, 4, N'SO53122', 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 (478, 786, 798, 793, 11298, 1, 100, 4, N'SO53122', 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 (529, 786, 798, 793, 11331, 1, 19, 6, N'SO53093', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (540, 786, 798, 793, 11331, 1, 19, 6, N'SO53093', 2, 1, 1, 32.6000, 32.6000, 0, 0, 12.1924, 12.1924, 32.6000, 2.6080, 0.8150, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (463, 786, 798, 793, 11331, 1, 19, 6, N'SO53093', 3, 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 (359, 786, 798, 793, 11460, 1, 6, 9, N'SO53126', 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, 786, 798, 793, 11470, 2, 100, 8, N'SO53068', 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 (361, 786, 798, 793, 11664, 1, 100, 4, N'SO53120', 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, 786, 798, 793, 11664, 1, 100, 4, N'SO53120', 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, 786, 798, 793, 11664, 1, 100, 4, N'SO53120', 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 (217, 786, 798, 793, 11664, 1, 100, 4, N'SO53120', 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 (537, 786, 798, 793, 11806, 1, 100, 4, N'SO53115', 1, 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, 786, 798, 793, 11806, 1, 100, 4, N'SO53115', 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 (480, 786, 798, 793, 11806, 1, 100, 4, N'SO53115', 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 (537, 786, 798, 793, 11883, 1, 100, 1, N'SO53116', 1, 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, 786, 798, 793, 11883, 1, 100, 1, N'SO53116', 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 (480, 786, 798, 793, 11883, 1, 100, 1, N'SO53116', 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 (529, 786, 798, 793, 11902, 1, 6, 9, N'SO53078', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 786, 798, 793, 11902, 1, 6, 9, N'SO53078', 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 (361, 786, 798, 793, 11983, 1, 100, 4, N'SO53119', 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 (361, 787, 799, 794, 11096, 1, 6, 9, N'SO53176', 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, 787, 799, 794, 11413, 1, 98, 10, N'SO53135', 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, 787, 799, 794, 11413, 1, 98, 10, N'SO53135', 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 (225, 787, 799, 794, 11413, 1, 98, 10, N'SO53135', 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 (363, 787, 799, 794, 11479, 1, 100, 7, N'SO53134', 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, 787, 799, 794, 11479, 1, 100, 7, N'SO53134', 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, 787, 799, 794, 11479, 1, 100, 7, N'SO53134', 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 (480, 787, 799, 794, 11479, 1, 100, 7, N'SO53134', 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 (484, 787, 799, 794, 11479, 1, 100, 7, N'SO53134', 5, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 787, 799, 794, 11505, 1, 19, 6, N'SO53142', 1, 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 (529, 787, 799, 794, 11520, 1, 19, 6, N'SO53143', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (234, 787, 799, 794, 11520, 1, 19, 6, N'SO53143', 2, 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 (482, 787, 799, 794, 11520, 1, 19, 6, N'SO53143', 3, 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 (355, 787, 799, 794, 11525, 1, 100, 1, N'SO53169', 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, 787, 799, 794, 11525, 1, 100, 1, N'SO53169', 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 (480, 787, 799, 794, 11525, 1, 100, 1, N'SO53169', 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 (528, 787, 799, 794, 11631, 1, 19, 6, N'SO53148', 1, 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 (536, 787, 799, 794, 11631, 1, 19, 6, N'SO53148', 2, 1, 1, 29.9900, 29.9900, 0, 0, 11.2163, 11.2163, 29.9900, 2.3992, 0.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 787, 799, 794, 11631, 1, 19, 6, N'SO53148', 3, 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, 787, 799, 794, 11631, 1, 19, 6, N'SO53148', 4, 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 (577, 787, 799, 794, 11997, 1, 6, 9, N'SO53133', 1, 1, 1, 1214.8500, 1214.8500, 0, 0, 755.1508, 755.1508, 1214.8500, 97.1880, 30.3713, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 787, 799, 794, 11997, 1, 6, 9, N'SO53133', 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 (561, 788, 800, 795, 11002, 1, 6, 9, N'SO53237', 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 (222, 788, 800, 795, 11002, 1, 6, 9, N'SO53237', 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 (528, 788, 800, 795, 11255, 1, 100, 1, N'SO53229', 1, 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, 788, 800, 795, 11255, 1, 100, 1, N'SO53229', 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 (222, 788, 800, 795, 11255, 1, 100, 1, N'SO53229', 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 (361, 788, 800, 795, 11303, 1, 100, 1, N'SO53235', 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, 788, 800, 795, 11303, 1, 100, 1, N'SO53235', 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 (480, 788, 800, 795, 11321, 1, 100, 1, N'SO53198', 1, 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 (528, 788, 800, 795, 11330, 1, 19, 6, N'SO53205', 1, 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 (536, 788, 800, 795, 11330, 1, 19, 6, N'SO53205', 2, 1, 1, 29.9900, 29.9900, 0, 0, 11.2163, 11.2163, 29.9900, 2.3992, 0.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (483, 788, 800, 795, 11330, 1, 19, 6, N'SO53205', 3, 1, 1, 120.0000, 120.0000, 0, 0, 44.8800, 44.8800, 120.0000, 9.6000, 3.0000, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 788, 800, 795, 11530, 1, 19, 6, N'SO53200', 1, 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 (538, 788, 800, 795, 11530, 1, 19, 6, N'SO53200', 2, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 788, 800, 795, 11757, 1, 6, 9, N'SO53193', 1, 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 (222, 788, 800, 795, 11871, 1, 100, 1, N'SO53197', 1, 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 (528, 788, 800, 795, 11889, 1, 100, 1, N'SO53228', 1, 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, 788, 800, 795, 11889, 1, 100, 1, N'SO53228', 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 (480, 788, 800, 795, 11889, 1, 100, 1, N'SO53228', 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 (361, 789, 801, 796, 11274, 1, 100, 1, N'SO53280', 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, 789, 801, 796, 11274, 1, 100, 1, N'SO53280', 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, 789, 801, 796, 11274, 1, 100, 1, N'SO53280', 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 (528, 789, 801, 796, 11293, 1, 100, 1, N'SO53273', 1, 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, 789, 801, 796, 11293, 1, 100, 1, N'SO53273', 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 (217, 789, 801, 796, 11293, 1, 100, 1, N'SO53273', 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 (359, 789, 801, 796, 11299, 1, 100, 4, N'SO53281', 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, 789, 801, 796, 11299, 1, 100, 4, N'SO53281', 2, 1, 1, 21.9800, 21.9800, 0, 0, 8.2205, 8.2205, 21.9800, 1.7584, 0.5495, 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 (483, 789, 801, 796, 11299, 1, 100, 4, N'SO53281', 3, 1, 1, 120.0000, 120.0000, 0, 0, 44.8800, 44.8800, 120.0000, 9.6000, 3.0000, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 789, 801, 796, 11319, 1, 100, 4, N'SO53282', 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, 789, 801, 796, 11319, 1, 100, 4, N'SO53282', 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, 789, 801, 796, 11319, 1, 100, 4, N'SO53282', 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 (217, 789, 801, 796, 11331, 1, 19, 6, N'SO53243', 1, 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, 789, 801, 796, 11421, 2, 100, 8, N'SO53240', 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 (361, 789, 801, 796, 11423, 1, 100, 8, N'SO53241', 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, 789, 801, 796, 11423, 1, 100, 8, N'SO53241', 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 (353, 789, 801, 796, 11482, 1, 98, 10, N'SO53242', 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 (217, 789, 801, 796, 11482, 1, 98, 10, N'SO53242', 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 (537, 789, 801, 796, 11735, 1, 100, 1, N'SO53274', 1, 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, 789, 801, 796, 11735, 1, 100, 1, N'SO53274', 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 (214, 789, 801, 796, 11735, 1, 100, 1, N'SO53274', 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, 789, 801, 796, 11815, 1, 100, 1, N'SO53279', 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, 789, 801, 796, 11815, 1, 100, 1, N'SO53279', 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, 789, 801, 796, 11815, 1, 100, 1, N'SO53279', 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 (217, 789, 801, 796, 11815, 1, 100, 1, N'SO53279', 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 (529, 790, 802, 797, 11087, 1, 100, 4, N'SO53299', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (486, 790, 802, 797, 11087, 1, 100, 4, N'SO53299', 2, 1, 1, 159.0000, 159.0000, 0, 0, 59.4660, 59.4660, 159.0000, 12.7200, 3.9750, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 790, 802, 797, 11193, 1, 100, 1, N'SO53325', 1, 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 (537, 790, 802, 797, 11314, 1, 100, 1, N'SO53326', 1, 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, 790, 802, 797, 11314, 1, 100, 1, N'SO53326', 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 (363, 790, 802, 797, 11429, 1, 100, 7, N'SO53290', 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, 790, 802, 797, 11429, 1, 100, 7, N'SO53290', 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 (474, 790, 802, 797, 11802, 1, 19, 6, N'SO53308', 1, 1, 1, 69.9900, 69.9900, 0, 0, 26.1763, 26.1763, 69.9900, 5.5992, 1.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (481, 790, 802, 797, 11802, 1, 19, 6, N'SO53308', 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 (596, 790, 802, 797, 11944, 1, 6, 9, N'SO53337', 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 (478, 790, 802, 797, 11944, 1, 6, 9, N'SO53337', 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, 790, 802, 797, 11944, 1, 6, 9, N'SO53337', 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 (487, 790, 802, 797, 11944, 1, 6, 9, N'SO53337', 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 (529, 791, 803, 798, 11200, 1, 19, 6, N'SO53359', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (488, 791, 803, 798, 11200, 1, 19, 6, N'SO53359', 2, 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 (528, 791, 803, 798, 11287, 1, 19, 6, N'SO53385', 1, 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, 791, 803, 798, 11287, 1, 19, 6, N'SO53385', 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 (222, 791, 803, 798, 11287, 1, 19, 6, N'SO53385', 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 (482, 791, 803, 798, 11287, 1, 19, 6, N'SO53385', 4, 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 (355, 791, 803, 798, 11379, 1, 100, 7, N'SO53350', 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, 791, 803, 798, 11379, 1, 100, 7, N'SO53350', 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, 791, 803, 798, 11379, 1, 100, 7, N'SO53350', 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 (359, 791, 803, 798, 11461, 1, 6, 9, N'SO53392', 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, 791, 803, 798, 11711, 1, 19, 6, N'SO53372', 1, 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 (539, 792, 804, 799, 11262, 1, 19, 6, N'SO53414', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (231, 792, 804, 799, 11262, 1, 19, 6, N'SO53414', 2, 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 (363, 792, 804, 799, 11343, 1, 98, 10, N'SO53399', 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, 792, 804, 799, 11343, 1, 98, 10, N'SO53399', 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 (234, 792, 804, 799, 11343, 1, 98, 10, N'SO53399', 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 (478, 792, 804, 799, 11752, 1, 6, 9, N'SO53410', 1, 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, 792, 804, 799, 11752, 1, 6, 9, N'SO53410', 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 (488, 792, 804, 799, 11752, 1, 6, 9, N'SO53410', 3, 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 (225, 792, 804, 799, 11752, 1, 6, 9, N'SO53410', 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 (484, 792, 804, 799, 11879, 1, 100, 1, N'SO53401', 1, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 792, 804, 799, 11973, 1, 100, 1, N'SO53400', 1, 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 (479, 792, 804, 799, 11973, 1, 100, 1, N'SO53400', 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 (228, 792, 804, 799, 11985, 1, 100, 1, N'SO53402', 1, 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 (480, 793, 805, 800, 11218, 1, 100, 1, N'SO53629', 1, 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 (540, 793, 805, 800, 11331, 1, 19, 6, N'SO53632', 1, 1, 1, 32.6000, 32.6000, 0, 0, 12.1924, 12.1924, 32.6000, 2.6080, 0.8150, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 793, 805, 800, 11331, 1, 19, 6, N'SO53632', 2, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 793, 805, 800, 11331, 1, 19, 6, N'SO53632', 3, 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 (484, 793, 805, 800, 11331, 1, 19, 6, N'SO53632', 4, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (530, 793, 805, 800, 11377, 1, 100, 8, N'SO53647', 1, 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 (541, 793, 805, 800, 11377, 1, 100, 8, N'SO53647', 2, 1, 1, 28.9900, 28.9900, 0, 0, 10.8423, 10.8423, 28.9900, 2.3192, 0.7248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (234, 793, 805, 800, 11377, 1, 100, 8, N'SO53647', 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 (484, 793, 805, 800, 11498, 1, 19, 6, N'SO53626', 1, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 793, 805, 800, 11605, 1, 100, 8, N'SO53628', 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 (355, 793, 805, 800, 11908, 1, 6, 9, N'SO53656', 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 (535, 794, 806, 801, 11071, 1, 6, 9, N'SO53667', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 794, 806, 801, 11071, 1, 6, 9, N'SO53667', 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 (528, 794, 806, 801, 11142, 1, 19, 6, N'SO53684', 1, 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 (536, 794, 806, 801, 11142, 1, 19, 6, N'SO53684', 2, 1, 1, 29.9900, 29.9900, 0, 0, 11.2163, 11.2163, 29.9900, 2.3992, 0.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 794, 806, 801, 11142, 1, 19, 6, N'SO53684', 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 (483, 794, 806, 801, 11176, 1, 19, 6, N'SO53666', 1, 1, 1, 120.0000, 120.0000, 0, 0, 44.8800, 44.8800, 120.0000, 9.6000, 3.0000, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 794, 806, 801, 11253, 1, 19, 6, N'SO53682', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (539, 794, 806, 801, 11253, 1, 19, 6, N'SO53682', 2, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 794, 806, 801, 11253, 1, 19, 6, N'SO53682', 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 (355, 794, 806, 801, 11462, 1, 6, 9, N'SO53712', 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, 794, 806, 801, 11462, 1, 6, 9, N'SO53712', 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 (363, 794, 806, 801, 11538, 2, 100, 4, N'SO53708', 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, 794, 806, 801, 11538, 1, 100, 4, N'SO53708', 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 (490, 794, 806, 801, 11551, 1, 100, 7, N'SO53694', 1, 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 (528, 794, 806, 801, 11864, 1, 100, 1, N'SO53701', 1, 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, 794, 806, 801, 11864, 1, 100, 1, N'SO53701', 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, 794, 806, 801, 11894, 1, 6, 9, N'SO53713', 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, 794, 806, 801, 11894, 1, 6, 9, N'SO53713', 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, 794, 806, 801, 11894, 1, 6, 9, N'SO53713', 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, 794, 806, 801, 11894, 1, 6, 9, N'SO53713', 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 (561, 795, 807, 802, 11008, 1, 6, 9, N'SO53765', 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 (214, 795, 807, 802, 11008, 1, 6, 9, N'SO53765', 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 (537, 795, 807, 802, 11173, 1, 100, 1, N'SO53753', 1, 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 (353, 795, 807, 802, 11568, 2, 98, 10, N'SO53721', 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 (353, 795, 807, 802, 11754, 2, 6, 9, N'SO53768', 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 (363, 795, 807, 802, 11917, 1, 6, 9, N'SO53769', 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, 795, 807, 802, 11917, 1, 6, 9, N'SO53769', 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, 795, 807, 802, 11917, 1, 6, 9, N'SO53769', 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 (480, 795, 807, 802, 11917, 1, 6, 9, N'SO53769', 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 (480, 796, 808, 803, 11196, 1, 100, 1, N'SO53786', 1, 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 (541, 796, 808, 803, 11262, 1, 19, 6, N'SO53789', 1, 1, 1, 28.9900, 28.9900, 0, 0, 10.8423, 10.8423, 28.9900, 2.3192, 0.7248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 796, 808, 803, 11279, 1, 100, 1, N'SO53787', 1, 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 (537, 796, 808, 803, 11673, 1, 100, 1, N'SO53818', 1, 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, 796, 808, 803, 11673, 1, 100, 1, N'SO53818', 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 (217, 796, 808, 803, 11673, 1, 100, 1, N'SO53818', 3, 1, 1, 34.9900, 34.9900, 0, 0, 13.0863, 13.0863, 34.9900, 2.7992, 0.8748, 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 (225, 796, 808, 803, 11673, 1, 100, 1, N'SO53818', 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 (488, 796, 808, 803, 11673, 1, 100, 1, N'SO53818', 5, 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 (357, 796, 808, 803, 11916, 1, 6, 9, N'SO53824', 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, 796, 808, 803, 11916, 1, 6, 9, N'SO53824', 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, 796, 808, 803, 11916, 1, 6, 9, N'SO53824', 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 (491, 797, 809, 804, 11019, 1, 19, 6, N'SO53834', 1, 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 (537, 797, 809, 804, 11208, 1, 100, 4, N'SO53852', 1, 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, 797, 809, 804, 11208, 1, 100, 4, N'SO53852', 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 (485, 797, 809, 804, 11208, 1, 100, 4, N'SO53852', 3, 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, 797, 809, 804, 11208, 1, 100, 4, N'SO53852', 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 (477, 797, 809, 804, 11208, 1, 100, 4, N'SO53852', 5, 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 (487, 797, 809, 804, 11208, 1, 100, 4, N'SO53852', 6, 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 (536, 797, 809, 804, 11215, 1, 19, 6, N'SO53838', 1, 1, 1, 29.9900, 29.9900, 0, 0, 11.2163, 11.2163, 29.9900, 2.3992, 0.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 797, 809, 804, 11215, 1, 19, 6, N'SO53838', 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 (486, 797, 809, 804, 11215, 1, 19, 6, N'SO53838', 3, 1, 1, 159.0000, 159.0000, 0, 0, 59.4660, 59.4660, 159.0000, 12.7200, 3.9750, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 797, 809, 804, 11300, 1, 19, 6, N'SO53835', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (540, 797, 809, 804, 11300, 1, 19, 6, N'SO53835', 2, 1, 1, 32.6000, 32.6000, 0, 0, 12.1924, 12.1924, 32.6000, 2.6080, 0.8150, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 797, 809, 804, 11300, 1, 19, 6, N'SO53835', 3, 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 (528, 797, 809, 804, 11651, 1, 19, 6, N'SO53837', 1, 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 (535, 797, 809, 804, 11651, 1, 19, 6, N'SO53837', 2, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 797, 809, 804, 11651, 1, 19, 6, N'SO53837', 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 (353, 797, 809, 804, 11768, 2, 6, 9, N'SO53865', 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 (484, 797, 809, 804, 11889, 1, 100, 1, N'SO53831', 1, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 797, 809, 804, 11915, 1, 6, 9, N'SO53866', 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, 797, 809, 804, 11915, 1, 6, 9, N'SO53866', 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, 797, 809, 804, 11915, 1, 6, 9, N'SO53866', 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 (217, 797, 809, 804, 11915, 1, 6, 9, N'SO53866', 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 (480, 798, 810, 805, 11288, 1, 100, 4, N'SO53886', 1, 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 (529, 798, 810, 805, 11408, 1, 98, 10, N'SO53904', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (538, 798, 810, 805, 11408, 1, 98, 10, N'SO53904', 2, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 798, 810, 805, 11408, 1, 98, 10, N'SO53904', 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 (484, 798, 810, 805, 11463, 1, 6, 9, N'SO53881', 1, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 798, 810, 805, 11521, 1, 100, 1, N'SO53884', 1, 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, 798, 810, 805, 11765, 1, 6, 9, N'SO53915', 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, 798, 810, 805, 11899, 1, 6, 9, N'SO53916', 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, 798, 810, 805, 11899, 1, 6, 9, N'SO53916', 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 (465, 798, 810, 805, 11899, 1, 6, 9, N'SO53916', 3, 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 (488, 798, 810, 805, 11899, 1, 6, 9, N'SO53916', 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 (361, 799, 811, 806, 11099, 1, 6, 9, N'SO53971', 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, 799, 811, 806, 11099, 1, 6, 9, N'SO53971', 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, 799, 811, 806, 11099, 1, 6, 9, N'SO53971', 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 (490, 799, 811, 806, 11099, 1, 6, 9, N'SO53971', 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 (478, 799, 811, 806, 11125, 1, 6, 9, N'SO53927', 1, 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, 799, 811, 806, 11125, 1, 6, 9, N'SO53927', 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 (463, 799, 811, 806, 11125, 1, 6, 9, N'SO53927', 3, 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 (537, 799, 811, 806, 11718, 1, 100, 1, N'SO53958', 1, 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, 799, 811, 806, 11718, 1, 100, 1, N'SO53958', 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 (465, 799, 811, 806, 11781, 1, 100, 4, N'SO53922', 1, 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 (222, 799, 811, 806, 11781, 1, 100, 4, N'SO53922', 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, 799, 811, 806, 11963, 1, 6, 9, N'SO53972', 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 (529, 800, 812, 807, 11078, 1, 19, 6, N'SO53993', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (484, 800, 812, 807, 11078, 1, 19, 6, N'SO53993', 2, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (489, 800, 812, 807, 11148, 1, 6, 9, N'SO53989', 1, 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 (355, 800, 812, 807, 11489, 1, 98, 10, N'SO53978', 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, 800, 812, 807, 11489, 1, 98, 10, N'SO53978', 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, 800, 812, 807, 11489, 1, 98, 10, N'SO53978', 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 (463, 800, 812, 807, 11489, 1, 98, 10, N'SO53978', 4, 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 (355, 800, 812, 807, 11491, 1, 98, 10, N'SO53979', 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, 800, 812, 807, 11491, 1, 98, 10, N'SO53979', 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 (539, 800, 812, 807, 11530, 1, 19, 6, N'SO53994', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (538, 800, 812, 807, 11566, 1, 100, 7, N'SO54010', 1, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 800, 812, 807, 11651, 1, 19, 6, N'SO54017', 1, 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 (488, 800, 812, 807, 11681, 1, 100, 1, N'SO53991', 1, 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 (225, 800, 812, 807, 11681, 1, 100, 1, N'SO53991', 2, 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 (540, 800, 812, 807, 11740, 1, 19, 6, N'SO53997', 1, 1, 1, 32.6000, 32.6000, 0, 0, 12.1924, 12.1924, 32.6000, 2.6080, 0.8150, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 800, 812, 807, 11740, 1, 19, 6, N'SO53997', 2, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 800, 812, 807, 11740, 1, 19, 6, N'SO53997', 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 (486, 800, 812, 807, 11740, 1, 19, 6, N'SO53997', 4, 1, 1, 159.0000, 159.0000, 0, 0, 59.4660, 59.4660, 159.0000, 12.7200, 3.9750, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 800, 812, 807, 11789, 1, 100, 4, N'SO53981', 1, 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 (537, 800, 812, 807, 11891, 1, 100, 4, N'SO54019', 1, 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, 800, 812, 807, 11891, 1, 100, 4, N'SO54019', 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 (222, 800, 812, 807, 11891, 1, 100, 4, N'SO54019', 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 (361, 800, 812, 807, 11907, 1, 6, 9, N'SO54031', 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, 800, 812, 807, 11907, 1, 6, 9, N'SO54031', 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 (484, 800, 812, 807, 11938, 1, 100, 4, N'SO53980', 1, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (489, 801, 813, 808, 11331, 1, 19, 6, N'SO54051', 1, 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 (463, 801, 813, 808, 11331, 1, 19, 6, N'SO54051', 2, 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 (606, 801, 813, 808, 11401, 1, 100, 7, N'SO54100', 1, 1, 1, 539.9900, 539.9900, 0, 0, 343.6496, 343.6496, 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 (222, 801, 813, 808, 11401, 1, 100, 7, N'SO54100', 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 (567, 801, 813, 808, 11439, 1, 100, 7, N'SO54095', 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 (217, 801, 813, 808, 11439, 1, 100, 7, N'SO54095', 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 (536, 801, 813, 808, 11506, 1, 19, 6, N'SO54055', 1, 1, 1, 29.9900, 29.9900, 0, 0, 11.2163, 11.2163, 29.9900, 2.3992, 0.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 801, 813, 808, 11506, 1, 19, 6, N'SO54055', 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 (485, 801, 813, 808, 11506, 1, 19, 6, N'SO54055', 3, 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, 801, 813, 808, 11506, 1, 19, 6, N'SO54055', 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 (477, 801, 813, 808, 11506, 1, 19, 6, N'SO54055', 5, 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 (234, 801, 813, 808, 11506, 1, 19, 6, N'SO54055', 6, 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 (355, 801, 813, 808, 11572, 1, 100, 7, N'SO54040', 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, 801, 813, 808, 11572, 1, 100, 7, N'SO54040', 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, 801, 813, 808, 11572, 1, 100, 7, N'SO54040', 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, 801, 813, 808, 11572, 1, 100, 7, N'SO54040', 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 (214, 801, 813, 808, 11572, 1, 100, 7, N'SO54040', 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 (488, 801, 813, 808, 11686, 1, 100, 4, N'SO54050', 1, 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 (537, 801, 813, 808, 11706, 1, 100, 4, N'SO54078', 1, 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, 801, 813, 808, 11738, 1, 19, 6, N'SO54079', 1, 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, 801, 813, 808, 11738, 1, 19, 6, N'SO54079', 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 (480, 801, 813, 808, 11738, 1, 19, 6, N'SO54079', 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 (537, 801, 813, 808, 11843, 1, 100, 1, N'SO54080', 1, 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, 801, 813, 808, 11843, 1, 100, 1, N'SO54080', 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 (480, 801, 813, 808, 11843, 1, 100, 1, N'SO54080', 3, 1, 1, 2.2900, 2.2900, 0, 0, 0.8565, 0.8565, 2.2900, 0.1832, 0.0573, 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 (353, 801, 813, 808, 11900, 2, 6, 9, N'SO54097', 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, 801, 813, 808, 11900, 1, 6, 9, N'SO54097', 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 (528, 802, 814, 809, 11049, 1, 100, 4, N'SO54129', 1, 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, 802, 814, 809, 11049, 1, 100, 4, N'SO54129', 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 (214, 802, 814, 809, 11049, 1, 100, 4, N'SO54129', 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 (530, 802, 814, 809, 11091, 1, 19, 6, N'SO54113', 1, 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 (541, 802, 814, 809, 11091, 1, 19, 6, N'SO54113', 2, 1, 1, 28.9900, 28.9900, 0, 0, 10.8423, 10.8423, 28.9900, 2.3192, 0.7248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (463, 802, 814, 809, 11091, 1, 19, 6, N'SO54113', 3, 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 (540, 802, 814, 809, 11176, 1, 19, 6, N'SO54116', 1, 1, 1, 32.6000, 32.6000, 0, 0, 12.1924, 12.1924, 32.6000, 2.6080, 0.8150, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 802, 814, 809, 11176, 1, 19, 6, N'SO54116', 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 (539, 802, 814, 809, 11330, 1, 19, 6, N'SO54112', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 802, 814, 809, 11330, 1, 19, 6, N'SO54112', 2, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (536, 802, 814, 809, 11711, 1, 19, 6, N'SO54117', 1, 1, 1, 29.9900, 29.9900, 0, 0, 11.2163, 11.2163, 29.9900, 2.3992, 0.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (482, 802, 814, 809, 11711, 1, 19, 6, N'SO54117', 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 (478, 802, 814, 809, 11712, 1, 19, 6, N'SO54118', 1, 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 (359, 803, 815, 810, 11431, 1, 100, 8, N'SO54149', 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, 803, 815, 810, 11431, 1, 100, 8, N'SO54149', 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 (222, 803, 815, 810, 11431, 1, 100, 8, N'SO54149', 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 (537, 803, 815, 810, 11973, 1, 100, 1, N'SO54170', 1, 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, 803, 815, 810, 11973, 1, 100, 1, N'SO54170', 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 (222, 803, 815, 810, 11973, 1, 100, 1, N'SO54170', 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 (477, 804, 816, 811, 11059, 1, 6, 9, N'SO54200', 1, 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, 804, 816, 811, 11059, 1, 6, 9, N'SO54200', 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 (528, 804, 816, 811, 11078, 1, 19, 6, N'SO54214', 1, 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 (536, 804, 816, 811, 11078, 1, 19, 6, N'SO54214', 2, 1, 1, 29.9900, 29.9900, 0, 0, 11.2163, 11.2163, 29.9900, 2.3992, 0.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 804, 816, 811, 11078, 1, 19, 6, N'SO54214', 3, 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 (465, 804, 816, 811, 11200, 1, 19, 6, N'SO54205', 1, 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 (222, 804, 816, 811, 11200, 1, 19, 6, N'SO54205', 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 (530, 804, 816, 811, 11212, 1, 19, 6, N'SO54207', 1, 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 (465, 804, 816, 811, 11212, 1, 19, 6, N'SO54207', 2, 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 (478, 804, 816, 811, 11262, 1, 19, 6, N'SO54218', 1, 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, 804, 816, 811, 11262, 1, 19, 6, N'SO54218', 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 (217, 804, 816, 811, 11262, 1, 19, 6, N'SO54218', 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 (490, 804, 816, 811, 11262, 1, 19, 6, N'SO54218', 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 (361, 804, 816, 811, 11561, 1, 100, 8, N'SO54189', 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, 804, 816, 811, 11632, 1, 19, 6, N'SO54206', 1, 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 (537, 804, 816, 811, 11634, 1, 100, 1, N'SO54231', 1, 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, 804, 816, 811, 11634, 1, 100, 1, N'SO54231', 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 (537, 804, 816, 811, 11685, 1, 100, 1, N'SO54230', 1, 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, 804, 816, 811, 11685, 1, 100, 1, N'SO54230', 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 (484, 804, 816, 811, 11685, 1, 100, 1, N'SO54230', 3, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (538, 804, 816, 811, 11709, 1, 19, 6, N'SO54208', 1, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 804, 816, 811, 11767, 2, 6, 9, N'SO54240', 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, 804, 816, 811, 11767, 1, 6, 9, N'SO54240', 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 (486, 804, 816, 811, 11767, 1, 6, 9, N'SO54240', 3, 1, 1, 159.0000, 159.0000, 0, 0, 59.4660, 59.4660, 159.0000, 12.7200, 3.9750, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 804, 816, 811, 11790, 1, 100, 4, N'SO54232', 1, 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, 804, 816, 811, 11790, 1, 100, 4, N'SO54232', 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 (485, 804, 816, 811, 11790, 1, 100, 4, N'SO54232', 3, 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 (234, 804, 816, 811, 11790, 1, 100, 4, N'SO54232', 4, 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 (353, 804, 816, 811, 11952, 2, 6, 9, N'SO54241', 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, 804, 816, 811, 11952, 1, 6, 9, N'SO54241', 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 (490, 804, 816, 811, 11952, 1, 6, 9, N'SO54241', 3, 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 (361, 804, 816, 811, 11976, 1, 6, 9, N'SO54242', 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, 804, 816, 811, 11976, 1, 6, 9, N'SO54242', 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, 804, 816, 811, 11976, 1, 6, 9, N'SO54242', 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 (539, 805, 817, 812, 11078, 1, 19, 6, N'SO54268', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 805, 817, 812, 11111, 1, 6, 9, N'SO54307', 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, 805, 817, 812, 11111, 1, 6, 9, N'SO54307', 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, 805, 817, 812, 11111, 1, 6, 9, N'SO54307', 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, 805, 817, 812, 11111, 1, 6, 9, N'SO54307', 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 (537, 805, 817, 812, 11179, 1, 100, 4, N'SO54293', 1, 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, 805, 817, 812, 11179, 1, 100, 4, N'SO54293', 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 (485, 805, 817, 812, 11179, 1, 100, 4, N'SO54293', 3, 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 (578, 805, 817, 812, 11238, 1, 98, 10, N'SO54301', 1, 1, 1, 1214.8500, 1214.8500, 0, 0, 755.1508, 755.1508, 1214.8500, 97.1880, 30.3713, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 805, 817, 812, 11238, 1, 98, 10, N'SO54301', 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 (537, 805, 817, 812, 11253, 1, 19, 6, N'SO54292', 1, 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 (538, 805, 817, 812, 11419, 1, 98, 10, N'SO54291', 1, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 805, 817, 812, 11419, 1, 98, 10, N'SO54291', 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 (486, 805, 817, 812, 11419, 1, 98, 10, N'SO54291', 3, 1, 1, 159.0000, 159.0000, 0, 0, 59.4660, 59.4660, 159.0000, 12.7200, 3.9750, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (538, 805, 817, 812, 11505, 1, 19, 6, N'SO54269', 1, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 805, 817, 812, 11505, 1, 19, 6, N'SO54269', 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 (478, 805, 817, 812, 11510, 1, 19, 6, N'SO54277', 1, 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, 805, 817, 812, 11510, 1, 19, 6, N'SO54277', 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 (467, 805, 817, 812, 11510, 2, 19, 6, N'SO54277', 3, 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 (353, 805, 817, 812, 11546, 2, 100, 7, N'SO54256', 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, 805, 817, 812, 11546, 1, 100, 7, N'SO54256', 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, 805, 817, 812, 11546, 1, 100, 7, N'SO54256', 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 (490, 805, 817, 812, 11546, 1, 100, 7, N'SO54256', 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 (359, 805, 817, 812, 11577, 1, 100, 7, N'SO54253', 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 (355, 805, 817, 812, 11578, 1, 100, 7, N'SO54251', 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, 805, 817, 812, 11578, 1, 100, 7, N'SO54251', 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, 805, 817, 812, 11578, 1, 100, 7, N'SO54251', 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 (357, 805, 817, 812, 11604, 1, 98, 10, N'SO54267', 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, 805, 817, 812, 11604, 1, 98, 10, N'SO54267', 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 (225, 805, 817, 812, 11604, 1, 98, 10, N'SO54267', 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 (477, 805, 817, 812, 11604, 1, 98, 10, N'SO54267', 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 (363, 805, 817, 812, 11761, 2, 6, 9, N'SO54302', 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, 805, 817, 812, 11761, 1, 6, 9, N'SO54302', 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, 805, 817, 812, 11761, 1, 6, 9, N'SO54302', 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, 805, 817, 812, 11761, 1, 6, 9, N'SO54302', 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 (467, 805, 817, 812, 11761, 2, 6, 9, N'SO54302', 5, 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 (355, 805, 817, 812, 11762, 1, 6, 9, N'SO54303', 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, 805, 817, 812, 11762, 1, 6, 9, N'SO54303', 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, 805, 817, 812, 11762, 1, 6, 9, N'SO54303', 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, 805, 817, 812, 11762, 1, 6, 9, N'SO54303', 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 (357, 805, 817, 812, 11766, 1, 6, 9, N'SO54304', 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, 805, 817, 812, 11766, 1, 6, 9, N'SO54304', 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, 805, 817, 812, 11766, 1, 6, 9, N'SO54304', 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 (217, 805, 817, 812, 11766, 1, 6, 9, N'SO54304', 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 (463, 805, 817, 812, 11766, 1, 6, 9, N'SO54304', 5, 1, 1, 24.4900, 24.4900, 0, 0, 9.1593, 9.1593, 24.4900, 1.9592, 0.6123, 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 (355, 805, 817, 812, 11910, 1, 6, 9, N'SO54306', 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 (529, 806, 818, 813, 11019, 1, 19, 6, N'SO54332', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 806, 818, 813, 11019, 1, 19, 6, N'SO54332', 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 (482, 806, 818, 813, 11019, 1, 19, 6, N'SO54332', 3, 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 (361, 806, 818, 813, 11110, 1, 6, 9, N'SO54367', 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, 806, 818, 813, 11194, 1, 100, 4, N'SO54355', 1, 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, 806, 818, 813, 11194, 1, 100, 4, N'SO54355', 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 (480, 806, 818, 813, 11194, 1, 100, 4, N'SO54355', 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 (217, 806, 818, 813, 11331, 1, 19, 6, N'SO54331', 1, 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 (355, 806, 818, 813, 11428, 1, 100, 8, N'SO54318', 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, 806, 818, 813, 11428, 1, 100, 8, N'SO54318', 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, 806, 818, 813, 11428, 1, 100, 8, N'SO54318', 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, 806, 818, 813, 11428, 1, 100, 8, N'SO54318', 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, 806, 818, 813, 11428, 1, 100, 8, N'SO54318', 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 (359, 806, 818, 813, 11464, 1, 6, 9, N'SO54364', 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, 806, 818, 813, 11464, 1, 6, 9, N'SO54364', 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, 806, 818, 813, 11464, 1, 6, 9, N'SO54364', 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 (463, 806, 818, 813, 11464, 1, 6, 9, N'SO54364', 4, 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 (537, 806, 818, 813, 11511, 1, 100, 1, N'SO54354', 1, 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 (484, 806, 818, 813, 11519, 1, 19, 6, N'SO54319', 1, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (539, 806, 818, 813, 11631, 1, 19, 6, N'SO54334', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 806, 818, 813, 11631, 1, 19, 6, N'SO54334', 2, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (489, 806, 818, 813, 11829, 1, 100, 1, N'SO54330', 1, 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 (355, 806, 818, 813, 11893, 1, 6, 9, N'SO54365', 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 (363, 806, 818, 813, 11968, 2, 6, 9, N'SO54366', 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 (530, 807, 819, 814, 11091, 1, 19, 6, N'SO54391', 1, 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 (484, 807, 819, 814, 11091, 1, 19, 6, N'SO54391', 2, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 807, 819, 814, 11200, 1, 19, 6, N'SO54379', 1, 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 (479, 807, 819, 814, 11200, 1, 19, 6, N'SO54379', 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 (225, 807, 819, 814, 11200, 1, 19, 6, N'SO54379', 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 (537, 807, 819, 814, 11220, 1, 100, 4, N'SO54412', 1, 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, 807, 819, 814, 11220, 1, 100, 4, N'SO54412', 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 (539, 807, 819, 814, 11300, 1, 19, 6, N'SO54388', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (237, 807, 819, 814, 11300, 1, 19, 6, N'SO54388', 2, 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 (355, 807, 819, 814, 11570, 1, 100, 8, N'SO54376', 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 (539, 807, 819, 814, 11632, 1, 19, 6, N'SO54389', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 807, 819, 814, 11632, 1, 19, 6, N'SO54389', 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 (528, 807, 819, 814, 11802, 1, 19, 6, N'SO54413', 1, 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, 807, 819, 814, 11802, 1, 19, 6, N'SO54413', 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 (482, 807, 819, 814, 11802, 1, 19, 6, N'SO54413', 3, 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 (361, 807, 819, 814, 11903, 1, 6, 9, N'SO54423', 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, 808, 820, 815, 11079, 1, 6, 9, N'SO54436', 1, 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 (535, 808, 820, 815, 11116, 1, 6, 9, N'SO54433', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 808, 820, 815, 11116, 1, 6, 9, N'SO54433', 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 (540, 808, 820, 815, 11185, 1, 19, 6, N'SO54444', 1, 1, 1, 32.6000, 32.6000, 0, 0, 12.1924, 12.1924, 32.6000, 2.6080, 0.8150, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 808, 820, 815, 11185, 1, 19, 6, N'SO54444', 2, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 808, 820, 815, 11185, 1, 19, 6, N'SO54444', 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 (530, 808, 820, 815, 11277, 1, 19, 6, N'SO54443', 1, 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 (541, 808, 820, 815, 11277, 1, 19, 6, N'SO54443', 2, 1, 1, 28.9900, 28.9900, 0, 0, 10.8423, 10.8423, 28.9900, 2.3192, 0.7248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 808, 820, 815, 11277, 1, 19, 6, N'SO54443', 3, 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 (480, 808, 820, 815, 11293, 1, 100, 1, N'SO54439', 1, 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 (484, 808, 820, 815, 11293, 1, 100, 1, N'SO54439', 2, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 808, 820, 815, 11519, 1, 19, 6, N'SO54440', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 808, 820, 815, 11519, 2, 19, 6, N'SO54440', 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 (484, 808, 820, 815, 11519, 1, 19, 6, N'SO54440', 3, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 808, 820, 815, 11535, 1, 100, 1, N'SO54468', 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, 808, 820, 815, 11535, 1, 100, 1, N'SO54468', 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, 808, 820, 815, 11535, 1, 100, 1, N'SO54468', 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, 808, 820, 815, 11535, 1, 100, 1, N'SO54468', 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 (482, 808, 820, 815, 11535, 1, 100, 1, N'SO54468', 5, 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 (488, 808, 820, 815, 11567, 1, 100, 8, N'SO54453', 1, 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 (217, 808, 820, 815, 11574, 1, 98, 10, N'SO54467', 1, 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 (538, 808, 820, 815, 11640, 1, 19, 6, N'SO54441', 1, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 808, 820, 815, 11640, 1, 19, 6, N'SO54441', 2, 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 (537, 809, 821, 816, 11012, 1, 100, 1, N'SO54508', 1, 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, 809, 821, 816, 11012, 1, 100, 1, N'SO54508', 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 (217, 809, 821, 816, 11012, 1, 100, 1, N'SO54508', 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 (587, 809, 821, 816, 11050, 1, 6, 9, N'SO54526', 1, 1, 1, 769.4900, 769.4900, 0, 0, 419.7784, 419.7784, 769.4900, 61.5592, 19.2373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 809, 821, 816, 11050, 1, 6, 9, N'SO54526', 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 (473, 809, 821, 816, 11050, 1, 6, 9, N'SO54526', 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 (535, 809, 821, 816, 11059, 1, 6, 9, N'SO54480', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 809, 821, 816, 11097, 1, 6, 9, N'SO54519', 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, 809, 821, 816, 11097, 1, 6, 9, N'SO54519', 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 (479, 809, 821, 816, 11347, 1, 100, 8, N'SO54511', 1, 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, 809, 821, 816, 11347, 1, 100, 8, N'SO54511', 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 (359, 809, 821, 816, 11439, 1, 100, 7, N'SO54478', 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, 809, 821, 816, 11439, 1, 100, 7, N'SO54478', 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, 809, 821, 816, 11439, 1, 100, 7, N'SO54478', 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 (222, 809, 821, 816, 11439, 1, 100, 7, N'SO54478', 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, 809, 821, 816, 11550, 1, 98, 10, N'SO54477', 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 (483, 809, 821, 816, 11550, 1, 98, 10, N'SO54477', 2, 1, 1, 120.0000, 120.0000, 0, 0, 44.8800, 44.8800, 120.0000, 9.6000, 3.0000, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 809, 821, 816, 11581, 1, 100, 7, N'SO54503', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 809, 821, 816, 11581, 1, 100, 7, N'SO54503', 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 (537, 809, 821, 816, 11731, 1, 100, 4, N'SO54509', 1, 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, 809, 821, 816, 11731, 1, 100, 4, N'SO54509', 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 (485, 809, 821, 816, 11731, 1, 100, 4, N'SO54509', 3, 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 (465, 809, 821, 816, 11731, 1, 100, 4, N'SO54509', 4, 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 (529, 810, 822, 817, 11180, 1, 100, 4, N'SO54537', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 810, 822, 817, 11180, 1, 100, 4, N'SO54537', 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 (536, 810, 822, 817, 11185, 1, 19, 6, N'SO54550', 1, 1, 1, 29.9900, 29.9900, 0, 0, 11.2163, 11.2163, 29.9900, 2.3992, 0.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 810, 822, 817, 11185, 1, 19, 6, N'SO54550', 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 (214, 810, 822, 817, 11185, 1, 19, 6, N'SO54550', 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 (528, 810, 822, 817, 11740, 1, 19, 6, N'SO54548', 1, 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 (536, 810, 822, 817, 11740, 1, 19, 6, N'SO54548', 2, 1, 1, 29.9900, 29.9900, 0, 0, 11.2163, 11.2163, 29.9900, 2.3992, 0.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 810, 822, 817, 11740, 1, 19, 6, N'SO54548', 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 (357, 810, 822, 817, 11906, 1, 6, 9, N'SO54582', 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, 810, 822, 817, 11906, 1, 6, 9, N'SO54582', 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, 810, 822, 817, 11906, 1, 6, 9, N'SO54582', 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, 810, 822, 817, 11906, 1, 6, 9, N'SO54582', 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 (222, 810, 822, 817, 11906, 1, 6, 9, N'SO54582', 5, 1, 1, 34.9900, 34.9900, 0, 0, 13.0863, 13.0863, 34.9900, 2.7992, 0.8748, 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, 811, 823, 818, 11071, 1, 6, 9, N'SO54593', 1, 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, 811, 823, 818, 11071, 1, 6, 9, N'SO54593', 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 (484, 811, 823, 818, 11114, 1, 6, 9, N'SO54594', 1, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 811, 823, 818, 11199, 1, 100, 4, N'SO54605', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 811, 823, 818, 11199, 1, 100, 4, N'SO54605', 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 (529, 811, 823, 818, 11502, 1, 19, 6, N'SO54610', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (539, 811, 823, 818, 11502, 1, 19, 6, N'SO54610', 2, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 811, 823, 818, 11502, 1, 19, 6, N'SO54610', 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 (488, 811, 823, 818, 11502, 1, 19, 6, N'SO54610', 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 (353, 811, 823, 818, 11564, 2, 100, 8, N'SO54590', 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 (359, 811, 823, 818, 11575, 1, 98, 10, N'SO54589', 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, 811, 823, 818, 11603, 2, 98, 10, N'SO54603', 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, 811, 823, 818, 11824, 1, 19, 6, N'SO54612', 1, 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 (536, 811, 823, 818, 11824, 1, 19, 6, N'SO54612', 2, 1, 1, 29.9900, 29.9900, 0, 0, 11.2163, 11.2163, 29.9900, 2.3992, 0.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 811, 823, 818, 11824, 1, 19, 6, N'SO54612', 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 (528, 811, 823, 818, 11845, 1, 19, 6, N'SO54636', 1, 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, 811, 823, 818, 11845, 1, 19, 6, N'SO54636', 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 (480, 811, 823, 818, 11845, 1, 19, 6, N'SO54636', 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 (355, 811, 823, 818, 11888, 1, 19, 6, N'SO54648', 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, 811, 823, 818, 11888, 1, 19, 6, N'SO54648', 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 (214, 811, 823, 818, 11888, 1, 19, 6, N'SO54648', 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 (564, 812, 824, 819, 11007, 1, 6, 9, N'SO54705', 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 (214, 812, 824, 819, 11007, 1, 6, 9, N'SO54705', 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 (574, 812, 824, 819, 11011, 1, 6, 9, N'SO54706', 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 (489, 812, 824, 819, 11011, 1, 6, 9, N'SO54706', 2, 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 (528, 812, 824, 819, 11140, 1, 100, 4, N'SO54694', 1, 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, 812, 824, 819, 11140, 1, 100, 4, N'SO54694', 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 (479, 812, 824, 819, 11176, 1, 19, 6, N'SO54661', 1, 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, 812, 824, 819, 11176, 1, 19, 6, N'SO54661', 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 (489, 812, 824, 819, 11211, 1, 19, 6, N'SO54674', 1, 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 (484, 812, 824, 819, 11300, 1, 19, 6, N'SO54662', 1, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 812, 824, 819, 11430, 1, 100, 8, N'SO54699', 1, 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 (234, 812, 824, 819, 11430, 1, 100, 8, N'SO54699', 2, 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 (234, 812, 824, 819, 11520, 1, 19, 6, N'SO54675', 1, 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 (467, 812, 824, 819, 11520, 1, 19, 6, N'SO54675', 2, 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, 812, 824, 819, 11609, 1, 98, 10, N'SO54673', 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, 812, 824, 819, 11609, 1, 98, 10, N'SO54673', 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, 812, 824, 819, 11609, 1, 98, 10, N'SO54673', 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, 812, 824, 819, 11609, 1, 98, 10, N'SO54673', 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 (537, 813, 825, 820, 11304, 1, 100, 1, N'SO54754', 1, 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, 813, 825, 820, 11304, 1, 100, 1, N'SO54754', 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 (487, 813, 825, 820, 11304, 1, 100, 1, N'SO54754', 3, 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 (484, 813, 825, 820, 11304, 1, 100, 1, N'SO54754', 4, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 813, 825, 820, 11571, 1, 100, 7, N'SO54724', 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, 813, 825, 820, 11571, 1, 100, 7, N'SO54724', 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, 813, 825, 820, 11571, 1, 100, 7, N'SO54724', 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 (528, 813, 825, 820, 11869, 1, 19, 6, N'SO54729', 1, 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 (536, 813, 825, 820, 11869, 1, 19, 6, N'SO54729', 2, 1, 1, 29.9900, 29.9900, 0, 0, 11.2163, 11.2163, 29.9900, 2.3992, 0.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 813, 825, 820, 11869, 1, 19, 6, N'SO54729', 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 (353, 814, 826, 821, 11465, 2, 6, 9, N'SO54809', 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 (359, 814, 826, 821, 11536, 1, 100, 4, N'SO54802', 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, 814, 826, 821, 11536, 1, 100, 4, N'SO54802', 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, 814, 826, 821, 11536, 1, 100, 4, N'SO54802', 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, 814, 826, 821, 11536, 1, 100, 4, N'SO54802', 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 (361, 814, 826, 821, 11540, 1, 100, 4, N'SO54801', 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, 814, 826, 821, 11540, 1, 100, 4, N'SO54801', 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 (487, 814, 826, 821, 11540, 1, 100, 4, N'SO54801', 3, 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 (484, 814, 826, 821, 11540, 1, 100, 4, N'SO54801', 4, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (489, 814, 826, 821, 11718, 1, 100, 1, N'SO54775', 1, 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 (225, 814, 826, 821, 11718, 1, 100, 1, N'SO54775', 2, 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 (359, 814, 826, 821, 11759, 1, 6, 9, N'SO54810', 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 (231, 815, 827, 822, 11091, 1, 19, 6, N'SO54831', 1, 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 (465, 815, 827, 822, 11091, 1, 19, 6, N'SO54831', 2, 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 (540, 815, 827, 822, 11223, 1, 19, 6, N'SO54836', 1, 1, 1, 32.6000, 32.6000, 0, 0, 12.1924, 12.1924, 32.6000, 2.6080, 0.8150, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 815, 827, 822, 11223, 1, 19, 6, N'SO54836', 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 (463, 815, 827, 822, 11223, 1, 19, 6, N'SO54836', 3, 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 (530, 815, 827, 822, 11498, 1, 19, 6, N'SO54834', 1, 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 (465, 815, 827, 822, 11631, 1, 19, 6, N'SO54828', 1, 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 (222, 815, 827, 822, 11631, 1, 19, 6, N'SO54828', 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 (355, 815, 827, 822, 11751, 1, 6, 9, N'SO54868', 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, 815, 827, 822, 11751, 1, 6, 9, N'SO54868', 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 (485, 815, 827, 822, 11751, 1, 6, 9, N'SO54868', 3, 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 (490, 815, 827, 822, 11751, 1, 6, 9, N'SO54868', 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 (355, 815, 827, 822, 11895, 1, 6, 9, N'SO54870', 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, 815, 827, 822, 11895, 1, 6, 9, N'SO54870', 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 (363, 815, 827, 822, 11914, 1, 6, 9, N'SO54869', 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, 815, 827, 822, 11914, 1, 6, 9, N'SO54869', 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 (529, 816, 828, 823, 11014, 1, 100, 1, N'SO54898', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 816, 828, 823, 11014, 1, 100, 1, N'SO54898', 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 (478, 816, 828, 823, 11073, 1, 6, 9, N'SO54892', 1, 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, 816, 828, 823, 11073, 1, 6, 9, N'SO54892', 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 (217, 816, 828, 823, 11073, 1, 6, 9, N'SO54892', 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 (490, 816, 828, 823, 11073, 1, 6, 9, N'SO54892', 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 (478, 816, 828, 823, 11074, 1, 6, 9, N'SO54893', 1, 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, 816, 828, 823, 11074, 1, 6, 9, N'SO54893', 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 (222, 816, 828, 823, 11074, 1, 6, 9, N'SO54893', 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 (355, 816, 828, 823, 11100, 1, 6, 9, N'SO54928', 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 (465, 816, 828, 823, 11100, 1, 6, 9, N'SO54928', 2, 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 (487, 816, 828, 823, 11100, 1, 6, 9, N'SO54928', 3, 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 (535, 816, 828, 823, 11200, 1, 19, 6, N'SO54899', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 816, 828, 823, 11200, 1, 19, 6, N'SO54899', 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, 816, 828, 823, 11576, 1, 100, 7, N'SO54882', 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 (483, 816, 828, 823, 11576, 1, 100, 7, N'SO54882', 2, 1, 1, 120.0000, 120.0000, 0, 0, 44.8800, 44.8800, 120.0000, 9.6000, 3.0000, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 816, 828, 823, 11582, 1, 100, 7, N'SO54881', 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, 816, 828, 823, 11582, 1, 100, 7, N'SO54881', 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 (222, 816, 828, 823, 11783, 1, 100, 4, N'SO54885', 1, 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 (222, 816, 828, 823, 11959, 1, 100, 4, N'SO54884', 1, 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, 816, 828, 823, 11969, 2, 6, 9, N'SO54927', 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 (585, 817, 829, 824, 11244, 1, 98, 10, N'SO54970', 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 (541, 817, 829, 824, 11244, 1, 98, 10, N'SO54970', 2, 1, 1, 28.9900, 28.9900, 0, 0, 10.8423, 10.8423, 28.9900, 2.3192, 0.7248, 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 (530, 817, 829, 824, 11244, 1, 98, 10, N'SO54970', 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, 817, 829, 824, 11244, 1, 98, 10, N'SO54970', 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 (537, 817, 829, 824, 11322, 1, 100, 1, N'SO54961', 1, 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, 817, 829, 824, 11322, 1, 100, 1, N'SO54961', 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 (480, 817, 829, 824, 11322, 1, 100, 1, N'SO54961', 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 (363, 817, 829, 824, 11537, 2, 100, 4, N'SO54968', 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 (353, 817, 829, 824, 11598, 1, 100, 8, N'SO54941', 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, 817, 829, 824, 11598, 1, 100, 8, N'SO54941', 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 (480, 817, 829, 824, 11598, 1, 100, 8, N'SO54941', 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 (483, 817, 829, 824, 11598, 1, 100, 8, N'SO54941', 4, 1, 1, 120.0000, 120.0000, 0, 0, 44.8800, 44.8800, 120.0000, 9.6000, 3.0000, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 817, 829, 824, 11836, 1, 100, 1, N'SO54942', 1, 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 (489, 818, 830, 825, 11203, 1, 19, 6, N'SO54985', 1, 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 (480, 818, 830, 825, 11209, 1, 100, 4, N'SO54987', 1, 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 (480, 818, 830, 825, 11305, 1, 100, 4, N'SO54988', 1, 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 (355, 818, 830, 825, 11539, 1, 100, 4, N'SO55018', 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, 818, 830, 825, 11539, 1, 100, 4, N'SO55018', 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, 818, 830, 825, 11539, 1, 100, 4, N'SO55018', 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, 818, 830, 825, 11539, 1, 100, 4, N'SO55018', 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 (465, 818, 830, 825, 11539, 1, 100, 4, N'SO55018', 5, 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, 818, 830, 825, 11909, 1, 6, 9, N'SO55026', 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, 818, 830, 825, 11909, 1, 6, 9, N'SO55026', 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 (528, 818, 830, 825, 11960, 1, 100, 1, N'SO55012', 1, 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, 818, 830, 825, 11960, 1, 100, 1, N'SO55012', 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 (530, 819, 831, 826, 11203, 1, 19, 6, N'SO55046', 1, 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 (529, 819, 831, 826, 11223, 1, 19, 6, N'SO55047', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (540, 819, 831, 826, 11223, 1, 19, 6, N'SO55047', 2, 1, 1, 32.6000, 32.6000, 0, 0, 12.1924, 12.1924, 32.6000, 2.6080, 0.8150, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 819, 831, 826, 11223, 1, 19, 6, N'SO55047', 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 (355, 819, 831, 826, 11427, 1, 100, 8, N'SO55033', 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 (222, 819, 831, 826, 11427, 1, 100, 8, N'SO55033', 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 (530, 819, 831, 826, 11711, 1, 19, 6, N'SO55045', 1, 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 (529, 819, 831, 826, 11808, 1, 19, 6, N'SO55044', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (538, 819, 831, 826, 11808, 1, 19, 6, N'SO55044', 2, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 819, 831, 826, 11808, 1, 19, 6, N'SO55044', 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 (486, 819, 831, 826, 11808, 1, 19, 6, N'SO55044', 4, 1, 1, 159.0000, 159.0000, 0, 0, 59.4660, 59.4660, 159.0000, 12.7200, 3.9750, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 819, 831, 826, 11904, 1, 6, 9, N'SO55084', 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, 819, 831, 826, 11904, 1, 6, 9, N'SO55084', 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 (491, 819, 831, 826, 11904, 1, 6, 9, N'SO55084', 3, 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 (463, 819, 831, 826, 11904, 1, 6, 9, N'SO55084', 4, 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 (353, 819, 831, 826, 11905, 1, 6, 9, N'SO55085', 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, 819, 831, 826, 11905, 1, 6, 9, N'SO55085', 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, 819, 831, 826, 11905, 1, 6, 9, N'SO55085', 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 (484, 819, 831, 826, 11905, 1, 6, 9, N'SO55085', 4, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 819, 831, 826, 11964, 1, 6, 9, N'SO55083', 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, 819, 831, 826, 11964, 1, 6, 9, N'SO55083', 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 (353, 820, 832, 827, 11026, 1, 6, 9, N'SO55132', 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, 820, 832, 827, 11026, 1, 6, 9, N'SO55132', 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 (467, 820, 832, 827, 11026, 1, 6, 9, N'SO55132', 3, 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 (535, 820, 832, 827, 11150, 1, 6, 9, N'SO55095', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 820, 832, 827, 11150, 1, 6, 9, N'SO55095', 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 (214, 820, 832, 827, 11150, 1, 6, 9, N'SO55095', 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 (467, 820, 832, 827, 11150, 1, 6, 9, N'SO55095', 4, 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 (489, 820, 832, 827, 11150, 1, 6, 9, N'SO55095', 5, 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 (489, 820, 832, 827, 11440, 1, 100, 7, N'SO55126', 1, 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 (463, 820, 832, 827, 11440, 1, 100, 7, N'SO55126', 2, 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 (530, 820, 832, 827, 11498, 1, 19, 6, N'SO55101', 1, 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 (487, 820, 832, 827, 11498, 1, 19, 6, N'SO55101', 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 (529, 820, 832, 827, 11501, 1, 19, 6, N'SO55102', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 820, 832, 827, 11501, 1, 19, 6, N'SO55102', 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 (528, 820, 832, 827, 11501, 1, 19, 6, N'SO55107', 1, 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 (536, 820, 832, 827, 11501, 1, 19, 6, N'SO55107', 2, 1, 1, 29.9900, 29.9900, 0, 0, 11.2163, 11.2163, 29.9900, 2.3992, 0.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 820, 832, 827, 11501, 1, 19, 6, N'SO55107', 3, 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 (214, 820, 832, 827, 11501, 1, 19, 6, N'SO55107', 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 (535, 820, 832, 827, 11505, 1, 19, 6, N'SO55104', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 820, 832, 827, 11505, 1, 19, 6, N'SO55104', 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 (361, 820, 832, 827, 11549, 1, 98, 10, N'SO55093', 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, 820, 832, 827, 11549, 1, 98, 10, N'SO55093', 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, 820, 832, 827, 11549, 1, 98, 10, N'SO55093', 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 (234, 820, 832, 827, 11858, 1, 100, 4, N'SO55094', 1, 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 (357, 820, 832, 827, 11898, 1, 6, 9, N'SO55134', 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, 820, 832, 827, 11898, 1, 6, 9, N'SO55134', 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, 820, 832, 827, 11898, 1, 6, 9, N'SO55134', 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 (217, 820, 832, 827, 11898, 1, 6, 9, N'SO55134', 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, 820, 832, 827, 11967, 1, 6, 9, N'SO55133', 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 (225, 820, 832, 827, 11967, 1, 6, 9, N'SO55133', 2, 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 (487, 820, 832, 827, 11967, 1, 6, 9, N'SO55133', 3, 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 (480, 821, 833, 828, 11213, 1, 100, 1, N'SO55148', 1, 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 (530, 821, 833, 828, 11215, 1, 19, 6, N'SO55151', 1, 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, 821, 833, 828, 11215, 1, 19, 6, N'SO55151', 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, 821, 833, 828, 11433, 1, 100, 7, N'SO55142', 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, 821, 833, 828, 11433, 1, 100, 7, N'SO55142', 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 (474, 821, 833, 828, 11498, 1, 19, 6, N'SO55158', 1, 1, 1, 69.9900, 69.9900, 0, 0, 26.1763, 26.1763, 69.9900, 5.5992, 1.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 821, 833, 828, 11498, 1, 19, 6, N'SO55158', 2, 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, 821, 833, 828, 11548, 1, 98, 10, N'SO55141', 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 (217, 821, 833, 828, 11548, 1, 98, 10, N'SO55141', 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 (228, 821, 833, 828, 11548, 1, 98, 10, N'SO55141', 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 (467, 821, 833, 828, 11548, 1, 98, 10, N'SO55141', 4, 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 (538, 821, 833, 828, 11566, 1, 100, 7, N'SO55171', 1, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 821, 833, 828, 11566, 1, 100, 7, N'SO55171', 2, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 821, 833, 828, 11566, 1, 100, 7, N'SO55171', 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, 821, 833, 828, 11764, 1, 6, 9, N'SO55175', 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, 821, 833, 828, 11764, 1, 6, 9, N'SO55175', 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, 821, 833, 828, 11764, 1, 6, 9, N'SO55175', 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, 821, 833, 828, 11764, 1, 6, 9, N'SO55175', 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, 821, 833, 828, 11892, 2, 6, 9, N'SO55176', 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, 821, 833, 828, 11892, 1, 6, 9, N'SO55176', 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, 821, 833, 828, 11892, 1, 6, 9, N'SO55176', 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 (577, 821, 833, 828, 11999, 1, 6, 9, N'SO55140', 1, 1, 1, 1214.8500, 1214.8500, 0, 0, 755.1508, 755.1508, 1214.8500, 97.1880, 30.3713, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (541, 821, 833, 828, 11999, 1, 6, 9, N'SO55140', 2, 1, 1, 28.9900, 28.9900, 0, 0, 10.8423, 10.8423, 28.9900, 2.3192, 0.7248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (530, 821, 833, 828, 11999, 1, 6, 9, N'SO55140', 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, 821, 833, 828, 11999, 1, 6, 9, N'SO55140', 4, 1, 1, 34.9900, 34.9900, 0, 0, 13.0863, 13.0863, 34.9900, 2.7992, 0.8748, 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 (467, 821, 833, 828, 11999, 1, 6, 9, N'SO55140', 5, 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 (471, 822, 834, 829, 11153, 1, 100, 1, N'SO55189', 1, 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 (529, 822, 834, 829, 11153, 1, 100, 1, N'SO55189', 2, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 822, 834, 829, 11153, 1, 100, 1, N'SO55215', 1, 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, 822, 834, 829, 11153, 1, 100, 1, N'SO55215', 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 (480, 822, 834, 829, 11153, 1, 100, 1, N'SO55215', 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 (529, 822, 834, 829, 11177, 1, 100, 4, N'SO55191', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 822, 834, 829, 11177, 1, 100, 4, N'SO55191', 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 (539, 822, 834, 829, 11215, 1, 19, 6, N'SO55193', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 822, 834, 829, 11215, 1, 19, 6, N'SO55193', 2, 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 (467, 822, 834, 829, 11215, 1, 19, 6, N'SO55193', 3, 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 (529, 822, 834, 829, 11253, 1, 19, 6, N'SO55190', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 822, 834, 829, 11253, 1, 19, 6, N'SO55190', 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 (231, 822, 834, 829, 11253, 1, 19, 6, N'SO55190', 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 (535, 822, 834, 829, 11362, 1, 6, 9, N'SO55180', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 822, 834, 829, 11362, 1, 6, 9, N'SO55180', 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 (541, 822, 834, 829, 11392, 1, 100, 8, N'SO55212', 1, 1, 1, 28.9900, 28.9900, 0, 0, 10.8423, 10.8423, 28.9900, 2.3192, 0.7248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 822, 834, 829, 11890, 1, 100, 4, N'SO55217', 1, 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, 822, 834, 829, 11890, 1, 100, 4, N'SO55217', 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 (485, 822, 834, 829, 11890, 1, 100, 4, N'SO55217', 3, 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 (481, 822, 834, 829, 11890, 1, 100, 4, N'SO55217', 4, 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 (355, 822, 834, 829, 11896, 1, 6, 9, N'SO55228', 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, 822, 834, 829, 11896, 1, 6, 9, N'SO55228', 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 (530, 823, 835, 830, 11287, 1, 19, 6, N'SO55342', 1, 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 (480, 823, 835, 830, 11287, 1, 19, 6, N'SO55342', 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 (484, 823, 835, 830, 11287, 1, 19, 6, N'SO55342', 3, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 823, 835, 830, 11458, 1, 6, 9, N'SO55335', 1, 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, 823, 835, 830, 11458, 1, 6, 9, N'SO55335', 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 (225, 823, 835, 830, 11458, 1, 6, 9, N'SO55335', 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 (605, 823, 835, 830, 11484, 1, 100, 8, N'SO55379', 1, 1, 1, 539.9900, 539.9900, 0, 0, 343.6496, 343.6496, 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 (479, 823, 835, 830, 11484, 1, 100, 8, N'SO55379', 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 (479, 823, 835, 830, 11566, 1, 100, 7, N'SO55370', 1, 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, 823, 835, 830, 11566, 1, 100, 7, N'SO55370', 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 (463, 823, 835, 830, 11758, 1, 6, 9, N'SO55337', 1, 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 (537, 824, 836, 831, 11226, 1, 100, 1, N'SO55430', 1, 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 (529, 824, 836, 831, 11255, 1, 100, 1, N'SO55400', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 824, 836, 831, 11255, 1, 100, 1, N'SO55400', 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 (477, 824, 836, 831, 11331, 1, 19, 6, N'SO55385', 1, 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 (479, 824, 836, 831, 11331, 1, 19, 6, N'SO55385', 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 (490, 824, 836, 831, 11331, 1, 19, 6, N'SO55385', 3, 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 (477, 824, 836, 831, 11348, 1, 100, 8, N'SO55434', 1, 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 (479, 824, 836, 831, 11348, 1, 100, 8, N'SO55434', 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 (490, 824, 836, 831, 11348, 1, 100, 8, N'SO55434', 3, 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 (491, 824, 836, 831, 11405, 1, 100, 8, N'SO55433', 1, 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 (537, 824, 836, 831, 11520, 1, 19, 6, N'SO55428', 1, 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, 824, 836, 831, 11520, 1, 19, 6, N'SO55428', 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 (214, 824, 836, 831, 11520, 1, 19, 6, N'SO55428', 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 (359, 824, 836, 831, 11628, 1, 100, 4, N'SO55441', 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, 824, 836, 831, 11628, 1, 100, 4, N'SO55441', 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 (237, 824, 836, 831, 11631, 1, 19, 6, N'SO55401', 1, 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 (537, 824, 836, 831, 11698, 1, 19, 6, N'SO55429', 1, 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 (463, 824, 836, 831, 11760, 1, 6, 9, N'SO55394', 1, 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 (537, 824, 836, 831, 11771, 1, 100, 1, N'SO55432', 1, 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 (529, 825, 837, 832, 11211, 1, 19, 6, N'SO55463', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (489, 825, 837, 832, 11211, 1, 19, 6, N'SO55463', 2, 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 (225, 825, 837, 832, 11211, 1, 19, 6, N'SO55463', 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 (578, 825, 837, 832, 11387, 1, 98, 10, N'SO55493', 1, 1, 1, 1214.8500, 1214.8500, 0, 0, 755.1508, 755.1508, 1214.8500, 97.1880, 30.3713, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 825, 837, 832, 11387, 1, 98, 10, N'SO55493', 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, 825, 837, 832, 11387, 1, 98, 10, N'SO55493', 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 (530, 825, 837, 832, 11505, 1, 19, 6, N'SO55462', 1, 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 (217, 825, 837, 832, 11505, 1, 19, 6, N'SO55462', 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 (234, 825, 837, 832, 11505, 1, 19, 6, N'SO55462', 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 (463, 825, 837, 832, 11505, 1, 19, 6, N'SO55462', 4, 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 (537, 825, 837, 832, 11725, 1, 100, 1, N'SO55488', 1, 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, 825, 837, 832, 11725, 1, 100, 1, N'SO55488', 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 (485, 825, 837, 832, 11725, 1, 100, 1, N'SO55488', 3, 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 (484, 825, 837, 832, 11725, 1, 100, 1, N'SO55488', 4, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (535, 826, 838, 833, 11253, 1, 19, 6, N'SO55519', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (604, 826, 838, 833, 11402, 1, 100, 7, N'SO55551', 1, 1, 1, 539.9900, 539.9900, 0, 0, 343.6496, 343.6496, 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 (477, 826, 838, 833, 11402, 1, 100, 7, N'SO55551', 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 (479, 826, 838, 833, 11402, 1, 100, 7, N'SO55551', 3, 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 (222, 826, 838, 833, 11402, 1, 100, 7, N'SO55551', 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 (529, 826, 838, 833, 11760, 1, 6, 9, N'SO55509', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 826, 838, 833, 11760, 1, 6, 9, N'SO55509', 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 (473, 826, 838, 833, 11760, 1, 6, 9, N'SO55509', 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 (353, 827, 839, 834, 11040, 1, 100, 1, N'SO55599', 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, 827, 839, 834, 11040, 1, 100, 1, N'SO55599', 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 (481, 827, 839, 834, 11040, 1, 100, 1, N'SO55599', 3, 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 (529, 827, 839, 834, 11091, 1, 19, 6, N'SO55572', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (540, 827, 839, 834, 11091, 1, 19, 6, N'SO55572', 2, 1, 1, 32.6000, 32.6000, 0, 0, 12.1924, 12.1924, 32.6000, 2.6080, 0.8150, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 827, 839, 834, 11091, 1, 19, 6, N'SO55572', 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 (529, 827, 839, 834, 11187, 1, 100, 1, N'SO55563', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (471, 827, 839, 834, 11187, 1, 100, 1, N'SO55563', 2, 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 (535, 827, 839, 834, 11200, 1, 19, 6, N'SO55571', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 827, 839, 834, 11200, 1, 19, 6, N'SO55571', 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 (530, 827, 839, 834, 11566, 1, 100, 7, N'SO55587', 1, 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 (480, 827, 839, 834, 11566, 2, 100, 7, N'SO55587', 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 (530, 827, 839, 834, 11566, 1, 100, 7, N'SO55588', 1, 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, 827, 839, 834, 11566, 1, 100, 7, N'SO55588', 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 (529, 827, 839, 834, 11802, 1, 19, 6, N'SO55566', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (538, 827, 839, 834, 11802, 1, 19, 6, N'SO55566', 2, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 827, 839, 834, 11802, 1, 19, 6, N'SO55566', 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 (490, 827, 839, 834, 11828, 1, 100, 1, N'SO55562', 1, 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 (353, 827, 839, 834, 11977, 1, 6, 9, N'SO55607', 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, 827, 839, 834, 11977, 1, 6, 9, N'SO55607', 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 (481, 827, 839, 834, 11977, 1, 6, 9, N'SO55607', 3, 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 (529, 828, 840, 835, 11091, 1, 19, 6, N'SO55626', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (538, 828, 840, 835, 11091, 1, 19, 6, N'SO55626', 2, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 828, 840, 835, 11091, 1, 19, 6, N'SO55626', 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 (530, 828, 840, 835, 11203, 1, 19, 6, N'SO55625', 1, 1, 1, 4.9900, 4.9900, 0, 0, 1.8663, 1.8663, 4.9900, 0.3992, 0.1248, 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 (480, 828, 840, 835, 11203, 2, 19, 6, N'SO55625', 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 (591, 828, 840, 835, 11241, 1, 100, 7, N'SO55623', 1, 1, 1, 564.9900, 564.9900, 0, 0, 308.2179, 308.2179, 564.9900, 45.1992, 14.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 (528, 828, 840, 835, 11241, 1, 100, 7, N'SO55623', 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 (535, 828, 840, 835, 11241, 1, 100, 7, N'SO55623', 3, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 828, 840, 835, 11241, 1, 100, 7, N'SO55623', 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 (490, 828, 840, 835, 11241, 1, 100, 7, N'SO55623', 5, 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 (467, 828, 840, 835, 11241, 1, 100, 7, N'SO55623', 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 (488, 828, 840, 835, 11490, 1, 100, 7, N'SO55645', 1, 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 (538, 828, 840, 835, 11506, 1, 19, 6, N'SO55627', 1, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 828, 840, 835, 11988, 1, 6, 9, N'SO55670', 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, 828, 840, 835, 11988, 1, 6, 9, N'SO55670', 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, 828, 840, 835, 11988, 1, 6, 9, N'SO55670', 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 (237, 829, 841, 836, 11176, 1, 19, 6, N'SO55691', 1, 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 (586, 829, 841, 836, 11247, 1, 98, 10, N'SO55725', 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 (222, 829, 841, 836, 11247, 1, 98, 10, N'SO55725', 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 (234, 829, 841, 836, 11247, 1, 98, 10, N'SO55725', 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 (535, 829, 841, 836, 11276, 1, 19, 6, N'SO55695', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 829, 841, 836, 11276, 1, 19, 6, N'SO55695', 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 (530, 829, 841, 836, 11501, 1, 19, 6, N'SO55697', 1, 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 (480, 829, 841, 836, 11532, 1, 100, 1, N'SO55689', 1, 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 (353, 829, 841, 836, 11614, 2, 100, 8, N'SO55682', 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, 829, 841, 836, 11614, 1, 100, 8, N'SO55682', 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, 829, 841, 836, 11614, 1, 100, 8, N'SO55682', 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 (490, 829, 841, 836, 11614, 1, 100, 8, N'SO55682', 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 (491, 829, 841, 836, 11649, 1, 100, 4, N'SO55690', 1, 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 (538, 829, 841, 836, 11677, 1, 19, 6, N'SO55694', 1, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 829, 841, 836, 11936, 1, 100, 1, N'SO55716', 1, 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, 829, 841, 836, 11936, 1, 100, 1, N'SO55716', 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 (480, 829, 841, 836, 11936, 1, 100, 1, N'SO55716', 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 (222, 830, 842, 837, 11203, 1, 19, 6, N'SO55743', 1, 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 (488, 830, 842, 837, 11203, 1, 19, 6, N'SO55743', 2, 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 (234, 830, 842, 837, 11211, 1, 19, 6, N'SO55742', 1, 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 (481, 830, 842, 837, 11211, 1, 19, 6, N'SO55742', 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 (535, 830, 842, 837, 11287, 1, 19, 6, N'SO55756', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 830, 842, 837, 11499, 1, 100, 4, N'SO55782', 1, 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, 830, 842, 837, 11499, 1, 100, 4, N'SO55782', 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 (485, 830, 842, 837, 11499, 1, 100, 4, N'SO55782', 3, 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 (484, 830, 842, 837, 11499, 1, 100, 4, N'SO55782', 4, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 830, 842, 837, 11632, 1, 19, 6, N'SO55755', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (538, 830, 842, 837, 11632, 1, 19, 6, N'SO55755', 2, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 830, 842, 837, 11632, 1, 19, 6, N'SO55755', 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 (463, 830, 842, 837, 11632, 1, 19, 6, N'SO55755', 4, 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 (536, 830, 842, 837, 11661, 1, 19, 6, N'SO55759', 1, 1, 1, 29.9900, 29.9900, 0, 0, 11.2163, 11.2163, 29.9900, 2.3992, 0.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 830, 842, 837, 11661, 1, 19, 6, N'SO55759', 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 (214, 830, 842, 837, 11661, 1, 19, 6, N'SO55759', 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 (535, 831, 843, 838, 11094, 1, 6, 9, N'SO55816', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 831, 843, 838, 11094, 1, 6, 9, N'SO55816', 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 (355, 831, 843, 838, 11112, 1, 6, 9, N'SO55860', 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, 831, 843, 838, 11112, 1, 6, 9, N'SO55860', 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 (486, 831, 843, 838, 11112, 1, 6, 9, N'SO55860', 3, 1, 1, 159.0000, 159.0000, 0, 0, 59.4660, 59.4660, 159.0000, 12.7200, 3.9750, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 831, 843, 838, 11221, 1, 100, 4, N'SO55827', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (490, 831, 843, 838, 11223, 1, 19, 6, N'SO55826', 1, 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 (563, 831, 843, 838, 11328, 1, 19, 6, N'SO55863', 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, 831, 843, 838, 11328, 1, 19, 6, N'SO55863', 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, 831, 843, 838, 11328, 1, 19, 6, N'SO55863', 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 (357, 831, 843, 838, 11617, 1, 100, 4, N'SO55855', 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, 831, 843, 838, 11617, 1, 100, 4, N'SO55855', 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 (480, 831, 843, 838, 11617, 1, 100, 4, N'SO55855', 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 (363, 831, 843, 838, 11626, 1, 100, 4, N'SO55856', 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, 831, 843, 838, 11626, 1, 100, 4, N'SO55856', 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 (471, 831, 843, 838, 11626, 1, 100, 4, N'SO55856', 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 (477, 831, 843, 838, 11711, 1, 19, 6, N'SO55815', 1, 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 (479, 831, 843, 838, 11711, 1, 19, 6, N'SO55815', 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 (529, 832, 844, 839, 11277, 1, 19, 6, N'SO55880', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 832, 844, 839, 11277, 1, 19, 6, N'SO55880', 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 (538, 832, 844, 839, 11519, 1, 19, 6, N'SO55885', 1, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 832, 844, 839, 11519, 1, 19, 6, N'SO55885', 2, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 832, 844, 839, 11519, 1, 19, 6, N'SO55885', 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 (528, 832, 844, 839, 11519, 1, 19, 6, N'SO55887', 1, 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 (536, 832, 844, 839, 11519, 1, 19, 6, N'SO55887', 2, 1, 1, 29.9900, 29.9900, 0, 0, 11.2163, 11.2163, 29.9900, 2.3992, 0.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 832, 844, 839, 11519, 1, 19, 6, N'SO55887', 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, 832, 844, 839, 11583, 1, 100, 7, N'SO55868', 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, 832, 844, 839, 11583, 1, 100, 7, N'SO55868', 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, 832, 844, 839, 11583, 1, 100, 7, N'SO55868', 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 (488, 832, 844, 839, 11619, 1, 19, 6, N'SO55877', 1, 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 (465, 832, 844, 839, 11619, 1, 19, 6, N'SO55877', 2, 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 (480, 832, 844, 839, 11622, 1, 100, 1, N'SO55878', 1, 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 (353, 832, 844, 839, 11671, 1, 100, 4, N'SO55912', 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, 832, 844, 839, 11671, 1, 100, 4, N'SO55912', 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 (234, 832, 844, 839, 11671, 1, 100, 4, N'SO55912', 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 (535, 832, 844, 839, 11749, 1, 6, 9, N'SO55879', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 832, 844, 839, 11850, 1, 100, 4, N'SO55906', 1, 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, 832, 844, 839, 11850, 1, 100, 4, N'SO55906', 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 (217, 832, 844, 839, 11850, 1, 100, 4, N'SO55906', 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 (465, 832, 844, 839, 11850, 1, 100, 4, N'SO55906', 4, 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, 833, 845, 840, 11132, 1, 19, 6, N'SO55957', 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, 833, 845, 840, 11132, 1, 19, 6, N'SO55957', 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, 833, 845, 840, 11132, 1, 19, 6, N'SO55957', 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, 833, 845, 840, 11132, 1, 19, 6, N'SO55957', 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 (478, 833, 845, 840, 11132, 1, 19, 6, N'SO55957', 5, 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, 833, 845, 840, 11132, 1, 19, 6, N'SO55957', 6, 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 (583, 833, 845, 840, 11412, 1, 100, 8, N'SO55932', 1, 1, 1, 1700.9900, 1700.9900, 0, 0, 1082.5100, 1082.5100, 1700.9900, 136.0792, 42.5248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 833, 845, 840, 11412, 1, 100, 8, N'SO55932', 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, 833, 845, 840, 11412, 1, 100, 8, N'SO55932', 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 (214, 833, 845, 840, 11426, 1, 100, 8, N'SO55952', 1, 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 (491, 833, 845, 840, 11581, 1, 100, 7, N'SO55951', 1, 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, 833, 845, 840, 11587, 1, 100, 7, N'SO55924', 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, 833, 845, 840, 11587, 1, 100, 7, N'SO55924', 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 (480, 833, 845, 840, 11587, 1, 100, 7, N'SO55924', 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 (486, 833, 845, 840, 11587, 1, 100, 7, N'SO55924', 4, 1, 1, 159.0000, 159.0000, 0, 0, 59.4660, 59.4660, 159.0000, 12.7200, 3.9750, 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 (528, 833, 845, 840, 11695, 1, 100, 4, N'SO55948', 1, 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, 833, 845, 840, 11695, 1, 100, 4, N'SO55948', 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 (222, 833, 845, 840, 11695, 1, 100, 4, N'SO55948', 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 (477, 833, 845, 840, 11981, 1, 100, 1, N'SO55927', 1, 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 (479, 833, 845, 840, 11981, 1, 100, 1, N'SO55927', 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 (473, 833, 845, 840, 11981, 1, 100, 1, N'SO55927', 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 (363, 833, 845, 840, 12000, 1, 6, 9, N'SO55961', 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, 833, 845, 840, 12000, 1, 6, 9, N'SO55961', 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, 833, 845, 840, 12000, 1, 6, 9, N'SO55961', 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 (528, 834, 846, 841, 11045, 1, 6, 9, N'SO55973', 1, 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 (535, 834, 846, 841, 11045, 1, 6, 9, N'SO55973', 2, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 834, 846, 841, 11045, 1, 6, 9, N'SO55973', 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 (529, 834, 846, 841, 11127, 1, 100, 4, N'SO55981', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 834, 846, 841, 11176, 1, 19, 6, N'SO55982', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (539, 834, 846, 841, 11176, 1, 19, 6, N'SO55982', 2, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 834, 846, 841, 11176, 1, 19, 6, N'SO55982', 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 (361, 834, 846, 841, 11610, 1, 98, 10, N'SO55970', 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, 834, 846, 841, 11610, 1, 98, 10, N'SO55970', 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 (484, 834, 846, 841, 11880, 1, 100, 1, N'SO55971', 1, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 834, 846, 841, 11989, 1, 6, 9, N'SO56010', 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, 834, 846, 841, 11989, 1, 6, 9, N'SO56010', 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 (473, 834, 846, 841, 11989, 1, 6, 9, N'SO56010', 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 (478, 835, 847, 842, 11200, 1, 19, 6, N'SO56044', 1, 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, 835, 847, 842, 11200, 1, 19, 6, N'SO56044', 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 (487, 835, 847, 842, 11200, 1, 19, 6, N'SO56044', 3, 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 (484, 835, 847, 842, 11200, 1, 19, 6, N'SO56044', 4, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 835, 847, 842, 11203, 1, 19, 6, N'SO56037', 1, 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 (536, 835, 847, 842, 11203, 1, 19, 6, N'SO56037', 2, 1, 1, 29.9900, 29.9900, 0, 0, 11.2163, 11.2163, 29.9900, 2.3992, 0.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 835, 847, 842, 11203, 1, 19, 6, N'SO56037', 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 (488, 835, 847, 842, 11215, 1, 19, 6, N'SO56029', 1, 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 (530, 835, 847, 842, 11215, 1, 19, 6, N'SO56032', 1, 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 (528, 835, 847, 842, 11651, 1, 19, 6, N'SO56039', 1, 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 (536, 835, 847, 842, 11651, 1, 19, 6, N'SO56039', 2, 1, 1, 29.9900, 29.9900, 0, 0, 11.2163, 11.2163, 29.9900, 2.3992, 0.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 835, 847, 842, 11694, 1, 100, 4, N'SO56050', 1, 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, 835, 847, 842, 11694, 1, 100, 4, N'SO56050', 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 (222, 835, 847, 842, 11694, 1, 100, 4, N'SO56050', 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 (528, 835, 847, 842, 11808, 1, 19, 6, N'SO56036', 1, 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 (536, 835, 847, 842, 11808, 1, 19, 6, N'SO56036', 2, 1, 1, 29.9900, 29.9900, 0, 0, 11.2163, 11.2163, 29.9900, 2.3992, 0.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 835, 847, 842, 11808, 1, 19, 6, N'SO56036', 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 (474, 836, 848, 843, 11505, 1, 19, 6, N'SO56084', 1, 1, 1, 69.9900, 69.9900, 0, 0, 26.1763, 26.1763, 69.9900, 5.5992, 1.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (490, 836, 848, 843, 11505, 1, 19, 6, N'SO56084', 2, 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 (528, 836, 848, 843, 11641, 1, 19, 6, N'SO56077', 1, 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 (536, 836, 848, 843, 11641, 1, 19, 6, N'SO56077', 2, 1, 1, 29.9900, 29.9900, 0, 0, 11.2163, 11.2163, 29.9900, 2.3992, 0.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 836, 848, 843, 11641, 1, 19, 6, N'SO56077', 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 (476, 836, 848, 843, 11641, 1, 19, 6, N'SO56087', 1, 1, 1, 69.9900, 69.9900, 0, 0, 26.1763, 26.1763, 69.9900, 5.5992, 1.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (237, 836, 848, 843, 11641, 2, 19, 6, N'SO56087', 2, 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 (463, 836, 848, 843, 11641, 1, 19, 6, N'SO56087', 3, 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 (537, 836, 848, 843, 11687, 1, 100, 4, N'SO56100', 1, 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 (537, 836, 848, 843, 11784, 1, 19, 6, N'SO56099', 1, 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, 836, 848, 843, 11784, 1, 19, 6, N'SO56099', 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 (217, 836, 848, 843, 11784, 1, 19, 6, N'SO56099', 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 (529, 837, 849, 844, 11013, 1, 100, 1, N'SO56137', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 837, 849, 844, 11013, 1, 100, 1, N'SO56137', 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 (529, 837, 849, 844, 11081, 1, 100, 4, N'SO56136', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (488, 837, 849, 844, 11081, 1, 100, 4, N'SO56136', 2, 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 (225, 837, 849, 844, 11081, 1, 100, 4, N'SO56136', 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 (580, 837, 849, 844, 11249, 1, 100, 8, N'SO56133', 1, 1, 1, 1700.9900, 1700.9900, 0, 0, 1082.5100, 1082.5100, 1700.9900, 136.0792, 42.5248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (231, 837, 849, 844, 11249, 1, 100, 8, N'SO56133', 2, 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, 837, 849, 844, 11249, 1, 100, 8, N'SO56133', 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 (535, 837, 849, 844, 11331, 1, 19, 6, N'SO56147', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 837, 849, 844, 11331, 1, 19, 6, N'SO56147', 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 (479, 837, 849, 844, 11399, 1, 100, 7, N'SO56172', 1, 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, 837, 849, 844, 11399, 1, 100, 7, N'SO56172', 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 (355, 837, 849, 844, 11541, 1, 100, 1, N'SO56176', 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, 837, 849, 844, 11541, 1, 100, 1, N'SO56176', 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, 837, 849, 844, 11541, 1, 100, 1, N'SO56176', 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, 837, 849, 844, 11541, 1, 100, 1, N'SO56176', 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, 837, 849, 844, 11615, 2, 98, 10, N'SO56126', 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, 837, 849, 844, 11615, 1, 98, 10, N'SO56126', 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, 837, 849, 844, 11615, 1, 98, 10, N'SO56126', 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, 837, 849, 844, 11615, 1, 98, 10, N'SO56126', 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, 837, 849, 844, 11670, 1, 100, 4, N'SO56135', 1, 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 (491, 837, 849, 844, 11670, 1, 100, 4, N'SO56135', 2, 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 (537, 837, 849, 844, 11744, 1, 100, 4, N'SO56169', 1, 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, 837, 849, 844, 11744, 1, 100, 4, N'SO56169', 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 (528, 837, 849, 844, 11807, 1, 100, 4, N'SO56167', 1, 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, 837, 849, 844, 11807, 1, 100, 4, N'SO56167', 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 (463, 837, 849, 844, 11807, 1, 100, 4, N'SO56167', 3, 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 (214, 837, 849, 844, 11807, 1, 100, 4, N'SO56167', 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 (529, 838, 850, 845, 11195, 1, 100, 1, N'SO56195', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 838, 850, 845, 11195, 1, 100, 1, N'SO56195', 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 (530, 838, 850, 845, 11277, 1, 19, 6, N'SO56197', 1, 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 (480, 838, 850, 845, 11277, 1, 19, 6, N'SO56197', 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 (484, 838, 850, 845, 11277, 1, 19, 6, N'SO56197', 3, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 839, 851, 846, 11151, 1, 6, 9, N'SO56269', 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, 839, 851, 846, 11151, 1, 6, 9, N'SO56269', 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, 839, 851, 846, 11151, 1, 6, 9, N'SO56269', 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 (529, 839, 851, 846, 11256, 1, 100, 1, N'SO56233', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 839, 851, 846, 11256, 1, 100, 1, N'SO56233', 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 (530, 839, 851, 846, 11374, 1, 100, 8, N'SO56252', 1, 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 (541, 839, 851, 846, 11374, 1, 100, 8, N'SO56252', 2, 1, 1, 28.9900, 28.9900, 0, 0, 10.8423, 10.8423, 28.9900, 2.3192, 0.7248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 839, 851, 846, 11374, 1, 100, 8, N'SO56252', 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 (353, 839, 851, 846, 11472, 1, 6, 9, N'SO56268', 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, 839, 851, 846, 11472, 1, 6, 9, N'SO56268', 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 (530, 839, 851, 846, 11566, 1, 100, 7, N'SO56253', 1, 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 (480, 839, 851, 846, 11566, 2, 100, 7, N'SO56253', 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 (355, 839, 851, 846, 11616, 1, 98, 10, N'SO56227', 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, 839, 851, 846, 11616, 1, 98, 10, N'SO56227', 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, 839, 851, 846, 11616, 1, 98, 10, N'SO56227', 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 (489, 839, 851, 846, 11616, 1, 98, 10, N'SO56227', 4, 1, 1, 53.9900, 53.9900, 0, 0, 41.5723, 41.5723, 53.9900, 4.3192, 1.3498, 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 (225, 839, 851, 846, 11616, 1, 98, 10, N'SO56227', 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 (477, 839, 851, 846, 11712, 1, 19, 6, N'SO56245', 1, 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 (480, 839, 851, 846, 11712, 2, 19, 6, N'SO56245', 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 (537, 839, 851, 846, 11971, 1, 100, 4, N'SO56255', 1, 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, 839, 851, 846, 11971, 1, 100, 4, N'SO56255', 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 (214, 839, 851, 846, 11971, 1, 100, 4, N'SO56255', 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 (530, 840, 852, 847, 11277, 1, 19, 6, N'SO56281', 1, 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 (487, 840, 852, 847, 11277, 1, 19, 6, N'SO56281', 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 (484, 840, 852, 847, 11277, 1, 19, 6, N'SO56281', 3, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 840, 852, 847, 11507, 1, 19, 6, N'SO56284', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (539, 840, 852, 847, 11507, 1, 19, 6, N'SO56284', 2, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 840, 852, 847, 11507, 1, 19, 6, N'SO56284', 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 (529, 840, 852, 847, 11520, 1, 19, 6, N'SO56282', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 840, 852, 847, 11520, 1, 19, 6, N'SO56282', 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 (465, 840, 852, 847, 11520, 1, 19, 6, N'SO56282', 3, 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 (529, 840, 852, 847, 11530, 1, 19, 6, N'SO56283', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 840, 852, 847, 11530, 1, 19, 6, N'SO56283', 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 (222, 840, 852, 847, 11580, 1, 98, 10, N'SO56311', 1, 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 (489, 840, 852, 847, 11653, 1, 100, 1, N'SO56280', 1, 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 (535, 840, 852, 847, 11698, 1, 19, 6, N'SO56286', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (463, 840, 852, 847, 11698, 1, 19, 6, N'SO56286', 2, 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 (576, 840, 852, 847, 11739, 1, 19, 6, N'SO56329', 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 (477, 840, 852, 847, 11739, 1, 19, 6, N'SO56329', 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 (479, 840, 852, 847, 11739, 1, 19, 6, N'SO56329', 3, 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 (363, 840, 852, 847, 11750, 1, 6, 9, N'SO56322', 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 (487, 840, 852, 847, 11750, 1, 6, 9, N'SO56322', 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 (476, 840, 852, 847, 11808, 1, 19, 6, N'SO56293', 1, 1, 1, 69.9900, 69.9900, 0, 0, 26.1763, 26.1763, 69.9900, 5.5992, 1.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 840, 852, 847, 11808, 1, 19, 6, N'SO56293', 2, 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 (528, 841, 853, 848, 11123, 1, 6, 9, N'SO56345', 1, 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 (535, 841, 853, 848, 11123, 1, 6, 9, N'SO56345', 2, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (484, 841, 853, 848, 11123, 1, 6, 9, N'SO56345', 3, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 841, 853, 848, 11612, 1, 98, 10, N'SO56336', 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, 841, 853, 848, 11612, 1, 98, 10, N'SO56336', 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, 841, 853, 848, 11612, 1, 98, 10, N'SO56336', 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 (355, 841, 853, 848, 11990, 1, 6, 9, N'SO56371', 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, 841, 853, 848, 11990, 1, 6, 9, N'SO56371', 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, 841, 853, 848, 11990, 1, 6, 9, N'SO56371', 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 (222, 841, 853, 848, 11990, 1, 6, 9, N'SO56371', 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 (355, 842, 854, 849, 11135, 1, 100, 4, N'SO56423', 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, 842, 854, 849, 11135, 1, 100, 4, N'SO56423', 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, 842, 854, 849, 11135, 1, 100, 4, N'SO56423', 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 (537, 842, 854, 849, 11311, 1, 100, 1, N'SO56415', 1, 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, 842, 854, 849, 11311, 1, 100, 1, N'SO56415', 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 (222, 842, 854, 849, 11311, 1, 100, 1, N'SO56415', 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 (530, 842, 854, 849, 11500, 1, 19, 6, N'SO56392', 1, 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 (530, 842, 854, 849, 11519, 1, 19, 6, N'SO56390', 1, 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 (480, 842, 854, 849, 11519, 2, 19, 6, N'SO56390', 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, 842, 854, 849, 11629, 1, 100, 4, N'SO56422', 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, 842, 854, 849, 11629, 1, 100, 4, N'SO56422', 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 (214, 842, 854, 849, 11629, 1, 100, 4, N'SO56422', 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 (530, 843, 855, 850, 11078, 1, 19, 6, N'SO56449', 1, 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 (541, 843, 855, 850, 11078, 1, 19, 6, N'SO56449', 2, 1, 1, 28.9900, 28.9900, 0, 0, 10.8423, 10.8423, 28.9900, 2.3192, 0.7248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 843, 855, 850, 11078, 1, 19, 6, N'SO56449', 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 (530, 843, 855, 850, 11091, 1, 19, 6, N'SO56448', 1, 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 (217, 843, 855, 850, 11091, 1, 19, 6, N'SO56448', 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 (491, 843, 855, 850, 11478, 1, 100, 7, N'SO56461', 1, 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 (535, 843, 855, 850, 11507, 1, 19, 6, N'SO56450', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 843, 855, 850, 11507, 1, 19, 6, N'SO56450', 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 (214, 843, 855, 850, 11507, 1, 19, 6, N'SO56450', 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 (463, 843, 855, 850, 11507, 1, 19, 6, N'SO56450', 4, 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 (484, 843, 855, 850, 11753, 1, 6, 9, N'SO56440', 1, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 843, 855, 850, 11828, 1, 100, 1, N'SO56465', 1, 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, 843, 855, 850, 11828, 1, 100, 1, N'SO56465', 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 (217, 844, 856, 851, 11142, 1, 19, 6, N'SO56488', 1, 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, 844, 856, 851, 11142, 1, 19, 6, N'SO56488', 2, 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 (222, 844, 856, 851, 11300, 1, 19, 6, N'SO56487', 1, 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, 844, 856, 851, 11443, 1, 6, 9, N'SO56532', 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, 844, 856, 851, 11443, 1, 6, 9, N'SO56532', 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 (485, 844, 856, 851, 11443, 1, 6, 9, N'SO56532', 3, 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, 844, 856, 851, 11443, 1, 6, 9, N'SO56532', 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 (490, 844, 856, 851, 11443, 1, 6, 9, N'SO56532', 5, 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 (361, 844, 856, 851, 11515, 1, 100, 4, N'SO56525', 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, 844, 856, 851, 11515, 1, 100, 4, N'SO56525', 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, 844, 856, 851, 11515, 1, 100, 4, N'SO56525', 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 (538, 844, 856, 851, 11875, 1, 19, 6, N'SO56498', 1, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 844, 856, 851, 11986, 1, 6, 9, N'SO56533', 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, 844, 856, 851, 11986, 1, 6, 9, N'SO56533', 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, 844, 856, 851, 11986, 1, 6, 9, N'SO56533', 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, 844, 856, 851, 11986, 1, 6, 9, N'SO56533', 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 (480, 844, 856, 851, 11986, 1, 6, 9, N'SO56533', 5, 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 (484, 844, 856, 851, 11986, 1, 6, 9, N'SO56533', 6, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (484, 845, 857, 852, 11113, 1, 6, 9, N'SO56547', 1, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (530, 845, 857, 852, 11211, 1, 19, 6, N'SO56554', 1, 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, 845, 857, 852, 11424, 1, 100, 8, N'SO56580', 1, 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, 845, 857, 852, 11424, 1, 100, 8, N'SO56580', 2, 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 (584, 845, 857, 852, 11481, 1, 100, 8, N'SO56594', 1, 1, 1, 539.9900, 539.9900, 0, 0, 343.6496, 343.6496, 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 (479, 845, 857, 852, 11481, 1, 100, 8, N'SO56594', 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, 845, 857, 852, 11481, 1, 100, 8, N'SO56594', 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 (528, 845, 857, 852, 11643, 1, 100, 1, N'SO56574', 1, 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, 845, 857, 852, 11643, 1, 100, 1, N'SO56574', 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 (237, 845, 857, 852, 11643, 1, 100, 1, N'SO56574', 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 (217, 845, 857, 852, 11785, 1, 100, 1, N'SO56543', 1, 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 (541, 846, 858, 853, 11142, 1, 19, 6, N'SO56610', 1, 1, 1, 28.9900, 28.9900, 0, 0, 10.8423, 10.8423, 28.9900, 2.3192, 0.7248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (530, 846, 858, 853, 11223, 1, 19, 6, N'SO56612', 1, 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, 846, 858, 853, 11223, 1, 19, 6, N'SO56612', 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 (538, 846, 858, 853, 11276, 1, 19, 6, N'SO56611', 1, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 846, 858, 853, 11276, 1, 19, 6, N'SO56611', 2, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 846, 858, 853, 11276, 1, 19, 6, N'SO56611', 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 (480, 846, 858, 853, 11304, 1, 100, 1, N'SO56609', 1, 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 (535, 846, 858, 853, 11820, 1, 19, 6, N'SO56614', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, 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 (528, 846, 858, 853, 11820, 1, 19, 6, N'SO56614', 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 (480, 846, 858, 853, 11820, 2, 19, 6, N'SO56614', 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 (537, 846, 858, 853, 11836, 1, 100, 1, N'SO56633', 1, 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 (537, 846, 858, 853, 11859, 1, 100, 1, N'SO56635', 1, 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, 846, 858, 853, 11859, 1, 100, 1, N'SO56635', 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 (590, 847, 859, 854, 11126, 1, 6, 9, N'SO56683', 1, 1, 1, 769.4900, 769.4900, 0, 0, 419.7784, 419.7784, 769.4900, 61.5592, 19.2373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 847, 859, 854, 11126, 1, 6, 9, N'SO56683', 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, 847, 859, 854, 11126, 1, 6, 9, N'SO56683', 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 (538, 847, 859, 854, 11475, 1, 98, 10, N'SO56668', 1, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 847, 859, 854, 11475, 1, 98, 10, N'SO56668', 2, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 847, 859, 854, 11475, 1, 98, 10, N'SO56668', 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 (225, 847, 859, 854, 11475, 1, 98, 10, N'SO56668', 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 (538, 847, 859, 854, 11498, 1, 19, 6, N'SO56655', 1, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (539, 847, 859, 854, 11502, 1, 19, 6, N'SO56654', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 847, 859, 854, 11502, 1, 19, 6, N'SO56654', 2, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 847, 859, 854, 11502, 1, 19, 6, N'SO56654', 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 (530, 847, 859, 854, 11530, 1, 19, 6, N'SO56653', 1, 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 (359, 847, 859, 854, 11625, 1, 100, 4, N'SO56681', 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, 847, 859, 854, 11625, 1, 100, 4, N'SO56681', 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, 847, 859, 854, 11625, 1, 100, 4, N'SO56681', 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 (537, 847, 859, 854, 11649, 1, 100, 4, N'SO56674', 1, 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, 847, 859, 854, 11649, 1, 100, 4, N'SO56674', 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 (489, 847, 859, 854, 11658, 1, 100, 4, N'SO56651', 1, 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 (225, 847, 859, 854, 11658, 1, 100, 4, N'SO56651', 2, 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 (537, 847, 859, 854, 11805, 1, 100, 4, N'SO56677', 1, 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, 847, 859, 854, 11805, 1, 100, 4, N'SO56677', 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 (214, 847, 859, 854, 11805, 1, 100, 4, N'SO56677', 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 (529, 848, 860, 855, 11500, 1, 19, 6, N'SO56708', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (539, 848, 860, 855, 11500, 1, 19, 6, N'SO56708', 2, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 848, 860, 855, 11500, 1, 19, 6, N'SO56708', 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 (363, 848, 860, 855, 11613, 1, 100, 8, N'SO56693', 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, 848, 860, 855, 11613, 1, 100, 8, N'SO56693', 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, 848, 860, 855, 11613, 1, 100, 8, N'SO56693', 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 (355, 848, 860, 855, 11624, 1, 100, 4, N'SO56740', 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 (353, 848, 860, 855, 11654, 1, 100, 4, N'SO56739', 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, 848, 860, 855, 11654, 1, 100, 4, N'SO56739', 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, 848, 860, 855, 11654, 1, 100, 4, N'SO56739', 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 (537, 848, 860, 855, 11686, 1, 100, 4, N'SO56734', 1, 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, 848, 860, 855, 11686, 1, 100, 4, N'SO56734', 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 (217, 848, 860, 855, 11686, 1, 100, 4, N'SO56734', 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 (491, 848, 860, 855, 11701, 1, 100, 4, N'SO56706', 1, 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 (355, 848, 860, 855, 11994, 1, 6, 9, N'SO56752', 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, 848, 860, 855, 11994, 1, 6, 9, N'SO56752', 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 (535, 849, 861, 856, 11640, 1, 19, 6, N'SO56771', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 849, 861, 856, 11640, 1, 19, 6, N'SO56771', 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 (222, 849, 861, 856, 11640, 1, 19, 6, N'SO56771', 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 (225, 849, 861, 856, 11640, 1, 19, 6, N'SO56771', 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 (231, 849, 861, 856, 11640, 1, 19, 6, N'SO56771', 5, 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 (476, 849, 861, 856, 11698, 1, 19, 6, N'SO56772', 1, 1, 1, 69.9900, 69.9900, 0, 0, 26.1763, 26.1763, 69.9900, 5.5992, 1.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (231, 849, 861, 856, 11698, 1, 19, 6, N'SO56772', 2, 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 (475, 849, 861, 856, 11709, 1, 19, 6, N'SO56773', 1, 1, 1, 69.9900, 69.9900, 0, 0, 26.1763, 26.1763, 69.9900, 5.5992, 1.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 850, 862, 857, 11091, 1, 19, 6, N'SO56816', 1, 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 (579, 850, 862, 857, 11388, 1, 98, 10, N'SO56837', 1, 1, 1, 1214.8500, 1214.8500, 0, 0, 755.1508, 755.1508, 1214.8500, 97.1880, 30.3713, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 850, 862, 857, 11388, 1, 98, 10, N'SO56837', 2, 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 (528, 850, 862, 857, 11505, 1, 19, 6, N'SO56830', 1, 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, 850, 862, 857, 11505, 1, 19, 6, N'SO56830', 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 (222, 850, 862, 857, 11505, 1, 19, 6, N'SO56830', 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 (225, 850, 862, 857, 11519, 1, 19, 6, N'SO56798', 1, 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, 850, 862, 857, 11623, 1, 100, 4, N'SO56836', 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, 850, 862, 857, 11623, 1, 100, 4, N'SO56836', 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, 850, 862, 857, 11623, 1, 100, 4, N'SO56836', 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 (217, 850, 862, 857, 11623, 1, 100, 4, N'SO56836', 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 (480, 850, 862, 857, 11634, 1, 100, 1, N'SO56807', 1, 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, 850, 862, 857, 11690, 1, 100, 1, N'SO56835', 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, 850, 862, 857, 11690, 1, 100, 1, N'SO56835', 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 (481, 850, 862, 857, 11690, 1, 100, 1, N'SO56835', 3, 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 (465, 850, 862, 857, 11719, 1, 19, 6, N'SO56814', 1, 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 (474, 850, 862, 857, 11719, 1, 19, 6, N'SO56814', 2, 1, 1, 69.9900, 69.9900, 0, 0, 26.1763, 26.1763, 69.9900, 5.5992, 1.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 851, 863, 858, 11120, 1, 6, 9, N'SO56903', 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, 851, 863, 858, 11120, 1, 6, 9, N'SO56903', 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, 851, 863, 858, 11120, 1, 6, 9, N'SO56903', 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, 851, 863, 858, 11120, 1, 6, 9, N'SO56903', 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 (465, 851, 863, 858, 11120, 1, 6, 9, N'SO56903', 5, 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 (529, 851, 863, 858, 11164, 1, 100, 4, N'SO56861', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 851, 863, 858, 11164, 1, 100, 4, N'SO56861', 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 (535, 851, 863, 858, 11501, 1, 19, 6, N'SO56869', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 851, 863, 858, 11630, 1, 100, 1, N'SO56895', 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, 851, 863, 858, 11630, 1, 100, 1, N'SO56895', 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 (234, 851, 863, 858, 11632, 1, 19, 6, N'SO56862', 1, 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 (528, 851, 863, 858, 11855, 1, 100, 4, N'SO56889', 1, 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, 851, 863, 858, 11855, 1, 100, 4, N'SO56889', 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 (537, 851, 863, 858, 11866, 1, 100, 4, N'SO56891', 1, 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 (477, 851, 863, 858, 11922, 1, 19, 6, N'SO56874', 1, 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 (487, 851, 863, 858, 11922, 1, 19, 6, N'SO56874', 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 (479, 852, 864, 859, 11019, 1, 19, 6, N'SO56910', 1, 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 (538, 852, 864, 859, 11212, 1, 19, 6, N'SO56920', 1, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 852, 864, 859, 11212, 1, 19, 6, N'SO56920', 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 (475, 852, 864, 859, 11769, 1, 19, 6, N'SO56925', 1, 1, 1, 69.9900, 69.9900, 0, 0, 26.1763, 26.1763, 69.9900, 5.5992, 1.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 852, 864, 859, 11769, 1, 19, 6, N'SO56925', 2, 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 (537, 852, 864, 859, 11789, 1, 100, 4, N'SO56938', 1, 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, 852, 864, 859, 11789, 1, 100, 4, N'SO56938', 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 (537, 852, 864, 859, 11846, 1, 100, 4, N'SO56939', 1, 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, 853, 865, 860, 11147, 1, 6, 9, N'SO57004', 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, 853, 865, 860, 11147, 1, 6, 9, N'SO57004', 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 (214, 853, 865, 860, 11147, 1, 6, 9, N'SO57004', 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, 853, 865, 860, 11696, 2, 100, 1, N'SO56997', 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, 853, 865, 860, 11932, 1, 100, 4, N'SO56993', 1, 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, 853, 865, 860, 11932, 1, 100, 4, N'SO56993', 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 (480, 853, 865, 860, 11932, 1, 100, 4, N'SO56993', 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 (537, 854, 866, 861, 11014, 1, 100, 1, N'SO57222', 1, 1, 1, 35.0000, 35.0000, 0, 0, 13.0900, 13.0900, 35.0000, 2.8000, 0.8750, 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 (528, 854, 866, 861, 11014, 1, 100, 1, N'SO57222', 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 (217, 854, 866, 861, 11014, 1, 100, 1, N'SO57222', 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 (465, 854, 866, 861, 11014, 1, 100, 1, N'SO57222', 4, 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 (477, 854, 866, 861, 11068, 1, 6, 9, N'SO57197', 1, 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 (479, 854, 866, 861, 11068, 1, 6, 9, N'SO57197', 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 (467, 854, 866, 861, 11068, 1, 6, 9, N'SO57197', 3, 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 (529, 854, 866, 861, 11183, 1, 100, 4, N'SO57192', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 854, 866, 861, 11183, 1, 100, 4, N'SO57192', 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 (488, 854, 866, 861, 11200, 1, 19, 6, N'SO57198', 1, 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 (605, 854, 866, 861, 11238, 1, 98, 10, N'SO57240', 1, 1, 1, 539.9900, 539.9900, 0, 0, 343.6496, 343.6496, 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 (479, 854, 866, 861, 11238, 1, 98, 10, N'SO57240', 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, 854, 866, 861, 11238, 1, 98, 10, N'SO57240', 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, 854, 866, 861, 11238, 1, 98, 10, N'SO57240', 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 (480, 854, 866, 861, 11331, 1, 19, 6, N'SO57202', 1, 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 (225, 854, 866, 861, 11619, 1, 19, 6, N'SO57199', 1, 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, 854, 866, 861, 11773, 1, 100, 4, N'SO57228', 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, 854, 866, 861, 11773, 1, 100, 4, N'SO57228', 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, 854, 866, 861, 11773, 1, 100, 4, N'SO57228', 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 (234, 854, 866, 861, 11840, 1, 100, 4, N'SO57201', 1, 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 (562, 855, 867, 862, 11004, 1, 6, 9, N'SO57293', 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 (217, 855, 867, 862, 11004, 1, 6, 9, N'SO57293', 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 (353, 855, 867, 862, 11029, 1, 6, 9, N'SO57294', 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 (222, 855, 867, 862, 11029, 1, 6, 9, N'SO57294', 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 (489, 855, 867, 862, 11029, 1, 6, 9, N'SO57294', 3, 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 (537, 855, 867, 862, 11078, 1, 19, 6, N'SO57281', 1, 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 (529, 855, 867, 862, 11163, 1, 100, 4, N'SO57255', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 855, 867, 862, 11185, 1, 19, 6, N'SO57260', 1, 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 (535, 855, 867, 862, 11185, 1, 19, 6, N'SO57260', 2, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (530, 855, 867, 862, 11215, 1, 19, 6, N'SO57258', 1, 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, 855, 867, 862, 11223, 1, 19, 6, N'SO57253', 1, 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 (479, 855, 867, 862, 11352, 1, 100, 7, N'SO57284', 1, 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, 855, 867, 862, 11352, 1, 100, 7, N'SO57284', 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 (480, 855, 867, 862, 11504, 1, 100, 4, N'SO57254', 1, 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 (479, 855, 867, 862, 11505, 1, 19, 6, N'SO57244', 1, 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, 855, 867, 862, 11505, 1, 19, 6, N'SO57244', 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 (225, 855, 867, 862, 11505, 1, 19, 6, N'SO57244', 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 (562, 856, 868, 863, 11005, 1, 6, 9, N'SO57361', 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 (537, 856, 868, 863, 11197, 1, 100, 1, N'SO57340', 1, 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, 856, 868, 863, 11197, 1, 100, 1, N'SO57340', 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 (480, 856, 868, 863, 11197, 1, 100, 1, N'SO57340', 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 (529, 856, 868, 863, 11200, 1, 19, 6, N'SO57319', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (538, 856, 868, 863, 11200, 1, 19, 6, N'SO57319', 2, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 856, 868, 863, 11200, 1, 19, 6, N'SO57319', 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 (537, 856, 868, 863, 11284, 1, 100, 4, N'SO57339', 1, 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, 856, 868, 863, 11284, 1, 100, 4, N'SO57339', 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 (484, 856, 868, 863, 11284, 1, 100, 4, N'SO57339', 3, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (540, 856, 868, 863, 11331, 1, 19, 6, N'SO57323', 1, 1, 1, 32.6000, 32.6000, 0, 0, 12.1924, 12.1924, 32.6000, 2.6080, 0.8150, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 856, 868, 863, 11331, 1, 19, 6, N'SO57323', 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 (528, 856, 868, 863, 11508, 1, 100, 1, N'SO57343', 1, 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, 856, 868, 863, 11508, 1, 100, 1, N'SO57343', 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 (217, 856, 868, 863, 11508, 1, 100, 1, N'SO57343', 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 (231, 856, 868, 863, 11519, 1, 19, 6, N'SO57318', 1, 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 (484, 856, 868, 863, 11530, 1, 19, 6, N'SO57308', 1, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (535, 856, 868, 863, 11619, 1, 19, 6, N'SO57324', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 856, 868, 863, 11619, 1, 19, 6, N'SO57324', 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 (217, 856, 868, 863, 11619, 1, 19, 6, N'SO57324', 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 (490, 856, 868, 863, 11725, 1, 100, 1, N'SO57316', 1, 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 (573, 857, 869, 864, 11000, 1, 6, 9, N'SO57418', 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 (541, 857, 869, 864, 11000, 1, 6, 9, N'SO57418', 2, 1, 1, 28.9900, 28.9900, 0, 0, 10.8423, 10.8423, 28.9900, 2.3192, 0.7248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (530, 857, 869, 864, 11000, 1, 6, 9, N'SO57418', 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, 857, 869, 864, 11000, 1, 6, 9, N'SO57418', 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 (488, 857, 869, 864, 11000, 1, 6, 9, N'SO57418', 5, 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 (529, 857, 869, 864, 11172, 1, 100, 1, N'SO57383', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 857, 869, 864, 11172, 1, 100, 1, N'SO57383', 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 (480, 857, 869, 864, 11212, 1, 19, 6, N'SO57380', 1, 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 (231, 857, 869, 864, 11212, 1, 19, 6, N'SO57370', 1, 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 (577, 857, 869, 864, 11432, 1, 100, 7, N'SO57414', 1, 1, 1, 1214.8500, 1214.8500, 0, 0, 755.1508, 755.1508, 1214.8500, 97.1880, 30.3713, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (530, 857, 869, 864, 11432, 1, 100, 7, N'SO57414', 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 (541, 857, 869, 864, 11432, 1, 100, 7, N'SO57414', 3, 1, 1, 28.9900, 28.9900, 0, 0, 10.8423, 10.8423, 28.9900, 2.3192, 0.7248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 857, 869, 864, 11432, 1, 100, 7, N'SO57414', 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 (528, 857, 869, 864, 11504, 1, 100, 4, N'SO57406', 1, 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, 857, 869, 864, 11504, 1, 100, 4, N'SO57406', 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 (480, 857, 869, 864, 11504, 1, 100, 4, N'SO57406', 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 (537, 857, 869, 864, 11792, 1, 100, 4, N'SO57404', 1, 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 (478, 857, 869, 864, 11868, 1, 19, 6, N'SO57392', 1, 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, 857, 869, 864, 11868, 1, 19, 6, N'SO57392', 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 (529, 858, 870, 865, 11506, 1, 19, 6, N'SO57438', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (539, 858, 870, 865, 11506, 1, 19, 6, N'SO57438', 2, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 858, 870, 865, 11506, 1, 19, 6, N'SO57438', 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 (539, 858, 870, 865, 11520, 1, 19, 6, N'SO57436', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 858, 870, 865, 11701, 1, 100, 4, N'SO57459', 1, 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, 858, 870, 865, 11701, 1, 100, 4, N'SO57459', 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 (217, 858, 870, 865, 11701, 1, 100, 4, N'SO57459', 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 (355, 858, 870, 865, 11727, 1, 100, 4, N'SO57465', 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, 858, 870, 865, 11727, 1, 100, 4, N'SO57465', 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 (225, 858, 870, 865, 11727, 1, 100, 4, N'SO57465', 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 (357, 858, 870, 865, 11745, 1, 100, 1, N'SO57469', 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, 858, 870, 865, 11745, 1, 100, 1, N'SO57469', 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, 858, 870, 865, 11745, 1, 100, 1, N'SO57469', 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, 858, 870, 865, 11745, 1, 100, 1, N'SO57469', 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 (537, 858, 870, 865, 11840, 1, 100, 4, N'SO57460', 1, 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, 858, 870, 865, 11840, 1, 100, 4, N'SO57460', 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 (361, 858, 870, 865, 11897, 1, 6, 9, N'SO57474', 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, 858, 870, 865, 11897, 1, 6, 9, N'SO57474', 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 (484, 858, 870, 865, 11926, 1, 100, 1, N'SO57429', 1, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 859, 871, 866, 11091, 1, 19, 6, N'SO57494', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 859, 871, 866, 11091, 1, 19, 6, N'SO57494', 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 (606, 859, 871, 866, 11416, 1, 100, 7, N'SO57530', 1, 1, 1, 539.9900, 539.9900, 0, 0, 343.6496, 343.6496, 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 (479, 859, 871, 866, 11416, 1, 100, 7, N'SO57530', 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 (361, 859, 871, 866, 11756, 1, 6, 9, N'SO57521', 1, 1, 1, 2294.9900, 2294.9900, 0, 0, 1251.9813, 1251.9813, 2294.9900, 183.5992, 57.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 (477, 859, 871, 866, 11756, 1, 6, 9, N'SO57521', 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, 859, 871, 866, 11756, 1, 6, 9, N'SO57521', 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 (535, 860, 872, 867, 11074, 1, 6, 9, N'SO57536', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 860, 872, 867, 11074, 1, 6, 9, N'SO57536', 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 (484, 860, 872, 867, 11074, 1, 6, 9, N'SO57536', 3, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 860, 872, 867, 11210, 1, 100, 4, N'SO57566', 1, 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, 860, 872, 867, 11210, 1, 100, 4, N'SO57566', 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 (480, 860, 872, 867, 11210, 1, 100, 4, N'SO57566', 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 (477, 860, 872, 867, 11287, 1, 19, 6, N'SO57554', 1, 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, 860, 872, 867, 11287, 1, 19, 6, N'SO57554', 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 (225, 860, 872, 867, 11287, 1, 19, 6, N'SO57554', 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 (528, 860, 872, 867, 11502, 1, 19, 6, N'SO57567', 1, 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, 860, 872, 867, 11502, 1, 19, 6, N'SO57567', 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 (485, 860, 872, 867, 11502, 1, 19, 6, N'SO57567', 3, 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 (225, 860, 872, 867, 11502, 1, 19, 6, N'SO57567', 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 (217, 860, 872, 867, 11600, 1, 100, 7, N'SO57573', 1, 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 (537, 860, 872, 867, 11662, 1, 100, 1, N'SO57565', 1, 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, 860, 872, 867, 11662, 1, 100, 1, N'SO57565', 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 (574, 860, 872, 867, 11984, 1, 19, 6, N'SO57587', 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, 860, 872, 867, 11984, 1, 19, 6, N'SO57587', 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, 860, 872, 867, 11984, 1, 19, 6, N'SO57587', 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 (480, 860, 872, 867, 11984, 2, 19, 6, N'SO57587', 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 (537, 861, 873, 868, 11181, 1, 100, 4, N'SO57619', 1, 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, 861, 873, 868, 11181, 1, 100, 4, N'SO57619', 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 (528, 861, 873, 868, 11313, 1, 100, 1, N'SO57620', 1, 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, 861, 873, 868, 11313, 1, 100, 1, N'SO57620', 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 (480, 861, 873, 868, 11313, 1, 100, 1, N'SO57620', 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 (475, 861, 873, 868, 11502, 1, 19, 6, N'SO57609', 1, 1, 1, 69.9900, 69.9900, 0, 0, 26.1763, 26.1763, 69.9900, 5.5992, 1.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 861, 873, 868, 11749, 1, 6, 9, N'SO57598', 1, 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, 861, 873, 868, 11749, 1, 6, 9, N'SO57598', 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 (530, 862, 874, 869, 11019, 1, 19, 6, N'SO57639', 1, 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 (480, 862, 874, 869, 11019, 2, 19, 6, N'SO57639', 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 (529, 862, 874, 869, 11043, 1, 100, 4, N'SO57638', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 862, 874, 869, 11043, 1, 100, 4, N'SO57638', 2, 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 (541, 862, 874, 869, 11223, 1, 19, 6, N'SO57643', 1, 1, 1, 28.9900, 28.9900, 0, 0, 10.8423, 10.8423, 28.9900, 2.3192, 0.7248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 862, 874, 869, 11223, 1, 19, 6, N'SO57659', 1, 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, 862, 874, 869, 11223, 1, 19, 6, N'SO57659', 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 (579, 862, 874, 869, 11240, 1, 98, 10, N'SO57673', 1, 1, 1, 1214.8500, 1214.8500, 0, 0, 755.1508, 755.1508, 1214.8500, 97.1880, 30.3713, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 862, 874, 869, 11240, 1, 98, 10, N'SO57673', 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, 862, 874, 869, 11240, 1, 98, 10, N'SO57673', 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 (481, 862, 874, 869, 11240, 2, 98, 10, N'SO57673', 4, 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 (479, 862, 874, 869, 11262, 1, 19, 6, N'SO57634', 1, 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, 862, 874, 869, 11262, 1, 19, 6, N'SO57634', 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 (214, 862, 874, 869, 11554, 1, 100, 7, N'SO57663', 1, 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 (222, 862, 874, 869, 11555, 1, 98, 10, N'SO57661', 1, 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 (536, 862, 874, 869, 11660, 1, 19, 6, N'SO57644', 1, 1, 1, 29.9900, 29.9900, 0, 0, 11.2163, 11.2163, 29.9900, 2.3992, 0.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 862, 874, 869, 11660, 1, 19, 6, N'SO57644', 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 (480, 862, 874, 869, 11660, 1, 19, 6, N'SO57644', 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 (357, 862, 874, 869, 11918, 1, 6, 9, N'SO57675', 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, 862, 874, 869, 11918, 1, 6, 9, N'SO57675', 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, 862, 874, 869, 11918, 1, 6, 9, N'SO57675', 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, 862, 874, 869, 11918, 1, 6, 9, N'SO57675', 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 (487, 862, 874, 869, 11918, 1, 6, 9, N'SO57675', 5, 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 (576, 862, 874, 869, 11979, 1, 19, 6, N'SO57679', 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 (477, 862, 874, 869, 11979, 1, 19, 6, N'SO57679', 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 (479, 862, 874, 869, 11979, 1, 19, 6, N'SO57679', 3, 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 (473, 862, 874, 869, 11979, 1, 19, 6, N'SO57679', 4, 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 (575, 863, 875, 870, 11009, 1, 6, 9, N'SO57736', 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 (217, 863, 875, 870, 11009, 1, 6, 9, N'SO57736', 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 (530, 863, 875, 870, 11262, 1, 19, 6, N'SO57707', 1, 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 (528, 863, 875, 870, 11659, 1, 19, 6, N'SO57706', 1, 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 (535, 863, 875, 870, 11659, 1, 19, 6, N'SO57706', 2, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 863, 875, 870, 11659, 1, 19, 6, N'SO57706', 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 (537, 863, 875, 870, 11661, 1, 19, 6, N'SO57723', 1, 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 (537, 863, 875, 870, 11788, 1, 100, 4, N'SO57725', 1, 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, 863, 875, 870, 11788, 1, 100, 4, N'SO57725', 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 (480, 863, 875, 870, 11788, 1, 100, 4, N'SO57725', 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 (486, 863, 875, 870, 11788, 1, 100, 4, N'SO57725', 4, 1, 1, 159.0000, 159.0000, 0, 0, 59.4660, 59.4660, 159.0000, 12.7200, 3.9750, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (564, 864, 876, 871, 11003, 1, 6, 9, N'SO57783', 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 (541, 864, 876, 871, 11003, 1, 6, 9, N'SO57783', 2, 1, 1, 28.9900, 28.9900, 0, 0, 10.8423, 10.8423, 28.9900, 2.3192, 0.7248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (530, 864, 876, 871, 11003, 1, 6, 9, N'SO57783', 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 (480, 864, 876, 871, 11003, 1, 6, 9, N'SO57783', 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 (539, 864, 876, 871, 11277, 1, 19, 6, N'SO57756', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 864, 876, 871, 11277, 1, 19, 6, N'SO57756', 2, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 864, 876, 871, 11277, 1, 19, 6, N'SO57756', 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 (483, 864, 876, 871, 11277, 1, 19, 6, N'SO57756', 4, 1, 1, 120.0000, 120.0000, 0, 0, 44.8800, 44.8800, 120.0000, 9.6000, 3.0000, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (237, 864, 876, 871, 11853, 1, 100, 4, N'SO57748', 1, 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 (528, 865, 877, 872, 11206, 1, 100, 1, N'SO57822', 1, 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, 865, 877, 872, 11206, 1, 100, 1, N'SO57822', 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 (222, 865, 877, 872, 11206, 1, 100, 1, N'SO57822', 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 (484, 865, 877, 872, 11330, 1, 19, 6, N'SO57792', 1, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 865, 877, 872, 11542, 1, 98, 10, N'SO57815', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (538, 865, 877, 872, 11542, 1, 98, 10, N'SO57815', 2, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (481, 865, 877, 872, 11542, 1, 98, 10, N'SO57815', 3, 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 (528, 865, 877, 872, 11730, 1, 100, 1, N'SO57824', 1, 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, 865, 877, 872, 11730, 1, 100, 1, N'SO57824', 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 (214, 865, 877, 872, 11730, 1, 100, 1, N'SO57824', 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 (465, 865, 877, 872, 11730, 1, 100, 1, N'SO57824', 4, 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 (537, 865, 877, 872, 11740, 1, 19, 6, N'SO57821', 1, 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, 865, 877, 872, 11783, 1, 100, 4, N'SO57823', 1, 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, 865, 877, 872, 11783, 1, 100, 4, N'SO57823', 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 (222, 865, 877, 872, 11783, 1, 100, 4, N'SO57823', 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 (541, 866, 878, 873, 11176, 1, 19, 6, N'SO57861', 1, 1, 1, 28.9900, 28.9900, 0, 0, 10.8423, 10.8423, 28.9900, 2.3192, 0.7248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (530, 866, 878, 873, 11176, 1, 19, 6, N'SO57861', 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 (480, 866, 878, 873, 11176, 2, 19, 6, N'SO57861', 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 (537, 866, 878, 873, 11200, 1, 19, 6, N'SO57884', 1, 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 (225, 866, 878, 873, 11223, 1, 19, 6, N'SO57865', 1, 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 (540, 866, 878, 873, 11223, 1, 19, 6, N'SO57865', 2, 1, 1, 32.6000, 32.6000, 0, 0, 12.1924, 12.1924, 32.6000, 2.6080, 0.8150, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (568, 866, 878, 873, 11241, 1, 100, 7, N'SO57891', 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 (541, 866, 878, 873, 11241, 1, 100, 7, N'SO57891', 2, 1, 1, 28.9900, 28.9900, 0, 0, 10.8423, 10.8423, 28.9900, 2.3192, 0.7248, 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 (530, 866, 878, 873, 11241, 1, 100, 7, N'SO57891', 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, 866, 878, 873, 11241, 1, 100, 7, N'SO57891', 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 (539, 866, 878, 873, 11505, 1, 19, 6, N'SO57857', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (535, 866, 878, 873, 11510, 1, 19, 6, N'SO57863', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 866, 878, 873, 11510, 1, 19, 6, N'SO57863', 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 (480, 866, 878, 873, 11510, 2, 19, 6, N'SO57863', 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 (353, 866, 878, 873, 11588, 2, 100, 7, N'SO57847', 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 (361, 866, 878, 873, 11592, 1, 100, 7, N'SO57845', 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, 866, 878, 873, 11592, 1, 100, 7, N'SO57845', 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 (537, 866, 878, 873, 11842, 1, 100, 1, N'SO57885', 1, 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, 866, 878, 873, 11842, 1, 100, 1, N'SO57885', 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 (353, 867, 879, 874, 11028, 1, 6, 9, N'SO57943', 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, 867, 879, 874, 11028, 1, 6, 9, N'SO57943', 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 (480, 867, 879, 874, 11028, 1, 6, 9, N'SO57943', 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 (606, 867, 879, 874, 11240, 1, 98, 10, N'SO57953', 1, 1, 1, 539.9900, 539.9900, 0, 0, 343.6496, 343.6496, 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 (477, 867, 879, 874, 11240, 1, 98, 10, N'SO57953', 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 (479, 867, 879, 874, 11240, 1, 98, 10, N'SO57953', 3, 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 (467, 867, 879, 874, 11240, 1, 98, 10, N'SO57953', 4, 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 (488, 867, 879, 874, 11506, 1, 19, 6, N'SO57911', 1, 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 (225, 867, 879, 874, 11506, 1, 19, 6, N'SO57911', 2, 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 (537, 867, 879, 874, 11769, 1, 19, 6, N'SO57934', 1, 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, 867, 879, 874, 11769, 1, 19, 6, N'SO57934', 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 (485, 867, 879, 874, 11769, 1, 19, 6, N'SO57934', 3, 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, 867, 879, 874, 11769, 1, 19, 6, N'SO57934', 4, 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 (562, 868, 880, 875, 11006, 1, 6, 9, N'SO58007', 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 (231, 868, 880, 875, 11078, 1, 19, 6, N'SO57969', 1, 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 (481, 868, 880, 875, 11078, 1, 19, 6, N'SO57969', 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 (528, 868, 880, 875, 11273, 1, 100, 4, N'SO57992', 1, 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, 868, 880, 875, 11273, 1, 100, 4, N'SO57992', 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 (485, 868, 880, 875, 11273, 1, 100, 4, N'SO57992', 3, 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, 868, 880, 875, 11273, 1, 100, 4, N'SO57992', 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 (478, 868, 880, 875, 11273, 1, 100, 4, N'SO57992', 5, 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 (217, 868, 880, 875, 11273, 1, 100, 4, N'SO57992', 6, 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 (222, 868, 880, 875, 11277, 1, 19, 6, N'SO57958', 1, 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 (480, 868, 880, 875, 11508, 1, 100, 1, N'SO57967', 1, 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 (480, 868, 880, 875, 11533, 1, 100, 5, N'SO57966', 1, 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 (538, 868, 880, 875, 11660, 1, 19, 6, N'SO57970', 1, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 868, 880, 875, 11660, 1, 19, 6, N'SO57970', 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 (528, 868, 880, 875, 11714, 1, 100, 4, N'SO57995', 1, 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, 868, 880, 875, 11714, 1, 100, 4, N'SO57995', 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 (537, 868, 880, 875, 11861, 1, 19, 6, N'SO57993', 1, 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, 868, 880, 875, 11861, 1, 19, 6, N'SO57993', 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 (480, 868, 880, 875, 11861, 1, 19, 6, N'SO57993', 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 (539, 869, 881, 876, 11498, 1, 19, 6, N'SO58039', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 869, 881, 876, 11772, 2, 100, 1, N'SO58061', 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, 869, 881, 876, 11772, 1, 100, 1, N'SO58061', 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, 869, 881, 876, 11772, 1, 100, 1, N'SO58061', 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 (529, 870, 882, 877, 11141, 1, 100, 4, N'SO58082', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 870, 882, 877, 11141, 1, 100, 4, N'SO58082', 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 (488, 870, 882, 877, 11277, 1, 19, 6, N'SO58081', 1, 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 (530, 870, 882, 877, 11330, 1, 19, 6, N'SO58084', 1, 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, 870, 882, 877, 11330, 1, 19, 6, N'SO58084', 2, 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 (228, 870, 882, 877, 11330, 1, 19, 6, N'SO58084', 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 (483, 870, 882, 877, 11331, 1, 19, 6, N'SO58083', 1, 1, 1, 120.0000, 120.0000, 0, 0, 44.8800, 44.8800, 120.0000, 9.6000, 3.0000, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 870, 882, 877, 11506, 1, 19, 6, N'SO58073', 1, 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, 870, 882, 877, 11506, 1, 19, 6, N'SO58073', 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 (481, 870, 882, 877, 11506, 1, 19, 6, N'SO58073', 3, 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 (353, 870, 882, 877, 11743, 2, 100, 4, N'SO58111', 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 (484, 870, 882, 877, 11862, 1, 100, 1, N'SO58074', 1, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (486, 870, 882, 877, 11862, 1, 100, 1, N'SO58074', 2, 1, 1, 159.0000, 159.0000, 0, 0, 59.4660, 59.4660, 159.0000, 12.7200, 3.9750, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (541, 871, 883, 878, 11185, 1, 19, 6, N'SO58146', 1, 1, 1, 28.9900, 28.9900, 0, 0, 10.8423, 10.8423, 28.9900, 2.3192, 0.7248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (530, 871, 883, 878, 11185, 1, 19, 6, N'SO58146', 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 (479, 871, 883, 878, 11185, 1, 19, 6, N'SO58146', 3, 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 (480, 871, 883, 878, 11312, 1, 100, 1, N'SO58143', 1, 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 (491, 871, 883, 878, 11471, 1, 100, 7, N'SO58161', 1, 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 (529, 871, 883, 878, 11507, 1, 19, 6, N'SO58144', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 871, 883, 878, 11507, 1, 19, 6, N'SO58144', 2, 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 (537, 871, 883, 878, 11644, 1, 100, 1, N'SO58168', 1, 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, 871, 883, 878, 11644, 1, 100, 1, N'SO58168', 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 (488, 871, 883, 878, 11702, 1, 100, 4, N'SO58142', 1, 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 (528, 871, 883, 878, 11720, 1, 100, 4, N'SO58171', 1, 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, 871, 883, 878, 11720, 1, 100, 4, N'SO58171', 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 (478, 871, 883, 878, 11720, 1, 100, 4, N'SO58171', 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, 871, 883, 878, 11720, 1, 100, 4, N'SO58171', 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, 871, 883, 878, 11720, 1, 100, 4, N'SO58171', 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 (535, 872, 884, 879, 11287, 1, 19, 6, N'SO58202', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 872, 884, 879, 11287, 1, 19, 6, N'SO58202', 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 (222, 872, 884, 879, 11287, 1, 19, 6, N'SO58202', 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 (537, 872, 884, 879, 11823, 1, 19, 6, N'SO58230', 1, 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, 872, 884, 879, 11823, 1, 19, 6, N'SO58230', 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, 872, 884, 879, 11823, 1, 19, 6, N'SO58230', 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, 872, 884, 879, 11823, 1, 19, 6, N'SO58230', 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, 872, 884, 879, 11823, 1, 19, 6, N'SO58230', 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 (563, 872, 884, 879, 11835, 1, 19, 6, N'SO58247', 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 (541, 872, 884, 879, 11835, 1, 19, 6, N'SO58247', 2, 1, 1, 28.9900, 28.9900, 0, 0, 10.8423, 10.8423, 28.9900, 2.3192, 0.7248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (530, 872, 884, 879, 11835, 1, 19, 6, N'SO58247', 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, 872, 884, 879, 11835, 1, 19, 6, N'SO58247', 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, 872, 884, 879, 11901, 2, 6, 9, N'SO58243', 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, 872, 884, 879, 11901, 1, 6, 9, N'SO58243', 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 (479, 873, 885, 880, 11276, 1, 19, 6, N'SO58252', 1, 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, 873, 885, 880, 11276, 1, 19, 6, N'SO58252', 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 (491, 873, 885, 880, 11691, 1, 100, 4, N'SO58255', 1, 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 (528, 874, 886, 881, 11315, 1, 100, 1, N'SO58320', 1, 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, 874, 886, 881, 11315, 1, 100, 1, N'SO58320', 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 (529, 874, 886, 881, 11519, 1, 19, 6, N'SO58300', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 874, 886, 881, 11519, 1, 19, 6, N'SO58300', 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 (537, 874, 886, 881, 11822, 1, 100, 4, N'SO58322', 1, 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, 874, 886, 881, 11822, 1, 100, 4, N'SO58322', 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 (476, 874, 886, 881, 11841, 1, 19, 6, N'SO58309', 1, 1, 1, 69.9900, 69.9900, 0, 0, 26.1763, 26.1763, 69.9900, 5.5992, 1.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (562, 875, 887, 882, 11057, 1, 6, 9, N'SO58402', 1, 1, 1, 2384.0700, 2384.0700, 0, 0, 1481.9379, 1481.9379, 2384.0700, 190.7256, 59.6018, 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 (482, 875, 887, 882, 11057, 1, 6, 9, N'SO58402', 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 (529, 875, 887, 882, 11258, 1, 100, 4, N'SO58366', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 875, 887, 882, 11258, 2, 100, 4, N'SO58366', 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 (484, 875, 887, 882, 11258, 1, 100, 4, N'SO58366', 3, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (539, 875, 887, 882, 11300, 1, 19, 6, N'SO58365', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 875, 887, 882, 11300, 1, 19, 6, N'SO58365', 2, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 875, 887, 882, 11300, 1, 19, 6, N'SO58365', 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 (465, 875, 887, 882, 11300, 1, 19, 6, N'SO58365', 4, 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 (540, 875, 887, 882, 11300, 1, 19, 6, N'SO58370', 1, 1, 1, 32.6000, 32.6000, 0, 0, 12.1924, 12.1924, 32.6000, 2.6080, 0.8150, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 875, 887, 882, 11300, 1, 19, 6, N'SO58370', 2, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 875, 887, 882, 11300, 1, 19, 6, N'SO58370', 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 (480, 875, 887, 882, 11322, 1, 100, 1, N'SO58363', 1, 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 (477, 875, 887, 882, 11507, 1, 19, 6, N'SO58354', 1, 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 (479, 875, 887, 882, 11507, 1, 19, 6, N'SO58354', 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 (222, 875, 887, 882, 11507, 1, 19, 6, N'SO58354', 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 (528, 876, 888, 883, 11078, 1, 19, 6, N'SO58429', 1, 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 (535, 876, 888, 883, 11078, 1, 19, 6, N'SO58429', 2, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 876, 888, 883, 11287, 1, 19, 6, N'SO58424', 1, 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 (490, 876, 888, 883, 11436, 1, 98, 10, N'SO58446', 1, 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 (535, 876, 888, 883, 11466, 1, 6, 9, N'SO58425', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 876, 888, 883, 11466, 1, 6, 9, N'SO58425', 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 (480, 876, 888, 883, 11466, 2, 6, 9, N'SO58425', 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 (484, 876, 888, 883, 11520, 1, 19, 6, N'SO58417', 1, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 876, 888, 883, 11742, 1, 100, 4, N'SO58456', 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, 876, 888, 883, 11742, 1, 100, 4, N'SO58456', 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, 876, 888, 883, 11742, 1, 100, 4, N'SO58456', 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, 876, 888, 883, 11742, 1, 100, 4, N'SO58456', 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 (217, 876, 888, 883, 11790, 1, 100, 4, N'SO58418', 1, 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 (575, 877, 889, 884, 11010, 1, 6, 9, N'SO58533', 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 (225, 877, 889, 884, 11010, 1, 6, 9, N'SO58533', 2, 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, 877, 889, 884, 11027, 1, 6, 9, N'SO58536', 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 (487, 877, 889, 884, 11027, 1, 6, 9, N'SO58536', 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 (490, 877, 889, 884, 11027, 1, 6, 9, N'SO58536', 3, 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 (225, 877, 889, 884, 11027, 1, 6, 9, N'SO58536', 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 (539, 877, 889, 884, 11078, 1, 19, 6, N'SO58490', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (231, 877, 889, 884, 11078, 1, 19, 6, N'SO58490', 2, 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 (480, 877, 889, 884, 11273, 1, 100, 4, N'SO58492', 1, 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 (486, 877, 889, 884, 11273, 1, 100, 4, N'SO58492', 2, 1, 1, 159.0000, 159.0000, 0, 0, 59.4660, 59.4660, 159.0000, 12.7200, 3.9750, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (536, 877, 889, 884, 11331, 1, 19, 6, N'SO58499', 1, 1, 1, 29.9900, 29.9900, 0, 0, 11.2163, 11.2163, 29.9900, 2.3992, 0.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 877, 889, 884, 11507, 1, 19, 6, N'SO58489', 1, 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, 877, 889, 884, 11590, 2, 100, 7, N'SO58474', 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, 877, 889, 884, 11590, 1, 100, 7, N'SO58474', 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, 877, 889, 884, 11590, 1, 100, 7, N'SO58474', 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, 877, 889, 884, 11591, 2, 100, 7, N'SO58472', 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, 877, 889, 884, 11591, 1, 100, 7, N'SO58472', 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 (539, 877, 889, 884, 11631, 1, 19, 6, N'SO58488', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 877, 889, 884, 11631, 1, 19, 6, N'SO58488', 2, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 877, 889, 884, 11631, 1, 19, 6, N'SO58488', 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 (484, 877, 889, 884, 11631, 1, 19, 6, N'SO58488', 4, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 878, 890, 885, 11215, 1, 19, 6, N'SO58552', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (539, 878, 890, 885, 11215, 1, 19, 6, N'SO58552', 2, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (486, 878, 890, 885, 11215, 1, 19, 6, N'SO58552', 3, 1, 1, 159.0000, 159.0000, 0, 0, 59.4660, 59.4660, 159.0000, 12.7200, 3.9750, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (530, 878, 890, 885, 11287, 1, 19, 6, N'SO58550', 1, 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 (487, 878, 890, 885, 11287, 1, 19, 6, N'SO58550', 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 (484, 878, 890, 885, 11287, 1, 19, 6, N'SO58550', 3, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (540, 878, 890, 885, 11330, 1, 19, 6, N'SO58556', 1, 1, 1, 32.6000, 32.6000, 0, 0, 12.1924, 12.1924, 32.6000, 2.6080, 0.8150, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 878, 890, 885, 11330, 1, 19, 6, N'SO58556', 2, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 878, 890, 885, 11330, 1, 19, 6, N'SO58556', 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 (540, 878, 890, 885, 11330, 1, 19, 6, N'SO58557', 1, 1, 1, 32.6000, 32.6000, 0, 0, 12.1924, 12.1924, 32.6000, 2.6080, 0.8150, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 878, 890, 885, 11330, 1, 19, 6, N'SO58557', 2, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 878, 890, 885, 11330, 1, 19, 6, N'SO58557', 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 (604, 878, 890, 885, 11479, 1, 100, 7, N'SO58581', 1, 1, 1, 539.9900, 539.9900, 0, 0, 343.6496, 343.6496, 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 (477, 878, 890, 885, 11479, 1, 100, 7, N'SO58581', 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 (479, 878, 890, 885, 11479, 1, 100, 7, N'SO58581', 3, 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 (355, 878, 890, 885, 11707, 1, 100, 4, N'SO58569', 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, 878, 890, 885, 11707, 1, 100, 4, N'SO58569', 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 (487, 878, 890, 885, 11707, 1, 100, 4, N'SO58569', 3, 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 (228, 878, 890, 885, 11707, 1, 100, 4, N'SO58569', 4, 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 (353, 878, 890, 885, 11912, 2, 6, 9, N'SO58574', 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 (539, 879, 891, 886, 11019, 1, 19, 6, N'SO58600', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 879, 891, 886, 11019, 1, 19, 6, N'SO58600', 2, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (483, 879, 891, 886, 11019, 1, 19, 6, N'SO58600', 3, 1, 1, 120.0000, 120.0000, 0, 0, 44.8800, 44.8800, 120.0000, 9.6000, 3.0000, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 879, 891, 886, 11165, 1, 100, 4, N'SO58598', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 879, 891, 886, 11165, 1, 100, 4, N'SO58598', 2, 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 (577, 879, 891, 886, 11239, 1, 98, 10, N'SO58627', 1, 1, 1, 1214.8500, 1214.8500, 0, 0, 755.1508, 755.1508, 1214.8500, 97.1880, 30.3713, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (483, 879, 891, 886, 11632, 1, 19, 6, N'SO58599', 1, 1, 1, 120.0000, 120.0000, 0, 0, 44.8800, 44.8800, 120.0000, 9.6000, 3.0000, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 879, 891, 886, 11657, 1, 100, 4, N'SO58618', 1, 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, 879, 891, 886, 11657, 1, 100, 4, N'SO58618', 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 (222, 879, 891, 886, 11657, 1, 100, 4, N'SO58618', 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 (237, 879, 891, 886, 11657, 1, 100, 4, N'SO58618', 4, 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 (537, 879, 891, 886, 11712, 1, 19, 6, N'SO58619', 1, 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, 879, 891, 886, 11712, 1, 19, 6, N'SO58619', 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 (484, 879, 891, 886, 11712, 1, 19, 6, N'SO58619', 3, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (490, 879, 891, 886, 11717, 1, 100, 1, N'SO58597', 1, 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 (222, 879, 891, 886, 11970, 1, 100, 1, N'SO58589', 1, 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 (529, 880, 892, 887, 11169, 1, 100, 4, N'SO58649', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 880, 892, 887, 11169, 1, 100, 4, N'SO58649', 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 (537, 880, 892, 887, 11178, 1, 100, 4, N'SO58674', 1, 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, 880, 892, 887, 11178, 1, 100, 4, N'SO58674', 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 (480, 880, 892, 887, 11178, 1, 100, 4, N'SO58674', 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 (592, 880, 892, 887, 11242, 1, 100, 7, N'SO58646', 1, 1, 1, 564.9900, 564.9900, 0, 0, 308.2179, 308.2179, 564.9900, 45.1992, 14.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, 880, 892, 887, 11242, 1, 100, 7, N'SO58646', 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 (535, 880, 892, 887, 11498, 1, 19, 6, N'SO58652', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 880, 892, 887, 11498, 1, 19, 6, N'SO58652', 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 (484, 880, 892, 887, 11498, 1, 19, 6, N'SO58652', 3, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 880, 892, 887, 11503, 1, 100, 4, N'SO58675', 1, 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 (463, 880, 892, 887, 11503, 1, 100, 4, N'SO58675', 2, 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, 880, 892, 887, 11919, 1, 6, 9, N'SO58690', 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, 880, 892, 887, 11919, 1, 6, 9, N'SO58690', 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, 880, 892, 887, 11919, 1, 6, 9, N'SO58690', 3, 1, 1, 35.0000, 35.0000, 0, 0, 13.0900, 13.0900, 35.0000, 2.8000, 0.8750, 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 (353, 880, 892, 887, 11920, 1, 6, 9, N'SO58691', 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, 880, 892, 887, 11920, 1, 6, 9, N'SO58691', 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, 880, 892, 887, 11920, 1, 6, 9, N'SO58691', 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 (480, 880, 892, 887, 11920, 1, 6, 9, N'SO58691', 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 (575, 881, 893, 888, 11052, 1, 6, 9, N'SO58766', 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 (222, 881, 893, 888, 11052, 1, 6, 9, N'SO58766', 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 (479, 881, 893, 888, 11074, 1, 6, 9, N'SO58717', 1, 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 (217, 881, 893, 888, 11276, 1, 19, 6, N'SO58708', 1, 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, 881, 893, 888, 11705, 1, 100, 4, N'SO58758', 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, 881, 893, 888, 11705, 1, 100, 4, N'SO58758', 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, 881, 893, 888, 11705, 1, 100, 4, N'SO58758', 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 (480, 881, 893, 888, 11705, 1, 100, 4, N'SO58758', 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 (584, 882, 894, 889, 11239, 1, 98, 10, N'SO58833', 1, 1, 1, 539.9900, 539.9900, 0, 0, 343.6496, 343.6496, 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 (538, 882, 894, 889, 11239, 1, 98, 10, N'SO58833', 2, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 882, 894, 889, 11239, 1, 98, 10, N'SO58833', 3, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 882, 894, 889, 11239, 1, 98, 10, N'SO58833', 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 (537, 882, 894, 889, 11321, 1, 100, 1, N'SO58808', 1, 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 (605, 882, 894, 889, 11403, 1, 100, 7, N'SO58831', 1, 1, 1, 539.9900, 539.9900, 0, 0, 343.6496, 343.6496, 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 (538, 882, 894, 889, 11403, 1, 100, 7, N'SO58831', 2, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 882, 894, 889, 11403, 1, 100, 7, N'SO58831', 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 (580, 882, 894, 889, 11421, 1, 100, 8, N'SO58783', 1, 1, 1, 1700.9900, 1700.9900, 0, 0, 1082.5100, 1082.5100, 1700.9900, 136.0792, 42.5248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 882, 894, 889, 11530, 1, 19, 6, N'SO58807', 1, 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 (225, 882, 894, 889, 11530, 1, 19, 6, N'SO58807', 2, 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 (485, 882, 894, 889, 11530, 1, 19, 6, N'SO58807', 3, 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 (530, 882, 894, 889, 11566, 1, 100, 7, N'SO58806', 1, 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 (357, 882, 894, 889, 11708, 1, 100, 4, N'SO58812', 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, 882, 894, 889, 11708, 1, 100, 4, N'SO58812', 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 (484, 882, 894, 889, 11708, 1, 100, 4, N'SO58812', 3, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (484, 882, 894, 889, 11887, 1, 100, 4, N'SO58777', 1, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 883, 895, 890, 11215, 1, 19, 6, N'SO58848', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 883, 895, 890, 11215, 1, 19, 6, N'SO58848', 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 (529, 883, 895, 890, 11268, 1, 100, 4, N'SO58851', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 883, 895, 890, 11268, 1, 100, 4, N'SO58851', 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 (537, 883, 895, 890, 11283, 1, 100, 4, N'SO58878', 1, 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, 883, 895, 890, 11283, 1, 100, 4, N'SO58878', 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 (480, 883, 895, 890, 11283, 1, 100, 4, N'SO58878', 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 (478, 883, 895, 890, 11463, 1, 6, 9, N'SO58842', 1, 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, 883, 895, 890, 11463, 1, 6, 9, N'SO58842', 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 (530, 883, 895, 890, 11566, 1, 100, 7, N'SO58875', 1, 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, 883, 895, 890, 11566, 1, 100, 7, N'SO58875', 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 (539, 883, 895, 890, 11619, 1, 19, 6, N'SO58850', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 883, 895, 890, 11619, 1, 19, 6, N'SO58850', 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 (225, 883, 895, 890, 11699, 1, 100, 1, N'SO58847', 1, 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 (490, 883, 895, 890, 11699, 1, 100, 1, N'SO58847', 2, 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 (228, 883, 895, 890, 11804, 1, 100, 1, N'SO58840', 1, 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, 883, 895, 890, 11804, 1, 100, 1, N'SO58840', 2, 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 (537, 883, 895, 890, 11871, 1, 100, 1, N'SO58880', 1, 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 (564, 884, 896, 891, 11054, 1, 6, 9, N'SO59127', 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 (214, 884, 896, 891, 11054, 1, 6, 9, N'SO59127', 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 (480, 884, 896, 891, 11206, 1, 100, 1, N'SO59092', 1, 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 (488, 884, 896, 891, 11674, 1, 100, 4, N'SO59090', 1, 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 (359, 884, 896, 891, 11796, 1, 100, 4, N'SO59116', 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, 884, 896, 891, 11796, 1, 100, 4, N'SO59116', 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, 884, 896, 891, 11796, 1, 100, 4, N'SO59116', 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, 884, 896, 891, 11796, 1, 100, 4, N'SO59116', 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, 884, 896, 891, 11796, 1, 100, 4, N'SO59116', 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 (228, 884, 896, 891, 11796, 1, 100, 4, N'SO59116', 6, 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 (540, 884, 896, 891, 11922, 1, 19, 6, N'SO59095', 1, 1, 1, 32.6000, 32.6000, 0, 0, 12.1924, 12.1924, 32.6000, 2.6080, 0.8150, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 884, 896, 891, 11922, 1, 19, 6, N'SO59095', 2, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (562, 885, 897, 892, 11056, 1, 6, 9, N'SO59194', 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 (222, 885, 897, 892, 11056, 1, 6, 9, N'SO59194', 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 (537, 885, 897, 892, 11066, 1, 100, 1, N'SO59178', 1, 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, 885, 897, 892, 11066, 1, 100, 1, N'SO59178', 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 (480, 885, 897, 892, 11066, 1, 100, 1, N'SO59178', 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 (225, 885, 897, 892, 11447, 1, 6, 9, N'SO59207', 1, 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 (573, 885, 897, 892, 11447, 1, 6, 9, N'SO59207', 2, 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 (575, 885, 897, 892, 11455, 1, 6, 9, N'SO59208', 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 (489, 885, 897, 892, 11455, 1, 6, 9, N'SO59208', 2, 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 (225, 885, 897, 892, 11455, 1, 6, 9, N'SO59208', 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 (576, 885, 897, 892, 11456, 1, 6, 9, N'SO59209', 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, 885, 897, 892, 11456, 1, 6, 9, N'SO59209', 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, 885, 897, 892, 11456, 1, 6, 9, N'SO59209', 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 (217, 885, 897, 892, 11456, 1, 6, 9, N'SO59209', 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 (539, 885, 897, 892, 11530, 1, 19, 6, N'SO59153', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 885, 897, 892, 11716, 1, 100, 4, N'SO59181', 1, 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, 885, 897, 892, 11716, 1, 100, 4, N'SO59181', 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 (480, 885, 897, 892, 11716, 1, 100, 4, N'SO59181', 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 (528, 885, 897, 892, 11755, 1, 6, 9, N'SO59143', 1, 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 (535, 885, 897, 892, 11755, 1, 6, 9, N'SO59143', 2, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 885, 897, 892, 11838, 1, 100, 1, N'SO59183', 1, 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, 885, 897, 892, 11838, 1, 100, 1, N'SO59183', 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 (480, 885, 897, 892, 11838, 2, 100, 1, N'SO59183', 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 (484, 885, 897, 892, 11838, 1, 100, 1, N'SO59183', 4, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 885, 897, 892, 11928, 1, 100, 4, N'SO59182', 1, 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, 885, 897, 892, 11928, 1, 100, 4, N'SO59182', 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 (537, 886, 898, 893, 11161, 1, 100, 4, N'SO59239', 1, 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, 886, 898, 893, 11161, 1, 100, 4, N'SO59239', 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, 886, 898, 893, 11161, 1, 100, 4, N'SO59239', 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, 886, 898, 893, 11161, 1, 100, 4, N'SO59239', 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 (574, 886, 898, 893, 11457, 1, 6, 9, N'SO59271', 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, 886, 898, 893, 11457, 1, 6, 9, N'SO59271', 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, 886, 898, 893, 11457, 1, 6, 9, N'SO59271', 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 (488, 886, 898, 893, 11457, 1, 6, 9, N'SO59271', 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 (465, 886, 898, 893, 11457, 1, 6, 9, N'SO59271', 5, 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 (529, 886, 898, 893, 11911, 1, 6, 9, N'SO59215', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (481, 886, 898, 893, 11911, 1, 6, 9, N'SO59215', 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 (359, 886, 898, 893, 11956, 1, 100, 4, N'SO59249', 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, 887, 899, 894, 11277, 1, 19, 6, N'SO59299', 1, 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, 887, 899, 894, 11277, 1, 19, 6, N'SO59299', 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 (481, 887, 899, 894, 11277, 1, 19, 6, N'SO59299', 3, 1, 1, 8.9900, 8.9900, 0, 0, 3.3623, 3.3623, 8.9900, 0.7192, 0.2248, 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 (487, 887, 899, 894, 11277, 1, 19, 6, N'SO59299', 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 (528, 887, 899, 894, 11312, 1, 100, 1, N'SO59318', 1, 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, 887, 899, 894, 11312, 1, 100, 1, N'SO59318', 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 (538, 887, 899, 894, 11331, 1, 19, 6, N'SO59292', 1, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 887, 899, 894, 11331, 1, 19, 6, N'SO59292', 2, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 887, 899, 894, 11331, 1, 19, 6, N'SO59292', 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 (600, 887, 899, 894, 11417, 1, 100, 7, N'SO59283', 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 (478, 887, 899, 894, 11417, 1, 100, 7, N'SO59283', 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 (214, 887, 899, 894, 11417, 1, 100, 7, N'SO59283', 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 (225, 887, 899, 894, 11417, 1, 100, 7, N'SO59283', 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 (561, 887, 899, 894, 11444, 1, 6, 9, N'SO59332', 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 (225, 887, 899, 894, 11473, 1, 100, 7, N'SO59309', 1, 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 (489, 887, 899, 894, 11473, 1, 100, 7, N'SO59309', 2, 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 (530, 887, 899, 894, 11520, 1, 19, 6, N'SO59290', 1, 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 (479, 887, 899, 894, 11520, 1, 19, 6, N'SO59290', 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 (530, 888, 900, 895, 11505, 1, 19, 6, N'SO59351', 1, 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 (480, 888, 900, 895, 11505, 2, 19, 6, N'SO59351', 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 (361, 888, 900, 895, 11775, 1, 100, 4, N'SO59385', 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, 888, 900, 895, 11775, 1, 100, 4, N'SO59385', 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, 888, 900, 895, 11775, 1, 100, 4, N'SO59385', 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 (357, 888, 900, 895, 11776, 2, 100, 4, N'SO59383', 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, 888, 900, 895, 11776, 1, 100, 4, N'SO59383', 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 (486, 888, 900, 895, 11776, 1, 100, 4, N'SO59383', 3, 1, 1, 159.0000, 159.0000, 0, 0, 59.4660, 59.4660, 159.0000, 12.7200, 3.9750, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (536, 888, 900, 895, 11827, 1, 19, 6, N'SO59355', 1, 1, 1, 29.9900, 29.9900, 0, 0, 11.2163, 11.2163, 29.9900, 2.3992, 0.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 888, 900, 895, 11827, 1, 19, 6, N'SO59355', 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 (222, 888, 900, 895, 11827, 1, 19, 6, N'SO59355', 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 (237, 888, 900, 895, 11850, 1, 100, 4, N'SO59349', 1, 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 (573, 889, 901, 896, 11058, 1, 6, 9, N'SO59464', 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 (217, 889, 901, 896, 11058, 1, 6, 9, N'SO59464', 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 (488, 889, 901, 896, 11058, 1, 6, 9, N'SO59464', 3, 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 (561, 889, 901, 896, 11069, 1, 6, 9, N'SO59465', 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 (535, 889, 901, 896, 11091, 1, 19, 6, N'SO59427', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 889, 901, 896, 11091, 1, 19, 6, N'SO59427', 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 (480, 889, 901, 896, 11091, 2, 19, 6, N'SO59427', 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 (528, 889, 901, 896, 11149, 1, 6, 9, N'SO59414', 1, 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 (480, 889, 901, 896, 11149, 2, 6, 9, N'SO59414', 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 (538, 889, 901, 896, 11215, 1, 19, 6, N'SO59421', 1, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (536, 889, 901, 896, 11253, 1, 19, 6, N'SO59428', 1, 1, 1, 29.9900, 29.9900, 0, 0, 11.2163, 11.2163, 29.9900, 2.3992, 0.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 889, 901, 896, 11253, 1, 19, 6, N'SO59428', 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 (480, 889, 901, 896, 11253, 1, 19, 6, N'SO59428', 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 (529, 889, 901, 896, 11287, 1, 19, 6, N'SO59424', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (540, 889, 901, 896, 11287, 1, 19, 6, N'SO59424', 2, 1, 1, 32.6000, 32.6000, 0, 0, 12.1924, 12.1924, 32.6000, 2.6080, 0.8150, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 889, 901, 896, 11287, 1, 19, 6, N'SO59424', 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 (530, 889, 901, 896, 11330, 1, 19, 6, N'SO59422', 1, 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 (217, 889, 901, 896, 11330, 1, 19, 6, N'SO59422', 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 (587, 889, 901, 896, 11356, 1, 6, 9, N'SO59485', 1, 1, 1, 769.4900, 769.4900, 0, 0, 419.7784, 419.7784, 769.4900, 61.5592, 19.2373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (476, 889, 901, 896, 11356, 1, 6, 9, N'SO59485', 2, 1, 1, 69.9900, 69.9900, 0, 0, 26.1763, 26.1763, 69.9900, 5.5992, 1.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 889, 901, 896, 11356, 1, 6, 9, N'SO59485', 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 (478, 889, 901, 896, 11589, 1, 98, 10, N'SO59449', 1, 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, 889, 901, 896, 11589, 1, 98, 10, N'SO59449', 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, 889, 901, 896, 11867, 1, 100, 4, N'SO59444', 1, 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, 889, 901, 896, 11867, 1, 100, 4, N'SO59444', 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 (214, 889, 901, 896, 11867, 1, 100, 4, N'SO59444', 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 (474, 890, 902, 897, 11091, 1, 19, 6, N'SO59522', 1, 1, 1, 69.9900, 69.9900, 0, 0, 26.1763, 26.1763, 69.9900, 5.5992, 1.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (564, 890, 902, 897, 11105, 1, 6, 9, N'SO59561', 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, 890, 902, 897, 11105, 1, 6, 9, N'SO59561', 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 (484, 890, 902, 897, 11105, 1, 6, 9, N'SO59561', 3, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 890, 902, 897, 11165, 1, 100, 4, N'SO59536', 1, 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 (530, 890, 902, 897, 11330, 1, 19, 6, N'SO59510', 1, 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 (465, 890, 902, 897, 11330, 1, 19, 6, N'SO59510', 2, 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 (575, 890, 902, 897, 11451, 1, 6, 9, N'SO59578', 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 (214, 890, 902, 897, 11451, 1, 6, 9, N'SO59578', 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 (472, 890, 902, 897, 11451, 1, 6, 9, N'SO59578', 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 (477, 890, 902, 897, 11466, 1, 6, 9, N'SO59499', 1, 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, 890, 902, 897, 11466, 1, 6, 9, N'SO59499', 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 (214, 890, 902, 897, 11466, 1, 6, 9, N'SO59499', 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 (562, 891, 903, 898, 11103, 1, 6, 9, N'SO59636', 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 (214, 891, 903, 898, 11103, 1, 6, 9, N'SO59636', 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 (584, 891, 903, 898, 11242, 1, 100, 7, N'SO59645', 1, 1, 1, 539.9900, 539.9900, 0, 0, 343.6496, 343.6496, 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 (537, 891, 903, 898, 11711, 1, 19, 6, N'SO59611', 1, 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, 891, 903, 898, 11711, 1, 19, 6, N'SO59611', 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 (484, 891, 903, 898, 11864, 1, 100, 1, N'SO59581', 1, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 891, 903, 898, 11873, 1, 100, 4, N'SO59622', 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, 891, 903, 898, 11873, 1, 100, 4, N'SO59622', 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, 891, 903, 898, 11873, 1, 100, 4, N'SO59622', 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 (217, 891, 903, 898, 11873, 1, 100, 4, N'SO59622', 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 (537, 891, 903, 898, 11935, 1, 100, 1, N'SO59612', 1, 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 (562, 892, 904, 899, 11055, 1, 6, 9, N'SO59695', 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, 892, 904, 899, 11055, 1, 6, 9, N'SO59695', 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, 892, 904, 899, 11055, 1, 6, 9, N'SO59695', 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 (541, 892, 904, 899, 11566, 1, 100, 7, N'SO59681', 1, 1, 1, 28.9900, 28.9900, 0, 0, 10.8423, 10.8423, 28.9900, 2.3192, 0.7248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (530, 892, 904, 899, 11566, 1, 100, 7, N'SO59681', 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 (222, 892, 904, 899, 11566, 1, 100, 7, N'SO59681', 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 (361, 892, 904, 899, 11601, 1, 100, 7, N'SO59648', 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, 892, 904, 899, 11601, 1, 100, 7, N'SO59648', 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, 892, 904, 899, 11601, 1, 100, 7, N'SO59648', 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, 892, 904, 899, 11601, 1, 100, 7, N'SO59648', 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 (222, 892, 904, 899, 11601, 1, 100, 7, N'SO59648', 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 (528, 892, 904, 899, 11748, 1, 19, 6, N'SO59667', 1, 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 (536, 892, 904, 899, 11748, 1, 19, 6, N'SO59667', 2, 1, 1, 29.9900, 29.9900, 0, 0, 11.2163, 11.2163, 29.9900, 2.3992, 0.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 892, 904, 899, 11820, 1, 19, 6, N'SO59682', 1, 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 (562, 893, 905, 900, 11093, 1, 6, 9, N'SO59760', 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 (214, 893, 905, 900, 11093, 1, 6, 9, N'SO59760', 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 (529, 893, 905, 900, 11233, 1, 100, 4, N'SO59716', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (467, 893, 905, 900, 11233, 1, 100, 4, N'SO59716', 2, 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 (536, 893, 905, 900, 11502, 1, 19, 6, N'SO59723', 1, 1, 1, 29.9900, 29.9900, 0, 0, 11.2163, 11.2163, 29.9900, 2.3992, 0.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 893, 905, 900, 11502, 1, 19, 6, N'SO59723', 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 (217, 893, 905, 900, 11502, 1, 19, 6, N'SO59723', 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 (590, 893, 905, 900, 11513, 1, 19, 6, N'SO59747', 1, 1, 1, 769.4900, 769.4900, 0, 0, 419.7784, 419.7784, 769.4900, 61.5592, 19.2373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 893, 905, 900, 11513, 1, 19, 6, N'SO59747', 2, 1, 1, 4.9900, 4.9900, 0, 0, 1.8663, 1.8663, 4.9900, 0.3992, 0.1248, 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 (536, 893, 905, 900, 11513, 1, 19, 6, N'SO59747', 3, 1, 1, 29.9900, 29.9900, 0, 0, 11.2163, 11.2163, 29.9900, 2.3992, 0.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 893, 905, 900, 11513, 1, 19, 6, N'SO59747', 4, 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 (222, 893, 905, 900, 11513, 1, 19, 6, N'SO59747', 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 (541, 893, 905, 900, 11711, 1, 19, 6, N'SO59718', 1, 1, 1, 28.9900, 28.9900, 0, 0, 10.8423, 10.8423, 28.9900, 2.3192, 0.7248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (536, 893, 905, 900, 11841, 1, 19, 6, N'SO59719', 1, 1, 1, 29.9900, 29.9900, 0, 0, 11.2163, 11.2163, 29.9900, 2.3992, 0.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 893, 905, 900, 11841, 1, 19, 6, N'SO59719', 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 (222, 893, 905, 900, 11841, 1, 19, 6, N'SO59719', 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 (477, 893, 905, 900, 11861, 1, 19, 6, N'SO59733', 1, 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 (488, 893, 905, 900, 11861, 1, 19, 6, N'SO59733', 2, 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 (528, 894, 906, 901, 11150, 1, 6, 9, N'SO59763', 1, 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 (217, 894, 906, 901, 11150, 1, 6, 9, N'SO59763', 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 (605, 894, 906, 901, 11243, 1, 98, 10, N'SO59829', 1, 1, 1, 539.9900, 539.9900, 0, 0, 343.6496, 343.6496, 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 (477, 894, 906, 901, 11243, 1, 98, 10, N'SO59829', 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 (479, 894, 906, 901, 11243, 1, 98, 10, N'SO59829', 3, 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 (217, 894, 906, 901, 11243, 1, 98, 10, N'SO59829', 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 (480, 894, 906, 901, 11301, 1, 100, 1, N'SO59769', 1, 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 (588, 894, 906, 901, 11358, 1, 6, 9, N'SO59831', 1, 1, 1, 769.4900, 769.4900, 0, 0, 419.7784, 419.7784, 769.4900, 61.5592, 19.2373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 894, 906, 901, 11358, 1, 6, 9, N'SO59831', 2, 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 (476, 894, 906, 901, 11358, 1, 6, 9, N'SO59831', 3, 1, 1, 69.9900, 69.9900, 0, 0, 26.1763, 26.1763, 69.9900, 5.5992, 1.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 894, 906, 901, 11700, 1, 100, 4, N'SO59797', 1, 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, 894, 906, 901, 11700, 1, 100, 4, N'SO59797', 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 (222, 894, 906, 901, 11700, 1, 100, 4, N'SO59797', 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 (537, 894, 906, 901, 11732, 1, 100, 2, N'SO59796', 1, 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, 894, 906, 901, 11732, 1, 100, 2, N'SO59796', 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 (222, 894, 906, 901, 11732, 1, 100, 2, N'SO59796', 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 (353, 894, 906, 901, 11799, 1, 100, 1, N'SO59805', 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, 894, 906, 901, 11799, 1, 100, 1, N'SO59805', 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, 894, 906, 901, 11799, 1, 100, 1, N'SO59805', 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 (484, 894, 906, 901, 11799, 1, 100, 1, N'SO59805', 4, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (535, 895, 907, 902, 11073, 1, 6, 9, N'SO59841', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 895, 907, 902, 11073, 1, 6, 9, N'SO59841', 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 (222, 895, 907, 902, 11073, 1, 6, 9, N'SO59841', 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 (564, 895, 907, 902, 11460, 1, 6, 9, N'SO59902', 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 (541, 895, 907, 902, 11460, 1, 6, 9, N'SO59902', 2, 1, 1, 28.9900, 28.9900, 0, 0, 10.8423, 10.8423, 28.9900, 2.3192, 0.7248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (530, 895, 907, 902, 11460, 1, 6, 9, N'SO59902', 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 (463, 895, 907, 902, 11460, 1, 6, 9, N'SO59902', 4, 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 (541, 895, 907, 902, 11566, 1, 100, 7, N'SO59867', 1, 1, 1, 28.9900, 28.9900, 0, 0, 10.8423, 10.8423, 28.9900, 2.3192, 0.7248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (530, 895, 907, 902, 11566, 1, 100, 7, N'SO59867', 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 (480, 895, 907, 902, 11566, 2, 100, 7, N'SO59867', 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 (355, 895, 907, 902, 11607, 1, 100, 7, N'SO59832', 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, 895, 907, 902, 11607, 1, 100, 7, N'SO59832', 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, 895, 907, 902, 11607, 1, 100, 7, N'SO59832', 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 (530, 895, 907, 902, 11631, 1, 19, 6, N'SO59845', 1, 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, 895, 907, 902, 11631, 1, 19, 6, N'SO59845', 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 (476, 895, 907, 902, 11631, 1, 19, 6, N'SO59852', 1, 1, 1, 69.9900, 69.9900, 0, 0, 26.1763, 26.1763, 69.9900, 5.5992, 1.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (536, 895, 907, 902, 11719, 1, 19, 6, N'SO59846', 1, 1, 1, 29.9900, 29.9900, 0, 0, 11.2163, 11.2163, 29.9900, 2.3992, 0.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 895, 907, 902, 11719, 1, 19, 6, N'SO59846', 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 (217, 895, 907, 902, 11719, 1, 19, 6, N'SO59846', 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 (478, 895, 907, 902, 11723, 1, 19, 6, N'SO59848', 1, 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, 895, 907, 902, 11723, 1, 19, 6, N'SO59848', 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 (214, 895, 907, 902, 11723, 1, 19, 6, N'SO59848', 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 (357, 895, 907, 902, 11809, 1, 100, 4, N'SO59876', 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, 895, 907, 902, 11809, 1, 100, 4, N'SO59876', 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 (225, 895, 907, 902, 11809, 1, 100, 4, N'SO59876', 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 (357, 895, 907, 902, 11934, 1, 100, 1, N'SO59878', 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, 895, 907, 902, 11934, 1, 100, 1, N'SO59878', 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 (234, 895, 907, 902, 11934, 1, 100, 1, N'SO59878', 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 (467, 895, 907, 902, 11934, 1, 100, 1, N'SO59878', 4, 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 (540, 896, 908, 903, 11262, 1, 19, 6, N'SO59928', 1, 1, 1, 32.6000, 32.6000, 0, 0, 12.1924, 12.1924, 32.6000, 2.6080, 0.8150, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 896, 908, 903, 11262, 1, 19, 6, N'SO59928', 2, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (488, 896, 908, 903, 11498, 1, 19, 6, N'SO59924', 1, 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 (530, 896, 908, 903, 11506, 1, 19, 6, N'SO59925', 1, 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 (479, 896, 908, 903, 11506, 1, 19, 6, N'SO59925', 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, 896, 908, 903, 11506, 1, 19, 6, N'SO59925', 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 (535, 896, 908, 903, 11641, 1, 19, 6, N'SO59929', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 896, 908, 903, 11641, 1, 19, 6, N'SO59929', 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 (222, 896, 908, 903, 11728, 1, 100, 1, N'SO59923', 1, 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 (528, 896, 908, 903, 11738, 1, 19, 6, N'SO59931', 1, 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 (536, 896, 908, 903, 11738, 1, 19, 6, N'SO59931', 2, 1, 1, 29.9900, 29.9900, 0, 0, 11.2163, 11.2163, 29.9900, 2.3992, 0.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 896, 908, 903, 11738, 1, 19, 6, N'SO59931', 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 (477, 896, 908, 903, 11748, 1, 19, 6, N'SO59934', 1, 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, 896, 908, 903, 11748, 1, 19, 6, N'SO59934', 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 (353, 896, 908, 903, 11798, 2, 100, 1, N'SO59952', 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, 896, 908, 903, 11798, 1, 100, 1, N'SO59952', 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 (576, 897, 909, 904, 11077, 1, 6, 9, N'SO60042', 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 (214, 897, 909, 904, 11077, 1, 6, 9, N'SO60042', 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 (540, 897, 909, 904, 11262, 1, 19, 6, N'SO59997', 1, 1, 1, 32.6000, 32.6000, 0, 0, 12.1924, 12.1924, 32.6000, 2.6080, 0.8150, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 897, 909, 904, 11262, 1, 19, 6, N'SO59997', 2, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 897, 909, 904, 11262, 1, 19, 6, N'SO59997', 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 (573, 897, 909, 904, 11452, 1, 6, 9, N'SO60043', 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 (225, 897, 909, 904, 11452, 1, 6, 9, N'SO60043', 2, 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, 897, 909, 904, 11599, 1, 100, 7, N'SO59984', 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, 897, 909, 904, 11599, 1, 100, 7, N'SO59984', 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, 897, 909, 904, 11599, 1, 100, 7, N'SO59984', 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 (217, 897, 909, 904, 11599, 1, 100, 7, N'SO59984', 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, 897, 909, 904, 11599, 1, 100, 7, N'SO59984', 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 (536, 897, 909, 904, 11632, 1, 19, 6, N'SO59998', 1, 1, 1, 29.9900, 29.9900, 0, 0, 11.2163, 11.2163, 29.9900, 2.3992, 0.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 897, 909, 904, 11632, 1, 19, 6, N'SO59998', 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 (217, 897, 909, 904, 11632, 1, 19, 6, N'SO59998', 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 (477, 897, 909, 904, 11833, 1, 19, 6, N'SO60005', 1, 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, 897, 909, 904, 11833, 1, 19, 6, N'SO60005', 2, 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, 897, 909, 904, 11839, 1, 100, 4, N'SO60017', 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, 897, 909, 904, 11839, 1, 100, 4, N'SO60017', 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, 897, 909, 904, 11839, 1, 100, 4, N'SO60017', 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 (540, 898, 910, 905, 11176, 1, 19, 6, N'SO60065', 1, 1, 1, 32.6000, 32.6000, 0, 0, 12.1924, 12.1924, 32.6000, 2.6080, 0.8150, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 898, 910, 905, 11176, 1, 19, 6, N'SO60065', 2, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 898, 910, 905, 11176, 2, 19, 6, N'SO60065', 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 (484, 898, 910, 905, 11176, 1, 19, 6, N'SO60065', 4, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 898, 910, 905, 11183, 1, 100, 4, N'SO60089', 1, 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, 898, 910, 905, 11183, 1, 100, 4, N'SO60089', 2, 1, 1, 4.9900, 4.9900, 0, 0, 1.8663, 1.8663, 4.9900, 0.3992, 0.1248, 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 (355, 898, 910, 905, 11774, 1, 100, 4, N'SO60099', 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, 898, 910, 905, 11774, 1, 100, 4, N'SO60099', 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 (564, 899, 911, 906, 11061, 1, 6, 9, N'SO60168', 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 (225, 899, 911, 906, 11300, 1, 19, 6, N'SO60130', 1, 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 (590, 899, 911, 906, 11357, 1, 6, 9, N'SO60178', 1, 1, 1, 769.4900, 769.4900, 0, 0, 419.7784, 419.7784, 769.4900, 61.5592, 19.2373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 899, 911, 906, 11357, 1, 6, 9, N'SO60178', 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 (214, 899, 911, 906, 11357, 1, 6, 9, N'SO60178', 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 (528, 899, 911, 906, 11660, 1, 19, 6, N'SO60156', 1, 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, 899, 911, 906, 11660, 1, 19, 6, N'SO60156', 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 (480, 899, 911, 906, 11660, 2, 19, 6, N'SO60156', 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 (484, 899, 911, 906, 11660, 1, 19, 6, N'SO60156', 4, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (541, 899, 911, 906, 11711, 1, 19, 6, N'SO60133', 1, 1, 1, 28.9900, 28.9900, 0, 0, 10.8423, 10.8423, 28.9900, 2.3192, 0.7248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (530, 899, 911, 906, 11711, 1, 19, 6, N'SO60133', 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 (222, 899, 911, 906, 11711, 1, 19, 6, N'SO60133', 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 (477, 899, 911, 906, 11868, 1, 19, 6, N'SO60146', 1, 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 (476, 899, 911, 906, 11875, 1, 19, 6, N'SO60145', 1, 1, 1, 69.9900, 69.9900, 0, 0, 26.1763, 26.1763, 69.9900, 5.5992, 1.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 899, 911, 906, 11875, 1, 19, 6, N'SO60145', 2, 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 (561, 900, 912, 907, 11072, 1, 6, 9, N'SO60240', 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, 900, 912, 907, 11072, 1, 6, 9, N'SO60240', 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, 900, 912, 907, 11072, 1, 6, 9, N'SO60240', 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 (574, 900, 912, 907, 11104, 1, 6, 9, N'SO60241', 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 (488, 900, 912, 907, 11104, 1, 6, 9, N'SO60241', 2, 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 (561, 900, 912, 907, 11106, 1, 6, 9, N'SO60242', 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 (537, 900, 912, 907, 11143, 1, 100, 4, N'SO60226', 1, 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, 900, 912, 907, 11143, 1, 100, 4, N'SO60226', 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 (480, 900, 912, 907, 11143, 1, 100, 4, N'SO60226', 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 (480, 900, 912, 907, 11176, 1, 19, 6, N'SO60198', 1, 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 (538, 900, 912, 907, 11287, 1, 19, 6, N'SO60201', 1, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 900, 912, 907, 11287, 1, 19, 6, N'SO60201', 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 (480, 900, 912, 907, 11320, 1, 100, 4, N'SO60197', 1, 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 (541, 900, 912, 907, 11330, 1, 19, 6, N'SO60200', 1, 1, 1, 28.9900, 28.9900, 0, 0, 10.8423, 10.8423, 28.9900, 2.3192, 0.7248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (530, 900, 912, 907, 11330, 1, 19, 6, N'SO60200', 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 (463, 900, 912, 907, 11330, 1, 19, 6, N'SO60200', 3, 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 (477, 900, 912, 907, 11434, 1, 98, 10, N'SO60216', 1, 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 (479, 900, 912, 907, 11434, 1, 98, 10, N'SO60216', 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 (214, 900, 912, 907, 11434, 1, 98, 10, N'SO60216', 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 (537, 900, 912, 907, 11622, 1, 100, 1, N'SO60224', 1, 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, 900, 912, 907, 11622, 1, 100, 1, N'SO60224', 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 (231, 900, 912, 907, 11622, 1, 100, 1, N'SO60224', 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 (467, 900, 912, 907, 11622, 1, 100, 1, N'SO60224', 4, 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 (491, 900, 912, 907, 11721, 1, 100, 4, N'SO60196', 1, 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 (225, 900, 912, 907, 11721, 1, 100, 4, N'SO60196', 2, 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 (359, 900, 912, 907, 11854, 1, 100, 4, N'SO60233', 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, 900, 912, 907, 11854, 1, 100, 4, N'SO60233', 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, 900, 912, 907, 11854, 1, 100, 4, N'SO60233', 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 (485, 900, 912, 907, 11854, 1, 100, 4, N'SO60233', 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 (478, 900, 912, 907, 11854, 1, 100, 4, N'SO60233', 5, 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, 900, 912, 907, 11854, 1, 100, 4, N'SO60233', 6, 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 (217, 900, 912, 907, 11854, 1, 100, 4, N'SO60233', 7, 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 (541, 901, 913, 908, 11331, 1, 19, 6, N'SO60266', 1, 1, 1, 28.9900, 28.9900, 0, 0, 10.8423, 10.8423, 28.9900, 2.3192, 0.7248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 901, 913, 908, 11516, 1, 100, 4, N'SO60292', 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, 901, 913, 908, 11516, 1, 100, 4, N'SO60292', 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, 901, 913, 908, 11516, 1, 100, 4, N'SO60292', 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, 901, 913, 908, 11516, 1, 100, 4, N'SO60292', 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 (234, 901, 913, 908, 11851, 1, 100, 4, N'SO60264', 1, 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 (537, 901, 913, 908, 11958, 1, 100, 1, N'SO60283', 1, 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, 901, 913, 908, 11958, 1, 100, 1, N'SO60283', 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 (214, 901, 913, 908, 11958, 1, 100, 1, N'SO60283', 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 (538, 902, 914, 909, 11223, 1, 19, 6, N'SO60341', 1, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 902, 914, 909, 11223, 1, 19, 6, N'SO60341', 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 (480, 902, 914, 909, 11330, 1, 19, 6, N'SO60337', 1, 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 (576, 902, 914, 909, 11450, 1, 6, 9, N'SO60380', 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 (222, 902, 914, 909, 11450, 1, 6, 9, N'SO60380', 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 (482, 902, 914, 909, 11450, 1, 6, 9, N'SO60380', 3, 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 (355, 902, 914, 909, 11811, 1, 100, 4, N'SO60361', 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 (363, 902, 914, 909, 11886, 1, 100, 4, N'SO60359', 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, 902, 914, 909, 11886, 1, 100, 4, N'SO60359', 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, 902, 914, 909, 11886, 1, 100, 4, N'SO60359', 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 (529, 902, 914, 909, 11987, 1, 6, 9, N'SO60331', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 902, 914, 909, 11987, 1, 6, 9, N'SO60331', 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 (486, 902, 914, 909, 11987, 1, 6, 9, N'SO60331', 3, 1, 1, 159.0000, 159.0000, 0, 0, 59.4660, 59.4660, 159.0000, 12.7200, 3.9750, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (563, 903, 915, 910, 11124, 1, 6, 9, N'SO60434', 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 (217, 903, 915, 910, 11124, 1, 6, 9, N'SO60434', 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 (529, 903, 915, 910, 11200, 1, 19, 6, N'SO60395', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 903, 915, 910, 11454, 1, 6, 9, N'SO60451', 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 (217, 903, 915, 910, 11454, 1, 6, 9, N'SO60451', 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 (573, 903, 915, 910, 11459, 1, 6, 9, N'SO60452', 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 (222, 903, 915, 910, 11459, 1, 6, 9, N'SO60452', 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 (355, 903, 915, 910, 11780, 1, 100, 1, N'SO60421', 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, 903, 915, 910, 11780, 1, 100, 1, N'SO60421', 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, 903, 915, 910, 11780, 1, 100, 1, N'SO60421', 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 (217, 903, 915, 910, 11780, 1, 100, 1, N'SO60421', 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 (355, 903, 915, 910, 11812, 1, 100, 1, N'SO60419', 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, 903, 915, 910, 11812, 1, 100, 1, N'SO60419', 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 (537, 903, 915, 910, 11926, 1, 100, 1, N'SO60413', 1, 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, 903, 915, 910, 11926, 1, 100, 1, N'SO60413', 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 (363, 903, 915, 910, 11954, 1, 100, 4, N'SO60422', 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, 903, 915, 910, 11954, 1, 100, 4, N'SO60422', 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 (480, 903, 915, 910, 11954, 1, 100, 4, N'SO60422', 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 (529, 904, 916, 911, 11128, 1, 100, 1, N'SO60469', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 904, 916, 911, 11128, 1, 100, 1, N'SO60469', 2, 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 (540, 904, 916, 911, 11287, 1, 19, 6, N'SO60473', 1, 1, 1, 32.6000, 32.6000, 0, 0, 12.1924, 12.1924, 32.6000, 2.6080, 0.8150, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (538, 904, 916, 911, 11436, 1, 98, 10, N'SO60487', 1, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 904, 916, 911, 11436, 1, 98, 10, N'SO60487', 2, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 904, 916, 911, 11436, 1, 98, 10, N'SO60487', 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 (564, 904, 916, 911, 11453, 1, 6, 9, N'SO60518', 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 (217, 904, 916, 911, 11453, 1, 6, 9, N'SO60518', 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 (355, 904, 916, 911, 11593, 1, 100, 7, N'SO60454', 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, 904, 916, 911, 11593, 1, 100, 7, N'SO60454', 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 (476, 904, 916, 911, 11784, 1, 19, 6, N'SO60478', 1, 1, 1, 69.9900, 69.9900, 0, 0, 26.1763, 26.1763, 69.9900, 5.5992, 1.7498, 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 (484, 904, 916, 911, 11876, 1, 100, 4, N'SO60458', 1, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 904, 916, 911, 11924, 1, 100, 4, N'SO60492', 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, 904, 916, 911, 11924, 1, 100, 4, N'SO60492', 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, 904, 916, 911, 11924, 1, 100, 4, N'SO60492', 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 (225, 904, 916, 911, 11924, 1, 100, 4, N'SO60492', 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 (355, 904, 916, 911, 11925, 1, 100, 1, N'SO60496', 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, 904, 916, 911, 11925, 1, 100, 1, N'SO60496', 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, 904, 916, 911, 11925, 1, 100, 1, N'SO60496', 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 (487, 904, 916, 911, 11925, 1, 100, 1, N'SO60496', 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 (357, 904, 916, 911, 11939, 1, 100, 4, N'SO60497', 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, 904, 916, 911, 11939, 1, 100, 4, N'SO60497', 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, 904, 916, 911, 11939, 1, 100, 4, N'SO60497', 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 (473, 904, 916, 911, 11939, 1, 100, 4, N'SO60497', 4, 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 (480, 905, 917, 912, 11091, 1, 19, 6, N'SO60531', 1, 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 (537, 905, 917, 912, 11853, 1, 100, 4, N'SO60546', 1, 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, 905, 917, 912, 11853, 1, 100, 4, N'SO60546', 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 (574, 906, 918, 913, 11076, 1, 6, 9, N'SO60628', 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 (573, 906, 918, 913, 11092, 1, 6, 9, N'SO60629', 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, 906, 918, 913, 11092, 1, 6, 9, N'SO60629', 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 (573, 906, 918, 913, 11107, 1, 6, 9, N'SO60612', 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 (222, 906, 918, 913, 11107, 1, 6, 9, N'SO60612', 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 (467, 906, 918, 913, 11200, 1, 19, 6, N'SO60565', 1, 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 (231, 906, 918, 913, 11200, 1, 19, 6, N'SO60565', 2, 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 (561, 906, 918, 913, 11446, 1, 6, 9, N'SO60613', 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 (222, 906, 918, 913, 11446, 1, 6, 9, N'SO60613', 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 (489, 906, 918, 913, 11446, 1, 6, 9, N'SO60613', 3, 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 (225, 906, 918, 913, 11446, 1, 6, 9, N'SO60613', 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 (574, 906, 918, 913, 11448, 1, 6, 9, N'SO60630', 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 (488, 906, 918, 913, 11448, 1, 6, 9, N'SO60630', 2, 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 (476, 906, 918, 913, 11519, 1, 19, 6, N'SO60585', 1, 1, 1, 69.9900, 69.9900, 0, 0, 26.1763, 26.1763, 69.9900, 5.5992, 1.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 906, 918, 913, 11519, 1, 19, 6, N'SO60585', 2, 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 (536, 906, 918, 913, 11619, 1, 19, 6, N'SO60580', 1, 1, 1, 29.9900, 29.9900, 0, 0, 11.2163, 11.2163, 29.9900, 2.3992, 0.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (488, 906, 918, 913, 11687, 1, 100, 4, N'SO60576', 1, 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 (225, 906, 918, 913, 11687, 1, 100, 4, N'SO60576', 2, 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 (539, 906, 918, 913, 11711, 1, 19, 6, N'SO60577', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 906, 918, 913, 11711, 1, 19, 6, N'SO60577', 2, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 906, 918, 913, 11711, 1, 19, 6, N'SO60577', 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 (214, 906, 918, 913, 11734, 1, 100, 4, N'SO60575', 1, 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 (473, 906, 918, 913, 11734, 1, 100, 4, N'SO60575', 2, 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 (537, 906, 918, 913, 11829, 1, 100, 1, N'SO60601', 1, 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, 906, 918, 913, 11829, 1, 100, 1, N'SO60601', 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 (485, 906, 918, 913, 11829, 1, 100, 1, N'SO60601', 3, 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, 906, 918, 913, 11829, 1, 100, 1, N'SO60601', 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 (477, 906, 918, 913, 11829, 1, 100, 1, N'SO60601', 5, 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 (480, 907, 919, 914, 11225, 1, 100, 1, N'SO60652', 1, 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 (222, 907, 919, 914, 11262, 1, 19, 6, N'SO60638', 1, 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 (463, 907, 919, 914, 11262, 1, 19, 6, N'SO60638', 2, 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 (537, 907, 919, 914, 11279, 1, 100, 1, N'SO60671', 1, 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, 907, 919, 914, 11279, 1, 100, 1, N'SO60671', 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 (480, 907, 919, 914, 11279, 1, 100, 1, N'SO60671', 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 (225, 907, 919, 914, 11520, 1, 19, 6, N'SO60635', 1, 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, 907, 919, 914, 11777, 1, 100, 4, N'SO60682', 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, 907, 919, 914, 11777, 1, 100, 4, N'SO60682', 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, 907, 919, 914, 11777, 1, 100, 4, N'SO60682', 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 (480, 907, 919, 914, 11777, 1, 100, 4, N'SO60682', 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 (562, 908, 920, 915, 11080, 1, 6, 9, N'SO60764', 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 (222, 908, 920, 915, 11080, 1, 6, 9, N'SO60764', 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 (231, 908, 920, 915, 11080, 1, 6, 9, N'SO60764', 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 (561, 908, 920, 915, 11108, 1, 6, 9, N'SO60747', 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 (222, 908, 920, 915, 11108, 1, 6, 9, N'SO60747', 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 (589, 908, 920, 915, 11134, 1, 6, 9, N'SO60741', 1, 1, 1, 769.4900, 769.4900, 0, 0, 419.7784, 419.7784, 769.4900, 61.5592, 19.2373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 908, 920, 915, 11142, 1, 19, 6, N'SO60699', 1, 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, 908, 920, 915, 11142, 1, 19, 6, N'SO60699', 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 (487, 908, 920, 915, 11142, 1, 19, 6, N'SO60699', 3, 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 (529, 908, 920, 915, 11192, 1, 100, 1, N'SO60704', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 908, 920, 915, 11192, 1, 100, 1, N'SO60704', 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 (529, 908, 920, 915, 11260, 1, 100, 4, N'SO60705', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 908, 920, 915, 11260, 1, 100, 4, N'SO60705', 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 (489, 908, 920, 915, 11407, 1, 100, 8, N'SO60728', 1, 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 (359, 908, 920, 915, 11779, 1, 100, 1, N'SO60735', 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 (228, 908, 920, 915, 11814, 1, 100, 1, N'SO60700', 1, 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, 908, 920, 915, 11814, 1, 100, 1, N'SO60700', 2, 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 (574, 909, 921, 916, 11075, 1, 6, 9, N'SO60835', 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 (477, 909, 921, 916, 11075, 1, 6, 9, N'SO60835', 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 (479, 909, 921, 916, 11075, 1, 6, 9, N'SO60835', 3, 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 (225, 909, 921, 916, 11109, 1, 6, 9, N'SO60818', 1, 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 (561, 909, 921, 916, 11109, 1, 6, 9, N'SO60818', 2, 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 (484, 909, 921, 916, 11121, 1, 6, 9, N'SO60772', 1, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 909, 921, 916, 11203, 1, 19, 6, N'SO60779', 1, 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 (535, 909, 921, 916, 11203, 1, 19, 6, N'SO60779', 2, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 909, 921, 916, 11203, 2, 19, 6, N'SO60779', 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 (483, 909, 921, 916, 11203, 1, 19, 6, N'SO60779', 4, 1, 1, 120.0000, 120.0000, 0, 0, 44.8800, 44.8800, 120.0000, 9.6000, 3.0000, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (237, 909, 921, 916, 11366, 1, 6, 9, N'SO60771', 1, 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, 909, 921, 916, 11449, 1, 6, 9, N'SO60836', 1, 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 (564, 909, 921, 916, 11449, 1, 6, 9, N'SO60836', 2, 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 (537, 909, 921, 916, 11514, 1, 100, 1, N'SO60806', 1, 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, 909, 921, 916, 11514, 1, 100, 1, N'SO60806', 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 (355, 909, 921, 916, 11810, 1, 100, 1, N'SO60812', 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, 909, 921, 916, 11810, 1, 100, 1, N'SO60812', 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, 909, 921, 916, 11810, 1, 100, 1, N'SO60812', 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 (214, 909, 921, 916, 11810, 1, 100, 1, N'SO60812', 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 (575, 910, 922, 917, 11060, 1, 6, 9, N'SO60884', 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, 910, 922, 917, 11060, 1, 6, 9, N'SO60884', 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, 910, 922, 917, 11060, 1, 6, 9, N'SO60884', 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, 910, 922, 917, 11060, 1, 6, 9, N'SO60884', 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 (573, 910, 922, 917, 11095, 1, 6, 9, N'SO60885', 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 (217, 910, 922, 917, 11095, 1, 6, 9, N'SO60885', 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 (562, 910, 922, 917, 11117, 1, 6, 9, N'SO60886', 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 (217, 910, 922, 917, 11117, 1, 6, 9, N'SO60886', 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 (541, 910, 922, 917, 11331, 1, 19, 6, N'SO60853', 1, 1, 1, 28.9900, 28.9900, 0, 0, 10.8423, 10.8423, 28.9900, 2.3192, 0.7248, 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 (530, 910, 922, 917, 11331, 1, 19, 6, N'SO60853', 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 (480, 910, 922, 917, 11331, 2, 19, 6, N'SO60853', 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 (539, 910, 922, 917, 11711, 1, 19, 6, N'SO60851', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 910, 922, 917, 11711, 1, 19, 6, N'SO60851', 2, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 910, 922, 917, 11711, 1, 19, 6, N'SO60851', 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 (363, 910, 922, 917, 11872, 1, 100, 4, N'SO60874', 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, 910, 922, 917, 11872, 1, 100, 4, N'SO60874', 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, 910, 922, 917, 11872, 1, 100, 4, N'SO60874', 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, 910, 922, 917, 11872, 1, 100, 4, N'SO60874', 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 (562, 911, 923, 918, 11070, 1, 6, 9, N'SO60939', 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 (541, 911, 923, 918, 11070, 1, 6, 9, N'SO60939', 2, 1, 1, 28.9900, 28.9900, 0, 0, 10.8423, 10.8423, 28.9900, 2.3192, 0.7248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (530, 911, 923, 918, 11070, 1, 6, 9, N'SO60939', 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 (480, 911, 923, 918, 11070, 1, 6, 9, N'SO60939', 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 (580, 911, 923, 918, 11423, 1, 100, 8, N'SO60899', 1, 1, 1, 1700.9900, 1700.9900, 0, 0, 1082.5100, 1082.5100, 1700.9900, 136.0792, 42.5248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (539, 911, 923, 918, 11423, 1, 100, 8, N'SO60899', 2, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 911, 923, 918, 11423, 1, 100, 8, N'SO60899', 3, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 911, 923, 918, 11423, 1, 100, 8, N'SO60899', 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 (217, 911, 923, 918, 11423, 1, 100, 8, N'SO60899', 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 (537, 911, 923, 918, 11517, 1, 100, 4, N'SO60922', 1, 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, 911, 923, 918, 11517, 1, 100, 4, N'SO60922', 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 (222, 911, 923, 918, 11517, 1, 100, 4, N'SO60922', 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 (465, 911, 923, 918, 11517, 1, 100, 4, N'SO60922', 4, 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 (217, 911, 923, 918, 11562, 1, 100, 8, N'SO60924', 1, 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 (228, 911, 923, 918, 11562, 1, 100, 8, N'SO60924', 2, 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 (536, 911, 923, 918, 11652, 1, 19, 6, N'SO60906', 1, 1, 1, 29.9900, 29.9900, 0, 0, 11.2163, 11.2163, 29.9900, 2.3992, 0.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 911, 923, 918, 11652, 1, 19, 6, N'SO60906', 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 (528, 912, 924, 919, 11024, 1, 100, 4, N'SO60998', 1, 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, 912, 924, 919, 11024, 1, 100, 4, N'SO60998', 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 (480, 912, 924, 919, 11024, 1, 100, 4, N'SO60998', 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 (479, 912, 924, 919, 11419, 1, 98, 10, N'SO61002', 1, 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, 912, 924, 919, 11419, 1, 98, 10, N'SO61002', 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 (222, 912, 924, 919, 11419, 1, 98, 10, N'SO61002', 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 (529, 912, 924, 919, 11530, 1, 19, 6, N'SO60974', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 912, 924, 919, 11530, 1, 19, 6, N'SO60974', 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 (528, 912, 924, 919, 11887, 1, 100, 4, N'SO61000', 1, 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, 912, 924, 919, 11887, 1, 100, 4, N'SO61000', 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 (214, 912, 924, 919, 11887, 1, 100, 4, N'SO61000', 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 (357, 912, 924, 919, 11933, 1, 100, 1, N'SO61015', 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, 912, 924, 919, 11933, 1, 100, 1, N'SO61015', 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 (586, 913, 925, 920, 11250, 1, 98, 10, N'SO61078', 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, 913, 925, 920, 11250, 1, 98, 10, N'SO61078', 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, 913, 925, 920, 11250, 1, 98, 10, N'SO61078', 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 (576, 913, 925, 920, 11445, 1, 6, 9, N'SO61081', 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, 913, 925, 920, 11445, 1, 6, 9, N'SO61081', 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 (353, 913, 925, 920, 11606, 1, 100, 7, N'SO61036', 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, 913, 925, 920, 11606, 1, 100, 7, N'SO61036', 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, 913, 925, 920, 11606, 1, 100, 7, N'SO61036', 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, 913, 925, 920, 11606, 1, 100, 7, N'SO61036', 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 (474, 913, 925, 920, 11651, 1, 19, 6, N'SO61055', 1, 1, 1, 69.9900, 69.9900, 0, 0, 26.1763, 26.1763, 69.9900, 5.5992, 1.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 913, 925, 920, 11813, 2, 100, 1, N'SO61074', 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, 913, 925, 920, 11813, 1, 100, 1, N'SO61074', 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 (537, 913, 925, 920, 11847, 1, 100, 1, N'SO61071', 1, 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, 913, 925, 920, 11847, 1, 100, 1, N'SO61071', 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 (217, 913, 925, 920, 11847, 1, 100, 1, N'SO61071', 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 (355, 913, 925, 920, 11955, 1, 100, 4, N'SO61076', 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, 913, 925, 920, 11955, 1, 100, 4, N'SO61076', 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 (564, 914, 926, 921, 11101, 1, 6, 9, N'SO61165', 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, 914, 926, 921, 11101, 1, 6, 9, N'SO61165', 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 (463, 914, 926, 921, 11101, 1, 6, 9, N'SO61165', 3, 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 (477, 914, 926, 921, 11101, 1, 6, 9, N'SO61165', 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 (605, 914, 926, 921, 11241, 1, 100, 7, N'SO61171', 1, 1, 1, 539.9900, 539.9900, 0, 0, 343.6496, 343.6496, 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 (477, 914, 926, 921, 11241, 1, 100, 7, N'SO61171', 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 (479, 914, 926, 921, 11241, 1, 100, 7, N'SO61171', 3, 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 (539, 914, 926, 921, 11253, 1, 19, 6, N'SO61120', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 914, 926, 921, 11253, 1, 19, 6, N'SO61120', 2, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 914, 926, 921, 11253, 1, 19, 6, N'SO61120', 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 (538, 914, 926, 921, 11253, 1, 19, 6, N'SO61121', 1, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 914, 926, 921, 11253, 1, 19, 6, N'SO61121', 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 (530, 914, 926, 921, 11262, 1, 19, 6, N'SO61118', 1, 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 (465, 914, 926, 921, 11262, 1, 19, 6, N'SO61118', 2, 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 (480, 914, 926, 921, 11499, 1, 100, 4, N'SO61116', 1, 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 (483, 914, 926, 921, 11499, 1, 100, 4, N'SO61116', 2, 1, 1, 120.0000, 120.0000, 0, 0, 44.8800, 44.8800, 120.0000, 9.6000, 3.0000, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 914, 926, 921, 11519, 1, 19, 6, N'SO61115', 1, 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 (237, 914, 926, 921, 11519, 1, 19, 6, N'SO61115', 2, 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 (536, 914, 926, 921, 11520, 1, 19, 6, N'SO61126', 1, 1, 1, 29.9900, 29.9900, 0, 0, 11.2163, 11.2163, 29.9900, 2.3992, 0.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (471, 914, 926, 921, 11520, 1, 19, 6, N'SO61126', 2, 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 (361, 914, 926, 921, 11611, 1, 100, 7, N'SO61093', 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, 914, 926, 921, 11660, 1, 19, 6, N'SO61122', 1, 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 (535, 914, 926, 921, 11660, 1, 19, 6, N'SO61122', 2, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 914, 926, 921, 11660, 1, 19, 6, N'SO61122', 3, 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 (222, 914, 926, 921, 11660, 1, 19, 6, N'SO61122', 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 (529, 914, 926, 921, 11719, 1, 19, 6, N'SO61119', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (538, 914, 926, 921, 11719, 1, 19, 6, N'SO61119', 2, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 914, 926, 921, 11719, 1, 19, 6, N'SO61119', 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 (361, 914, 926, 921, 11778, 1, 100, 1, N'SO61156', 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, 914, 926, 921, 11797, 1, 100, 4, N'SO61155', 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, 914, 926, 921, 11797, 1, 100, 4, N'SO61155', 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, 914, 926, 921, 11797, 1, 100, 4, N'SO61155', 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 (217, 914, 926, 921, 11797, 1, 100, 4, N'SO61155', 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 (463, 914, 926, 921, 11797, 1, 100, 4, N'SO61155', 5, 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 (480, 915, 927, 922, 11306, 1, 100, 4, N'SO61282', 1, 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 (536, 915, 927, 922, 11530, 1, 19, 6, N'SO61286', 1, 1, 1, 29.9900, 29.9900, 0, 0, 11.2163, 11.2163, 29.9900, 2.3992, 0.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 915, 927, 922, 11530, 1, 19, 6, N'SO61286', 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 (217, 915, 927, 922, 11792, 1, 100, 4, N'SO61269', 1, 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 (231, 915, 927, 922, 11792, 1, 100, 4, N'SO61269', 2, 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 (214, 915, 927, 922, 11891, 1, 100, 4, N'SO61280', 1, 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 (528, 916, 928, 923, 11091, 1, 19, 6, N'SO61333', 1, 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 (536, 916, 928, 923, 11091, 1, 19, 6, N'SO61333', 2, 1, 1, 29.9900, 29.9900, 0, 0, 11.2163, 11.2163, 29.9900, 2.3992, 0.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (575, 916, 928, 923, 11099, 1, 6, 9, N'SO61367', 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 (477, 916, 928, 923, 11099, 1, 6, 9, N'SO61367', 2, 1, 1, 4.9900, 4.9900, 0, 0, 1.8663, 1.8663, 4.9900, 0.3992, 0.1248, 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 (479, 916, 928, 923, 11099, 1, 6, 9, N'SO61367', 3, 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 (489, 916, 928, 923, 11099, 1, 6, 9, N'SO61367', 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 (537, 916, 928, 923, 11201, 1, 100, 4, N'SO61351', 1, 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, 916, 928, 923, 11201, 1, 100, 4, N'SO61351', 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 (214, 916, 928, 923, 11201, 1, 100, 4, N'SO61351', 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 (483, 916, 928, 923, 11211, 1, 19, 6, N'SO61314', 1, 1, 1, 120.0000, 120.0000, 0, 0, 44.8800, 44.8800, 120.0000, 9.6000, 3.0000, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (540, 916, 928, 923, 11262, 1, 19, 6, N'SO61331', 1, 1, 1, 32.6000, 32.6000, 0, 0, 12.1924, 12.1924, 32.6000, 2.6080, 0.8150, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 916, 928, 923, 11262, 1, 19, 6, N'SO61331', 2, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 916, 928, 923, 11262, 1, 19, 6, N'SO61331', 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 (537, 916, 928, 923, 11280, 1, 100, 1, N'SO61350', 1, 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, 916, 928, 923, 11280, 1, 100, 1, N'SO61350', 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 (214, 916, 928, 923, 11280, 1, 100, 1, N'SO61350', 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 (583, 916, 928, 923, 11427, 1, 100, 8, N'SO61313', 1, 1, 1, 1700.9900, 1700.9900, 0, 0, 1082.5100, 1082.5100, 1700.9900, 136.0792, 42.5248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 916, 928, 923, 11427, 1, 100, 8, N'SO61313', 2, 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 (222, 916, 928, 923, 11427, 1, 100, 8, N'SO61313', 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 (561, 916, 928, 923, 11464, 1, 6, 9, N'SO61370', 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 (214, 916, 928, 923, 11464, 1, 6, 9, N'SO61370', 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 (490, 916, 928, 923, 11684, 1, 100, 1, N'SO61328', 1, 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 (576, 916, 928, 923, 11904, 1, 6, 9, N'SO61368', 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 (222, 916, 928, 923, 11904, 1, 6, 9, N'SO61368', 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 (529, 917, 929, 924, 11086, 1, 100, 4, N'SO61384', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (234, 917, 929, 924, 11086, 1, 100, 4, N'SO61384', 2, 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 (478, 917, 929, 924, 11122, 1, 6, 9, N'SO61373', 1, 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, 917, 929, 924, 11262, 1, 19, 6, N'SO61385', 1, 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 (484, 917, 929, 924, 11262, 1, 19, 6, N'SO61385', 2, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 917, 929, 924, 11937, 1, 100, 1, N'SO61413', 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, 917, 929, 924, 11937, 1, 100, 1, N'SO61413', 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, 917, 929, 924, 11937, 1, 100, 1, N'SO61413', 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 (490, 918, 930, 925, 11078, 1, 19, 6, N'SO61443', 1, 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 (535, 918, 930, 925, 11125, 1, 6, 9, N'SO61444', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 918, 930, 925, 11125, 1, 6, 9, N'SO61444', 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 (480, 918, 930, 925, 11125, 2, 6, 9, N'SO61444', 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 (474, 918, 930, 925, 11215, 1, 19, 6, N'SO61455', 1, 1, 1, 69.9900, 69.9900, 0, 0, 26.1763, 26.1763, 69.9900, 5.5992, 1.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (467, 918, 930, 925, 11215, 2, 19, 6, N'SO61455', 2, 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 (217, 918, 930, 925, 11253, 1, 19, 6, N'SO61430', 1, 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 (529, 918, 930, 925, 11331, 1, 19, 6, N'SO61449', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (540, 918, 930, 925, 11331, 1, 19, 6, N'SO61449', 2, 1, 1, 32.6000, 32.6000, 0, 0, 12.1924, 12.1924, 32.6000, 2.6080, 0.8150, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 918, 930, 925, 11642, 1, 19, 6, N'SO61451', 1, 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 (536, 918, 930, 925, 11642, 1, 19, 6, N'SO61451', 2, 1, 1, 29.9900, 29.9900, 0, 0, 11.2163, 11.2163, 29.9900, 2.3992, 0.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 918, 930, 925, 11642, 1, 19, 6, N'SO61451', 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 (463, 918, 930, 925, 11642, 1, 19, 6, N'SO61451', 4, 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 (237, 918, 930, 925, 11642, 2, 19, 6, N'SO61451', 5, 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 (537, 918, 930, 925, 11860, 1, 100, 4, N'SO61463', 1, 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 (537, 919, 931, 926, 11235, 1, 100, 1, N'SO61518', 1, 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, 919, 931, 926, 11235, 1, 100, 1, N'SO61518', 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 (222, 919, 931, 926, 11235, 1, 100, 1, N'SO61518', 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 (535, 919, 931, 926, 11277, 1, 19, 6, N'SO61499', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 919, 931, 926, 11277, 1, 19, 6, N'SO61499', 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 (485, 919, 931, 926, 11277, 1, 19, 6, N'SO61499', 3, 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, 919, 931, 926, 11277, 1, 19, 6, N'SO61499', 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 (467, 919, 931, 926, 11277, 1, 19, 6, N'SO61499', 5, 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 (529, 919, 931, 926, 11498, 1, 19, 6, N'SO61496', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (539, 919, 931, 926, 11498, 1, 19, 6, N'SO61496', 2, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 919, 931, 926, 11498, 1, 19, 6, N'SO61496', 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 (234, 919, 931, 926, 11506, 1, 19, 6, N'SO61495', 1, 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 (480, 919, 931, 926, 11643, 1, 100, 1, N'SO61494', 1, 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 (484, 919, 931, 926, 11643, 1, 100, 1, N'SO61494', 2, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (489, 919, 931, 926, 11667, 1, 100, 1, N'SO61493', 1, 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 (528, 920, 932, 927, 11330, 1, 19, 6, N'SO61555', 1, 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 (535, 920, 932, 927, 11330, 1, 19, 6, N'SO61555', 2, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 920, 932, 927, 11330, 2, 19, 6, N'SO61555', 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 (225, 920, 932, 927, 11369, 1, 6, 9, N'SO61545', 1, 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 (237, 920, 932, 927, 11369, 1, 6, 9, N'SO61545', 2, 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 (529, 920, 932, 927, 11505, 1, 19, 6, N'SO61552', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 920, 932, 927, 11505, 1, 19, 6, N'SO61552', 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 (237, 920, 932, 927, 11505, 1, 19, 6, N'SO61552', 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 (490, 920, 932, 927, 11563, 1, 98, 10, N'SO61578', 1, 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 (214, 920, 932, 927, 11890, 1, 100, 4, N'SO61551', 1, 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 (463, 920, 932, 927, 11890, 1, 100, 4, N'SO61551', 2, 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 (540, 921, 933, 928, 11185, 1, 19, 6, N'SO61613', 1, 1, 1, 32.6000, 32.6000, 0, 0, 12.1924, 12.1924, 32.6000, 2.6080, 0.8150, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 921, 933, 928, 11185, 1, 19, 6, N'SO61613', 2, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 921, 933, 928, 11185, 1, 19, 6, N'SO61613', 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 (536, 921, 933, 928, 11223, 1, 19, 6, N'SO61614', 1, 1, 1, 29.9900, 29.9900, 0, 0, 11.2163, 11.2163, 29.9900, 2.3992, 0.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 921, 933, 928, 11223, 1, 19, 6, N'SO61614', 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 (485, 921, 933, 928, 11223, 1, 19, 6, N'SO61614', 3, 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, 921, 933, 928, 11223, 1, 19, 6, N'SO61614', 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 (478, 921, 933, 928, 11223, 1, 19, 6, N'SO61614', 5, 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 (214, 921, 933, 928, 11223, 1, 19, 6, N'SO61614', 6, 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 (538, 921, 933, 928, 11300, 1, 19, 6, N'SO61611', 1, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 921, 933, 928, 11300, 1, 19, 6, N'SO61611', 2, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 921, 933, 928, 11300, 1, 19, 6, N'SO61611', 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 (479, 921, 933, 928, 11385, 1, 98, 10, N'SO61632', 1, 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, 921, 933, 928, 11385, 1, 98, 10, N'SO61632', 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 (528, 921, 933, 928, 11506, 1, 19, 6, N'SO61609', 1, 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 (535, 921, 933, 928, 11506, 1, 19, 6, N'SO61609', 2, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (482, 921, 933, 928, 11506, 1, 19, 6, N'SO61609', 3, 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 (225, 921, 933, 928, 11662, 1, 100, 1, N'SO61605', 1, 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 (489, 921, 933, 928, 11662, 1, 100, 1, N'SO61605', 2, 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 (535, 921, 933, 928, 11709, 1, 19, 6, N'SO61607', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 921, 933, 928, 11709, 1, 19, 6, N'SO61607', 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 (214, 921, 933, 928, 11709, 1, 19, 6, N'SO61607', 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 (564, 921, 933, 928, 11762, 1, 6, 9, N'SO61656', 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 (491, 921, 933, 928, 11762, 1, 6, 9, N'SO61656', 2, 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 (561, 921, 933, 928, 11894, 1, 6, 9, N'SO61654', 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 (541, 921, 933, 928, 11894, 1, 6, 9, N'SO61654', 2, 1, 1, 28.9900, 28.9900, 0, 0, 10.8423, 10.8423, 28.9900, 2.3192, 0.7248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (530, 921, 933, 928, 11894, 1, 6, 9, N'SO61654', 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, 921, 933, 928, 11894, 1, 6, 9, N'SO61654', 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 (561, 921, 933, 928, 11905, 1, 6, 9, N'SO61655', 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 (541, 921, 933, 928, 11905, 1, 6, 9, N'SO61655', 2, 1, 1, 28.9900, 28.9900, 0, 0, 10.8423, 10.8423, 28.9900, 2.3192, 0.7248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 922, 934, 929, 11287, 1, 19, 6, N'SO61674', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, 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 (487, 922, 934, 929, 11287, 1, 19, 6, N'SO61674', 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 (231, 922, 934, 929, 11367, 1, 6, 9, N'SO61663', 1, 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 (482, 922, 934, 929, 11367, 1, 6, 9, N'SO61663', 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 (479, 922, 934, 929, 11397, 1, 100, 7, N'SO61709', 1, 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, 922, 934, 929, 11397, 1, 100, 7, N'SO61709', 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 (465, 922, 934, 929, 11397, 1, 100, 7, N'SO61709', 3, 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 (489, 922, 934, 929, 11519, 1, 19, 6, N'SO61673', 1, 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 (529, 922, 934, 929, 11632, 1, 19, 6, N'SO61675', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (539, 922, 934, 929, 11632, 1, 19, 6, N'SO61675', 2, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 922, 934, 929, 11632, 1, 19, 6, N'SO61675', 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 (528, 922, 934, 929, 11692, 1, 100, 4, N'SO61704', 1, 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, 922, 934, 929, 11692, 1, 100, 4, N'SO61704', 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 (537, 922, 934, 929, 11704, 1, 100, 4, N'SO61703', 1, 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, 922, 934, 929, 11704, 1, 100, 4, N'SO61703', 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, 922, 934, 929, 11713, 1, 100, 1, N'SO61707', 1, 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, 922, 934, 929, 11713, 1, 100, 1, N'SO61707', 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 (214, 922, 934, 929, 11713, 1, 100, 1, N'SO61707', 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 (489, 922, 934, 929, 11713, 1, 100, 1, N'SO61707', 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 (537, 922, 934, 929, 11734, 1, 100, 4, N'SO61702', 1, 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, 922, 934, 929, 11734, 1, 100, 4, N'SO61702', 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 (564, 922, 934, 929, 11764, 1, 6, 9, N'SO61730', 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 (465, 922, 934, 929, 11911, 1, 6, 9, N'SO61664', 1, 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 (529, 923, 935, 930, 11185, 1, 19, 6, N'SO61737', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 923, 935, 930, 11185, 1, 19, 6, N'SO61737', 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 (597, 923, 935, 930, 11425, 1, 100, 7, N'SO61734', 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 (214, 923, 935, 930, 11425, 1, 100, 7, N'SO61734', 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 (477, 923, 935, 930, 11748, 1, 19, 6, N'SO61750', 1, 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 (484, 923, 935, 930, 11752, 1, 6, 9, N'SO61733', 1, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (561, 923, 935, 930, 11899, 1, 6, 9, N'SO61781', 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 (214, 923, 935, 930, 11899, 1, 6, 9, N'SO61781', 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 (537, 924, 936, 931, 11309, 1, 100, 1, N'SO61830', 1, 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, 924, 936, 931, 11309, 1, 100, 1, N'SO61830', 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 (528, 924, 936, 931, 11330, 1, 19, 6, N'SO61800', 1, 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 (535, 924, 936, 931, 11330, 1, 19, 6, N'SO61800', 2, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (237, 924, 936, 931, 11330, 2, 19, 6, N'SO61800', 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 (477, 924, 936, 931, 11581, 1, 100, 7, N'SO61825', 1, 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, 924, 936, 931, 11581, 1, 100, 7, N'SO61825', 2, 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 (225, 924, 936, 931, 11581, 1, 100, 7, N'SO61825', 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 (564, 924, 936, 931, 11759, 1, 6, 9, N'SO61855', 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 (477, 925, 937, 932, 11118, 1, 6, 9, N'SO61856', 1, 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, 925, 937, 932, 11118, 1, 6, 9, N'SO61856', 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 (487, 925, 937, 932, 11118, 1, 6, 9, N'SO61856', 3, 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 (484, 925, 937, 932, 11118, 1, 6, 9, N'SO61856', 4, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 925, 937, 932, 11505, 1, 19, 6, N'SO61866', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (539, 925, 937, 932, 11505, 1, 19, 6, N'SO61866', 2, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 925, 937, 932, 11505, 1, 19, 6, N'SO61866', 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 (222, 925, 937, 932, 11602, 1, 100, 8, N'SO61900', 1, 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 (576, 925, 937, 932, 11766, 1, 6, 9, N'SO61920', 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, 925, 937, 932, 11766, 1, 6, 9, N'SO61920', 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, 925, 937, 932, 11766, 1, 6, 9, N'SO61920', 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 (490, 925, 937, 932, 11766, 1, 6, 9, N'SO61920', 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 (225, 925, 937, 932, 11766, 1, 6, 9, N'SO61920', 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 (234, 925, 937, 932, 11846, 1, 100, 4, N'SO61863', 1, 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 (537, 925, 937, 932, 11852, 1, 100, 4, N'SO61896', 1, 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, 925, 937, 932, 11852, 1, 100, 4, N'SO61896', 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 (222, 925, 937, 932, 11852, 1, 100, 4, N'SO61896', 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 (537, 925, 937, 932, 11869, 1, 19, 6, N'SO61895', 1, 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, 925, 937, 932, 11869, 1, 19, 6, N'SO61895', 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, 925, 937, 932, 11991, 2, 6, 9, N'SO61913', 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 (529, 926, 938, 933, 11181, 1, 100, 4, N'SO61929', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (489, 926, 938, 933, 11253, 1, 19, 6, N'SO61926', 1, 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 (480, 926, 938, 933, 11253, 1, 19, 6, N'SO61927', 1, 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 (489, 926, 938, 933, 11502, 1, 19, 6, N'SO61928', 1, 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 (576, 926, 938, 933, 11896, 1, 6, 9, N'SO61968', 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, 926, 938, 933, 11896, 1, 6, 9, N'SO61968', 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 (484, 926, 938, 933, 11896, 1, 6, 9, N'SO61968', 3, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 926, 938, 933, 11900, 1, 6, 9, N'SO61969', 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 (222, 926, 938, 933, 11900, 1, 6, 9, N'SO61969', 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 (489, 926, 938, 933, 11900, 1, 6, 9, N'SO61969', 3, 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 (225, 926, 938, 933, 11900, 1, 6, 9, N'SO61969', 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 (477, 927, 939, 934, 11116, 1, 6, 9, N'SO61977', 1, 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, 927, 939, 934, 11116, 1, 6, 9, N'SO61977', 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 (214, 927, 939, 934, 11116, 1, 6, 9, N'SO61977', 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 (473, 927, 939, 934, 11116, 1, 6, 9, N'SO61977', 4, 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 (477, 927, 939, 934, 11342, 1, 100, 7, N'SO61999', 1, 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 (479, 927, 939, 934, 11342, 1, 100, 7, N'SO61999', 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 (217, 927, 939, 934, 11342, 1, 100, 7, N'SO61999', 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 (530, 927, 939, 934, 11501, 1, 19, 6, N'SO61982', 1, 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 (487, 927, 939, 934, 11501, 1, 19, 6, N'SO61982', 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 (576, 927, 939, 934, 11767, 1, 6, 9, N'SO62020', 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 (214, 927, 939, 934, 11767, 1, 6, 9, N'SO62020', 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 (463, 927, 939, 934, 11767, 1, 6, 9, N'SO62020', 3, 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 (528, 927, 939, 934, 11795, 1, 100, 4, N'SO61997', 1, 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, 927, 939, 934, 11795, 1, 100, 4, N'SO61997', 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 (537, 927, 939, 934, 11858, 1, 100, 4, N'SO61998', 1, 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 (484, 927, 939, 934, 11882, 1, 100, 1, N'SO61972', 1, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (575, 927, 939, 934, 11906, 1, 6, 9, N'SO62018', 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 (539, 928, 940, 935, 11142, 1, 19, 6, N'SO62036', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 928, 940, 935, 11142, 1, 19, 6, N'SO62036', 2, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 928, 940, 935, 11142, 1, 19, 6, N'SO62036', 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 (537, 928, 940, 935, 11174, 1, 100, 4, N'SO62062', 1, 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, 928, 940, 935, 11174, 1, 100, 4, N'SO62062', 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 (480, 928, 940, 935, 11174, 1, 100, 4, N'SO62062', 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 (535, 928, 940, 935, 11370, 1, 6, 9, N'SO62023', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 928, 940, 935, 11370, 1, 6, 9, N'SO62023', 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 (562, 928, 940, 935, 11465, 1, 6, 9, N'SO62085', 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 (491, 928, 940, 935, 11465, 1, 6, 9, N'SO62085', 2, 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 (484, 928, 940, 935, 11507, 1, 19, 6, N'SO62022', 1, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (490, 928, 940, 935, 11545, 1, 100, 7, N'SO62056', 1, 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 (575, 928, 940, 935, 11903, 1, 6, 9, N'SO62084', 1, 1, 1, 2384.0700, 2384.0700, 0, 0, 1481.9379, 1481.9379, 2384.0700, 190.7256, 59.6018, 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 (489, 928, 940, 935, 11903, 1, 6, 9, N'SO62084', 2, 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 (355, 928, 940, 935, 11992, 1, 6, 9, N'SO62078', 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, 928, 940, 935, 11992, 1, 6, 9, N'SO62078', 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 (528, 929, 941, 936, 11211, 1, 19, 6, N'SO62125', 1, 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, 929, 941, 936, 11211, 1, 19, 6, N'SO62125', 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 (479, 929, 941, 936, 11248, 1, 100, 7, N'SO62127', 1, 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 (467, 929, 941, 936, 11248, 1, 100, 7, N'SO62127', 2, 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 (477, 929, 941, 936, 11248, 1, 100, 7, N'SO62127', 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, 929, 941, 936, 11277, 1, 19, 6, N'SO62088', 1, 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 (575, 929, 941, 936, 11333, 1, 98, 10, N'SO62135', 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 (222, 929, 941, 936, 11333, 1, 98, 10, N'SO62135', 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 (484, 929, 941, 936, 11505, 1, 19, 6, N'SO62089', 1, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (476, 929, 941, 936, 11632, 1, 19, 6, N'SO62110', 1, 1, 1, 69.9900, 69.9900, 0, 0, 26.1763, 26.1763, 69.9900, 5.5992, 1.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (564, 929, 941, 936, 11768, 1, 6, 9, N'SO62156', 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 (217, 929, 941, 936, 11768, 1, 6, 9, N'SO62156', 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, 930, 942, 937, 11031, 1, 6, 9, N'SO62222', 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, 930, 942, 937, 11031, 1, 6, 9, N'SO62222', 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 (225, 930, 942, 937, 11150, 1, 6, 9, N'SO62170', 1, 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 (237, 930, 942, 937, 11223, 1, 19, 6, N'SO62159', 1, 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 (537, 930, 942, 937, 11258, 1, 100, 4, N'SO62206', 1, 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 (599, 930, 942, 937, 11420, 1, 100, 7, N'SO62173', 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 (538, 930, 942, 937, 11434, 1, 98, 10, N'SO62202', 1, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (488, 930, 942, 937, 11646, 1, 100, 1, N'SO62179', 1, 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 (480, 931, 943, 938, 11078, 1, 19, 6, N'SO62245', 1, 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 (486, 931, 943, 938, 11078, 1, 19, 6, N'SO62245', 2, 1, 1, 159.0000, 159.0000, 0, 0, 59.4660, 59.4660, 159.0000, 12.7200, 3.9750, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (484, 931, 943, 938, 11102, 1, 6, 9, N'SO62239', 1, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (530, 931, 943, 938, 11142, 1, 19, 6, N'SO62247', 1, 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, 931, 943, 938, 11142, 1, 19, 6, N'SO62247', 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 (475, 931, 943, 938, 11203, 1, 19, 6, N'SO62256', 1, 1, 1, 69.9900, 69.9900, 0, 0, 26.1763, 26.1763, 69.9900, 5.5992, 1.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 931, 943, 938, 11230, 1, 100, 4, N'SO62246', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (484, 931, 943, 938, 11230, 1, 100, 4, N'SO62246', 2, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (530, 931, 943, 938, 11253, 1, 19, 6, N'SO62248', 1, 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 (529, 931, 943, 938, 11277, 1, 19, 6, N'SO62253', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (540, 931, 943, 938, 11277, 1, 19, 6, N'SO62253', 2, 1, 1, 32.6000, 32.6000, 0, 0, 12.1924, 12.1924, 32.6000, 2.6080, 0.8150, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 931, 943, 938, 11277, 1, 19, 6, N'SO62253', 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 (467, 931, 943, 938, 11277, 1, 19, 6, N'SO62253', 4, 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 (537, 931, 943, 938, 11331, 1, 19, 6, N'SO62267', 1, 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, 931, 943, 938, 11331, 1, 19, 6, N'SO62267', 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 (477, 931, 943, 938, 11393, 1, 100, 7, N'SO62268', 1, 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 (479, 931, 943, 938, 11393, 1, 100, 7, N'SO62268', 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 (222, 931, 943, 938, 11949, 1, 100, 4, N'SO62233', 1, 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 (488, 932, 944, 939, 11704, 1, 100, 4, N'SO62296', 1, 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 (528, 932, 944, 939, 11737, 1, 100, 4, N'SO62327', 1, 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, 932, 944, 939, 11737, 1, 100, 4, N'SO62327', 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 (480, 932, 944, 939, 11737, 1, 100, 4, N'SO62327', 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 (573, 932, 944, 939, 11751, 1, 6, 9, N'SO62343', 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 (537, 932, 944, 939, 11975, 1, 100, 4, N'SO62328', 1, 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, 932, 944, 939, 11975, 1, 100, 4, N'SO62328', 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 (483, 932, 944, 939, 11975, 1, 100, 4, N'SO62328', 3, 1, 1, 120.0000, 120.0000, 0, 0, 44.8800, 44.8800, 120.0000, 9.6000, 3.0000, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (530, 934, 946, 941, 11078, 1, 19, 6, N'SO62413', 1, 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 (480, 934, 946, 941, 11078, 2, 19, 6, N'SO62413', 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 (217, 934, 946, 941, 11215, 1, 19, 6, N'SO62396', 1, 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 (605, 934, 946, 941, 11244, 1, 98, 10, N'SO62467', 1, 1, 1, 539.9900, 539.9900, 0, 0, 343.6496, 343.6496, 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 (529, 934, 946, 941, 11244, 1, 98, 10, N'SO62467', 2, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (538, 934, 946, 941, 11244, 1, 98, 10, N'SO62467', 3, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 934, 946, 941, 11244, 1, 98, 10, N'SO62467', 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, 934, 946, 941, 11244, 1, 98, 10, N'SO62467', 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 (529, 934, 946, 941, 11276, 1, 19, 6, N'SO62412', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 934, 946, 941, 11276, 2, 19, 6, N'SO62412', 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 (484, 934, 946, 941, 11276, 1, 19, 6, N'SO62412', 3, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 934, 946, 941, 11337, 1, 98, 10, N'SO62449', 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 (477, 934, 946, 941, 11337, 1, 98, 10, N'SO62449', 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 (479, 934, 946, 941, 11337, 1, 98, 10, N'SO62449', 3, 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 (573, 934, 946, 941, 11341, 1, 98, 10, N'SO62450', 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 (541, 934, 946, 941, 11341, 1, 98, 10, N'SO62450', 2, 1, 1, 28.9900, 28.9900, 0, 0, 10.8423, 10.8423, 28.9900, 2.3192, 0.7248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (530, 934, 946, 941, 11341, 1, 98, 10, N'SO62450', 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 (217, 934, 946, 941, 11341, 1, 98, 10, N'SO62450', 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 (577, 934, 946, 941, 11400, 2, 98, 10, N'SO62451', 1, 1, 1, 1214.8500, 1214.8500, 0, 0, 755.1508, 755.1508, 1214.8500, 97.1880, 30.3713, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 934, 946, 941, 11400, 1, 98, 10, N'SO62451', 2, 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 (234, 934, 946, 941, 11400, 1, 98, 10, N'SO62451', 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 (604, 934, 946, 941, 11483, 1, 100, 7, N'SO62465', 1, 1, 1, 539.9900, 539.9900, 0, 0, 343.6496, 343.6496, 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 (528, 934, 946, 941, 11874, 1, 100, 4, N'SO62438', 1, 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, 934, 946, 941, 11874, 1, 100, 4, N'SO62438', 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 (485, 934, 946, 941, 11874, 1, 100, 4, N'SO62438', 3, 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, 934, 946, 941, 11874, 1, 100, 4, N'SO62438', 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 (537, 934, 946, 941, 11922, 1, 19, 6, N'SO62437', 1, 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, 934, 946, 941, 11922, 1, 19, 6, N'SO62437', 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 (217, 934, 946, 941, 11922, 1, 19, 6, N'SO62437', 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 (488, 934, 946, 941, 11922, 1, 19, 6, N'SO62437', 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 (477, 935, 947, 942, 11068, 1, 6, 9, N'SO62476', 1, 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, 935, 947, 942, 11068, 1, 6, 9, N'SO62476', 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 (529, 935, 947, 942, 11197, 1, 100, 1, N'SO62485', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 935, 947, 942, 11197, 1, 100, 1, N'SO62485', 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 (486, 935, 947, 942, 11197, 1, 100, 1, N'SO62485', 3, 1, 1, 159.0000, 159.0000, 0, 0, 59.4660, 59.4660, 159.0000, 12.7200, 3.9750, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (476, 935, 947, 942, 11500, 1, 19, 6, N'SO62491', 1, 1, 1, 69.9900, 69.9900, 0, 0, 26.1763, 26.1763, 69.9900, 5.5992, 1.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (467, 935, 947, 942, 11500, 2, 19, 6, N'SO62491', 2, 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 (490, 935, 947, 942, 11507, 1, 19, 6, N'SO62484', 1, 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 (529, 935, 947, 942, 11566, 1, 100, 7, N'SO62504', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 935, 947, 942, 11566, 1, 100, 7, N'SO62504', 2, 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 (217, 935, 947, 942, 11870, 1, 100, 1, N'SO62483', 1, 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 (573, 935, 947, 942, 11907, 1, 6, 9, N'SO62530', 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 (489, 935, 947, 942, 11907, 1, 6, 9, N'SO62530', 2, 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 (529, 936, 948, 943, 11185, 1, 19, 6, N'SO62543', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 936, 948, 943, 11185, 1, 19, 6, N'SO62543', 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 (541, 936, 948, 943, 11276, 1, 19, 6, N'SO62546', 1, 1, 1, 28.9900, 28.9900, 0, 0, 10.8423, 10.8423, 28.9900, 2.3192, 0.7248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (539, 936, 948, 943, 11287, 1, 19, 6, N'SO62544', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 936, 948, 943, 11287, 1, 19, 6, N'SO62544', 2, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 936, 948, 943, 11287, 1, 19, 6, N'SO62544', 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 (528, 936, 948, 943, 11330, 1, 19, 6, N'SO62560', 1, 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, 936, 948, 943, 11330, 1, 19, 6, N'SO62560', 2, 1, 1, 35.0000, 35.0000, 0, 0, 13.0900, 13.0900, 35.0000, 2.8000, 0.8750, 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 (214, 936, 948, 943, 11330, 1, 19, 6, N'SO62542', 1, 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 (573, 936, 948, 943, 11461, 1, 6, 9, N'SO62580', 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 (217, 936, 948, 943, 11461, 1, 6, 9, N'SO62580', 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 (541, 936, 948, 943, 11566, 1, 100, 7, N'SO62557', 1, 1, 1, 28.9900, 28.9900, 0, 0, 10.8423, 10.8423, 28.9900, 2.3192, 0.7248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (530, 936, 948, 943, 11566, 1, 100, 7, N'SO62557', 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 (217, 936, 948, 943, 11566, 1, 100, 7, N'SO62557', 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 (536, 936, 948, 943, 11724, 1, 19, 6, N'SO62552', 1, 1, 1, 29.9900, 29.9900, 0, 0, 11.2163, 11.2163, 29.9900, 2.3992, 0.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 936, 948, 943, 11724, 2, 19, 6, N'SO62552', 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 (535, 936, 948, 943, 11808, 1, 19, 6, N'SO62547', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 936, 948, 943, 11808, 1, 19, 6, N'SO62547', 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 (529, 937, 949, 944, 11091, 1, 19, 6, N'SO62597', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (540, 937, 949, 944, 11091, 1, 19, 6, N'SO62597', 2, 1, 1, 32.6000, 32.6000, 0, 0, 12.1924, 12.1924, 32.6000, 2.6080, 0.8150, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 937, 949, 944, 11091, 1, 19, 6, N'SO62597', 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 (488, 937, 949, 944, 11091, 1, 19, 6, N'SO62597', 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 (538, 937, 949, 944, 11200, 1, 19, 6, N'SO62593', 1, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 937, 949, 944, 11755, 1, 6, 9, N'SO62583', 1, 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 (480, 937, 949, 944, 11755, 2, 6, 9, N'SO62583', 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 (574, 937, 949, 944, 11892, 1, 6, 9, N'SO62626', 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 (535, 937, 949, 944, 11902, 1, 6, 9, N'SO62581', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 937, 949, 944, 11902, 1, 6, 9, N'SO62581', 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 (480, 937, 949, 944, 11902, 2, 6, 9, N'SO62581', 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 (537, 938, 950, 945, 11019, 1, 19, 6, N'SO62659', 1, 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, 938, 950, 945, 11019, 1, 19, 6, N'SO62659', 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 (561, 938, 950, 945, 11344, 1, 98, 10, N'SO62668', 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 (477, 938, 950, 945, 11344, 1, 98, 10, N'SO62668', 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 (479, 938, 950, 945, 11344, 1, 98, 10, N'SO62668', 3, 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 (463, 938, 950, 945, 11344, 1, 98, 10, N'SO62668', 4, 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 (575, 938, 950, 945, 11893, 1, 6, 9, N'SO62693', 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 (482, 938, 950, 945, 11893, 1, 6, 9, N'SO62693', 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 (214, 938, 950, 945, 11893, 1, 6, 9, N'SO62693', 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 (574, 938, 950, 945, 11898, 1, 6, 9, N'SO62691', 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 (355, 939, 951, 946, 11030, 1, 6, 9, N'SO62739', 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 (562, 939, 951, 946, 11097, 1, 6, 9, N'SO62750', 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 (214, 939, 951, 946, 11097, 1, 6, 9, N'SO62750', 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 (478, 939, 951, 946, 11114, 1, 6, 9, N'SO62700', 1, 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, 939, 951, 946, 11114, 1, 6, 9, N'SO62700', 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 (214, 939, 951, 946, 11114, 1, 6, 9, N'SO62700', 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 (529, 939, 951, 946, 11157, 1, 100, 1, N'SO62705', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 939, 951, 946, 11157, 1, 100, 1, N'SO62705', 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 (575, 939, 951, 946, 11343, 1, 98, 10, N'SO62737', 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, 939, 951, 946, 11343, 1, 98, 10, N'SO62737', 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, 939, 951, 946, 11343, 1, 98, 10, N'SO62737', 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, 939, 951, 946, 11343, 1, 98, 10, N'SO62737', 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 (222, 939, 951, 946, 11343, 1, 98, 10, N'SO62737', 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 (536, 939, 951, 946, 11500, 1, 19, 6, N'SO62710', 1, 1, 1, 29.9900, 29.9900, 0, 0, 11.2163, 11.2163, 29.9900, 2.3992, 0.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 939, 951, 946, 11642, 1, 19, 6, N'SO62732', 1, 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, 939, 951, 946, 11642, 1, 19, 6, N'SO62732', 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 (217, 939, 951, 946, 11642, 1, 19, 6, N'SO62732', 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 (537, 939, 951, 946, 11658, 1, 100, 4, N'SO62731', 1, 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, 939, 951, 946, 11658, 1, 100, 4, N'SO62731', 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 (481, 939, 951, 946, 11658, 1, 100, 4, N'SO62731', 3, 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 (488, 939, 951, 946, 11720, 1, 100, 4, N'SO62704', 1, 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 (222, 939, 951, 946, 11771, 1, 100, 1, N'SO62695', 1, 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, 939, 951, 946, 11771, 1, 100, 1, N'SO62695', 2, 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 (529, 940, 952, 947, 11174, 1, 100, 4, N'SO62770', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 940, 952, 947, 11174, 1, 100, 4, N'SO62770', 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 (535, 940, 952, 947, 11223, 1, 19, 6, N'SO62778', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (467, 940, 952, 947, 11223, 1, 19, 6, N'SO62778', 2, 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 (535, 940, 952, 947, 11331, 1, 19, 6, N'SO62775', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 940, 952, 947, 11331, 1, 19, 6, N'SO62775', 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 (484, 940, 952, 947, 11331, 1, 19, 6, N'SO62775', 3, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (484, 940, 952, 947, 11458, 1, 6, 9, N'SO62759', 1, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (574, 940, 952, 947, 11462, 1, 6, 9, N'SO62818', 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 (214, 940, 952, 947, 11462, 1, 6, 9, N'SO62818', 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 (606, 940, 952, 947, 11480, 2, 100, 7, N'SO62813', 1, 1, 1, 539.9900, 539.9900, 0, 0, 343.6496, 343.6496, 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 (479, 940, 952, 947, 11480, 1, 100, 7, N'SO62813', 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, 940, 952, 947, 11480, 1, 100, 7, N'SO62813', 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 (537, 940, 952, 947, 11646, 1, 100, 1, N'SO62796', 1, 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 (463, 940, 952, 947, 11646, 1, 100, 1, N'SO62796', 2, 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 (465, 940, 952, 947, 11672, 1, 100, 4, N'SO62795', 1, 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 (537, 940, 952, 947, 11672, 1, 100, 4, N'SO62795', 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 (537, 940, 952, 947, 11824, 1, 19, 6, N'SO62798', 1, 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, 940, 952, 947, 11824, 1, 19, 6, N'SO62798', 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 (575, 940, 952, 947, 11895, 1, 6, 9, N'SO62815', 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 (217, 940, 952, 947, 11895, 1, 6, 9, N'SO62815', 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 (214, 940, 952, 947, 11932, 1, 100, 4, N'SO62751', 1, 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, 940, 952, 947, 11932, 1, 100, 4, N'SO62751', 2, 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 (234, 940, 952, 947, 11932, 1, 100, 4, N'SO62751', 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 (529, 941, 953, 948, 11024, 1, 100, 4, N'SO62830', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 941, 953, 948, 11024, 2, 100, 4, N'SO62830', 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 (484, 941, 953, 948, 11024, 1, 100, 4, N'SO62830', 3, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (538, 941, 953, 948, 11276, 1, 19, 6, N'SO62834', 1, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 941, 953, 948, 11276, 1, 19, 6, N'SO62834', 2, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (489, 941, 953, 948, 11520, 1, 19, 6, N'SO62829', 1, 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 (225, 941, 953, 948, 11520, 1, 19, 6, N'SO62829', 2, 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 (539, 941, 953, 948, 11619, 1, 19, 6, N'SO62831', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 941, 953, 948, 11619, 1, 19, 6, N'SO62831', 2, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 941, 953, 948, 11619, 1, 19, 6, N'SO62831', 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 (478, 941, 953, 948, 11753, 1, 6, 9, N'SO62822', 1, 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 (564, 941, 953, 948, 11765, 1, 6, 9, N'SO62873', 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 (214, 941, 953, 948, 11765, 1, 6, 9, N'SO62873', 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 (488, 941, 953, 948, 11765, 1, 6, 9, N'SO62873', 3, 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 (537, 942, 954, 949, 11205, 1, 100, 1, N'SO62917', 1, 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 (479, 942, 954, 949, 11223, 1, 19, 6, N'SO62875', 1, 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, 942, 954, 949, 11223, 1, 19, 6, N'SO62875', 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 (231, 942, 954, 949, 11223, 1, 19, 6, N'SO62875', 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 (463, 942, 954, 949, 11223, 1, 19, 6, N'SO62875', 4, 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 (537, 942, 954, 949, 11229, 1, 100, 4, N'SO62916', 1, 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, 942, 954, 949, 11229, 1, 100, 4, N'SO62916', 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 (480, 942, 954, 949, 11229, 1, 100, 4, N'SO62916', 3, 1, 1, 2.2900, 2.2900, 0, 0, 0.8565, 0.8565, 2.2900, 0.1832, 0.0573, 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 (528, 942, 954, 949, 11285, 1, 100, 4, N'SO62915', 1, 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, 942, 954, 949, 11285, 1, 100, 4, N'SO62915', 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 (485, 942, 954, 949, 11285, 1, 100, 4, N'SO62915', 3, 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, 942, 954, 949, 11285, 1, 100, 4, N'SO62915', 4, 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 (528, 942, 954, 949, 11300, 1, 19, 6, N'SO62896', 1, 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 (535, 942, 954, 949, 11300, 1, 19, 6, N'SO62896', 2, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 942, 954, 949, 11300, 1, 19, 6, N'SO62896', 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, 942, 954, 949, 11300, 1, 19, 6, N'SO62896', 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 (471, 942, 954, 949, 11300, 1, 19, 6, N'SO62896', 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 (222, 942, 954, 949, 11300, 1, 19, 6, N'SO62876', 1, 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 (562, 942, 954, 949, 11334, 1, 98, 10, N'SO62926', 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 (222, 942, 954, 949, 11334, 1, 98, 10, N'SO62926', 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 (237, 942, 954, 949, 11507, 1, 19, 6, N'SO62889', 1, 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 (214, 942, 954, 949, 11573, 1, 98, 10, N'SO62921', 1, 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 (480, 942, 954, 949, 11620, 1, 100, 1, N'SO62888', 1, 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 (537, 942, 954, 949, 11729, 1, 100, 1, N'SO62918', 1, 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, 942, 954, 949, 11729, 1, 100, 1, N'SO62918', 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 (222, 942, 954, 949, 11729, 1, 100, 1, N'SO62918', 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 (234, 942, 954, 949, 11729, 1, 100, 1, N'SO62918', 4, 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 (237, 942, 954, 949, 11848, 1, 100, 1, N'SO62890', 1, 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 (529, 943, 955, 950, 11176, 1, 19, 6, N'SO62958', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 943, 955, 950, 11176, 1, 19, 6, N'SO62958', 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 (540, 943, 955, 950, 11200, 1, 19, 6, N'SO62961', 1, 1, 1, 32.6000, 32.6000, 0, 0, 12.1924, 12.1924, 32.6000, 2.6080, 0.8150, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 943, 955, 950, 11200, 1, 19, 6, N'SO62961', 2, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (489, 943, 955, 950, 11287, 1, 19, 6, N'SO62957', 1, 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 (587, 943, 955, 950, 11359, 1, 6, 9, N'SO62999', 1, 1, 1, 769.4900, 769.4900, 0, 0, 419.7784, 419.7784, 769.4900, 61.5592, 19.2373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 943, 955, 950, 11359, 1, 6, 9, N'SO62999', 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 (214, 943, 955, 950, 11359, 1, 6, 9, N'SO62999', 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 (579, 943, 955, 950, 11433, 1, 100, 7, N'SO62988', 1, 1, 1, 1214.8500, 1214.8500, 0, 0, 755.1508, 755.1508, 1214.8500, 97.1880, 30.3713, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (489, 943, 955, 950, 11433, 1, 100, 7, N'SO62988', 2, 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 (605, 943, 955, 950, 11547, 1, 100, 7, N'SO62998', 1, 1, 1, 539.9900, 539.9900, 0, 0, 343.6496, 343.6496, 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 (222, 943, 955, 950, 11547, 1, 100, 7, N'SO62998', 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 (214, 943, 955, 950, 11960, 1, 100, 1, N'SO62946', 1, 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, 944, 956, 951, 11287, 1, 19, 6, N'SO63003', 1, 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 (537, 944, 956, 951, 11509, 1, 100, 4, N'SO63036', 1, 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, 944, 956, 951, 11509, 1, 100, 4, N'SO63036', 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 (486, 944, 956, 951, 11509, 1, 100, 4, N'SO63036', 3, 1, 1, 159.0000, 159.0000, 0, 0, 59.4660, 59.4660, 159.0000, 12.7200, 3.9750, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 944, 956, 951, 11757, 1, 6, 9, N'SO63011', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 944, 956, 951, 11757, 1, 6, 9, N'SO63011', 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 (225, 944, 956, 951, 11761, 1, 6, 9, N'SO63058', 1, 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 (576, 944, 956, 951, 11761, 1, 6, 9, N'SO63058', 2, 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 (537, 944, 956, 951, 11803, 1, 100, 1, N'SO63038', 1, 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, 944, 956, 951, 11803, 1, 100, 1, N'SO63038', 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, 944, 956, 951, 11803, 1, 100, 1, N'SO63038', 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 (473, 944, 956, 951, 11803, 1, 100, 1, N'SO63038', 4, 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 (225, 945, 957, 952, 11096, 1, 6, 9, N'SO63115', 1, 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 (564, 945, 957, 952, 11096, 1, 6, 9, N'SO63115', 2, 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 (488, 945, 957, 952, 11185, 1, 19, 6, N'SO63072', 1, 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 (225, 945, 957, 952, 11185, 1, 19, 6, N'SO63072', 2, 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 (529, 945, 957, 952, 11506, 1, 19, 6, N'SO63073', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (476, 945, 957, 952, 11506, 1, 19, 6, N'SO63083', 1, 1, 1, 69.9900, 69.9900, 0, 0, 26.1763, 26.1763, 69.9900, 5.5992, 1.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (463, 945, 957, 952, 11506, 1, 19, 6, N'SO63083', 2, 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 (489, 945, 957, 952, 11722, 1, 100, 1, N'SO63071', 1, 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 (465, 945, 957, 952, 11722, 1, 100, 1, N'SO63071', 2, 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 (574, 945, 957, 952, 11754, 1, 6, 9, N'SO63116', 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 (217, 945, 957, 952, 11754, 1, 6, 9, N'SO63116', 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 (467, 945, 957, 952, 11754, 2, 6, 9, N'SO63116', 3, 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 (537, 945, 957, 952, 11821, 1, 100, 4, N'SO63095', 1, 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, 945, 957, 952, 11821, 1, 100, 4, N'SO63095', 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 (485, 945, 957, 952, 11821, 1, 100, 4, N'SO63095', 3, 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, 945, 957, 952, 11821, 1, 100, 4, N'SO63095', 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 (463, 945, 957, 952, 11821, 1, 100, 4, N'SO63095', 5, 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 (477, 945, 957, 952, 11821, 1, 100, 4, N'SO63095', 6, 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, 946, 958, 953, 11137, 1, 100, 1, N'SO63329', 1, 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, 946, 958, 953, 11137, 1, 100, 1, N'SO63329', 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 (486, 946, 958, 953, 11137, 1, 100, 1, N'SO63329', 3, 1, 1, 159.0000, 159.0000, 0, 0, 59.4660, 59.4660, 159.0000, 12.7200, 3.9750, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (535, 946, 958, 953, 11300, 1, 19, 6, N'SO63307', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 946, 958, 953, 11300, 1, 19, 6, N'SO63307', 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 (571, 946, 958, 953, 11413, 1, 98, 10, N'SO63344', 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 (541, 946, 958, 953, 11413, 1, 98, 10, N'SO63344', 2, 1, 1, 28.9900, 28.9900, 0, 0, 10.8423, 10.8423, 28.9900, 2.3192, 0.7248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (530, 946, 958, 953, 11413, 1, 98, 10, N'SO63344', 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 (228, 946, 958, 953, 11413, 1, 98, 10, N'SO63344', 4, 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, 946, 958, 953, 11413, 1, 98, 10, N'SO63344', 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 (605, 946, 958, 953, 11417, 1, 100, 7, N'SO63360', 1, 1, 1, 539.9900, 539.9900, 0, 0, 343.6496, 343.6496, 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 (479, 946, 958, 953, 11417, 1, 100, 7, N'SO63360', 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 (535, 946, 958, 953, 11467, 1, 6, 9, N'SO63303', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (539, 946, 958, 953, 11519, 1, 19, 6, N'SO63304', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 946, 958, 953, 11519, 1, 19, 6, N'SO63304', 2, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 946, 958, 953, 11519, 1, 19, 6, N'SO63304', 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 (228, 946, 958, 953, 11519, 1, 19, 6, N'SO63304', 4, 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 (530, 946, 958, 953, 11519, 1, 19, 6, N'SO63305', 1, 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, 946, 958, 953, 11519, 1, 19, 6, N'SO63305', 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 (214, 946, 958, 953, 11579, 1, 98, 10, N'SO63334', 1, 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, 946, 958, 953, 11579, 1, 98, 10, N'SO63334', 2, 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 (537, 946, 958, 953, 11719, 1, 19, 6, N'SO63330', 1, 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 (357, 947, 959, 954, 11033, 1, 6, 9, N'SO63409', 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 (222, 947, 959, 954, 11033, 1, 6, 9, N'SO63409', 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 (480, 947, 959, 954, 11621, 1, 100, 1, N'SO63373', 1, 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 (575, 947, 959, 954, 11909, 1, 6, 9, N'SO63423', 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, 947, 959, 954, 11909, 1, 6, 9, N'SO63423', 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, 947, 959, 954, 11909, 1, 6, 9, N'SO63423', 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 (217, 947, 959, 954, 11909, 1, 6, 9, N'SO63423', 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 (217, 948, 960, 955, 11200, 1, 19, 6, N'SO63431', 1, 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, 948, 960, 955, 11200, 1, 19, 6, N'SO63431', 2, 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 (228, 948, 960, 955, 11200, 1, 19, 6, N'SO63431', 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 (537, 948, 960, 955, 11203, 1, 19, 6, N'SO63466', 1, 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, 948, 960, 955, 11203, 1, 19, 6, N'SO63466', 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 (484, 948, 960, 955, 11203, 1, 19, 6, N'SO63466', 3, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 948, 960, 955, 11211, 1, 19, 6, N'SO63429', 1, 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, 948, 960, 955, 11211, 1, 19, 6, N'SO63429', 2, 1, 1, 4.9900, 4.9900, 0, 0, 1.8663, 1.8663, 4.9900, 0.3992, 0.1248, 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 (479, 948, 960, 955, 11384, 1, 100, 7, N'SO63468', 1, 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, 948, 960, 955, 11384, 1, 100, 7, N'SO63468', 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 (222, 948, 960, 955, 11384, 1, 100, 7, N'SO63468', 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 (573, 948, 960, 955, 11394, 1, 98, 10, N'SO63493', 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 (214, 948, 960, 955, 11394, 1, 98, 10, N'SO63493', 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 (562, 948, 960, 955, 11398, 1, 98, 10, N'SO63494', 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 (217, 948, 960, 955, 11398, 1, 98, 10, N'SO63494', 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 (217, 948, 960, 955, 11782, 1, 100, 4, N'SO63432', 1, 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 (228, 948, 960, 955, 11782, 1, 100, 4, N'SO63432', 2, 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 (467, 948, 960, 955, 11782, 1, 100, 4, N'SO63432', 3, 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 (217, 948, 960, 955, 11940, 1, 100, 4, N'SO63430', 1, 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, 948, 960, 955, 11996, 1, 6, 9, N'SO63484', 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, 948, 960, 955, 11996, 1, 6, 9, N'SO63484', 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, 948, 960, 955, 11996, 1, 6, 9, N'SO63484', 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, 948, 960, 955, 11996, 1, 6, 9, N'SO63484', 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 (217, 948, 960, 955, 11996, 1, 6, 9, N'SO63484', 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 (355, 948, 960, 955, 11999, 1, 6, 9, N'SO63483', 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, 948, 960, 955, 11999, 1, 6, 9, N'SO63483', 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, 948, 960, 955, 11999, 1, 6, 9, N'SO63483', 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 (528, 949, 961, 956, 11091, 1, 19, 6, N'SO63516', 1, 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 (535, 949, 961, 956, 11091, 1, 19, 6, N'SO63516', 2, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 949, 961, 956, 11091, 1, 19, 6, N'SO63516', 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 (228, 949, 961, 956, 11091, 1, 19, 6, N'SO63516', 4, 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 (477, 949, 961, 956, 11185, 1, 19, 6, N'SO63497', 1, 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 (479, 949, 961, 956, 11185, 1, 19, 6, N'SO63497', 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 (217, 949, 961, 956, 11185, 1, 19, 6, N'SO63497', 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 (222, 949, 961, 956, 11287, 1, 19, 6, N'SO63498', 1, 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, 949, 961, 956, 11287, 1, 19, 6, N'SO63498', 2, 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 (574, 949, 961, 956, 11420, 1, 100, 7, N'SO63546', 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, 949, 961, 956, 11420, 1, 100, 7, N'SO63546', 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, 949, 961, 956, 11420, 1, 100, 7, N'SO63546', 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, 949, 961, 956, 11420, 1, 100, 7, N'SO63546', 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 (530, 949, 961, 956, 11632, 1, 19, 6, N'SO63510', 1, 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, 949, 961, 956, 11632, 1, 19, 6, N'SO63510', 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 (573, 949, 961, 956, 11910, 1, 6, 9, N'SO63547', 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 (541, 949, 961, 956, 11910, 1, 6, 9, N'SO63547', 2, 1, 1, 28.9900, 28.9900, 0, 0, 10.8423, 10.8423, 28.9900, 2.3192, 0.7248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (530, 949, 961, 956, 11910, 1, 6, 9, N'SO63547', 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 (529, 950, 962, 957, 11176, 1, 19, 6, N'SO63551', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (467, 950, 962, 957, 11176, 1, 19, 6, N'SO63551', 2, 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 (491, 950, 962, 957, 11212, 1, 19, 6, N'SO63564', 1, 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 (537, 950, 962, 957, 11305, 1, 100, 4, N'SO63588', 1, 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, 950, 962, 957, 11305, 1, 100, 4, N'SO63588', 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 (217, 950, 962, 957, 11305, 1, 100, 4, N'SO63588', 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 (477, 950, 962, 957, 11411, 1, 100, 8, N'SO63594', 1, 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 (479, 950, 962, 957, 11411, 1, 100, 8, N'SO63594', 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 (467, 950, 962, 957, 11411, 1, 100, 8, N'SO63594', 3, 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 (535, 950, 962, 957, 11519, 1, 19, 6, N'SO63569', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 950, 962, 957, 11519, 1, 19, 6, N'SO63569', 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 (214, 950, 962, 957, 11519, 1, 19, 6, N'SO63569', 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 (481, 950, 962, 957, 11519, 1, 19, 6, N'SO63569', 4, 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 (222, 950, 962, 957, 11731, 1, 100, 4, N'SO63563', 1, 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 (529, 951, 963, 958, 11091, 1, 19, 6, N'SO63636', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (538, 951, 963, 958, 11091, 1, 19, 6, N'SO63636', 2, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 951, 963, 958, 11163, 1, 100, 4, N'SO63663', 1, 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, 951, 963, 958, 11163, 1, 100, 4, N'SO63663', 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 (480, 951, 963, 958, 11163, 1, 100, 4, N'SO63663', 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 (528, 951, 963, 958, 11164, 1, 100, 4, N'SO63662', 1, 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, 951, 963, 958, 11164, 1, 100, 4, N'SO63662', 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 (472, 951, 963, 958, 11164, 1, 100, 4, N'SO63662', 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 (214, 951, 963, 958, 11164, 1, 100, 4, N'SO63662', 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 (529, 951, 963, 958, 11331, 1, 19, 6, N'SO63634', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (539, 951, 963, 958, 11331, 1, 19, 6, N'SO63634', 2, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (489, 951, 963, 958, 11500, 1, 19, 6, N'SO63632', 1, 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 (361, 952, 964, 959, 11034, 1, 6, 9, N'SO63737', 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 (539, 952, 964, 959, 11185, 1, 19, 6, N'SO63705', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 952, 964, 959, 11185, 1, 19, 6, N'SO63705', 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 (537, 952, 964, 959, 11187, 1, 100, 1, N'SO63725', 1, 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, 952, 964, 959, 11187, 1, 100, 1, N'SO63725', 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 (606, 952, 964, 959, 11250, 2, 98, 10, N'SO63748', 1, 1, 1, 539.9900, 539.9900, 0, 0, 343.6496, 343.6496, 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 (529, 952, 964, 959, 11250, 1, 98, 10, N'SO63748', 2, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (538, 952, 964, 959, 11250, 1, 98, 10, N'SO63748', 3, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (463, 952, 964, 959, 11250, 1, 98, 10, N'SO63748', 4, 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 (529, 952, 964, 959, 11500, 1, 19, 6, N'SO63706', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 952, 964, 959, 11500, 1, 19, 6, N'SO63706', 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 (563, 952, 964, 959, 11988, 1, 6, 9, N'SO63750', 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 (225, 952, 964, 959, 11988, 1, 6, 9, N'SO63750', 2, 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 (575, 952, 964, 959, 11989, 1, 6, 9, N'SO63751', 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 (353, 952, 964, 959, 11995, 1, 6, 9, N'SO63736', 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, 952, 964, 959, 11995, 1, 6, 9, N'SO63736', 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, 952, 964, 959, 11995, 1, 6, 9, N'SO63736', 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 (563, 953, 965, 960, 11100, 1, 6, 9, N'SO63819', 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, 953, 965, 960, 11100, 1, 6, 9, N'SO63819', 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, 953, 965, 960, 11100, 1, 6, 9, N'SO63819', 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 (480, 953, 965, 960, 11300, 1, 19, 6, N'SO63770', 1, 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 (529, 953, 965, 960, 11300, 1, 19, 6, N'SO63771', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (463, 953, 965, 960, 11300, 1, 19, 6, N'SO63771', 2, 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 (537, 953, 965, 960, 11697, 1, 100, 4, N'SO63787', 1, 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, 953, 965, 960, 11697, 1, 100, 4, N'SO63787', 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 (231, 953, 965, 960, 11697, 1, 100, 4, N'SO63787', 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 (488, 953, 965, 960, 11747, 1, 100, 1, N'SO63769', 1, 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 (537, 953, 965, 960, 11941, 1, 100, 1, N'SO63788', 1, 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, 953, 965, 960, 11941, 1, 100, 1, N'SO63788', 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 (576, 953, 965, 960, 11952, 1, 6, 9, N'SO63817', 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, 953, 965, 960, 11952, 1, 6, 9, N'SO63817', 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, 953, 965, 960, 11952, 1, 6, 9, N'SO63817', 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 (574, 953, 965, 960, 11967, 1, 6, 9, N'SO63820', 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 (217, 953, 965, 960, 11967, 1, 6, 9, N'SO63820', 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 (489, 954, 966, 961, 11146, 1, 6, 9, N'SO63829', 1, 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 (529, 954, 966, 961, 11262, 1, 19, 6, N'SO63836', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (539, 954, 966, 961, 11262, 1, 19, 6, N'SO63836', 2, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, 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 (480, 954, 966, 961, 11262, 1, 19, 6, N'SO63836', 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 (484, 954, 966, 961, 11262, 1, 19, 6, N'SO63836', 4, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 954, 966, 961, 11277, 1, 19, 6, N'SO63834', 1, 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 (529, 954, 966, 961, 11277, 1, 19, 6, N'SO63839', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (538, 954, 966, 961, 11277, 1, 19, 6, N'SO63839', 2, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 954, 966, 961, 11280, 1, 100, 1, N'SO63837', 1, 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 (575, 954, 966, 961, 11353, 1, 98, 10, N'SO63863', 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 (481, 954, 966, 961, 11353, 2, 98, 10, N'SO63863', 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 (538, 954, 966, 961, 11557, 1, 98, 10, N'SO63856', 1, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 954, 966, 961, 11770, 1, 100, 1, N'SO63858', 1, 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, 954, 966, 961, 11770, 1, 100, 1, N'SO63858', 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 (480, 954, 966, 961, 11770, 1, 100, 1, N'SO63858', 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 (537, 955, 967, 962, 11087, 1, 100, 4, N'SO63918', 1, 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, 955, 967, 962, 11087, 1, 100, 4, N'SO63918', 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 (491, 955, 967, 962, 11098, 1, 6, 9, N'SO63890', 1, 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 (490, 955, 967, 962, 11142, 1, 19, 6, N'SO63894', 1, 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 (477, 955, 967, 962, 11185, 1, 19, 6, N'SO63905', 1, 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 (217, 955, 967, 962, 11185, 1, 19, 6, N'SO63905', 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 (472, 955, 967, 962, 11185, 1, 19, 6, N'SO63905', 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 (480, 955, 967, 962, 11204, 1, 100, 1, N'SO63895', 1, 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 (541, 955, 967, 962, 11277, 1, 19, 6, N'SO63897', 1, 1, 1, 28.9900, 28.9900, 0, 0, 10.8423, 10.8423, 28.9900, 2.3192, 0.7248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (530, 955, 967, 962, 11277, 1, 19, 6, N'SO63897', 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 (487, 955, 967, 962, 11277, 1, 19, 6, N'SO63897', 3, 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 (538, 955, 967, 962, 11469, 1, 98, 10, N'SO63912', 1, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 955, 967, 962, 11469, 1, 98, 10, N'SO63912', 2, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (530, 955, 967, 962, 11619, 1, 19, 6, N'SO63896', 1, 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 (480, 955, 967, 962, 11619, 2, 19, 6, N'SO63896', 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 (537, 955, 967, 962, 11699, 1, 100, 1, N'SO63919', 1, 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, 955, 967, 962, 11699, 1, 100, 1, N'SO63919', 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, 955, 967, 962, 11699, 1, 100, 1, N'SO63919', 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 (573, 955, 967, 962, 11964, 1, 6, 9, N'SO63944', 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 (214, 955, 967, 962, 11964, 1, 6, 9, N'SO63944', 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 (465, 955, 967, 962, 11964, 1, 6, 9, N'SO63944', 3, 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 (537, 956, 968, 963, 11184, 1, 100, 4, N'SO63975', 1, 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, 956, 968, 963, 11184, 1, 100, 4, N'SO63975', 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 (485, 956, 968, 963, 11184, 1, 100, 4, N'SO63975', 3, 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 (529, 956, 968, 963, 11619, 1, 19, 6, N'SO63962', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (538, 956, 968, 963, 11619, 1, 19, 6, N'SO63962', 2, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 956, 968, 963, 11724, 1, 19, 6, N'SO63965', 1, 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, 956, 968, 963, 11724, 1, 19, 6, N'SO63965', 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, 956, 968, 963, 11800, 1, 100, 1, N'SO63976', 1, 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, 956, 968, 963, 11800, 1, 100, 1, N'SO63976', 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 (480, 956, 968, 963, 11800, 1, 100, 1, N'SO63976', 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 (355, 957, 969, 964, 11032, 1, 6, 9, N'SO64042', 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, 957, 969, 964, 11032, 1, 6, 9, N'SO64042', 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, 957, 969, 964, 11032, 1, 6, 9, N'SO64042', 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 (485, 957, 969, 964, 11032, 1, 6, 9, N'SO64042', 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 (478, 957, 969, 964, 11032, 1, 6, 9, N'SO64042', 5, 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, 957, 969, 964, 11032, 1, 6, 9, N'SO64042', 6, 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 (480, 957, 969, 964, 11032, 1, 6, 9, N'SO64042', 7, 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 (214, 957, 969, 964, 11185, 1, 19, 6, N'SO64008', 1, 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, 957, 969, 964, 11185, 1, 19, 6, N'SO64008', 2, 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 (529, 957, 969, 964, 11502, 1, 19, 6, N'SO64009', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (490, 957, 969, 964, 11502, 1, 19, 6, N'SO64009', 2, 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 (467, 957, 969, 964, 11502, 1, 19, 6, N'SO64009', 3, 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 (479, 957, 969, 964, 11631, 1, 19, 6, N'SO63997', 1, 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, 957, 969, 964, 11631, 1, 19, 6, N'SO63997', 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 (479, 957, 969, 964, 11962, 1, 100, 4, N'SO63998', 1, 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, 957, 969, 964, 11962, 1, 100, 4, N'SO63998', 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 (491, 957, 969, 964, 11962, 1, 100, 4, N'SO63998', 3, 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 (537, 958, 970, 965, 11128, 1, 100, 1, N'SO64097', 1, 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, 958, 970, 965, 11128, 1, 100, 1, N'SO64097', 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, 958, 970, 965, 11128, 1, 100, 1, N'SO64097', 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, 958, 970, 965, 11128, 1, 100, 1, N'SO64097', 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 (222, 958, 970, 965, 11128, 1, 100, 1, N'SO64097', 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 (529, 958, 970, 965, 11185, 1, 19, 6, N'SO64079', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (540, 958, 970, 965, 11185, 1, 19, 6, N'SO64079', 2, 1, 1, 32.6000, 32.6000, 0, 0, 12.1924, 12.1924, 32.6000, 2.6080, 0.8150, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 958, 970, 965, 11185, 1, 19, 6, N'SO64079', 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 (480, 958, 970, 965, 11310, 1, 100, 4, N'SO64074', 1, 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 (581, 958, 970, 965, 11428, 1, 100, 8, N'SO64066', 1, 1, 1, 1700.9900, 1700.9900, 0, 0, 1082.5100, 1082.5100, 1700.9900, 136.0792, 42.5248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (488, 958, 970, 965, 11428, 1, 100, 8, N'SO64066', 2, 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 (530, 958, 970, 965, 11631, 1, 19, 6, N'SO64075', 1, 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 (528, 958, 970, 965, 11804, 1, 100, 1, N'SO64098', 1, 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, 958, 970, 965, 11804, 1, 100, 1, N'SO64098', 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 (222, 958, 970, 965, 11804, 1, 100, 1, N'SO64098', 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 (228, 959, 971, 966, 11619, 1, 19, 6, N'SO64131', 1, 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 (535, 959, 971, 966, 11711, 1, 19, 6, N'SO64134', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 959, 971, 966, 11711, 1, 19, 6, N'SO64134', 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 (480, 959, 971, 966, 11711, 2, 19, 6, N'SO64134', 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 (214, 959, 971, 966, 11800, 1, 100, 1, N'SO64116', 1, 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, 959, 971, 966, 11993, 1, 6, 9, N'SO64165', 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, 959, 971, 966, 11993, 1, 6, 9, N'SO64165', 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, 959, 971, 966, 11993, 1, 6, 9, N'SO64165', 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 (480, 959, 971, 966, 11993, 1, 6, 9, N'SO64165', 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 (480, 960, 972, 967, 11214, 1, 100, 1, N'SO64192', 1, 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 (538, 960, 972, 967, 11300, 1, 19, 6, N'SO64195', 1, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 960, 972, 967, 11498, 1, 19, 6, N'SO64188', 1, 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 (477, 960, 972, 967, 11501, 1, 19, 6, N'SO64178', 1, 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 (479, 960, 972, 967, 11501, 1, 19, 6, N'SO64178', 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 (222, 960, 972, 967, 11501, 1, 19, 6, N'SO64178', 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 (359, 960, 972, 967, 11997, 1, 6, 9, N'SO64229', 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, 960, 972, 967, 11997, 1, 6, 9, N'SO64229', 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 (491, 960, 972, 967, 11997, 1, 6, 9, N'SO64229', 3, 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 (225, 960, 972, 967, 11997, 1, 6, 9, N'SO64229', 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 (539, 961, 973, 968, 11200, 1, 19, 6, N'SO64255', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 961, 973, 968, 11200, 1, 19, 6, N'SO64255', 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 (489, 961, 973, 968, 11276, 1, 19, 6, N'SO64254', 1, 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 (535, 961, 973, 968, 11366, 1, 6, 9, N'SO64246', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 961, 973, 968, 11366, 1, 6, 9, N'SO64246', 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 (538, 961, 973, 968, 11631, 1, 19, 6, N'SO64258', 1, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, 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 (480, 961, 973, 968, 11631, 1, 19, 6, N'SO64258', 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 (217, 961, 973, 968, 11732, 1, 100, 2, N'SO64253', 1, 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 (473, 961, 973, 968, 11732, 1, 100, 2, N'SO64253', 2, 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 (573, 961, 973, 968, 11977, 1, 6, 9, N'SO64294', 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 (477, 961, 973, 968, 11977, 1, 6, 9, N'SO64294', 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 (471, 961, 973, 968, 11977, 1, 6, 9, N'SO64294', 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 (479, 961, 973, 968, 11977, 1, 6, 9, N'SO64294', 4, 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 (562, 961, 973, 968, 12000, 1, 6, 9, N'SO64296', 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 (541, 961, 973, 968, 12000, 1, 6, 9, N'SO64296', 2, 1, 1, 28.9900, 28.9900, 0, 0, 10.8423, 10.8423, 28.9900, 2.3192, 0.7248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (530, 961, 973, 968, 12000, 1, 6, 9, N'SO64296', 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 (487, 961, 973, 968, 12000, 1, 6, 9, N'SO64296', 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 (529, 962, 974, 969, 11176, 1, 19, 6, N'SO64316', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (539, 962, 974, 969, 11176, 1, 19, 6, N'SO64316', 2, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 962, 974, 969, 11176, 1, 19, 6, N'SO64316', 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 (528, 962, 974, 969, 11276, 1, 19, 6, N'SO64317', 1, 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 (535, 962, 974, 969, 11276, 1, 19, 6, N'SO64317', 2, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 962, 974, 969, 11276, 1, 19, 6, N'SO64317', 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 (490, 962, 974, 969, 11276, 1, 19, 6, N'SO64317', 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 (225, 962, 974, 969, 11276, 1, 19, 6, N'SO64317', 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 (477, 962, 974, 969, 11415, 1, 100, 8, N'SO64350', 1, 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 (479, 962, 974, 969, 11415, 1, 100, 8, N'SO64350', 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 (490, 962, 974, 969, 11501, 1, 19, 6, N'SO64313', 1, 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 (225, 962, 974, 969, 11501, 1, 19, 6, N'SO64313', 2, 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 (476, 962, 974, 969, 11660, 1, 19, 6, N'SO64325', 1, 1, 1, 69.9900, 69.9900, 0, 0, 26.1763, 26.1763, 69.9900, 5.5992, 1.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (489, 962, 974, 969, 11660, 1, 19, 6, N'SO64325', 2, 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 (537, 962, 974, 969, 11962, 1, 100, 4, N'SO64348', 1, 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 (561, 962, 974, 969, 11969, 1, 6, 9, N'SO64376', 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, 962, 974, 969, 11969, 1, 6, 9, N'SO64376', 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, 962, 974, 969, 11969, 1, 6, 9, N'SO64376', 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 (487, 962, 974, 969, 11969, 1, 6, 9, N'SO64376', 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 (584, 963, 975, 970, 11247, 1, 98, 10, N'SO64449', 1, 1, 1, 539.9900, 539.9900, 0, 0, 343.6496, 343.6496, 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 (479, 963, 975, 970, 11247, 1, 98, 10, N'SO64449', 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, 963, 975, 970, 11247, 1, 98, 10, N'SO64449', 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, 963, 975, 970, 11247, 1, 98, 10, N'SO64449', 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 (539, 963, 975, 970, 11276, 1, 19, 6, N'SO64393', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 963, 975, 970, 11276, 1, 19, 6, N'SO64393', 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 (540, 963, 975, 970, 11300, 1, 19, 6, N'SO64397', 1, 1, 1, 32.6000, 32.6000, 0, 0, 12.1924, 12.1924, 32.6000, 2.6080, 0.8150, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 963, 975, 970, 11300, 1, 19, 6, N'SO64397', 2, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 963, 975, 970, 11300, 1, 19, 6, N'SO64397', 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 (537, 963, 975, 970, 11300, 1, 19, 6, N'SO64417', 1, 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, 963, 975, 970, 11300, 1, 19, 6, N'SO64417', 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, 963, 975, 970, 11300, 1, 19, 6, N'SO64417', 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, 963, 975, 970, 11300, 1, 19, 6, N'SO64417', 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 (487, 963, 975, 970, 11300, 1, 19, 6, N'SO64417', 5, 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 (562, 963, 975, 970, 11417, 1, 100, 7, N'SO64450', 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 (214, 963, 975, 970, 11417, 1, 100, 7, N'SO64450', 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 (222, 963, 975, 970, 11594, 1, 100, 7, N'SO64420', 1, 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 (491, 963, 975, 970, 11594, 1, 100, 7, N'SO64420', 2, 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 (225, 963, 975, 970, 11755, 1, 6, 9, N'SO64388', 1, 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 (538, 963, 975, 970, 11769, 1, 19, 6, N'SO64394', 1, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 963, 975, 970, 11769, 1, 19, 6, N'SO64394', 2, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 963, 975, 970, 11769, 1, 19, 6, N'SO64394', 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 (561, 963, 975, 970, 11968, 1, 6, 9, N'SO64451', 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 (477, 963, 975, 970, 11982, 1, 100, 4, N'SO64378', 1, 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 (479, 963, 975, 970, 11982, 1, 100, 4, N'SO64378', 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 (489, 963, 975, 970, 11982, 1, 100, 4, N'SO64378', 3, 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 (537, 964, 976, 971, 11043, 1, 100, 4, N'SO64496', 1, 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 (529, 964, 976, 971, 11067, 1, 100, 1, N'SO64472', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 964, 976, 971, 11067, 1, 100, 1, N'SO64472', 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 (539, 964, 976, 971, 11091, 1, 19, 6, N'SO64475', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 964, 976, 971, 11091, 1, 19, 6, N'SO64475', 2, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 964, 976, 971, 11091, 1, 19, 6, N'SO64475', 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 (529, 964, 976, 971, 11193, 1, 100, 1, N'SO64476', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 964, 976, 971, 11193, 1, 100, 1, N'SO64476', 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 (574, 964, 976, 971, 11381, 1, 98, 10, N'SO64521', 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 (217, 964, 976, 971, 11381, 1, 98, 10, N'SO64521', 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 (535, 964, 976, 971, 11500, 1, 19, 6, N'SO64480', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 964, 976, 971, 11641, 1, 19, 6, N'SO64499', 1, 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, 964, 976, 971, 11641, 1, 19, 6, N'SO64499', 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 (225, 964, 976, 971, 11669, 1, 100, 1, N'SO64470', 1, 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 (489, 964, 976, 971, 11669, 1, 100, 1, N'SO64470', 2, 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 (537, 964, 976, 971, 11674, 1, 100, 4, N'SO64498', 1, 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, 964, 976, 971, 11674, 1, 100, 4, N'SO64498', 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 (480, 964, 976, 971, 11674, 1, 100, 4, N'SO64498', 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 (574, 965, 977, 972, 11241, 1, 100, 7, N'SO64592', 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 (541, 965, 977, 972, 11241, 1, 100, 7, N'SO64592', 2, 1, 1, 28.9900, 28.9900, 0, 0, 10.8423, 10.8423, 28.9900, 2.3192, 0.7248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (530, 965, 977, 972, 11241, 1, 100, 7, N'SO64592', 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 (480, 965, 977, 972, 11241, 2, 100, 7, N'SO64592', 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 (486, 965, 977, 972, 11241, 1, 100, 7, N'SO64592', 5, 1, 1, 159.0000, 159.0000, 0, 0, 59.4660, 59.4660, 159.0000, 12.7200, 3.9750, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 965, 977, 972, 11241, 1, 100, 7, N'SO64592', 6, 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 (528, 965, 977, 972, 11320, 1, 100, 4, N'SO64578', 1, 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, 965, 977, 972, 11320, 1, 100, 4, N'SO64578', 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 (485, 965, 977, 972, 11320, 1, 100, 4, N'SO64578', 3, 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 (484, 965, 977, 972, 11320, 1, 100, 4, N'SO64578', 4, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 965, 977, 972, 11669, 1, 100, 1, N'SO64575', 1, 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, 965, 977, 972, 11669, 1, 100, 1, N'SO64575', 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 (480, 965, 977, 972, 11669, 2, 100, 1, N'SO64575', 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 (484, 965, 977, 972, 11669, 1, 100, 1, N'SO64575', 4, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (490, 965, 977, 972, 11695, 1, 100, 4, N'SO64550', 1, 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 (537, 965, 977, 972, 11827, 1, 19, 6, N'SO64576', 1, 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, 965, 977, 972, 11827, 1, 19, 6, N'SO64576', 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 (563, 965, 977, 972, 11917, 1, 6, 9, N'SO64611', 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 (562, 966, 978, 973, 11110, 1, 6, 9, N'SO64674', 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 (477, 966, 978, 973, 11110, 1, 6, 9, N'SO64674', 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 (479, 966, 978, 973, 11110, 1, 6, 9, N'SO64674', 3, 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 (530, 966, 978, 973, 11212, 1, 19, 6, N'SO64626', 1, 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 (237, 966, 978, 973, 11212, 2, 19, 6, N'SO64626', 2, 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 (465, 966, 978, 973, 11212, 1, 19, 6, N'SO64626', 3, 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 (529, 966, 978, 973, 11566, 1, 100, 7, N'SO64645', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 966, 978, 973, 11566, 1, 100, 7, N'SO64645', 2, 1, 1, 34.9900, 34.9900, 0, 0, 13.0863, 13.0863, 34.9900, 2.7992, 0.8748, 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 (225, 966, 978, 973, 11566, 1, 100, 7, N'SO64645', 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 (228, 966, 978, 973, 11566, 1, 100, 7, N'SO64645', 4, 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 (489, 966, 978, 973, 11676, 1, 100, 3, N'SO64621', 1, 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 (488, 966, 978, 973, 11788, 1, 100, 4, N'SO64620', 1, 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 (535, 966, 978, 973, 11951, 1, 6, 9, N'SO64622', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 966, 978, 973, 11951, 1, 6, 9, N'SO64622', 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 (477, 966, 978, 973, 11951, 1, 6, 9, N'SO64622', 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, 966, 978, 973, 11951, 1, 6, 9, N'SO64622', 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 (480, 966, 978, 973, 11951, 2, 6, 9, N'SO64622', 5, 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 (477, 967, 979, 974, 11073, 1, 6, 9, N'SO64686', 1, 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 (479, 967, 979, 974, 11073, 1, 6, 9, N'SO64686', 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 (225, 967, 979, 974, 11073, 1, 6, 9, N'SO64686', 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 (484, 967, 979, 974, 11094, 1, 6, 9, N'SO64684', 1, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (483, 967, 979, 974, 11094, 1, 6, 9, N'SO64684', 2, 1, 1, 120.0000, 120.0000, 0, 0, 44.8800, 44.8800, 120.0000, 9.6000, 3.0000, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 967, 979, 974, 11288, 1, 100, 4, N'SO64710', 1, 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, 967, 979, 974, 11288, 1, 100, 4, N'SO64710', 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 (214, 967, 979, 974, 11288, 1, 100, 4, N'SO64710', 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 (484, 967, 979, 974, 11466, 1, 6, 9, N'SO64683', 1, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (577, 967, 979, 974, 11468, 1, 98, 10, N'SO64716', 1, 1, 1, 1214.8500, 1214.8500, 0, 0, 755.1508, 755.1508, 1214.8500, 97.1880, 30.3713, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (237, 967, 979, 974, 11468, 1, 98, 10, N'SO64716', 2, 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 (490, 967, 979, 974, 11506, 1, 19, 6, N'SO64693', 1, 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 (528, 967, 979, 974, 11652, 1, 19, 6, N'SO64698', 1, 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 (535, 967, 979, 974, 11652, 1, 19, 6, N'SO64698', 2, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 967, 979, 974, 11652, 1, 19, 6, N'SO64698', 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 (490, 967, 979, 974, 11652, 1, 19, 6, N'SO64698', 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 (225, 967, 979, 974, 11652, 1, 19, 6, N'SO64698', 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 (474, 967, 979, 974, 11820, 1, 19, 6, N'SO64702', 1, 1, 1, 69.9900, 69.9900, 0, 0, 26.1763, 26.1763, 69.9900, 5.5992, 1.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (562, 967, 979, 974, 11916, 1, 6, 9, N'SO64727', 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, 967, 979, 974, 11916, 1, 6, 9, N'SO64727', 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, 967, 979, 974, 11916, 1, 6, 9, N'SO64727', 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 (480, 968, 980, 975, 11019, 1, 19, 6, N'SO64737', 1, 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 (576, 968, 980, 975, 11111, 1, 6, 9, N'SO64789', 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 (541, 968, 980, 975, 11111, 1, 6, 9, N'SO64789', 2, 1, 1, 28.9900, 28.9900, 0, 0, 10.8423, 10.8423, 28.9900, 2.3192, 0.7248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (530, 968, 980, 975, 11111, 1, 6, 9, N'SO64789', 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 (535, 968, 980, 975, 11122, 1, 6, 9, N'SO64738', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (538, 968, 980, 975, 11185, 1, 19, 6, N'SO64740', 1, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (562, 968, 980, 975, 11242, 1, 100, 7, N'SO64772', 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 (480, 968, 980, 975, 11269, 1, 100, 4, N'SO64739', 1, 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 (528, 968, 980, 975, 11502, 1, 19, 6, N'SO64744', 1, 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 (535, 968, 980, 975, 11502, 1, 19, 6, N'SO64744', 2, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (538, 968, 980, 975, 11553, 1, 98, 10, N'SO64761', 1, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (575, 968, 980, 975, 11990, 1, 6, 9, N'SO64786', 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 (222, 968, 980, 975, 11990, 1, 6, 9, N'SO64786', 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 (529, 969, 981, 976, 11223, 1, 19, 6, N'SO64809', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (540, 969, 981, 976, 11223, 1, 19, 6, N'SO64809', 2, 1, 1, 32.6000, 32.6000, 0, 0, 12.1924, 12.1924, 32.6000, 2.6080, 0.8150, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 969, 981, 976, 11223, 1, 19, 6, N'SO64809', 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 (480, 969, 981, 976, 11517, 1, 100, 4, N'SO64805', 1, 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 (561, 969, 981, 976, 11908, 1, 6, 9, N'SO64849', 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 (564, 969, 981, 976, 11914, 1, 6, 9, N'SO64850', 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, 969, 981, 976, 11914, 1, 6, 9, N'SO64850', 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, 969, 981, 976, 11914, 1, 6, 9, N'SO64850', 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 (487, 969, 981, 976, 11914, 1, 6, 9, N'SO64850', 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 (484, 969, 981, 976, 11914, 1, 6, 9, N'SO64850', 5, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (562, 969, 981, 976, 11963, 1, 6, 9, N'SO64851', 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 (477, 969, 981, 976, 11963, 1, 6, 9, N'SO64851', 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 (479, 969, 981, 976, 11963, 1, 6, 9, N'SO64851', 3, 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 (574, 969, 981, 976, 11994, 1, 6, 9, N'SO64852', 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 (217, 969, 981, 976, 11994, 1, 6, 9, N'SO64852', 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 (561, 970, 982, 977, 11915, 1, 6, 9, N'SO64896', 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 (477, 970, 982, 977, 11915, 1, 6, 9, N'SO64896', 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 (479, 970, 982, 977, 11915, 1, 6, 9, N'SO64896', 3, 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 (564, 971, 983, 978, 11976, 1, 6, 9, N'SO64947', 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 (225, 971, 983, 978, 11976, 1, 6, 9, N'SO64947', 2, 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 (537, 972, 984, 979, 11170, 1, 100, 1, N'SO64994', 1, 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, 972, 984, 979, 11170, 1, 100, 1, N'SO64994', 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, 972, 984, 979, 11170, 1, 100, 1, N'SO64994', 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 (217, 972, 984, 979, 11211, 1, 19, 6, N'SO64949', 1, 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 (214, 972, 984, 979, 11330, 1, 19, 6, N'SO64950', 1, 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 (488, 972, 984, 979, 11689, 1, 100, 1, N'SO64964', 1, 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 (228, 972, 984, 979, 11822, 1, 100, 4, N'SO64948', 1, 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 (540, 972, 984, 979, 11833, 1, 19, 6, N'SO64972', 1, 1, 1, 32.6000, 32.6000, 0, 0, 12.1924, 12.1924, 32.6000, 2.6080, 0.8150, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 972, 984, 979, 11833, 1, 19, 6, N'SO64972', 2, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (231, 972, 984, 979, 11833, 1, 19, 6, N'SO64972', 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 (535, 973, 985, 980, 11121, 1, 6, 9, N'SO65022', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 973, 985, 980, 11121, 1, 6, 9, N'SO65022', 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 (484, 973, 985, 980, 11121, 1, 6, 9, N'SO65022', 3, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (541, 973, 985, 980, 11200, 1, 19, 6, N'SO65038', 1, 1, 1, 28.9900, 28.9900, 0, 0, 10.8423, 10.8423, 28.9900, 2.3192, 0.7248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (530, 973, 985, 980, 11200, 1, 19, 6, N'SO65038', 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 (217, 973, 985, 980, 11200, 1, 19, 6, N'SO65038', 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 (479, 973, 985, 980, 11373, 1, 100, 8, N'SO65059', 1, 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, 973, 985, 980, 11373, 1, 100, 8, N'SO65059', 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 (463, 973, 985, 980, 11373, 1, 100, 8, N'SO65059', 3, 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 (480, 973, 985, 980, 11627, 1, 100, 4, N'SO65036', 1, 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 (484, 973, 985, 980, 11627, 1, 100, 4, N'SO65036', 2, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 973, 985, 980, 11744, 1, 100, 4, N'SO65035', 1, 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 (576, 973, 985, 980, 11986, 1, 6, 9, N'SO65087', 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 (477, 973, 985, 980, 11986, 1, 6, 9, N'SO65087', 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 (479, 973, 985, 980, 11986, 1, 6, 9, N'SO65087', 3, 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 (487, 973, 985, 980, 11986, 1, 6, 9, N'SO65087', 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 (528, 974, 986, 981, 11182, 1, 100, 1, N'SO65124', 1, 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, 974, 986, 981, 11182, 1, 100, 1, N'SO65124', 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 (480, 974, 986, 981, 11182, 1, 100, 1, N'SO65124', 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 (529, 974, 986, 981, 11190, 1, 100, 4, N'SO65101', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 974, 986, 981, 11190, 1, 100, 4, N'SO65101', 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 (480, 974, 986, 981, 11283, 1, 100, 4, N'SO65104', 1, 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 (561, 974, 986, 981, 11351, 1, 98, 10, N'SO65135', 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, 974, 986, 981, 11351, 1, 98, 10, N'SO65135', 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, 974, 986, 981, 11351, 1, 98, 10, N'SO65135', 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 (589, 974, 986, 981, 11360, 1, 6, 9, N'SO65150', 1, 1, 1, 769.4900, 769.4900, 0, 0, 419.7784, 419.7784, 769.4900, 61.5592, 19.2373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 974, 986, 981, 11360, 1, 6, 9, N'SO65150', 2, 1, 1, 8.9900, 8.9900, 0, 0, 6.9223, 6.9223, 8.9900, 0.7192, 0.2248, 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 (475, 974, 986, 981, 11360, 1, 6, 9, N'SO65150', 3, 1, 1, 69.9900, 69.9900, 0, 0, 26.1763, 26.1763, 69.9900, 5.5992, 1.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 974, 986, 981, 11505, 1, 19, 6, N'SO65102', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (231, 974, 986, 981, 11505, 1, 19, 6, N'SO65102', 2, 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 (528, 974, 986, 981, 11524, 1, 100, 4, N'SO65125', 1, 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, 974, 986, 981, 11524, 1, 100, 4, N'SO65125', 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 (214, 974, 986, 981, 11544, 1, 100, 8, N'SO65130', 1, 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 (491, 974, 986, 981, 11544, 1, 100, 8, N'SO65130', 2, 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 (529, 974, 986, 981, 11632, 1, 19, 6, N'SO65103', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (486, 974, 986, 981, 11632, 1, 19, 6, N'SO65103', 2, 1, 1, 159.0000, 159.0000, 0, 0, 59.4660, 59.4660, 159.0000, 12.7200, 3.9750, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 974, 986, 981, 11648, 1, 100, 4, N'SO65100', 1, 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 (536, 974, 986, 981, 11769, 1, 19, 6, N'SO65109', 1, 1, 1, 29.9900, 29.9900, 0, 0, 11.2163, 11.2163, 29.9900, 2.3992, 0.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 974, 986, 981, 11769, 1, 19, 6, N'SO65109', 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 (217, 974, 986, 981, 11769, 1, 19, 6, N'SO65109', 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 (467, 974, 986, 981, 11769, 2, 19, 6, N'SO65109', 4, 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 (217, 974, 986, 981, 11838, 1, 100, 1, N'SO65099', 1, 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 (234, 974, 986, 981, 11838, 1, 100, 1, N'SO65099', 2, 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 (359, 974, 986, 981, 11998, 1, 6, 9, N'SO65143', 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, 974, 986, 981, 11998, 1, 6, 9, N'SO65143', 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, 974, 986, 981, 11998, 1, 6, 9, N'SO65143', 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 (480, 974, 986, 981, 11998, 1, 6, 9, N'SO65143', 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 (530, 975, 987, 982, 11566, 1, 100, 7, N'SO65367', 1, 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, 975, 987, 982, 11566, 1, 100, 7, N'SO65367', 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 (539, 976, 988, 983, 11223, 1, 19, 6, N'SO65408', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 976, 988, 983, 11223, 1, 19, 6, N'SO65408', 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 (588, 976, 988, 983, 11363, 1, 6, 9, N'SO65396', 1, 1, 1, 769.4900, 769.4900, 0, 0, 419.7784, 419.7784, 769.4900, 61.5592, 19.2373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (474, 976, 988, 983, 11363, 1, 6, 9, N'SO65396', 2, 1, 1, 69.9900, 69.9900, 0, 0, 26.1763, 26.1763, 69.9900, 5.5992, 1.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (488, 976, 988, 983, 11363, 1, 6, 9, N'SO65396', 3, 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 (561, 976, 988, 983, 11488, 1, 98, 10, N'SO65451', 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 (225, 976, 988, 983, 11488, 1, 98, 10, N'SO65451', 2, 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 (477, 977, 989, 984, 11079, 1, 6, 9, N'SO65460', 1, 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 (479, 977, 989, 984, 11079, 1, 6, 9, N'SO65460', 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 (225, 977, 989, 984, 11079, 1, 6, 9, N'SO65460', 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 (535, 977, 989, 984, 11262, 1, 19, 6, N'SO65465', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 977, 989, 984, 11262, 1, 19, 6, N'SO65465', 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 (484, 977, 989, 984, 11262, 1, 19, 6, N'SO65465', 3, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (535, 977, 989, 984, 11711, 1, 19, 6, N'SO65470', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 977, 989, 984, 11711, 1, 19, 6, N'SO65470', 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 (481, 977, 989, 984, 11711, 1, 19, 6, N'SO65470', 3, 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 (529, 977, 989, 984, 11711, 1, 19, 6, N'SO65471', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (540, 977, 989, 984, 11711, 1, 19, 6, N'SO65471', 2, 1, 1, 32.6000, 32.6000, 0, 0, 12.1924, 12.1924, 32.6000, 2.6080, 0.8150, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (463, 977, 989, 984, 11711, 1, 19, 6, N'SO65471', 3, 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 (477, 977, 989, 984, 11740, 1, 19, 6, N'SO65477', 1, 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, 977, 989, 984, 11740, 1, 19, 6, N'SO65477', 2, 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 (231, 977, 989, 984, 11740, 1, 19, 6, N'SO65477', 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 (537, 977, 989, 984, 11785, 1, 100, 1, N'SO65485', 1, 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, 977, 989, 984, 11785, 1, 100, 1, N'SO65485', 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 (355, 978, 990, 985, 11038, 1, 6, 9, N'SO65549', 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 (575, 978, 990, 985, 11237, 1, 100, 8, N'SO65557', 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 (214, 978, 990, 985, 11237, 1, 100, 8, N'SO65557', 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 (528, 978, 990, 985, 11680, 1, 100, 1, N'SO65537', 1, 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, 978, 990, 985, 11680, 1, 100, 1, N'SO65537', 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 (478, 978, 990, 985, 11711, 1, 19, 6, N'SO65520', 1, 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, 978, 990, 985, 11711, 1, 19, 6, N'SO65520', 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 (225, 978, 990, 985, 11711, 1, 19, 6, N'SO65520', 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 (561, 979, 991, 986, 11112, 1, 6, 9, N'SO65625', 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 (214, 979, 991, 986, 11112, 1, 6, 9, N'SO65625', 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 (536, 979, 991, 986, 11276, 1, 19, 6, N'SO65575', 1, 1, 1, 29.9900, 29.9900, 0, 0, 11.2163, 11.2163, 29.9900, 2.3992, 0.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 979, 991, 986, 11276, 1, 19, 6, N'SO65575', 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 (480, 979, 991, 986, 11276, 1, 19, 6, N'SO65575', 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 (537, 979, 991, 986, 11648, 1, 100, 4, N'SO65595', 1, 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 (537, 979, 991, 986, 11689, 1, 100, 1, N'SO65597', 1, 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 (231, 979, 991, 986, 11852, 1, 100, 4, N'SO65564', 1, 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 (479, 980, 992, 987, 11212, 1, 19, 6, N'SO65628', 1, 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, 980, 992, 987, 11212, 1, 19, 6, N'SO65628', 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 (480, 980, 992, 987, 11631, 1, 19, 6, N'SO65642', 1, 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 (234, 980, 992, 987, 11821, 1, 100, 4, N'SO65631', 1, 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 (484, 980, 992, 987, 11863, 1, 100, 1, N'SO65629', 1, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 981, 993, 988, 11176, 1, 19, 6, N'SO65702', 1, 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, 981, 993, 988, 11176, 1, 19, 6, N'SO65702', 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 (530, 981, 993, 988, 11330, 1, 19, 6, N'SO65689', 1, 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 (465, 981, 993, 988, 11330, 1, 19, 6, N'SO65689', 2, 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 (541, 981, 993, 988, 11330, 1, 19, 6, N'SO65689', 3, 1, 1, 28.9900, 28.9900, 0, 0, 10.8423, 10.8423, 28.9900, 2.3192, 0.7248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (476, 981, 993, 988, 11677, 1, 19, 6, N'SO65699', 1, 1, 1, 69.9900, 69.9900, 0, 0, 26.1763, 26.1763, 69.9900, 5.5992, 1.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (231, 981, 993, 988, 11677, 1, 19, 6, N'SO65699', 2, 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 (537, 981, 993, 988, 11863, 1, 100, 1, N'SO65718', 1, 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, 981, 993, 988, 11863, 1, 100, 1, N'SO65718', 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 (530, 982, 994, 989, 11223, 1, 19, 6, N'SO65758', 1, 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, 982, 994, 989, 11223, 1, 19, 6, N'SO65758', 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 (529, 982, 994, 989, 11262, 1, 19, 6, N'SO65757', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 982, 994, 989, 11413, 1, 98, 10, N'SO65798', 1, 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 (584, 982, 994, 989, 11413, 1, 98, 10, N'SO65798', 2, 1, 1, 539.9900, 539.9900, 0, 0, 343.6496, 343.6496, 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 (537, 982, 994, 989, 11682, 1, 100, 1, N'SO65772', 1, 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, 982, 994, 989, 11682, 1, 100, 1, N'SO65772', 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 (486, 982, 994, 989, 11682, 1, 100, 1, N'SO65772', 3, 1, 1, 159.0000, 159.0000, 0, 0, 59.4660, 59.4660, 159.0000, 12.7200, 3.9750, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (540, 982, 994, 989, 11723, 1, 19, 6, N'SO65761', 1, 1, 1, 32.6000, 32.6000, 0, 0, 12.1924, 12.1924, 32.6000, 2.6080, 0.8150, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 983, 995, 990, 11210, 1, 100, 4, N'SO65817', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 983, 995, 990, 11210, 1, 100, 4, N'SO65817', 2, 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 (528, 983, 995, 990, 11225, 1, 100, 1, N'SO65843', 1, 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, 983, 995, 990, 11225, 1, 100, 1, N'SO65843', 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 (485, 983, 995, 990, 11225, 1, 100, 1, N'SO65843', 3, 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 (225, 983, 995, 990, 11225, 1, 100, 1, N'SO65843', 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 (605, 983, 995, 990, 11414, 1, 98, 10, N'SO65874', 1, 1, 1, 539.9900, 539.9900, 0, 0, 343.6496, 343.6496, 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 (538, 983, 995, 990, 11414, 1, 98, 10, N'SO65874', 2, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (489, 983, 995, 990, 11414, 1, 98, 10, N'SO65874', 3, 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 (237, 983, 995, 990, 11948, 1, 6, 9, N'SO65812', 1, 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 (231, 984, 996, 991, 11215, 1, 19, 6, N'SO65882', 1, 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 (535, 984, 996, 991, 11277, 1, 19, 6, N'SO65893', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 984, 996, 991, 11306, 1, 100, 4, N'SO65922', 1, 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, 984, 996, 991, 11306, 1, 100, 4, N'SO65922', 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 (537, 984, 996, 991, 11308, 1, 100, 1, N'SO65923', 1, 1, 1, 35.0000, 35.0000, 0, 0, 13.0900, 13.0900, 35.0000, 2.8000, 0.8750, 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 (485, 984, 996, 991, 11308, 1, 100, 1, N'SO65923', 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 (214, 984, 996, 991, 11308, 1, 100, 1, N'SO65923', 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 (562, 984, 996, 991, 11491, 1, 98, 10, N'SO65934', 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 (541, 984, 996, 991, 11491, 1, 98, 10, N'SO65934', 2, 1, 1, 28.9900, 28.9900, 0, 0, 10.8423, 10.8423, 28.9900, 2.3192, 0.7248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (530, 984, 996, 991, 11491, 1, 98, 10, N'SO65934', 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, 984, 996, 991, 11491, 1, 98, 10, N'SO65934', 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 (477, 984, 996, 991, 11498, 1, 19, 6, N'SO65881', 1, 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, 984, 996, 991, 11498, 1, 19, 6, N'SO65881', 2, 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 (479, 984, 996, 991, 11498, 1, 19, 6, N'SO65881', 3, 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 (528, 984, 996, 991, 11661, 1, 19, 6, N'SO65892', 1, 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 (535, 984, 996, 991, 11661, 1, 19, 6, N'SO65892', 2, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 984, 996, 991, 11661, 2, 19, 6, N'SO65892', 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 (478, 984, 996, 991, 11869, 1, 19, 6, N'SO65898', 1, 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, 984, 996, 991, 11869, 1, 19, 6, N'SO65898', 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 (490, 984, 996, 991, 11869, 1, 19, 6, N'SO65898', 3, 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 (535, 985, 997, 992, 11019, 1, 19, 6, N'SO65967', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 985, 997, 992, 11159, 1, 100, 4, N'SO65963', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 985, 997, 992, 11159, 1, 100, 4, N'SO65963', 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 (477, 985, 997, 992, 11300, 1, 19, 6, N'SO65975', 1, 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 (488, 985, 997, 992, 11300, 1, 19, 6, N'SO65975', 2, 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 (576, 985, 997, 992, 11432, 1, 100, 7, N'SO66005', 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 (222, 985, 997, 992, 11432, 1, 100, 7, N'SO66005', 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 (231, 985, 997, 992, 11432, 1, 100, 7, N'SO66005', 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, 985, 997, 992, 11520, 1, 19, 6, N'SO65968', 1, 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 (538, 985, 997, 992, 11520, 1, 19, 6, N'SO65968', 2, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 985, 997, 992, 11565, 1, 98, 10, N'SO65994', 1, 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 (528, 985, 997, 992, 11814, 1, 100, 1, N'SO65992', 1, 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, 985, 997, 992, 11814, 1, 100, 1, N'SO65992', 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 (480, 985, 997, 992, 11814, 1, 100, 1, N'SO65992', 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 (528, 986, 998, 993, 11185, 1, 19, 6, N'SO66040', 1, 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 (535, 986, 998, 993, 11185, 1, 19, 6, N'SO66040', 2, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (484, 986, 998, 993, 11185, 1, 19, 6, N'SO66040', 3, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (486, 986, 998, 993, 11185, 1, 19, 6, N'SO66040', 4, 1, 1, 159.0000, 159.0000, 0, 0, 59.4660, 59.4660, 159.0000, 12.7200, 3.9750, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 986, 998, 993, 11201, 1, 100, 4, N'SO66032', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 986, 998, 993, 11201, 1, 100, 4, N'SO66032', 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 (234, 986, 998, 993, 11201, 1, 100, 4, N'SO66032', 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 (528, 986, 998, 993, 11213, 1, 100, 1, N'SO66048', 1, 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, 986, 998, 993, 11213, 1, 100, 1, N'SO66048', 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 (214, 986, 998, 993, 11213, 1, 100, 1, N'SO66048', 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 (563, 986, 998, 993, 11429, 1, 100, 7, N'SO66076', 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 (477, 986, 998, 993, 11429, 1, 100, 7, N'SO66076', 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 (479, 986, 998, 993, 11429, 1, 100, 7, N'SO66076', 3, 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 (222, 986, 998, 993, 11429, 1, 100, 7, N'SO66076', 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 (529, 986, 998, 993, 11506, 1, 19, 6, N'SO66035', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 986, 998, 993, 11506, 1, 19, 6, N'SO66035', 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 (529, 986, 998, 993, 11758, 1, 6, 9, N'SO66028', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 986, 998, 993, 11758, 1, 6, 9, N'SO66028', 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 (234, 986, 998, 993, 11832, 1, 100, 1, N'SO66036', 1, 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 (353, 987, 999, 994, 11035, 2, 6, 9, N'SO66140', 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 (483, 987, 999, 994, 11212, 1, 19, 6, N'SO66080', 1, 1, 1, 120.0000, 120.0000, 0, 0, 44.8800, 44.8800, 120.0000, 9.6000, 3.0000, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (536, 987, 999, 994, 11212, 1, 19, 6, N'SO66105', 1, 1, 1, 29.9900, 29.9900, 0, 0, 11.2163, 11.2163, 29.9900, 2.3992, 0.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 987, 999, 994, 11212, 1, 19, 6, N'SO66105', 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 (222, 987, 999, 994, 11212, 1, 19, 6, N'SO66105', 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 (541, 987, 999, 994, 11262, 1, 19, 6, N'SO66099', 1, 1, 1, 28.9900, 28.9900, 0, 0, 10.8423, 10.8423, 28.9900, 2.3192, 0.7248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (530, 987, 999, 994, 11262, 1, 19, 6, N'SO66099', 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 (222, 987, 999, 994, 11262, 1, 19, 6, N'SO66099', 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 (237, 987, 999, 994, 11262, 1, 19, 6, N'SO66099', 4, 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, 987, 999, 994, 11262, 1, 19, 6, N'SO66099', 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 (537, 987, 999, 994, 11269, 1, 100, 4, N'SO66126', 1, 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, 987, 999, 994, 11269, 1, 100, 4, N'SO66126', 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 (576, 987, 999, 994, 11482, 1, 98, 10, N'SO66152', 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 (541, 987, 999, 994, 11482, 1, 98, 10, N'SO66152', 2, 1, 1, 28.9900, 28.9900, 0, 0, 10.8423, 10.8423, 28.9900, 2.3192, 0.7248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (541, 987, 999, 994, 11566, 1, 100, 7, N'SO66123', 1, 1, 1, 28.9900, 28.9900, 0, 0, 10.8423, 10.8423, 28.9900, 2.3192, 0.7248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 988, 1000, 995, 11091, 1, 19, 6, N'SO66157', 1, 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 (537, 988, 1000, 995, 11157, 1, 100, 1, N'SO66182', 1, 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 (529, 988, 1000, 995, 11277, 1, 19, 6, N'SO66163', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (539, 988, 1000, 995, 11277, 1, 19, 6, N'SO66163', 2, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 988, 1000, 995, 11277, 1, 19, 6, N'SO66163', 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 (537, 988, 1000, 995, 11636, 1, 100, 4, N'SO66181', 1, 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, 988, 1000, 995, 11636, 1, 100, 4, N'SO66181', 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 (222, 988, 1000, 995, 11636, 1, 100, 4, N'SO66181', 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 (537, 988, 1000, 995, 11656, 1, 100, 4, N'SO66183', 1, 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, 988, 1000, 995, 11656, 1, 100, 4, N'SO66183', 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 (217, 988, 1000, 995, 11656, 1, 100, 4, N'SO66183', 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 (234, 988, 1000, 995, 11855, 1, 100, 4, N'SO66156', 1, 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 (539, 989, 1001, 996, 11200, 1, 19, 6, N'SO66215', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 989, 1001, 996, 11200, 1, 19, 6, N'SO66215', 2, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 989, 1001, 996, 11200, 1, 19, 6, N'SO66215', 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 (528, 989, 1001, 996, 11215, 1, 19, 6, N'SO66239', 1, 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, 989, 1001, 996, 11215, 1, 19, 6, N'SO66239', 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 (217, 989, 1001, 996, 11215, 1, 19, 6, N'SO66239', 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 (577, 989, 1001, 996, 11485, 1, 98, 10, N'SO66245', 1, 1, 1, 1214.8500, 1214.8500, 0, 0, 755.1508, 755.1508, 1214.8500, 97.1880, 30.3713, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 989, 1001, 996, 11485, 1, 98, 10, N'SO66245', 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 (560, 989, 1001, 996, 11493, 1, 98, 10, N'SO66246', 1, 1, 1, 1214.8500, 1214.8500, 0, 0, 755.1508, 755.1508, 1214.8500, 97.1880, 30.3713, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 989, 1001, 996, 11493, 1, 98, 10, N'SO66246', 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 (479, 989, 1001, 996, 11493, 1, 98, 10, N'SO66246', 3, 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 (217, 989, 1001, 996, 11520, 1, 19, 6, N'SO66212', 1, 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 (489, 989, 1001, 996, 11807, 1, 100, 4, N'SO66213', 1, 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 (478, 989, 1001, 996, 11823, 1, 19, 6, N'SO66228', 1, 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, 989, 1001, 996, 11823, 1, 19, 6, N'SO66228', 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 (487, 989, 1001, 996, 11823, 1, 19, 6, N'SO66228', 3, 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 (484, 989, 1001, 996, 11823, 1, 19, 6, N'SO66228', 4, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 990, 1002, 997, 11311, 1, 100, 1, N'SO66273', 1, 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 (539, 990, 1002, 997, 11507, 1, 19, 6, N'SO66274', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 990, 1002, 997, 11507, 1, 19, 6, N'SO66274', 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 (465, 990, 1002, 997, 11987, 1, 6, 9, N'SO66270', 1, 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 (225, 991, 1003, 998, 11139, 1, 6, 9, N'SO66325', 1, 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 (231, 991, 1003, 998, 11139, 1, 6, 9, N'SO66325', 2, 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 (529, 991, 1003, 998, 11262, 1, 19, 6, N'SO66330', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (540, 991, 1003, 998, 11262, 1, 19, 6, N'SO66330', 2, 1, 1, 32.6000, 32.6000, 0, 0, 12.1924, 12.1924, 32.6000, 2.6080, 0.8150, 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 (563, 991, 1003, 998, 11433, 1, 100, 7, N'SO66368', 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 (528, 991, 1003, 998, 11677, 1, 19, 6, N'SO66335', 1, 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 (536, 991, 1003, 998, 11677, 1, 19, 6, N'SO66335', 2, 1, 1, 29.9900, 29.9900, 0, 0, 11.2163, 11.2163, 29.9900, 2.3992, 0.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 991, 1003, 998, 11677, 1, 19, 6, N'SO66335', 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 (467, 991, 1003, 998, 11677, 2, 19, 6, N'SO66335', 4, 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 (528, 992, 1004, 999, 11146, 1, 6, 9, N'SO66376', 1, 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 (529, 992, 1004, 999, 11202, 1, 100, 4, N'SO66383', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 992, 1004, 999, 11202, 1, 100, 4, N'SO66383', 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 (564, 992, 1004, 999, 11249, 1, 100, 8, N'SO66414', 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 (541, 992, 1004, 999, 11249, 1, 100, 8, N'SO66414', 2, 1, 1, 28.9900, 28.9900, 0, 0, 10.8423, 10.8423, 28.9900, 2.3192, 0.7248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (530, 992, 1004, 999, 11249, 1, 100, 8, N'SO66414', 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 (480, 992, 1004, 999, 11249, 1, 100, 8, N'SO66414', 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 (566, 992, 1004, 999, 11414, 1, 98, 10, N'SO66412', 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, 992, 1004, 999, 11414, 1, 98, 10, N'SO66412', 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 (563, 992, 1004, 999, 11425, 1, 100, 7, N'SO66432', 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 (541, 992, 1004, 999, 11425, 1, 100, 7, N'SO66432', 2, 1, 1, 28.9900, 28.9900, 0, 0, 10.8423, 10.8423, 28.9900, 2.3192, 0.7248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 992, 1004, 999, 11502, 1, 19, 6, N'SO66375', 1, 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, 992, 1004, 999, 11502, 1, 19, 6, N'SO66375', 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 (222, 992, 1004, 999, 11502, 1, 19, 6, N'SO66375', 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 (228, 992, 1004, 999, 11502, 1, 19, 6, N'SO66375', 4, 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 (467, 992, 1004, 999, 11502, 2, 19, 6, N'SO66375', 5, 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 (482, 992, 1004, 999, 11659, 1, 19, 6, N'SO66389', 1, 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 (476, 992, 1004, 999, 11659, 1, 19, 6, N'SO66389', 2, 1, 1, 69.9900, 69.9900, 0, 0, 26.1763, 26.1763, 69.9900, 5.5992, 1.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 993, 1005, 1000, 11245, 1, 100, 8, N'SO66500', 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 (541, 993, 1005, 1000, 11245, 1, 100, 8, N'SO66500', 2, 1, 1, 28.9900, 28.9900, 0, 0, 10.8423, 10.8423, 28.9900, 2.3192, 0.7248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (530, 993, 1005, 1000, 11245, 1, 100, 8, N'SO66500', 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 (562, 993, 1005, 1000, 11246, 1, 100, 8, N'SO66482', 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 (214, 993, 1005, 1000, 11246, 1, 100, 8, N'SO66482', 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 (530, 993, 1005, 1000, 11331, 1, 19, 6, N'SO66448', 1, 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 (480, 993, 1005, 1000, 11331, 2, 19, 6, N'SO66448', 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 (486, 993, 1005, 1000, 11331, 1, 19, 6, N'SO66448', 3, 1, 1, 159.0000, 159.0000, 0, 0, 59.4660, 59.4660, 159.0000, 12.7200, 3.9750, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 993, 1005, 1000, 11530, 1, 19, 6, N'SO66447', 1, 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, 993, 1005, 1000, 11530, 1, 19, 6, N'SO66447', 2, 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 (573, 993, 1005, 1000, 11575, 1, 98, 10, N'SO66483', 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 (541, 993, 1005, 1000, 11575, 1, 98, 10, N'SO66483', 2, 1, 1, 28.9900, 28.9900, 0, 0, 10.8423, 10.8423, 28.9900, 2.3192, 0.7248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (530, 993, 1005, 1000, 11575, 1, 98, 10, N'SO66483', 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, 993, 1005, 1000, 11575, 1, 98, 10, N'SO66483', 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, 993, 1005, 1000, 11575, 1, 98, 10, N'SO66483', 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 (225, 993, 1005, 1000, 11584, 1, 100, 8, N'SO66474', 1, 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 (538, 993, 1005, 1000, 11652, 1, 19, 6, N'SO66451', 1, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 993, 1005, 1000, 11652, 1, 19, 6, N'SO66451', 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 (537, 993, 1005, 1000, 11782, 1, 100, 4, N'SO66471', 1, 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, 993, 1005, 1000, 11782, 1, 100, 4, N'SO66471', 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 (480, 993, 1005, 1000, 11782, 1, 100, 4, N'SO66471', 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 (528, 993, 1005, 1000, 11953, 1, 100, 1, N'SO66473', 1, 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, 993, 1005, 1000, 11953, 1, 100, 1, N'SO66473', 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 (480, 993, 1005, 1000, 11953, 1, 100, 1, N'SO66473', 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 (480, 994, 1006, 1001, 11208, 1, 100, 4, N'SO66523', 1, 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 (528, 994, 1006, 1001, 11951, 1, 6, 9, N'SO66511', 1, 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 (480, 994, 1006, 1001, 11951, 2, 6, 9, N'SO66511', 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 (537, 995, 1007, 1002, 11670, 1, 100, 4, N'SO66611', 1, 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, 995, 1007, 1002, 11670, 1, 100, 4, N'SO66611', 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 (488, 995, 1007, 1002, 11672, 1, 100, 4, N'SO66580', 1, 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 (529, 995, 1007, 1002, 11711, 1, 19, 6, N'SO66586', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (540, 995, 1007, 1002, 11711, 1, 19, 6, N'SO66586', 2, 1, 1, 32.6000, 32.6000, 0, 0, 12.1924, 12.1924, 32.6000, 2.6080, 0.8150, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 995, 1007, 1002, 11711, 1, 19, 6, N'SO66586', 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 (528, 995, 1007, 1002, 11769, 1, 19, 6, N'SO66584', 1, 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 (535, 995, 1007, 1002, 11769, 1, 19, 6, N'SO66584', 2, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 995, 1007, 1002, 11769, 2, 19, 6, N'SO66584', 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 (483, 995, 1007, 1002, 11769, 1, 19, 6, N'SO66584', 4, 1, 1, 120.0000, 120.0000, 0, 0, 44.8800, 44.8800, 120.0000, 9.6000, 3.0000, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (538, 995, 1007, 1002, 11841, 1, 19, 6, N'SO66582', 1, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 995, 1007, 1002, 11841, 1, 19, 6, N'SO66582', 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 (538, 996, 1008, 1003, 11019, 1, 19, 6, N'SO66658', 1, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 996, 1008, 1003, 11019, 1, 19, 6, N'SO66658', 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 (529, 996, 1008, 1003, 11066, 1, 100, 1, N'SO66656', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 996, 1008, 1003, 11066, 1, 100, 1, N'SO66656', 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 (562, 996, 1008, 1003, 11120, 1, 6, 9, N'SO66697', 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 (541, 996, 1008, 1003, 11120, 1, 6, 9, N'SO66697', 2, 1, 1, 28.9900, 28.9900, 0, 0, 10.8423, 10.8423, 28.9900, 2.3192, 0.7248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (530, 996, 1008, 1003, 11120, 1, 6, 9, N'SO66697', 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 (487, 996, 1008, 1003, 11120, 1, 6, 9, N'SO66697', 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 (529, 996, 1008, 1003, 11138, 1, 100, 4, N'SO66642', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 996, 1008, 1003, 11138, 1, 100, 4, N'SO66642', 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 (537, 996, 1008, 1003, 11234, 1, 100, 4, N'SO66681', 1, 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, 996, 1008, 1003, 11234, 1, 100, 4, N'SO66681', 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 (528, 996, 1008, 1003, 11709, 1, 19, 6, N'SO66680', 1, 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, 996, 1008, 1003, 11709, 1, 19, 6, N'SO66680', 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 (217, 996, 1008, 1003, 11709, 1, 19, 6, N'SO66680', 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 (463, 996, 1008, 1003, 11709, 1, 19, 6, N'SO66680', 4, 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 (535, 996, 1008, 1003, 11921, 1, 6, 9, N'SO66655', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 996, 1008, 1003, 11921, 1, 6, 9, N'SO66655', 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 (355, 997, 1009, 1004, 11039, 1, 6, 9, N'SO66747', 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, 997, 1009, 1004, 11039, 1, 6, 9, N'SO66747', 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 (483, 997, 1009, 1004, 11039, 1, 6, 9, N'SO66747', 3, 1, 1, 120.0000, 120.0000, 0, 0, 44.8800, 44.8800, 120.0000, 9.6000, 3.0000, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 997, 1009, 1004, 11039, 1, 6, 9, N'SO66747', 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 (530, 997, 1009, 1004, 11142, 1, 19, 6, N'SO66713', 1, 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 (463, 997, 1009, 1004, 11142, 1, 19, 6, N'SO66713', 2, 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 (480, 997, 1009, 1004, 11232, 1, 100, 1, N'SO66711', 1, 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 (568, 997, 1009, 1004, 11422, 1, 98, 10, N'SO66741', 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 (222, 997, 1009, 1004, 11422, 1, 98, 10, N'SO66741', 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 (575, 997, 1009, 1004, 11568, 1, 98, 10, N'SO66742', 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, 997, 1009, 1004, 11568, 1, 98, 10, N'SO66742', 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, 997, 1009, 1004, 11568, 1, 98, 10, N'SO66742', 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 (535, 997, 1009, 1004, 11719, 1, 19, 6, N'SO66715', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 997, 1009, 1004, 11719, 1, 19, 6, N'SO66715', 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 (234, 998, 1010, 1005, 11142, 1, 19, 6, N'SO66784', 1, 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 (537, 998, 1010, 1005, 11202, 1, 100, 4, N'SO66805', 1, 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 (537, 998, 1010, 1005, 11262, 1, 19, 6, N'SO66806', 1, 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, 998, 1010, 1005, 11262, 1, 19, 6, N'SO66806', 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 (536, 998, 1010, 1005, 11277, 1, 19, 6, N'SO66792', 1, 1, 1, 29.9900, 29.9900, 0, 0, 11.2163, 11.2163, 29.9900, 2.3992, 0.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 998, 1010, 1005, 11277, 1, 19, 6, N'SO66792', 2, 1, 1, 63.5000, 63.5000, 0, 0, 23.7490, 23.7490, 63.5000, 5.0800, 1.5875, 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 (529, 998, 1010, 1005, 11300, 1, 19, 6, N'SO66785', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (604, 998, 1010, 1005, 11420, 1, 100, 7, N'SO66825', 1, 1, 1, 539.9900, 539.9900, 0, 0, 343.6496, 343.6496, 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 (530, 998, 1010, 1005, 11507, 1, 19, 6, N'SO66786', 1, 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 (480, 998, 1010, 1005, 11635, 1, 100, 4, N'SO66783', 1, 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 (535, 998, 1010, 1005, 11677, 1, 19, 6, N'SO66789', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 998, 1010, 1005, 11677, 1, 19, 6, N'SO66789', 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 (537, 998, 1010, 1005, 11748, 1, 19, 6, N'SO66807', 1, 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 (537, 998, 1010, 1005, 11970, 1, 100, 1, N'SO66808', 1, 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, 998, 1010, 1005, 11970, 1, 100, 1, N'SO66808', 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 (222, 998, 1010, 1005, 11970, 1, 100, 1, N'SO66808', 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 (530, 999, 1011, 1006, 11211, 1, 19, 6, N'SO66842', 1, 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, 999, 1011, 1006, 11211, 1, 19, 6, N'SO66842', 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 (535, 999, 1011, 1006, 11530, 1, 19, 6, N'SO66844', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 999, 1011, 1006, 11530, 1, 19, 6, N'SO66844', 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 (538, 999, 1011, 1006, 11827, 1, 19, 6, N'SO66841', 1, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 999, 1011, 1006, 11827, 2, 19, 6, N'SO66841', 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 (486, 999, 1011, 1006, 11827, 1, 19, 6, N'SO66841', 3, 1, 1, 159.0000, 159.0000, 0, 0, 59.4660, 59.4660, 159.0000, 12.7200, 3.9750, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 999, 1011, 1006, 11827, 1, 19, 6, N'SO66841', 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 (480, 1000, 1012, 1007, 11203, 1, 19, 6, N'SO66895', 1, 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 (529, 1000, 1012, 1007, 11619, 1, 19, 6, N'SO66897', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1000, 1012, 1007, 11619, 1, 19, 6, N'SO66897', 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 (537, 1000, 1012, 1007, 11833, 1, 19, 6, N'SO66916', 1, 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 (463, 1000, 1012, 1007, 11833, 1, 19, 6, N'SO66916', 2, 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 (479, 1000, 1012, 1007, 11980, 1, 100, 4, N'SO66889', 1, 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 (528, 1001, 1013, 1008, 11169, 1, 100, 4, N'SO66984', 1, 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, 1001, 1013, 1008, 11169, 1, 100, 4, N'SO66984', 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 (480, 1001, 1013, 1008, 11169, 1, 100, 4, N'SO66984', 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 (222, 1001, 1013, 1008, 11176, 1, 19, 6, N'SO66957', 1, 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 (528, 1001, 1013, 1008, 11196, 1, 100, 1, N'SO66986', 1, 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, 1001, 1013, 1008, 11196, 1, 100, 1, N'SO66986', 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 (483, 1001, 1013, 1008, 11196, 1, 100, 1, N'SO66986', 3, 1, 1, 120.0000, 120.0000, 0, 0, 44.8800, 44.8800, 120.0000, 9.6000, 3.0000, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1001, 1013, 1008, 11362, 1, 6, 9, N'SO66950', 1, 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 (237, 1001, 1013, 1008, 11711, 1, 19, 6, N'SO66959', 1, 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, 1001, 1013, 1008, 11711, 1, 19, 6, N'SO66959', 2, 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 (537, 1001, 1013, 1008, 11876, 1, 100, 4, N'SO66989', 1, 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, 1001, 1013, 1008, 11876, 1, 100, 4, N'SO66989', 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 (222, 1001, 1013, 1008, 11876, 1, 100, 4, N'SO66989', 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 (537, 1001, 1013, 1008, 11949, 1, 100, 4, N'SO66987', 1, 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 (537, 1002, 1014, 1009, 11180, 1, 100, 4, N'SO67055', 1, 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, 1002, 1014, 1009, 11180, 1, 100, 4, N'SO67055', 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 (463, 1002, 1014, 1009, 11180, 1, 100, 4, N'SO67055', 3, 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 (214, 1002, 1014, 1009, 11180, 1, 100, 4, N'SO67055', 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 (214, 1002, 1014, 1009, 11185, 1, 19, 6, N'SO67018', 1, 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 (528, 1002, 1014, 1009, 11192, 1, 100, 1, N'SO67056', 1, 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, 1002, 1014, 1009, 11192, 1, 100, 1, N'SO67056', 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 (217, 1002, 1014, 1009, 11192, 1, 100, 1, N'SO67056', 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 (480, 1002, 1014, 1009, 11294, 1, 100, 1, N'SO67029', 1, 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 (225, 1002, 1014, 1009, 11330, 1, 19, 6, N'SO67031', 1, 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 (214, 1002, 1014, 1009, 11477, 1, 100, 8, N'SO67061', 1, 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 (538, 1003, 1015, 1010, 11262, 1, 19, 6, N'SO67093', 1, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 1003, 1015, 1010, 11262, 1, 19, 6, N'SO67093', 2, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1003, 1015, 1010, 11262, 1, 19, 6, N'SO67093', 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 (477, 1003, 1015, 1010, 11355, 1, 98, 10, N'SO67112', 1, 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 (479, 1003, 1015, 1010, 11355, 1, 98, 10, N'SO67112', 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 (538, 1003, 1015, 1010, 11474, 1, 98, 10, N'SO67115', 1, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 1003, 1015, 1010, 11474, 1, 98, 10, N'SO67115', 2, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1003, 1015, 1010, 11474, 1, 98, 10, N'SO67115', 3, 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 (540, 1003, 1015, 1010, 11824, 1, 19, 6, N'SO67098', 1, 1, 1, 32.6000, 32.6000, 0, 0, 12.1924, 12.1924, 32.6000, 2.6080, 0.8150, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 1003, 1015, 1010, 11824, 1, 19, 6, N'SO67098', 2, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (467, 1003, 1015, 1010, 11824, 1, 19, 6, N'SO67098', 3, 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 (477, 1004, 1016, 1011, 11300, 1, 19, 6, N'SO67164', 1, 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, 1004, 1016, 1011, 11300, 1, 19, 6, N'SO67164', 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 (480, 1004, 1016, 1011, 11300, 1, 19, 6, N'SO67164', 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 (580, 1004, 1016, 1011, 11431, 1, 100, 8, N'SO67142', 1, 1, 1, 1700.9900, 1700.9900, 0, 0, 1082.5100, 1082.5100, 1700.9900, 136.0792, 42.5248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1004, 1016, 1011, 11431, 1, 100, 8, N'SO67142', 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 (479, 1004, 1016, 1011, 11431, 1, 100, 8, N'SO67142', 3, 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 (222, 1004, 1016, 1011, 11431, 1, 100, 8, N'SO67142', 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 (222, 1004, 1016, 1011, 11501, 1, 19, 6, N'SO67146', 1, 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 (528, 1004, 1016, 1011, 11711, 1, 19, 6, N'SO67158', 1, 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 (535, 1004, 1016, 1011, 11711, 1, 19, 6, N'SO67158', 2, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1004, 1016, 1011, 11875, 1, 19, 6, N'SO67178', 1, 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, 1004, 1016, 1011, 11875, 1, 19, 6, N'SO67178', 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 (214, 1004, 1016, 1011, 11875, 1, 19, 6, N'SO67178', 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 (537, 1005, 1017, 1012, 11141, 1, 100, 4, N'SO67234', 1, 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, 1005, 1017, 1012, 11141, 1, 100, 4, N'SO67234', 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 (214, 1005, 1017, 1012, 11141, 1, 100, 4, N'SO67234', 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 (536, 1005, 1017, 1012, 11176, 1, 19, 6, N'SO67222', 1, 1, 1, 29.9900, 29.9900, 0, 0, 11.2163, 11.2163, 29.9900, 2.3992, 0.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1005, 1017, 1012, 11176, 2, 19, 6, N'SO67222', 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 (540, 1005, 1017, 1012, 11200, 1, 19, 6, N'SO67219', 1, 1, 1, 32.6000, 32.6000, 0, 0, 12.1924, 12.1924, 32.6000, 2.6080, 0.8150, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (564, 1005, 1017, 1012, 11489, 1, 98, 10, N'SO67259', 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 (225, 1005, 1017, 1012, 11489, 1, 98, 10, N'SO67259', 2, 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 (484, 1005, 1017, 1012, 11619, 1, 19, 6, N'SO67208', 1, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (488, 1005, 1017, 1012, 11694, 1, 100, 4, N'SO67217', 1, 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 (359, 1005, 1017, 1012, 11945, 1, 100, 4, N'SO67241', 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, 1005, 1017, 1012, 11945, 1, 100, 4, N'SO67241', 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 (480, 1005, 1017, 1012, 11945, 1, 100, 4, N'SO67241', 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 (529, 1006, 1018, 1013, 11185, 1, 19, 6, N'SO67361', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (540, 1006, 1018, 1013, 11185, 1, 19, 6, N'SO67361', 2, 1, 1, 32.6000, 32.6000, 0, 0, 12.1924, 12.1924, 32.6000, 2.6080, 0.8150, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (234, 1006, 1018, 1013, 11203, 1, 19, 6, N'SO67351', 1, 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 (217, 1006, 1018, 1013, 11442, 1, 100, 7, N'SO67384', 1, 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 (536, 1006, 1018, 1013, 11507, 1, 19, 6, N'SO67363', 1, 1, 1, 29.9900, 29.9900, 0, 0, 11.2163, 11.2163, 29.9900, 2.3992, 0.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1006, 1018, 1013, 11507, 1, 19, 6, N'SO67363', 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 (225, 1006, 1018, 1013, 11507, 1, 19, 6, N'SO67363', 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 (480, 1006, 1018, 1013, 11655, 1, 100, 4, N'SO67358', 1, 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 (484, 1006, 1018, 1013, 11655, 1, 100, 4, N'SO67358', 2, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1006, 1018, 1013, 11791, 1, 100, 1, N'SO67379', 1, 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 (477, 1007, 1019, 1014, 11203, 1, 19, 6, N'SO67419', 1, 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 (479, 1007, 1019, 1014, 11203, 1, 19, 6, N'SO67419', 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 (491, 1007, 1019, 1014, 11203, 1, 19, 6, N'SO67419', 3, 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 (563, 1007, 1019, 1014, 11431, 1, 100, 8, N'SO67478', 1, 1, 1, 2384.0700, 2384.0700, 0, 0, 1481.9379, 1481.9379, 2384.0700, 190.7256, 59.6018, 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 (477, 1007, 1019, 1014, 11431, 1, 100, 8, N'SO67478', 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 (479, 1007, 1019, 1014, 11431, 1, 100, 8, N'SO67478', 3, 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 (579, 1007, 1019, 1014, 11494, 1, 98, 10, N'SO67461', 1, 1, 1, 1214.8500, 1214.8500, 0, 0, 755.1508, 755.1508, 1214.8500, 97.1880, 30.3713, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (541, 1007, 1019, 1014, 11494, 1, 98, 10, N'SO67461', 2, 1, 1, 28.9900, 28.9900, 0, 0, 10.8423, 10.8423, 28.9900, 2.3192, 0.7248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1008, 1020, 1015, 11127, 1, 100, 4, N'SO67537', 1, 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, 1008, 1020, 1015, 11127, 1, 100, 4, N'SO67537', 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 (535, 1008, 1020, 1015, 11200, 1, 19, 6, N'SO67508', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1008, 1020, 1015, 11200, 1, 19, 6, N'SO67508', 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 (231, 1008, 1020, 1015, 11200, 1, 19, 6, N'SO67508', 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 (530, 1008, 1020, 1015, 11287, 1, 19, 6, N'SO67507', 1, 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 (541, 1008, 1020, 1015, 11287, 1, 19, 6, N'SO67507', 2, 1, 1, 28.9900, 28.9900, 0, 0, 10.8423, 10.8423, 28.9900, 2.3192, 0.7248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (535, 1008, 1020, 1015, 11361, 1, 6, 9, N'SO67503', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1008, 1020, 1015, 11361, 1, 6, 9, N'SO67503', 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 (217, 1008, 1020, 1015, 11361, 1, 6, 9, N'SO67503', 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 (237, 1008, 1020, 1015, 11370, 1, 6, 9, N'SO67492', 1, 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 (563, 1008, 1020, 1015, 11443, 1, 6, 9, N'SO67574', 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 (214, 1008, 1020, 1015, 11443, 1, 6, 9, N'SO67574', 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 (478, 1008, 1020, 1015, 11596, 1, 98, 10, N'SO67541', 1, 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, 1008, 1020, 1015, 11596, 1, 98, 10, N'SO67541', 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 (214, 1008, 1020, 1015, 11596, 1, 98, 10, N'SO67541', 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 (529, 1008, 1020, 1015, 11711, 1, 19, 6, N'SO67504', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (575, 1008, 1020, 1015, 11750, 1, 6, 9, N'SO67576', 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, 1008, 1020, 1015, 11750, 1, 6, 9, N'SO67576', 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, 1008, 1020, 1015, 11750, 1, 6, 9, N'SO67576', 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 (539, 1009, 1021, 1016, 11212, 1, 19, 6, N'SO67588', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1009, 1021, 1016, 11212, 1, 19, 6, N'SO67588', 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 (537, 1009, 1021, 1016, 11982, 1, 100, 4, N'SO67616', 1, 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, 1009, 1021, 1016, 11982, 1, 100, 4, N'SO67616', 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 (474, 1010, 1022, 1017, 11078, 1, 19, 6, N'SO67668', 1, 1, 1, 69.9900, 69.9900, 0, 0, 26.1763, 26.1763, 69.9900, 5.5992, 1.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (535, 1010, 1022, 1017, 11102, 1, 6, 9, N'SO67645', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 1010, 1022, 1017, 11211, 1, 19, 6, N'SO67652', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (539, 1010, 1022, 1017, 11211, 1, 19, 6, N'SO67652', 2, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1010, 1022, 1017, 11211, 1, 19, 6, N'SO67652', 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 (537, 1010, 1022, 1017, 11236, 1, 100, 1, N'SO67680', 1, 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, 1010, 1022, 1017, 11236, 1, 100, 1, N'SO67680', 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 (222, 1010, 1022, 1017, 11236, 1, 100, 1, N'SO67680', 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 (530, 1010, 1022, 1017, 11530, 1, 19, 6, N'SO67654', 1, 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 (217, 1010, 1022, 1017, 11530, 1, 19, 6, N'SO67654', 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 (529, 1010, 1022, 1017, 11784, 1, 19, 6, N'SO67655', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (538, 1010, 1022, 1017, 11784, 1, 19, 6, N'SO67655', 2, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (488, 1010, 1022, 1017, 11806, 1, 100, 4, N'SO67650', 1, 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 (537, 1011, 1023, 1018, 11506, 1, 19, 6, N'SO67728', 1, 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 (489, 1011, 1023, 1018, 11697, 1, 100, 4, N'SO67706', 1, 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 (225, 1011, 1023, 1018, 11697, 1, 100, 4, N'SO67706', 2, 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 (490, 1011, 1023, 1018, 11706, 1, 100, 4, N'SO67705', 1, 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 (480, 1012, 1024, 1019, 11276, 1, 19, 6, N'SO67782', 1, 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 (484, 1012, 1024, 1019, 11276, 1, 19, 6, N'SO67782', 2, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (536, 1012, 1024, 1019, 11659, 1, 19, 6, N'SO67791', 1, 1, 1, 29.9900, 29.9900, 0, 0, 11.2163, 11.2163, 29.9900, 2.3992, 0.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1012, 1024, 1019, 11659, 2, 19, 6, N'SO67791', 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 (231, 1012, 1024, 1019, 11844, 1, 100, 4, N'SO67784', 1, 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 (537, 1012, 1024, 1019, 11877, 1, 100, 4, N'SO67814', 1, 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 (477, 1013, 1025, 1020, 11200, 1, 19, 6, N'SO67868', 1, 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 (536, 1013, 1025, 1020, 11505, 1, 19, 6, N'SO67864', 1, 1, 1, 29.9900, 29.9900, 0, 0, 11.2163, 11.2163, 29.9900, 2.3992, 0.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1013, 1025, 1020, 11505, 1, 19, 6, N'SO67864', 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 (480, 1013, 1025, 1020, 11505, 1, 19, 6, N'SO67864', 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 (484, 1013, 1025, 1020, 11505, 1, 19, 6, N'SO67864', 4, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (231, 1013, 1025, 1020, 11857, 1, 100, 1, N'SO67840', 1, 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 (484, 1013, 1025, 1020, 11865, 1, 100, 4, N'SO67839', 1, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1013, 1025, 1020, 11948, 1, 6, 9, N'SO67841', 1, 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 (535, 1013, 1025, 1020, 11948, 1, 6, 9, N'SO67841', 2, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1013, 1025, 1020, 11948, 2, 6, 9, N'SO67841', 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 (569, 1014, 1026, 1021, 11028, 1, 6, 9, N'SO67961', 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 (536, 1014, 1026, 1021, 11498, 1, 19, 6, N'SO67918', 1, 1, 1, 29.9900, 29.9900, 0, 0, 11.2163, 11.2163, 29.9900, 2.3992, 0.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1014, 1026, 1021, 11498, 1, 19, 6, N'SO67918', 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 (214, 1014, 1026, 1021, 11498, 1, 19, 6, N'SO67918', 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 (463, 1014, 1026, 1021, 11498, 1, 19, 6, N'SO67918', 4, 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 (528, 1015, 1027, 1022, 11068, 1, 6, 9, N'SO67965', 1, 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 (535, 1015, 1027, 1022, 11068, 1, 6, 9, N'SO67965', 2, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1015, 1027, 1022, 11068, 1, 6, 9, N'SO67965', 3, 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 (484, 1015, 1027, 1022, 11068, 1, 6, 9, N'SO67965', 4, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1015, 1027, 1022, 11205, 1, 100, 1, N'SO67980', 1, 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 (575, 1015, 1027, 1022, 11603, 1, 98, 10, N'SO68028', 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, 1015, 1027, 1022, 11603, 1, 98, 10, N'SO68028', 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, 1015, 1027, 1022, 11603, 1, 98, 10, N'SO68028', 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 (537, 1015, 1027, 1022, 11961, 1, 100, 4, N'SO68003', 1, 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, 1015, 1027, 1022, 11961, 1, 100, 4, N'SO68003', 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 (535, 1016, 1028, 1023, 11142, 1, 19, 6, N'SO68039', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1016, 1028, 1023, 11142, 1, 19, 6, N'SO68039', 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 (222, 1016, 1028, 1023, 11142, 1, 19, 6, N'SO68039', 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 (529, 1016, 1028, 1023, 11184, 1, 100, 4, N'SO68030', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1016, 1028, 1023, 11184, 1, 100, 4, N'SO68030', 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 (590, 1016, 1028, 1023, 11372, 2, 6, 9, N'SO68070', 1, 1, 1, 769.4900, 769.4900, 0, 0, 419.7784, 419.7784, 769.4900, 61.5592, 19.2373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (476, 1016, 1028, 1023, 11372, 1, 6, 9, N'SO68070', 2, 1, 1, 69.9900, 69.9900, 0, 0, 26.1763, 26.1763, 69.9900, 5.5992, 1.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (574, 1016, 1028, 1023, 11421, 1, 100, 8, N'SO68084', 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 (529, 1016, 1028, 1023, 11763, 1, 6, 9, N'SO68034', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1016, 1028, 1023, 11763, 2, 6, 9, N'SO68034', 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 (484, 1016, 1028, 1023, 11763, 1, 6, 9, N'SO68034', 3, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1017, 1029, 1024, 11223, 1, 19, 6, N'SO68091', 1, 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 (477, 1017, 1029, 1024, 11330, 1, 19, 6, N'SO68117', 1, 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 (530, 1017, 1029, 1024, 11502, 1, 19, 6, N'SO68104', 1, 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 (480, 1017, 1029, 1024, 11502, 2, 19, 6, N'SO68104', 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 (476, 1017, 1029, 1024, 11530, 1, 19, 6, N'SO68114', 1, 1, 1, 69.9900, 69.9900, 0, 0, 26.1763, 26.1763, 69.9900, 5.5992, 1.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1017, 1029, 1024, 11726, 1, 100, 1, N'SO68103', 1, 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 (491, 1017, 1029, 1024, 11726, 1, 100, 1, N'SO68103', 2, 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 (535, 1017, 1029, 1024, 11845, 1, 19, 6, N'SO68107', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1017, 1029, 1024, 11845, 1, 19, 6, N'SO68107', 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 (222, 1017, 1029, 1024, 11845, 1, 19, 6, N'SO68107', 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 (467, 1018, 1030, 1025, 11091, 2, 19, 6, N'SO68151', 1, 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 (483, 1018, 1030, 1025, 11091, 1, 19, 6, N'SO68151', 2, 1, 1, 120.0000, 120.0000, 0, 0, 44.8800, 44.8800, 120.0000, 9.6000, 3.0000, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1018, 1030, 1025, 11301, 1, 100, 1, N'SO68184', 1, 1, 1, 4.9900, 4.9900, 0, 0, 1.8663, 1.8663, 4.9900, 0.3992, 0.1248, 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 (537, 1018, 1030, 1025, 11301, 1, 100, 1, N'SO68184', 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 (217, 1018, 1030, 1025, 11301, 1, 100, 1, N'SO68184', 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 (488, 1018, 1030, 1025, 11301, 1, 100, 1, N'SO68184', 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 (561, 1018, 1030, 1025, 11412, 1, 100, 8, N'SO68197', 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 (225, 1018, 1030, 1025, 11412, 1, 100, 8, N'SO68197', 2, 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 (539, 1019, 1031, 1026, 11185, 1, 19, 6, N'SO68206', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 1019, 1031, 1026, 11185, 1, 19, 6, N'SO68206', 2, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1019, 1031, 1026, 11185, 1, 19, 6, N'SO68206', 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 (530, 1019, 1031, 1026, 11203, 1, 19, 6, N'SO68210', 1, 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 (541, 1019, 1031, 1026, 11203, 1, 19, 6, N'SO68210', 2, 1, 1, 28.9900, 28.9900, 0, 0, 10.8423, 10.8423, 28.9900, 2.3192, 0.7248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1019, 1031, 1026, 11203, 2, 19, 6, N'SO68210', 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 (529, 1019, 1031, 1026, 11287, 1, 19, 6, N'SO68211', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (538, 1019, 1031, 1026, 11287, 1, 19, 6, N'SO68211', 2, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1019, 1031, 1026, 11287, 1, 19, 6, N'SO68211', 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 (537, 1019, 1031, 1026, 11653, 1, 100, 1, N'SO68235', 1, 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, 1019, 1031, 1026, 11653, 1, 100, 1, N'SO68235', 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 (217, 1019, 1031, 1026, 11653, 1, 100, 1, N'SO68235', 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 (228, 1019, 1031, 1026, 11653, 1, 100, 1, N'SO68235', 4, 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 (538, 1019, 1031, 1026, 11698, 1, 19, 6, N'SO68208', 1, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1020, 1032, 1027, 11078, 1, 19, 6, N'SO68285', 1, 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 (538, 1020, 1032, 1027, 11078, 1, 19, 6, N'SO68288', 1, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 1020, 1032, 1027, 11078, 1, 19, 6, N'SO68288', 2, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1020, 1032, 1027, 11679, 1, 100, 1, N'SO68317', 1, 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, 1020, 1032, 1027, 11679, 1, 100, 1, N'SO68317', 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, 1020, 1032, 1027, 11679, 1, 100, 1, N'SO68317', 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 (217, 1020, 1032, 1027, 11711, 1, 19, 6, N'SO68267', 1, 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 (471, 1020, 1032, 1027, 11711, 1, 19, 6, N'SO68267', 2, 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 (537, 1020, 1032, 1027, 11747, 1, 100, 1, N'SO68320', 1, 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, 1020, 1032, 1027, 11747, 1, 100, 1, N'SO68320', 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 (485, 1020, 1032, 1027, 11747, 1, 100, 1, N'SO68320', 3, 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, 1020, 1032, 1027, 11787, 1, 100, 4, N'SO68268', 1, 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 (569, 1021, 1033, 1028, 11017, 1, 6, 9, N'SO68396', 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 (529, 1021, 1033, 1028, 11166, 1, 100, 1, N'SO68351', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1021, 1033, 1028, 11166, 1, 100, 1, N'SO68351', 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 (482, 1021, 1033, 1028, 11166, 1, 100, 1, N'SO68351', 3, 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 (537, 1021, 1033, 1028, 11177, 1, 100, 4, N'SO68374', 1, 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, 1021, 1033, 1028, 11177, 1, 100, 4, N'SO68374', 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 (214, 1021, 1033, 1028, 11177, 1, 100, 4, N'SO68374', 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 (491, 1021, 1033, 1028, 11177, 1, 100, 4, N'SO68374', 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 (479, 1021, 1033, 1028, 11500, 1, 19, 6, N'SO68343', 1, 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, 1021, 1033, 1028, 11500, 1, 19, 6, N'SO68343', 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 (538, 1021, 1033, 1028, 11661, 1, 19, 6, N'SO68352', 1, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1021, 1033, 1028, 11661, 1, 19, 6, N'SO68352', 2, 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 (536, 1021, 1033, 1028, 11709, 1, 19, 6, N'SO68356', 1, 1, 1, 29.9900, 29.9900, 0, 0, 11.2163, 11.2163, 29.9900, 2.3992, 0.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1021, 1033, 1028, 11709, 1, 19, 6, N'SO68356', 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 (214, 1021, 1033, 1028, 11709, 1, 19, 6, N'SO68356', 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 (563, 1021, 1033, 1028, 11897, 1, 6, 9, N'SO68401', 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 (217, 1021, 1033, 1028, 11897, 1, 6, 9, N'SO68401', 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 (490, 1021, 1033, 1028, 11897, 1, 6, 9, N'SO68401', 3, 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 (479, 1021, 1033, 1028, 11975, 1, 100, 4, N'SO68342', 1, 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, 1021, 1033, 1028, 11975, 1, 100, 4, N'SO68342', 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 (217, 1021, 1033, 1028, 11975, 1, 100, 4, N'SO68342', 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 (529, 1022, 1034, 1029, 11012, 1, 100, 1, N'SO68413', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1022, 1034, 1029, 11012, 1, 100, 1, N'SO68413', 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 (567, 1022, 1034, 1029, 11026, 1, 6, 9, N'SO68468', 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 (541, 1022, 1034, 1029, 11026, 1, 6, 9, N'SO68468', 2, 1, 1, 28.9900, 28.9900, 0, 0, 10.8423, 10.8423, 28.9900, 2.3192, 0.7248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (530, 1022, 1034, 1029, 11026, 1, 6, 9, N'SO68468', 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 (484, 1022, 1034, 1029, 11123, 1, 6, 9, N'SO68404', 1, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1022, 1034, 1029, 11376, 1, 98, 10, N'SO68430', 1, 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 (489, 1022, 1034, 1029, 11376, 1, 98, 10, N'SO68430', 2, 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 (528, 1022, 1034, 1029, 11753, 1, 6, 9, N'SO68411', 1, 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 (535, 1022, 1034, 1029, 11753, 1, 6, 9, N'SO68411', 2, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1022, 1034, 1029, 11841, 1, 19, 6, N'SO68420', 1, 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 (535, 1022, 1034, 1029, 11841, 1, 19, 6, N'SO68420', 2, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1022, 1034, 1029, 11841, 1, 19, 6, N'SO68420', 3, 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 (234, 1022, 1034, 1029, 11841, 1, 19, 6, N'SO68420', 4, 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 (477, 1023, 1035, 1030, 11098, 1, 6, 9, N'SO68475', 1, 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 (484, 1023, 1035, 1030, 11116, 1, 6, 9, N'SO68478', 1, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (561, 1023, 1035, 1030, 11147, 1, 6, 9, N'SO68538', 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 (217, 1023, 1035, 1030, 11147, 1, 6, 9, N'SO68538', 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 (465, 1023, 1035, 1030, 11147, 1, 6, 9, N'SO68538', 3, 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 (474, 1023, 1035, 1030, 11253, 1, 19, 6, N'SO68492', 1, 1, 1, 69.9900, 69.9900, 0, 0, 26.1763, 26.1763, 69.9900, 5.5992, 1.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1023, 1035, 1030, 11253, 1, 19, 6, N'SO68492', 2, 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 (537, 1023, 1035, 1030, 11256, 1, 100, 1, N'SO68505', 1, 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, 1023, 1035, 1030, 11256, 1, 100, 1, N'SO68505', 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 (480, 1023, 1035, 1030, 11256, 1, 100, 1, N'SO68505', 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 (590, 1023, 1035, 1030, 11364, 1, 6, 9, N'SO68469', 1, 1, 1, 769.4900, 769.4900, 0, 0, 419.7784, 419.7784, 769.4900, 61.5592, 19.2373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1023, 1035, 1030, 11364, 1, 6, 9, N'SO68469', 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 (590, 1023, 1035, 1030, 11365, 1, 6, 9, N'SO68470', 1, 1, 1, 769.4900, 769.4900, 0, 0, 419.7784, 419.7784, 769.4900, 61.5592, 19.2373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (476, 1023, 1035, 1030, 11365, 1, 6, 9, N'SO68470', 2, 1, 1, 69.9900, 69.9900, 0, 0, 26.1763, 26.1763, 69.9900, 5.5992, 1.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (489, 1023, 1035, 1030, 11365, 1, 6, 9, N'SO68470', 3, 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 (529, 1023, 1035, 1030, 11501, 1, 19, 6, N'SO68484', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (538, 1023, 1035, 1030, 11501, 1, 19, 6, N'SO68484', 2, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1023, 1035, 1030, 11501, 1, 19, 6, N'SO68484', 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 (575, 1023, 1035, 1030, 11604, 1, 98, 10, N'SO68513', 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, 1023, 1035, 1030, 11604, 1, 98, 10, N'SO68513', 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 (536, 1024, 1036, 1031, 11019, 1, 19, 6, N'SO68563', 1, 1, 1, 29.9900, 29.9900, 0, 0, 11.2163, 11.2163, 29.9900, 2.3992, 0.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1024, 1036, 1031, 11019, 1, 19, 6, N'SO68563', 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 (480, 1024, 1036, 1031, 11019, 1, 19, 6, N'SO68563', 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 (568, 1024, 1036, 1031, 11042, 2, 100, 4, N'SO68609', 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 (234, 1024, 1036, 1031, 11042, 1, 100, 4, N'SO68609', 2, 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 (535, 1024, 1036, 1031, 11139, 1, 6, 9, N'SO68541', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1024, 1036, 1031, 11199, 1, 100, 4, N'SO68589', 1, 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, 1024, 1036, 1031, 11199, 1, 100, 4, N'SO68589', 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 (485, 1024, 1036, 1031, 11199, 1, 100, 4, N'SO68589', 3, 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, 1024, 1036, 1031, 11199, 1, 100, 4, N'SO68589', 4, 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 (539, 1024, 1036, 1031, 11203, 1, 19, 6, N'SO68559', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 1024, 1036, 1031, 11203, 1, 19, 6, N'SO68559', 2, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1024, 1036, 1031, 11221, 1, 100, 4, N'SO68587', 1, 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, 1024, 1036, 1031, 11221, 1, 100, 4, N'SO68587', 2, 1, 1, 4.9900, 4.9900, 0, 0, 1.8663, 1.8663, 4.9900, 0.3992, 0.1248, 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 (480, 1024, 1036, 1031, 11221, 1, 100, 4, N'SO68587', 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 (537, 1024, 1036, 1031, 11318, 1, 100, 1, N'SO68588', 1, 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, 1024, 1036, 1031, 11318, 1, 100, 1, N'SO68588', 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 (480, 1024, 1036, 1031, 11318, 1, 100, 1, N'SO68588', 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 (479, 1024, 1036, 1031, 11375, 1, 98, 10, N'SO68592', 1, 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, 1024, 1036, 1031, 11375, 1, 98, 10, N'SO68592', 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 (480, 1024, 1036, 1031, 11524, 1, 100, 4, N'SO68558', 1, 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 (475, 1024, 1036, 1031, 11640, 1, 19, 6, N'SO68572', 1, 1, 1, 69.9900, 69.9900, 0, 0, 26.1763, 26.1763, 69.9900, 5.5992, 1.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1024, 1036, 1031, 11721, 1, 100, 4, N'SO68590', 1, 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, 1024, 1036, 1031, 11721, 1, 100, 4, N'SO68590', 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 (480, 1024, 1036, 1031, 11721, 1, 100, 4, N'SO68590', 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 (217, 1024, 1036, 1031, 11736, 1, 100, 4, N'SO68557', 1, 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 (467, 1024, 1036, 1031, 11736, 1, 100, 4, N'SO68557', 2, 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 (478, 1025, 1037, 1032, 11131, 1, 19, 6, N'SO68646', 1, 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 (225, 1025, 1037, 1032, 11131, 1, 19, 6, N'SO68646', 2, 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 (477, 1025, 1037, 1032, 11131, 1, 19, 6, N'SO68646', 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 (529, 1025, 1037, 1032, 11186, 1, 100, 4, N'SO68635', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1025, 1037, 1032, 11207, 1, 100, 1, N'SO68636', 1, 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 (538, 1025, 1037, 1032, 11223, 1, 19, 6, N'SO68637', 1, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 1025, 1037, 1032, 11223, 1, 19, 6, N'SO68637', 2, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1025, 1037, 1032, 11223, 1, 19, 6, N'SO68637', 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 (363, 1025, 1037, 1032, 11251, 1, 19, 6, N'SO68660', 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, 1025, 1037, 1032, 11251, 1, 19, 6, N'SO68660', 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, 1025, 1037, 1032, 11251, 1, 19, 6, N'SO68660', 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, 1025, 1037, 1032, 11251, 1, 19, 6, N'SO68660', 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 (479, 1025, 1037, 1032, 11253, 1, 19, 6, N'SO68624', 1, 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, 1025, 1037, 1032, 11253, 1, 19, 6, N'SO68624', 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 (217, 1025, 1037, 1032, 11253, 1, 19, 6, N'SO68624', 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 (538, 1025, 1037, 1032, 11651, 1, 19, 6, N'SO68638', 1, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (530, 1026, 1038, 1033, 11566, 1, 100, 7, N'SO68711', 1, 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 (217, 1026, 1038, 1033, 11566, 1, 100, 7, N'SO68711', 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, 1026, 1038, 1033, 11566, 1, 100, 7, N'SO68711', 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 (528, 1026, 1038, 1033, 11638, 1, 100, 4, N'SO68712', 1, 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, 1026, 1038, 1033, 11638, 1, 100, 4, N'SO68712', 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 (222, 1026, 1038, 1033, 11638, 1, 100, 4, N'SO68712', 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 (480, 1026, 1038, 1033, 11638, 1, 100, 4, N'SO68689', 1, 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 (535, 1026, 1038, 1033, 11784, 1, 19, 6, N'SO68695', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1026, 1038, 1033, 11784, 1, 19, 6, N'SO68695', 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 (480, 1026, 1038, 1033, 11784, 2, 19, 6, N'SO68695', 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 (561, 1027, 1039, 1034, 11151, 1, 6, 9, N'SO68811', 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 (225, 1027, 1039, 1034, 11151, 1, 6, 9, N'SO68811', 2, 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 (575, 1027, 1039, 1034, 11423, 1, 100, 8, N'SO68805', 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 (225, 1027, 1039, 1034, 11423, 1, 100, 8, N'SO68805', 2, 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 (561, 1027, 1039, 1034, 11427, 1, 100, 8, N'SO68806', 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 (541, 1027, 1039, 1034, 11427, 1, 100, 8, N'SO68806', 2, 1, 1, 28.9900, 28.9900, 0, 0, 10.8423, 10.8423, 28.9900, 2.3192, 0.7248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (530, 1027, 1039, 1034, 11427, 1, 100, 8, N'SO68806', 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 (561, 1027, 1039, 1034, 11439, 1, 100, 7, N'SO68807', 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 (222, 1027, 1039, 1034, 11439, 1, 100, 7, N'SO68807', 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 (478, 1027, 1039, 1034, 11467, 1, 6, 9, N'SO68743', 1, 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, 1027, 1039, 1034, 11467, 1, 6, 9, N'SO68743', 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 (484, 1027, 1039, 1034, 11467, 1, 6, 9, N'SO68743', 3, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (474, 1027, 1039, 1034, 11619, 1, 19, 6, N'SO68762', 1, 1, 1, 69.9900, 69.9900, 0, 0, 26.1763, 26.1763, 69.9900, 5.5992, 1.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1027, 1039, 1034, 11619, 1, 19, 6, N'SO68762', 2, 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 (528, 1027, 1039, 1034, 11921, 1, 6, 9, N'SO68741', 1, 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 (485, 1027, 1039, 1034, 11921, 1, 6, 9, N'SO68741', 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 (535, 1028, 1040, 1035, 11200, 1, 19, 6, N'SO68833', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (538, 1028, 1040, 1035, 11500, 1, 19, 6, N'SO68830', 1, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1028, 1040, 1035, 11500, 1, 19, 6, N'SO68830', 2, 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 (222, 1028, 1040, 1035, 11770, 1, 100, 1, N'SO68827', 1, 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 (528, 1029, 1041, 1036, 11195, 1, 100, 1, N'SO68921', 1, 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, 1029, 1041, 1036, 11195, 1, 100, 1, N'SO68921', 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 (222, 1029, 1041, 1036, 11195, 1, 100, 1, N'SO68921', 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 (467, 1029, 1041, 1036, 11195, 1, 100, 1, N'SO68921', 4, 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 (237, 1029, 1041, 1036, 11330, 1, 19, 6, N'SO68888', 1, 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 (589, 1029, 1041, 1036, 11368, 1, 6, 9, N'SO68937', 1, 1, 1, 769.4900, 769.4900, 0, 0, 419.7784, 419.7784, 769.4900, 61.5592, 19.2373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1029, 1041, 1036, 11368, 1, 6, 9, N'SO68937', 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 (536, 1029, 1041, 1036, 11368, 1, 6, 9, N'SO68937', 3, 1, 1, 29.9900, 29.9900, 0, 0, 11.2163, 11.2163, 29.9900, 2.3992, 0.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1029, 1041, 1036, 11368, 1, 6, 9, N'SO68937', 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 (491, 1029, 1041, 1036, 11368, 1, 6, 9, N'SO68937', 5, 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 (573, 1029, 1041, 1036, 11428, 1, 100, 8, N'SO68949', 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 (530, 1029, 1041, 1036, 11428, 1, 100, 8, N'SO68949', 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 (541, 1029, 1041, 1036, 11428, 1, 100, 8, N'SO68949', 3, 1, 1, 28.9900, 28.9900, 0, 0, 10.8423, 10.8423, 28.9900, 2.3192, 0.7248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1029, 1041, 1036, 11428, 1, 100, 8, N'SO68949', 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 (484, 1029, 1041, 1036, 11502, 1, 19, 6, N'SO68887', 1, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (530, 1029, 1041, 1036, 11506, 1, 19, 6, N'SO68901', 1, 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, 1029, 1041, 1036, 11506, 1, 19, 6, N'SO68901', 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 (528, 1029, 1041, 1036, 11631, 1, 19, 6, N'SO68907', 1, 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 (535, 1029, 1041, 1036, 11631, 1, 19, 6, N'SO68907', 2, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1029, 1041, 1036, 11631, 1, 19, 6, N'SO68907', 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 (477, 1030, 1042, 1037, 11262, 1, 19, 6, N'SO68978', 1, 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 (529, 1030, 1042, 1037, 11501, 1, 19, 6, N'SO68967', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1030, 1042, 1037, 11501, 1, 19, 6, N'SO68967', 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 (465, 1030, 1042, 1037, 11501, 1, 19, 6, N'SO68967', 3, 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 (484, 1030, 1042, 1037, 11506, 1, 19, 6, N'SO68954', 1, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (467, 1030, 1042, 1037, 11566, 1, 100, 7, N'SO68992', 1, 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 (530, 1030, 1042, 1037, 11566, 1, 100, 7, N'SO68992', 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 (535, 1030, 1042, 1037, 11802, 1, 19, 6, N'SO68969', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1030, 1042, 1037, 11802, 1, 19, 6, N'SO68969', 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 (528, 1030, 1042, 1037, 11862, 1, 100, 1, N'SO68994', 1, 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, 1030, 1042, 1037, 11862, 1, 100, 1, N'SO68994', 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 (480, 1030, 1042, 1037, 11862, 1, 100, 1, N'SO68994', 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 (484, 1030, 1042, 1037, 11867, 1, 100, 4, N'SO68953', 1, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1030, 1042, 1037, 11922, 1, 19, 6, N'SO68974', 1, 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, 1030, 1042, 1037, 11922, 1, 19, 6, N'SO68974', 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 (569, 1031, 1043, 1038, 11018, 1, 6, 9, N'SO69087', 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 (479, 1031, 1043, 1038, 11018, 1, 6, 9, N'SO69087', 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, 1031, 1043, 1038, 11018, 1, 6, 9, N'SO69087', 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, 1031, 1043, 1038, 11018, 1, 6, 9, N'SO69087', 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 (571, 1031, 1043, 1038, 11027, 1, 6, 9, N'SO69088', 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 (530, 1031, 1043, 1038, 11027, 1, 6, 9, N'SO69088', 2, 1, 1, 4.9900, 4.9900, 0, 0, 1.8663, 1.8663, 4.9900, 0.3992, 0.1248, 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 (541, 1031, 1043, 1038, 11027, 1, 6, 9, N'SO69088', 3, 1, 1, 28.9900, 28.9900, 0, 0, 10.8423, 10.8423, 28.9900, 2.3192, 0.7248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1031, 1043, 1038, 11027, 2, 6, 9, N'SO69088', 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 (529, 1031, 1043, 1038, 11262, 1, 19, 6, N'SO69033', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1031, 1043, 1038, 11262, 1, 19, 6, N'SO69033', 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 (565, 1032, 1044, 1039, 11025, 1, 6, 9, N'SO69157', 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 (488, 1032, 1044, 1039, 11025, 1, 6, 9, N'SO69157', 2, 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 (475, 1032, 1044, 1039, 11185, 1, 19, 6, N'SO69111', 1, 1, 1, 69.9900, 69.9900, 0, 0, 26.1763, 26.1763, 69.9900, 5.5992, 1.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1032, 1044, 1039, 11185, 1, 19, 6, N'SO69111', 2, 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 (480, 1032, 1044, 1039, 11228, 1, 100, 4, N'SO69106', 1, 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 (529, 1032, 1044, 1039, 11277, 1, 19, 6, N'SO69104', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1032, 1044, 1039, 11277, 1, 19, 6, N'SO69104', 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, 1032, 1044, 1039, 11756, 1, 6, 9, N'SO69159', 1, 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 (573, 1032, 1044, 1039, 11756, 1, 6, 9, N'SO69159', 2, 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 (528, 1032, 1044, 1039, 11808, 1, 19, 6, N'SO69123', 1, 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, 1032, 1044, 1039, 11808, 1, 19, 6, N'SO69123', 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 (486, 1032, 1044, 1039, 11808, 1, 19, 6, N'SO69123', 3, 1, 1, 159.0000, 159.0000, 0, 0, 59.4660, 59.4660, 159.0000, 12.7200, 3.9750, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1033, 1045, 1040, 11019, 1, 19, 6, N'SO69177', 1, 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 (535, 1033, 1045, 1040, 11149, 1, 6, 9, N'SO69162', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1033, 1045, 1040, 11285, 1, 100, 4, N'SO69180', 1, 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 (530, 1033, 1045, 1040, 11300, 1, 19, 6, N'SO69182', 1, 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 (480, 1033, 1045, 1040, 11300, 2, 19, 6, N'SO69182', 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 (486, 1033, 1045, 1040, 11300, 1, 19, 6, N'SO69182', 3, 1, 1, 159.0000, 159.0000, 0, 0, 59.4660, 59.4660, 159.0000, 12.7200, 3.9750, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (541, 1033, 1045, 1040, 11391, 1, 100, 8, N'SO69199', 1, 1, 1, 28.9900, 28.9900, 0, 0, 10.8423, 10.8423, 28.9900, 2.3192, 0.7248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (530, 1033, 1045, 1040, 11391, 1, 100, 8, N'SO69199', 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 (541, 1033, 1045, 1040, 11396, 1, 100, 8, N'SO69200', 1, 1, 1, 28.9900, 28.9900, 0, 0, 10.8423, 10.8423, 28.9900, 2.3192, 0.7248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (564, 1033, 1045, 1040, 11472, 1, 6, 9, N'SO69243', 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 (217, 1033, 1045, 1040, 11472, 1, 6, 9, N'SO69243', 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 (467, 1033, 1045, 1040, 11472, 2, 6, 9, N'SO69243', 3, 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 (477, 1033, 1045, 1040, 11495, 1, 100, 8, N'SO69212', 1, 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 (479, 1033, 1045, 1040, 11495, 1, 100, 8, N'SO69212', 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 (530, 1033, 1045, 1040, 11711, 1, 19, 6, N'SO69181', 1, 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 (535, 1034, 1046, 1041, 11176, 1, 19, 6, N'SO69262', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1034, 1046, 1041, 11176, 1, 19, 6, N'SO69262', 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 (217, 1034, 1046, 1041, 11176, 1, 19, 6, N'SO69262', 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 (228, 1034, 1046, 1041, 11176, 1, 19, 6, N'SO69262', 4, 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 (480, 1034, 1046, 1041, 11518, 1, 100, 1, N'SO69258', 1, 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 (484, 1034, 1046, 1041, 11518, 1, 100, 1, N'SO69258', 2, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 1034, 1046, 1041, 11519, 1, 19, 6, N'SO69259', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (539, 1034, 1046, 1041, 11519, 1, 19, 6, N'SO69259', 2, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1034, 1046, 1041, 11519, 1, 19, 6, N'SO69259', 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 (529, 1035, 1047, 1042, 11091, 1, 19, 6, N'SO69332', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (540, 1035, 1047, 1042, 11091, 1, 19, 6, N'SO69332', 2, 1, 1, 32.6000, 32.6000, 0, 0, 12.1924, 12.1924, 32.6000, 2.6080, 0.8150, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1035, 1047, 1042, 11091, 1, 19, 6, N'SO69332', 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 (530, 1035, 1047, 1042, 11185, 1, 19, 6, N'SO69327', 1, 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 (480, 1035, 1047, 1042, 11185, 1, 19, 6, N'SO69327', 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 (484, 1035, 1047, 1042, 11185, 1, 19, 6, N'SO69327', 3, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (530, 1035, 1047, 1042, 11566, 1, 100, 7, N'SO69357', 1, 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 (480, 1035, 1047, 1042, 11566, 2, 100, 7, N'SO69357', 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 (225, 1035, 1047, 1042, 11586, 1, 98, 10, N'SO69362', 1, 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 (228, 1036, 1048, 1043, 11045, 1, 6, 9, N'SO69572', 1, 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 (571, 1036, 1048, 1043, 11046, 1, 6, 9, N'SO69653', 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 (465, 1036, 1048, 1043, 11046, 1, 6, 9, N'SO69653', 2, 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 (214, 1036, 1048, 1043, 11046, 1, 6, 9, N'SO69653', 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 (529, 1036, 1048, 1043, 11049, 1, 100, 4, N'SO69583', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1036, 1048, 1043, 11049, 1, 100, 4, N'SO69583', 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 (530, 1036, 1048, 1043, 11176, 1, 19, 6, N'SO69587', 1, 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, 1036, 1048, 1043, 11176, 1, 19, 6, N'SO69587', 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 (538, 1036, 1048, 1043, 11211, 1, 19, 6, N'SO69589', 1, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1036, 1048, 1043, 11211, 1, 19, 6, N'SO69589', 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 (537, 1036, 1048, 1043, 11219, 1, 100, 1, N'SO69614', 1, 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, 1036, 1048, 1043, 11219, 1, 100, 1, N'SO69614', 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 (563, 1036, 1048, 1043, 11241, 1, 100, 7, N'SO69624', 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 (222, 1036, 1048, 1043, 11241, 1, 100, 7, N'SO69624', 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, 1036, 1048, 1043, 11241, 1, 100, 7, N'SO69624', 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 (586, 1036, 1048, 1043, 11357, 1, 6, 9, N'SO69654', 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 (536, 1036, 1048, 1043, 11712, 1, 19, 6, N'SO69595', 1, 1, 1, 29.9900, 29.9900, 0, 0, 11.2163, 11.2163, 29.9900, 2.3992, 0.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1037, 1049, 1044, 11185, 1, 19, 6, N'SO69671', 1, 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 (535, 1037, 1049, 1044, 11185, 1, 19, 6, N'SO69671', 2, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1037, 1049, 1044, 11185, 1, 19, 6, N'SO69671', 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 (480, 1037, 1049, 1044, 11215, 1, 19, 6, N'SO69670', 1, 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 (484, 1037, 1049, 1044, 11287, 1, 19, 6, N'SO69660', 1, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 1037, 1049, 1044, 11330, 1, 19, 6, N'SO69674', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (540, 1037, 1049, 1044, 11330, 1, 19, 6, N'SO69674', 2, 1, 1, 32.6000, 32.6000, 0, 0, 12.1924, 12.1924, 32.6000, 2.6080, 0.8150, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1037, 1049, 1044, 11330, 1, 19, 6, N'SO69674', 3, 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 (537, 1037, 1049, 1044, 11621, 1, 100, 1, N'SO69700', 1, 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, 1037, 1049, 1044, 11621, 1, 100, 1, N'SO69700', 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 (485, 1037, 1049, 1044, 11621, 1, 100, 1, N'SO69700', 3, 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 (225, 1037, 1049, 1044, 11621, 1, 100, 1, N'SO69700', 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 (228, 1037, 1049, 1044, 11621, 1, 100, 1, N'SO69700', 5, 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 (540, 1037, 1049, 1044, 11868, 1, 19, 6, N'SO69677', 1, 1, 1, 32.6000, 32.6000, 0, 0, 12.1924, 12.1924, 32.6000, 2.6080, 0.8150, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 1037, 1049, 1044, 11868, 1, 19, 6, N'SO69677', 2, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1037, 1049, 1044, 11868, 1, 19, 6, N'SO69677', 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 (479, 1037, 1049, 1044, 11974, 1, 100, 4, N'SO69659', 1, 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, 1037, 1049, 1044, 11974, 1, 100, 4, N'SO69659', 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 (465, 1037, 1049, 1044, 11974, 1, 100, 4, N'SO69659', 3, 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 (541, 1038, 1050, 1045, 11300, 1, 19, 6, N'SO69740', 1, 1, 1, 28.9900, 28.9900, 0, 0, 10.8423, 10.8423, 28.9900, 2.3192, 0.7248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (530, 1038, 1050, 1045, 11300, 1, 19, 6, N'SO69740', 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 (487, 1038, 1050, 1045, 11300, 1, 19, 6, N'SO69740', 3, 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 (569, 1038, 1050, 1045, 11356, 1, 6, 9, N'SO69791', 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 (477, 1038, 1050, 1045, 11356, 1, 6, 9, N'SO69791', 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 (479, 1038, 1050, 1045, 11356, 1, 6, 9, N'SO69791', 3, 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 (214, 1038, 1050, 1045, 11356, 1, 6, 9, N'SO69791', 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 (214, 1038, 1050, 1045, 11632, 1, 19, 6, N'SO69739', 1, 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 (528, 1039, 1051, 1046, 11188, 1, 100, 4, N'SO69830', 1, 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, 1039, 1051, 1046, 11188, 1, 100, 4, N'SO69830', 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 (214, 1039, 1051, 1046, 11188, 1, 100, 4, N'SO69830', 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 (529, 1039, 1051, 1046, 11222, 1, 100, 4, N'SO69805', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (483, 1039, 1051, 1046, 11222, 1, 100, 4, N'SO69805', 2, 1, 1, 120.0000, 120.0000, 0, 0, 44.8800, 44.8800, 120.0000, 9.6000, 3.0000, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1039, 1051, 1046, 11222, 1, 100, 4, N'SO69805', 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 (585, 1039, 1051, 1046, 11417, 1, 100, 7, N'SO69841', 1, 1, 1, 742.3500, 742.3500, 0, 0, 461.4448, 461.4448, 742.3500, 59.3880, 18.5588, 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 (477, 1039, 1051, 1046, 11417, 1, 100, 7, N'SO69841', 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 (479, 1039, 1051, 1046, 11417, 1, 100, 7, N'SO69841', 3, 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 (490, 1039, 1051, 1046, 11476, 1, 98, 10, N'SO69833', 1, 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 (537, 1039, 1051, 1046, 11527, 1, 100, 4, N'SO69831', 1, 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, 1039, 1051, 1046, 11527, 1, 100, 4, N'SO69831', 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 (573, 1039, 1051, 1046, 11610, 1, 98, 10, N'SO69844', 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 (477, 1039, 1051, 1046, 11610, 1, 98, 10, N'SO69844', 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 (479, 1039, 1051, 1046, 11610, 1, 98, 10, N'SO69844', 3, 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 (225, 1039, 1051, 1046, 11748, 1, 19, 6, N'SO69812', 1, 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 (540, 1039, 1051, 1046, 11748, 1, 19, 6, N'SO69812', 2, 1, 1, 32.6000, 32.6000, 0, 0, 12.1924, 12.1924, 32.6000, 2.6080, 0.8150, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 1039, 1051, 1046, 11823, 1, 19, 6, N'SO69813', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (540, 1039, 1051, 1046, 11823, 1, 19, 6, N'SO69813', 2, 1, 1, 32.6000, 32.6000, 0, 0, 12.1924, 12.1924, 32.6000, 2.6080, 0.8150, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (535, 1039, 1051, 1046, 11966, 1, 6, 9, N'SO69796', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (541, 1040, 1052, 1047, 11386, 1, 100, 8, N'SO69900', 1, 1, 1, 28.9900, 28.9900, 0, 0, 10.8423, 10.8423, 28.9900, 2.3192, 0.7248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (530, 1040, 1052, 1047, 11386, 1, 100, 8, N'SO69900', 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 (214, 1040, 1052, 1047, 11386, 1, 100, 8, N'SO69900', 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 (537, 1040, 1052, 1047, 11631, 1, 19, 6, N'SO69906', 1, 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, 1040, 1052, 1047, 11631, 1, 19, 6, N'SO69906', 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 (214, 1040, 1052, 1047, 11631, 1, 19, 6, N'SO69906', 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 (537, 1040, 1052, 1047, 11879, 1, 100, 1, N'SO69907', 1, 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, 1040, 1052, 1047, 11879, 1, 100, 1, N'SO69907', 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 (222, 1040, 1052, 1047, 11879, 1, 100, 1, N'SO69907', 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 (463, 1040, 1052, 1047, 11879, 1, 100, 1, N'SO69907', 4, 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 (479, 1040, 1052, 1047, 11941, 1, 100, 1, N'SO69867', 1, 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, 1040, 1052, 1047, 11941, 1, 100, 1, N'SO69867', 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 (487, 1040, 1052, 1047, 11941, 1, 100, 1, N'SO69867', 3, 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 (565, 1041, 1053, 1048, 11126, 1, 6, 9, N'SO70014', 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 (530, 1041, 1053, 1048, 11126, 1, 6, 9, N'SO70014', 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 (541, 1041, 1053, 1048, 11126, 1, 6, 9, N'SO70014', 3, 1, 1, 28.9900, 28.9900, 0, 0, 10.8423, 10.8423, 28.9900, 2.3192, 0.7248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1041, 1053, 1048, 11126, 2, 6, 9, N'SO70014', 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 (570, 1041, 1053, 1048, 11134, 1, 6, 9, N'SO70015', 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 (585, 1041, 1053, 1048, 11175, 1, 100, 4, N'SO69993', 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 (530, 1041, 1053, 1048, 11175, 1, 100, 4, N'SO69993', 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 (541, 1041, 1053, 1048, 11175, 1, 100, 4, N'SO69993', 3, 1, 1, 28.9900, 28.9900, 0, 0, 10.8423, 10.8423, 28.9900, 2.3192, 0.7248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1041, 1053, 1048, 11175, 1, 100, 4, N'SO69993', 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 (479, 1041, 1053, 1048, 11175, 1, 100, 4, N'SO69993', 5, 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 (478, 1041, 1053, 1048, 11276, 1, 19, 6, N'SO69965', 1, 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, 1041, 1053, 1048, 11276, 1, 19, 6, N'SO69965', 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 (222, 1041, 1053, 1048, 11276, 1, 19, 6, N'SO69965', 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 (465, 1041, 1053, 1048, 11276, 1, 19, 6, N'SO69965', 4, 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 (477, 1041, 1053, 1048, 11277, 1, 19, 6, N'SO69966', 1, 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, 1041, 1053, 1048, 11277, 1, 19, 6, N'SO69966', 2, 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 (237, 1041, 1053, 1048, 11331, 1, 19, 6, N'SO69959', 1, 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 (584, 1041, 1053, 1048, 11422, 1, 98, 10, N'SO70013', 1, 1, 1, 539.9900, 539.9900, 0, 0, 343.6496, 343.6496, 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 (477, 1041, 1053, 1048, 11422, 1, 98, 10, N'SO70013', 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 (479, 1041, 1053, 1048, 11422, 1, 98, 10, N'SO70013', 3, 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 (225, 1041, 1053, 1048, 11422, 1, 98, 10, N'SO70013', 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 (537, 1041, 1053, 1048, 11880, 1, 100, 1, N'SO69977', 1, 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, 1041, 1053, 1048, 11880, 1, 100, 1, N'SO69977', 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 (480, 1041, 1053, 1048, 11880, 1, 100, 1, N'SO69977', 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 (528, 1041, 1053, 1048, 11931, 1, 100, 4, N'SO69978', 1, 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, 1041, 1053, 1048, 11931, 1, 100, 4, N'SO69978', 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 (214, 1041, 1053, 1048, 11931, 1, 100, 4, N'SO69978', 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 (234, 1041, 1053, 1048, 11931, 1, 100, 4, N'SO69978', 4, 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 (463, 1041, 1053, 1048, 11931, 1, 100, 4, N'SO69978', 5, 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 (363, 1042, 1054, 1049, 11044, 1, 6, 9, N'SO70074', 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, 1042, 1054, 1049, 11044, 1, 6, 9, N'SO70074', 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 (567, 1042, 1054, 1049, 11047, 1, 6, 9, N'SO70087', 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 (477, 1042, 1054, 1049, 11121, 1, 6, 9, N'SO70025', 1, 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, 1042, 1054, 1049, 11121, 1, 6, 9, N'SO70025', 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 (214, 1042, 1054, 1049, 11497, 1, 98, 10, N'SO70059', 1, 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 (585, 1043, 1055, 1050, 11033, 1, 6, 9, N'SO70163', 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 (479, 1043, 1055, 1050, 11033, 1, 6, 9, N'SO70163', 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 (225, 1043, 1055, 1050, 11033, 1, 6, 9, N'SO70163', 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 (477, 1043, 1055, 1050, 11033, 1, 6, 9, N'SO70163', 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 (480, 1043, 1055, 1050, 11223, 1, 19, 6, N'SO70103', 1, 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 (530, 1043, 1055, 1050, 11331, 1, 19, 6, N'SO70104', 1, 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 (480, 1043, 1055, 1050, 11331, 2, 19, 6, N'SO70104', 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 (577, 1043, 1055, 1050, 11496, 1, 98, 10, N'SO70146', 1, 1, 1, 1214.8500, 1214.8500, 0, 0, 755.1508, 755.1508, 1214.8500, 97.1880, 30.3713, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1043, 1055, 1050, 11787, 1, 100, 4, N'SO70126', 1, 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, 1043, 1055, 1050, 11787, 1, 100, 4, N'SO70126', 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 (217, 1043, 1055, 1050, 11787, 1, 100, 4, N'SO70126', 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 (491, 1043, 1055, 1050, 11805, 1, 100, 4, N'SO70099', 1, 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 (567, 1044, 1056, 1051, 11082, 1, 100, 4, N'SO70231', 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 (479, 1044, 1056, 1051, 11082, 1, 100, 4, N'SO70231', 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, 1044, 1056, 1051, 11082, 1, 100, 4, N'SO70231', 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 (465, 1044, 1056, 1051, 11082, 1, 100, 4, N'SO70231', 4, 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 (537, 1044, 1056, 1051, 11091, 1, 19, 6, N'SO70203', 1, 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 (567, 1044, 1056, 1051, 11191, 1, 100, 4, N'SO70229', 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 (225, 1044, 1056, 1051, 11191, 1, 100, 4, N'SO70229', 2, 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 (491, 1044, 1056, 1051, 11191, 1, 100, 4, N'SO70229', 3, 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 (540, 1044, 1056, 1051, 11277, 1, 19, 6, N'SO70176', 1, 1, 1, 32.6000, 32.6000, 0, 0, 12.1924, 12.1924, 32.6000, 2.6080, 0.8150, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1044, 1056, 1051, 11277, 1, 19, 6, N'SO70176', 2, 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 (530, 1044, 1056, 1051, 11619, 1, 19, 6, N'SO70175', 1, 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 (487, 1044, 1056, 1051, 11619, 1, 19, 6, N'SO70175', 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 (484, 1044, 1056, 1051, 11619, 1, 19, 6, N'SO70175', 3, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1044, 1056, 1051, 11728, 1, 100, 1, N'SO70205', 1, 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, 1044, 1056, 1051, 11728, 1, 100, 1, N'SO70205', 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 (217, 1044, 1056, 1051, 11728, 1, 100, 1, N'SO70205', 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 (528, 1044, 1056, 1051, 11841, 1, 19, 6, N'SO70206', 1, 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, 1044, 1056, 1051, 11841, 1, 19, 6, N'SO70206', 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 (480, 1044, 1056, 1051, 11841, 1, 19, 6, N'SO70206', 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 (540, 1045, 1057, 1052, 11091, 1, 19, 6, N'SO70264', 1, 1, 1, 32.6000, 32.6000, 0, 0, 12.1924, 12.1924, 32.6000, 2.6080, 0.8150, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1045, 1057, 1052, 11091, 1, 19, 6, N'SO70264', 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 (528, 1045, 1057, 1052, 11148, 1, 6, 9, N'SO70251', 1, 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 (535, 1045, 1057, 1052, 11148, 1, 6, 9, N'SO70251', 2, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1045, 1057, 1052, 11148, 2, 6, 9, N'SO70251', 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 (528, 1045, 1057, 1052, 11159, 1, 100, 4, N'SO70285', 1, 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, 1045, 1057, 1052, 11159, 1, 100, 4, N'SO70285', 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 (480, 1045, 1057, 1052, 11159, 1, 100, 4, N'SO70285', 3, 1, 1, 2.2900, 2.2900, 0, 0, 0.8565, 0.8565, 2.2900, 0.1832, 0.0573, 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 (570, 1045, 1057, 1052, 11171, 1, 100, 4, N'SO70299', 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 (479, 1045, 1057, 1052, 11171, 1, 100, 4, N'SO70299', 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, 1045, 1057, 1052, 11171, 1, 100, 4, N'SO70299', 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 (237, 1045, 1057, 1052, 11371, 1, 6, 9, N'SO70254', 1, 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 (479, 1045, 1057, 1052, 11390, 1, 100, 7, N'SO70289', 1, 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, 1045, 1057, 1052, 11390, 1, 100, 7, N'SO70289', 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 (222, 1045, 1057, 1052, 11390, 1, 100, 7, N'SO70289', 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 (537, 1045, 1057, 1052, 11510, 1, 19, 6, N'SO70284', 1, 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, 1045, 1057, 1052, 11510, 1, 19, 6, N'SO70284', 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 (222, 1045, 1057, 1052, 11510, 1, 19, 6, N'SO70284', 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 (463, 1045, 1057, 1052, 11510, 1, 19, 6, N'SO70284', 4, 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 (528, 1045, 1057, 1052, 11521, 1, 100, 1, N'SO70287', 1, 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, 1045, 1057, 1052, 11521, 1, 100, 1, N'SO70287', 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 (480, 1045, 1057, 1052, 11521, 1, 100, 1, N'SO70287', 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 (222, 1045, 1057, 1052, 11950, 1, 100, 4, N'SO70250', 1, 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 (570, 1046, 1058, 1053, 11032, 1, 6, 9, N'SO70373', 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 (225, 1046, 1058, 1053, 11032, 1, 6, 9, N'SO70373', 2, 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 (572, 1046, 1058, 1053, 11044, 1, 6, 9, N'SO70374', 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 (479, 1046, 1058, 1053, 11044, 1, 6, 9, N'SO70374', 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, 1046, 1058, 1053, 11044, 1, 6, 9, N'SO70374', 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 (490, 1046, 1058, 1053, 11044, 1, 6, 9, N'SO70374', 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 (572, 1046, 1058, 1053, 11083, 2, 100, 4, N'SO70362', 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 (540, 1046, 1058, 1053, 11200, 1, 19, 6, N'SO70329', 1, 1, 1, 32.6000, 32.6000, 0, 0, 12.1924, 12.1924, 32.6000, 2.6080, 0.8150, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (530, 1046, 1058, 1053, 11276, 1, 19, 6, N'SO70327', 1, 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, 1046, 1058, 1053, 11276, 1, 19, 6, N'SO70327', 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 (480, 1046, 1058, 1053, 11318, 1, 100, 1, N'SO70325', 1, 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 (566, 1047, 1059, 1054, 11030, 1, 6, 9, N'SO70449', 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 (225, 1047, 1059, 1054, 11030, 1, 6, 9, N'SO70449', 2, 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 (475, 1047, 1059, 1054, 11501, 1, 19, 6, N'SO70396', 1, 1, 1, 69.9900, 69.9900, 0, 0, 26.1763, 26.1763, 69.9900, 5.5992, 1.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1047, 1059, 1054, 11501, 1, 19, 6, N'SO70396', 2, 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 (537, 1047, 1059, 1054, 11627, 1, 100, 4, N'SO70415', 1, 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, 1047, 1059, 1054, 11627, 1, 100, 4, N'SO70415', 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, 1047, 1059, 1054, 11639, 1, 100, 4, N'SO70417', 1, 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, 1047, 1059, 1054, 11639, 1, 100, 4, N'SO70417', 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 (217, 1047, 1059, 1054, 11639, 1, 100, 4, N'SO70417', 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 (237, 1047, 1059, 1054, 11639, 1, 100, 4, N'SO70417', 4, 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 (528, 1047, 1059, 1054, 11722, 1, 100, 1, N'SO70416', 1, 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, 1047, 1059, 1054, 11722, 1, 100, 1, N'SO70416', 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 (214, 1047, 1059, 1054, 11722, 1, 100, 1, N'SO70416', 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 (214, 1047, 1059, 1054, 11746, 1, 100, 1, N'SO70388', 1, 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 (573, 1047, 1059, 1054, 11901, 1, 6, 9, N'SO70450', 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 (541, 1047, 1059, 1054, 11901, 1, 6, 9, N'SO70450', 2, 1, 1, 28.9900, 28.9900, 0, 0, 10.8423, 10.8423, 28.9900, 2.3192, 0.7248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (530, 1047, 1059, 1054, 11901, 1, 6, 9, N'SO70450', 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 (487, 1047, 1059, 1054, 11901, 1, 6, 9, N'SO70450', 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 (528, 1047, 1059, 1054, 11972, 1, 100, 1, N'SO70418', 1, 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, 1047, 1059, 1054, 11972, 1, 100, 1, N'SO70418', 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 (480, 1047, 1059, 1054, 11972, 1, 100, 1, N'SO70418', 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 (567, 1048, 1060, 1055, 11034, 1, 6, 9, N'SO70521', 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 (489, 1048, 1060, 1055, 11034, 1, 6, 9, N'SO70521', 2, 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 (528, 1048, 1060, 1055, 11118, 1, 6, 9, N'SO70457', 1, 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 (535, 1048, 1060, 1055, 11118, 1, 6, 9, N'SO70457', 2, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (484, 1048, 1060, 1055, 11118, 1, 6, 9, N'SO70457', 3, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1048, 1060, 1055, 11204, 1, 100, 1, N'SO70495', 1, 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, 1048, 1060, 1055, 11204, 1, 100, 1, N'SO70495', 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 (222, 1048, 1060, 1055, 11204, 1, 100, 1, N'SO70495', 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 (528, 1048, 1060, 1055, 11211, 1, 19, 6, N'SO70476', 1, 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 (536, 1048, 1060, 1055, 11211, 1, 19, 6, N'SO70476', 2, 1, 1, 29.9900, 29.9900, 0, 0, 11.2163, 11.2163, 29.9900, 2.3992, 0.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1048, 1060, 1055, 11211, 1, 19, 6, N'SO70476', 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 (567, 1048, 1060, 1055, 11420, 1, 100, 7, N'SO70507', 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, 1048, 1060, 1055, 11420, 1, 100, 7, N'SO70507', 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 (537, 1048, 1060, 1055, 11507, 1, 19, 6, N'SO70496', 1, 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 (537, 1048, 1060, 1055, 11619, 1, 19, 6, N'SO70494', 1, 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, 1048, 1060, 1055, 11619, 1, 19, 6, N'SO70494', 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 (490, 1048, 1060, 1055, 11645, 1, 100, 1, N'SO70469', 1, 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 (222, 1048, 1060, 1055, 11958, 1, 100, 1, N'SO70453', 1, 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 (231, 1048, 1060, 1055, 11958, 1, 100, 1, N'SO70453', 2, 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 (537, 1048, 1060, 1055, 11959, 1, 100, 4, N'SO70498', 1, 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, 1048, 1060, 1055, 11959, 1, 100, 4, N'SO70498', 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 (471, 1048, 1060, 1055, 11959, 1, 100, 4, N'SO70498', 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 (535, 1048, 1060, 1055, 11987, 1, 6, 9, N'SO70456', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1048, 1060, 1055, 11987, 1, 6, 9, N'SO70456', 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 (222, 1048, 1060, 1055, 11987, 1, 6, 9, N'SO70456', 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 (465, 1048, 1060, 1055, 11987, 1, 6, 9, N'SO70456', 4, 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 (569, 1049, 1061, 1056, 11029, 1, 6, 9, N'SO70593', 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 (479, 1049, 1061, 1056, 11029, 1, 6, 9, N'SO70593', 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, 1049, 1061, 1056, 11029, 1, 6, 9, N'SO70593', 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 (572, 1049, 1061, 1056, 11039, 2, 6, 9, N'SO70594', 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 (541, 1049, 1061, 1056, 11039, 1, 6, 9, N'SO70594', 2, 1, 1, 28.9900, 28.9900, 0, 0, 10.8423, 10.8423, 28.9900, 2.3192, 0.7248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (530, 1049, 1061, 1056, 11039, 1, 6, 9, N'SO70594', 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, 1049, 1061, 1056, 11039, 1, 6, 9, N'SO70594', 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 (529, 1049, 1061, 1056, 11161, 1, 100, 4, N'SO70532', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1049, 1061, 1056, 11161, 1, 100, 4, N'SO70532', 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 (535, 1049, 1061, 1056, 11223, 1, 19, 6, N'SO70535', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1049, 1061, 1056, 11223, 1, 19, 6, N'SO70535', 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 (214, 1049, 1061, 1056, 11287, 1, 19, 6, N'SO70525', 1, 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 (489, 1049, 1061, 1056, 11287, 1, 19, 6, N'SO70525', 2, 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 (528, 1049, 1061, 1056, 11331, 1, 19, 6, N'SO70534', 1, 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 (535, 1049, 1061, 1056, 11331, 1, 19, 6, N'SO70534', 2, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1049, 1061, 1056, 11331, 1, 19, 6, N'SO70534', 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 (528, 1049, 1061, 1056, 11498, 1, 19, 6, N'SO70559', 1, 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, 1049, 1061, 1056, 11498, 1, 19, 6, N'SO70559', 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 (214, 1049, 1061, 1056, 11498, 1, 19, 6, N'SO70559', 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 (537, 1049, 1061, 1056, 11518, 1, 100, 1, N'SO70560', 1, 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, 1049, 1061, 1056, 11518, 1, 100, 1, N'SO70560', 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, 1049, 1061, 1056, 11518, 1, 100, 1, N'SO70560', 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, 1049, 1061, 1056, 11518, 1, 100, 1, N'SO70560', 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 (560, 1049, 1061, 1056, 11548, 1, 98, 10, N'SO70572', 1, 1, 1, 1214.8500, 1214.8500, 0, 0, 755.1508, 755.1508, 1214.8500, 97.1880, 30.3713, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1049, 1061, 1056, 11548, 1, 98, 10, N'SO70572', 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 (479, 1049, 1061, 1056, 11548, 1, 98, 10, N'SO70572', 3, 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 (217, 1049, 1061, 1056, 11548, 1, 98, 10, N'SO70572', 4, 1, 1, 34.9900, 34.9900, 0, 0, 13.0863, 13.0863, 34.9900, 2.7992, 0.8748, 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 (538, 1049, 1061, 1056, 11566, 1, 100, 7, N'SO70555', 1, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1049, 1061, 1056, 11566, 1, 100, 7, N'SO70555', 2, 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 (540, 1049, 1061, 1056, 11869, 1, 19, 6, N'SO70538', 1, 1, 1, 32.6000, 32.6000, 0, 0, 12.1924, 12.1924, 32.6000, 2.6080, 0.8150, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 1049, 1061, 1056, 11869, 1, 19, 6, N'SO70538', 2, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1049, 1061, 1056, 11869, 1, 19, 6, N'SO70538', 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 (463, 1049, 1061, 1056, 11869, 1, 19, 6, N'SO70538', 4, 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 (566, 1050, 1062, 1057, 11038, 1, 6, 9, N'SO70671', 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 (353, 1050, 1062, 1057, 11046, 2, 6, 9, N'SO70651', 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 (483, 1050, 1062, 1057, 11046, 1, 6, 9, N'SO70651', 2, 1, 1, 120.0000, 120.0000, 0, 0, 44.8800, 44.8800, 120.0000, 9.6000, 3.0000, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (569, 1050, 1062, 1057, 11088, 1, 100, 4, N'SO70654', 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 (477, 1050, 1062, 1057, 11088, 1, 100, 4, N'SO70654', 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 (479, 1050, 1062, 1057, 11088, 1, 100, 4, N'SO70654', 3, 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 (491, 1050, 1062, 1057, 11088, 1, 100, 4, N'SO70654', 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 (490, 1050, 1062, 1057, 11176, 1, 19, 6, N'SO70606', 1, 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 (225, 1050, 1062, 1057, 11176, 1, 19, 6, N'SO70606', 2, 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 (480, 1050, 1062, 1057, 11231, 1, 100, 1, N'SO70607', 1, 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 (535, 1050, 1062, 1057, 11262, 1, 19, 6, N'SO70609', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1050, 1062, 1057, 11262, 1, 19, 6, N'SO70609', 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 (480, 1050, 1062, 1057, 11262, 2, 19, 6, N'SO70609', 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 (540, 1050, 1062, 1057, 11276, 1, 19, 6, N'SO70615', 1, 1, 1, 32.6000, 32.6000, 0, 0, 12.1924, 12.1924, 32.6000, 2.6080, 0.8150, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (538, 1050, 1062, 1057, 11566, 1, 100, 7, N'SO70631', 1, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 1050, 1062, 1057, 11566, 1, 100, 7, N'SO70631', 2, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (535, 1050, 1062, 1057, 11632, 1, 19, 6, N'SO70616', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1050, 1062, 1057, 11632, 1, 19, 6, N'SO70616', 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 (528, 1050, 1062, 1057, 11763, 1, 6, 9, N'SO70598', 1, 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 (535, 1050, 1062, 1057, 11763, 1, 6, 9, N'SO70598', 2, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (484, 1050, 1062, 1057, 11763, 1, 6, 9, N'SO70598', 3, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1050, 1062, 1057, 11860, 1, 100, 4, N'SO70605', 1, 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, 1050, 1062, 1057, 11951, 1, 6, 9, N'SO70600', 1, 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 (568, 1051, 1063, 1058, 11031, 2, 6, 9, N'SO70748', 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 (477, 1051, 1063, 1058, 11031, 1, 6, 9, N'SO70748', 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 (479, 1051, 1063, 1058, 11031, 1, 6, 9, N'SO70748', 3, 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 (480, 1051, 1063, 1058, 11211, 1, 19, 6, N'SO70685', 1, 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 (537, 1051, 1063, 1058, 11232, 1, 100, 1, N'SO70702', 1, 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, 1051, 1063, 1058, 11232, 1, 100, 1, N'SO70702', 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 (541, 1051, 1063, 1058, 11287, 1, 19, 6, N'SO70687', 1, 1, 1, 28.9900, 28.9900, 0, 0, 10.8423, 10.8423, 28.9900, 2.3192, 0.7248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (530, 1051, 1063, 1058, 11287, 1, 19, 6, N'SO70687', 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 (480, 1051, 1063, 1058, 11633, 1, 100, 1, N'SO70684', 1, 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 (537, 1051, 1063, 1058, 11978, 1, 100, 4, N'SO70703', 1, 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, 1051, 1063, 1058, 11978, 1, 100, 4, N'SO70703', 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 (585, 1052, 1064, 1059, 11048, 1, 6, 9, N'SO70820', 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 (484, 1052, 1064, 1059, 11048, 1, 6, 9, N'SO70820', 2, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (467, 1052, 1064, 1059, 11300, 1, 19, 6, N'SO70767', 1, 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 (214, 1052, 1064, 1059, 11300, 1, 19, 6, N'SO70767', 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 (568, 1052, 1064, 1059, 11358, 1, 6, 9, N'SO70821', 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 (477, 1052, 1064, 1059, 11358, 1, 6, 9, N'SO70821', 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 (479, 1052, 1064, 1059, 11358, 1, 6, 9, N'SO70821', 3, 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 (487, 1052, 1064, 1059, 11358, 1, 6, 9, N'SO70821', 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 (537, 1052, 1064, 1059, 11702, 1, 100, 4, N'SO70794', 1, 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, 1052, 1064, 1059, 11702, 1, 100, 4, N'SO70794', 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 (480, 1052, 1064, 1059, 11702, 1, 100, 4, N'SO70794', 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 (214, 1052, 1064, 1059, 11883, 1, 100, 1, N'SO70768', 1, 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 (585, 1053, 1065, 1060, 11035, 1, 6, 9, N'SO70870', 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 (477, 1053, 1065, 1060, 11035, 1, 6, 9, N'SO70870', 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 (479, 1053, 1065, 1060, 11035, 1, 6, 9, N'SO70870', 3, 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 (537, 1053, 1065, 1060, 11276, 1, 19, 6, N'SO70846', 1, 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, 1053, 1065, 1060, 11276, 1, 19, 6, N'SO70846', 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 (234, 1053, 1065, 1060, 11847, 1, 100, 1, N'SO70833', 1, 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 (569, 1054, 1066, 1061, 11168, 1, 100, 4, N'SO70924', 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 (217, 1054, 1066, 1061, 11168, 1, 100, 4, N'SO70924', 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 (537, 1054, 1066, 1061, 11268, 1, 100, 4, N'SO70906', 1, 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, 1054, 1066, 1061, 11268, 1, 100, 4, N'SO70906', 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, 1054, 1066, 1061, 11268, 1, 100, 4, N'SO70906', 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 (537, 1054, 1066, 1061, 11703, 1, 100, 4, N'SO70907', 1, 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, 1054, 1066, 1061, 11703, 1, 100, 4, N'SO70907', 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 (541, 1055, 1067, 1062, 11389, 1, 100, 8, N'SO70972', 1, 1, 1, 28.9900, 28.9900, 0, 0, 10.8423, 10.8423, 28.9900, 2.3192, 0.7248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (530, 1055, 1067, 1062, 11389, 1, 100, 8, N'SO70972', 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 (214, 1055, 1067, 1062, 11389, 1, 100, 8, N'SO70972', 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 (572, 1056, 1068, 1063, 11089, 2, 100, 4, N'SO71077', 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 (222, 1056, 1068, 1063, 11089, 1, 100, 4, N'SO71077', 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 (228, 1056, 1068, 1063, 11089, 1, 100, 4, N'SO71077', 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 (482, 1056, 1068, 1063, 11089, 1, 100, 4, N'SO71077', 4, 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 (530, 1056, 1068, 1063, 11185, 1, 19, 6, N'SO71036', 1, 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, 1056, 1068, 1063, 11185, 1, 19, 6, N'SO71036', 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 (566, 1056, 1068, 1063, 11242, 1, 100, 7, N'SO71067', 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 (479, 1056, 1068, 1063, 11242, 1, 100, 7, N'SO71067', 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, 1056, 1068, 1063, 11242, 1, 100, 7, N'SO71067', 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 (463, 1056, 1068, 1063, 11242, 1, 100, 7, N'SO71067', 4, 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 (563, 1056, 1068, 1063, 11612, 1, 98, 10, N'SO71071', 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 (214, 1056, 1068, 1063, 11612, 1, 98, 10, N'SO71071', 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, 1057, 1069, 1064, 11047, 2, 6, 9, N'SO71132', 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 (483, 1057, 1069, 1064, 11047, 1, 6, 9, N'SO71132', 2, 1, 1, 120.0000, 120.0000, 0, 0, 44.8800, 44.8800, 120.0000, 9.6000, 3.0000, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (566, 1057, 1069, 1064, 11050, 1, 6, 9, N'SO71147', 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 (222, 1057, 1069, 1064, 11050, 1, 6, 9, N'SO71147', 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 (480, 1057, 1069, 1064, 11185, 1, 19, 6, N'SO71107', 1, 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 (537, 1057, 1069, 1064, 11214, 1, 100, 1, N'SO71121', 1, 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, 1057, 1069, 1064, 11214, 1, 100, 1, N'SO71121', 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 (483, 1057, 1069, 1064, 11214, 1, 100, 1, N'SO71121', 3, 1, 1, 120.0000, 120.0000, 0, 0, 44.8800, 44.8800, 120.0000, 9.6000, 3.0000, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1057, 1069, 1064, 11330, 1, 19, 6, N'SO71105', 1, 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 (528, 1057, 1069, 1064, 11640, 1, 19, 6, N'SO71116', 1, 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 (536, 1057, 1069, 1064, 11640, 1, 19, 6, N'SO71116', 2, 1, 1, 29.9900, 29.9900, 0, 0, 11.2163, 11.2163, 29.9900, 2.3992, 0.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1057, 1069, 1064, 11640, 1, 19, 6, N'SO71116', 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 (465, 1057, 1069, 1064, 11640, 1, 19, 6, N'SO71116', 4, 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 (528, 1057, 1069, 1064, 11760, 1, 6, 9, N'SO71094', 1, 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 (535, 1057, 1069, 1064, 11760, 1, 6, 9, N'SO71094', 2, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1057, 1069, 1064, 11760, 1, 6, 9, N'SO71094', 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 (491, 1057, 1069, 1064, 11760, 1, 6, 9, N'SO71094', 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 (225, 1057, 1069, 1064, 11760, 1, 6, 9, N'SO71094', 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 (478, 1057, 1069, 1064, 11833, 1, 19, 6, N'SO71118', 1, 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 (225, 1058, 1070, 1065, 11215, 1, 19, 6, N'SO71153', 1, 1, 1, 8.9900, 8.9900, 0, 0, 6.9223, 6.9223, 8.9900, 0.7192, 0.2248, 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 (483, 1058, 1070, 1065, 11215, 1, 19, 6, N'SO71153', 2, 1, 1, 120.0000, 120.0000, 0, 0, 44.8800, 44.8800, 120.0000, 9.6000, 3.0000, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1058, 1070, 1065, 11569, 1, 98, 10, N'SO71181', 1, 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 (570, 1059, 1071, 1066, 11084, 1, 100, 1, N'SO71270', 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 (479, 1059, 1071, 1066, 11084, 1, 100, 1, N'SO71270', 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, 1059, 1071, 1066, 11084, 1, 100, 1, N'SO71270', 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 (569, 1059, 1071, 1066, 11090, 1, 100, 4, N'SO71269', 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 (225, 1059, 1071, 1066, 11090, 1, 100, 4, N'SO71269', 2, 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 (538, 1059, 1071, 1066, 11176, 1, 19, 6, N'SO71234', 1, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (539, 1059, 1071, 1066, 11203, 1, 19, 6, N'SO71235', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1059, 1071, 1066, 11203, 1, 19, 6, N'SO71235', 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 (217, 1059, 1071, 1066, 11502, 1, 19, 6, N'SO71220', 1, 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 (482, 1059, 1071, 1066, 11502, 1, 19, 6, N'SO71220', 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 (491, 1059, 1071, 1066, 11505, 1, 19, 6, N'SO71233', 1, 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 (225, 1059, 1071, 1066, 11505, 1, 19, 6, N'SO71233', 2, 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 (491, 1059, 1071, 1066, 11713, 1, 100, 1, N'SO71232', 1, 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 (225, 1059, 1071, 1066, 11713, 1, 100, 1, N'SO71232', 2, 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 (536, 1059, 1071, 1066, 11875, 1, 19, 6, N'SO71236', 1, 1, 1, 29.9900, 29.9900, 0, 0, 11.2163, 11.2163, 29.9900, 2.3992, 0.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1059, 1071, 1066, 11875, 1, 19, 6, N'SO71236', 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 (487, 1059, 1071, 1066, 11875, 1, 19, 6, N'SO71236', 3, 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 (529, 1060, 1072, 1067, 11223, 1, 19, 6, N'SO71293', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1060, 1072, 1067, 11223, 1, 19, 6, N'SO71293', 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 (528, 1060, 1072, 1067, 11223, 1, 19, 6, N'SO71298', 1, 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 (535, 1060, 1072, 1067, 11223, 1, 19, 6, N'SO71298', 2, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (539, 1060, 1072, 1067, 11253, 1, 19, 6, N'SO71296', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 1060, 1072, 1067, 11253, 1, 19, 6, N'SO71296', 2, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (584, 1060, 1072, 1067, 11425, 1, 100, 7, N'SO71346', 1, 1, 1, 539.9900, 539.9900, 0, 0, 343.6496, 343.6496, 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 (225, 1060, 1072, 1067, 11425, 1, 100, 7, N'SO71346', 2, 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 (538, 1060, 1072, 1067, 11425, 1, 100, 7, N'SO71346', 3, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1060, 1072, 1067, 11581, 1, 100, 7, N'SO71306', 1, 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 (536, 1060, 1072, 1067, 11581, 1, 100, 7, N'SO71306', 2, 1, 1, 29.9900, 29.9900, 0, 0, 11.2163, 11.2163, 29.9900, 2.3992, 0.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1060, 1072, 1067, 11581, 1, 100, 7, N'SO71306', 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 (574, 1060, 1072, 1067, 11912, 1, 6, 9, N'SO71348', 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, 1060, 1072, 1067, 11912, 1, 6, 9, N'SO71348', 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, 1060, 1072, 1067, 11912, 1, 6, 9, N'SO71348', 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 (480, 1060, 1072, 1067, 11912, 2, 6, 9, N'SO71348', 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 (231, 1061, 1073, 1068, 11119, 1, 6, 9, N'SO71358', 1, 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 (537, 1061, 1073, 1068, 11254, 1, 100, 1, N'SO71400', 1, 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, 1061, 1073, 1068, 11254, 1, 100, 1, N'SO71400', 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 (485, 1061, 1073, 1068, 11254, 1, 100, 1, N'SO71400', 3, 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, 1061, 1073, 1068, 11254, 1, 100, 1, N'SO71400', 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 (477, 1061, 1073, 1068, 11254, 1, 100, 1, N'SO71400', 5, 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 (473, 1061, 1073, 1068, 11254, 1, 100, 1, N'SO71400', 6, 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 (477, 1061, 1073, 1068, 11276, 1, 19, 6, N'SO71377', 1, 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 (484, 1061, 1073, 1068, 11277, 1, 19, 6, N'SO71351', 1, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1061, 1073, 1068, 11287, 1, 19, 6, N'SO71378', 1, 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 (487, 1061, 1073, 1068, 11287, 1, 19, 6, N'SO71378', 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 (563, 1061, 1073, 1068, 11609, 1, 98, 10, N'SO71413', 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 (541, 1061, 1073, 1068, 11609, 1, 98, 10, N'SO71413', 2, 1, 1, 28.9900, 28.9900, 0, 0, 10.8423, 10.8423, 28.9900, 2.3192, 0.7248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (530, 1061, 1073, 1068, 11609, 1, 98, 10, N'SO71413', 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, 1061, 1073, 1068, 11609, 1, 98, 10, N'SO71413', 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 (489, 1061, 1073, 1068, 11710, 1, 100, 4, N'SO71368', 1, 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 (225, 1061, 1073, 1068, 11710, 1, 100, 4, N'SO71368', 2, 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 (228, 1061, 1073, 1068, 11803, 1, 100, 1, N'SO71352', 1, 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 (465, 1061, 1073, 1068, 11803, 1, 100, 1, N'SO71352', 2, 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 (225, 1061, 1073, 1068, 11921, 1, 6, 9, N'SO71362', 1, 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 (537, 1062, 1074, 1069, 11131, 1, 19, 6, N'SO71456', 1, 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, 1062, 1074, 1069, 11131, 1, 19, 6, N'SO71456', 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 (539, 1062, 1074, 1069, 11211, 1, 19, 6, N'SO71436', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1062, 1074, 1069, 11211, 1, 19, 6, N'SO71436', 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 (234, 1062, 1074, 1069, 11361, 1, 6, 9, N'SO71432', 1, 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 (217, 1062, 1074, 1069, 11486, 1, 100, 8, N'SO71460', 1, 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 (535, 1062, 1074, 1069, 11758, 1, 6, 9, N'SO71428', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1062, 1074, 1069, 11758, 1, 6, 9, N'SO71428', 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 (380, 1063, 1075, 1070, 11237, 1, 100, 8, N'SO71500', 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 (479, 1063, 1075, 1070, 11237, 1, 100, 8, N'SO71500', 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 (535, 1063, 1075, 1070, 11367, 1, 6, 9, N'SO71494', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1063, 1075, 1070, 11367, 1, 6, 9, N'SO71494', 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 (528, 1063, 1075, 1070, 11681, 1, 100, 1, N'SO71536', 1, 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, 1063, 1075, 1070, 11681, 1, 100, 1, N'SO71536', 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 (222, 1063, 1075, 1070, 11681, 1, 100, 1, N'SO71536', 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 (217, 1063, 1075, 1070, 11795, 1, 100, 4, N'SO71492', 1, 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 (561, 1063, 1075, 1070, 11918, 1, 6, 9, N'SO71555', 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 (225, 1063, 1075, 1070, 11918, 1, 6, 9, N'SO71555', 2, 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 (217, 1063, 1075, 1070, 11971, 1, 100, 4, N'SO71491', 1, 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 (467, 1063, 1075, 1070, 11971, 1, 100, 4, N'SO71491', 2, 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 (480, 1064, 1076, 1071, 11313, 1, 100, 1, N'SO71574', 1, 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 (539, 1065, 1077, 1072, 11223, 1, 19, 6, N'SO71637', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (535, 1065, 1077, 1072, 11757, 1, 6, 9, N'SO71635', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1065, 1077, 1072, 11757, 1, 6, 9, N'SO71635', 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 (231, 1065, 1077, 1072, 11849, 1, 100, 4, N'SO71636', 1, 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, 1065, 1077, 1072, 11849, 1, 100, 4, N'SO71636', 2, 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 (529, 1065, 1077, 1072, 11861, 1, 19, 6, N'SO71641', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (540, 1065, 1077, 1072, 11861, 1, 19, 6, N'SO71641', 2, 1, 1, 32.6000, 32.6000, 0, 0, 12.1924, 12.1924, 32.6000, 2.6080, 0.8150, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 1065, 1077, 1072, 11966, 1, 6, 9, N'SO71628', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1065, 1077, 1072, 11966, 1, 6, 9, N'SO71628', 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 (571, 1066, 1078, 1073, 11167, 1, 100, 1, N'SO71758', 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 (491, 1066, 1078, 1073, 11167, 1, 100, 1, N'SO71758', 2, 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 (528, 1066, 1078, 1073, 11222, 1, 100, 4, N'SO71732', 1, 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, 1066, 1078, 1073, 11222, 1, 100, 4, N'SO71732', 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 (222, 1066, 1078, 1073, 11222, 1, 100, 4, N'SO71732', 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 (530, 1066, 1078, 1073, 11253, 1, 19, 6, N'SO71710', 1, 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 (217, 1066, 1078, 1073, 11253, 1, 19, 6, N'SO71710', 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 (530, 1066, 1078, 1073, 11500, 1, 19, 6, N'SO71708', 1, 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, 1066, 1078, 1073, 11500, 1, 19, 6, N'SO71708', 2, 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 (237, 1066, 1078, 1073, 11500, 1, 19, 6, N'SO71708', 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 (535, 1066, 1078, 1073, 11520, 1, 19, 6, N'SO71716', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (463, 1066, 1078, 1073, 11520, 1, 19, 6, N'SO71716', 2, 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 (537, 1066, 1078, 1073, 11794, 1, 100, 4, N'SO71733', 1, 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, 1066, 1078, 1073, 11794, 1, 100, 4, N'SO71733', 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 (480, 1066, 1078, 1073, 11794, 1, 100, 4, N'SO71733', 3, 1, 1, 2.2900, 2.2900, 0, 0, 0.8565, 0.8565, 2.2900, 0.1832, 0.0573, 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 (536, 1066, 1078, 1073, 11833, 1, 19, 6, N'SO71718', 1, 1, 1, 29.9900, 29.9900, 0, 0, 11.2163, 11.2163, 29.9900, 2.3992, 0.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1066, 1078, 1073, 11833, 1, 19, 6, N'SO71718', 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 (214, 1066, 1078, 1073, 11833, 1, 19, 6, N'SO71718', 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 (477, 1066, 1078, 1073, 11861, 1, 19, 6, N'SO71721', 1, 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, 1066, 1078, 1073, 11861, 1, 19, 6, N'SO71721', 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 (214, 1066, 1078, 1073, 11861, 1, 19, 6, N'SO71721', 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 (528, 1066, 1078, 1073, 11980, 1, 100, 4, N'SO71735', 1, 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, 1066, 1078, 1073, 11980, 1, 100, 4, N'SO71735', 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 (467, 1066, 1078, 1073, 11980, 1, 100, 4, N'SO71735', 3, 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 (214, 1066, 1078, 1073, 11980, 1, 100, 4, N'SO71735', 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 (228, 1067, 1079, 1074, 11019, 1, 19, 6, N'SO71963', 1, 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 (463, 1067, 1079, 1074, 11019, 1, 19, 6, N'SO71963', 2, 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 (225, 1067, 1079, 1074, 11149, 1, 6, 9, N'SO71957', 1, 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 (529, 1067, 1079, 1074, 11330, 1, 19, 6, N'SO71965', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (538, 1067, 1079, 1074, 11330, 1, 19, 6, N'SO71965', 2, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1067, 1079, 1074, 11330, 1, 19, 6, N'SO71965', 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 (467, 1067, 1079, 1074, 11330, 1, 19, 6, N'SO71965', 4, 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 (561, 1067, 1079, 1074, 11420, 1, 100, 7, N'SO71996', 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 (541, 1067, 1079, 1074, 11420, 1, 100, 7, N'SO71996', 2, 1, 1, 28.9900, 28.9900, 0, 0, 10.8423, 10.8423, 28.9900, 2.3192, 0.7248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (530, 1067, 1079, 1074, 11420, 1, 100, 7, N'SO71996', 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, 1067, 1079, 1074, 11420, 1, 100, 7, N'SO71996', 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 (217, 1067, 1079, 1074, 11420, 1, 100, 7, N'SO71996', 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 (604, 1067, 1079, 1074, 11432, 1, 100, 7, N'SO71995', 1, 1, 1, 539.9900, 539.9900, 0, 0, 343.6496, 343.6496, 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 (479, 1067, 1079, 1074, 11432, 1, 100, 7, N'SO71995', 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, 1067, 1079, 1074, 11432, 1, 100, 7, N'SO71995', 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, 1067, 1079, 1074, 11559, 1, 100, 8, N'SO71978', 1, 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 (489, 1067, 1079, 1074, 11679, 1, 100, 1, N'SO71962', 1, 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 (228, 1067, 1079, 1074, 11856, 1, 100, 1, N'SO71954', 1, 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, 1067, 1079, 1074, 11856, 1, 100, 1, N'SO71954', 2, 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, 1067, 1079, 1074, 11929, 1, 6, 9, N'SO71997', 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 (479, 1067, 1079, 1074, 11929, 1, 6, 9, N'SO71997', 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, 1067, 1079, 1074, 11929, 1, 6, 9, N'SO71997', 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 (228, 1067, 1079, 1074, 11929, 1, 6, 9, N'SO71997', 4, 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 (541, 1068, 1080, 1075, 11019, 1, 19, 6, N'SO72015', 1, 1, 1, 28.9900, 28.9900, 0, 0, 10.8423, 10.8423, 28.9900, 2.3192, 0.7248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (530, 1068, 1080, 1075, 11019, 1, 19, 6, N'SO72015', 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 (571, 1068, 1080, 1075, 11264, 1, 100, 1, N'SO72051', 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 (479, 1068, 1080, 1075, 11264, 1, 100, 1, N'SO72051', 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, 1068, 1080, 1075, 11264, 1, 100, 1, N'SO72051', 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 (231, 1068, 1080, 1075, 11264, 1, 100, 1, N'SO72051', 4, 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 (529, 1068, 1080, 1075, 11498, 1, 19, 6, N'SO72013', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1068, 1080, 1075, 11498, 1, 19, 6, N'SO72013', 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 (538, 1068, 1080, 1075, 11558, 1, 98, 10, N'SO72032', 1, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1068, 1080, 1075, 11659, 1, 19, 6, N'SO72036', 1, 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, 1068, 1080, 1075, 11659, 1, 19, 6, N'SO72036', 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 (537, 1068, 1080, 1075, 11677, 1, 19, 6, N'SO72035', 1, 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 (484, 1068, 1080, 1075, 11878, 1, 100, 1, N'SO72001', 1, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1069, 1081, 1076, 11071, 1, 6, 9, N'SO72067', 1, 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 (479, 1069, 1081, 1076, 11071, 1, 6, 9, N'SO72067', 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 (488, 1069, 1081, 1076, 11071, 1, 6, 9, N'SO72067', 3, 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 (535, 1069, 1081, 1076, 11211, 1, 19, 6, N'SO72080', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1069, 1081, 1076, 11211, 1, 19, 6, N'SO72080', 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 (484, 1069, 1081, 1076, 11211, 1, 19, 6, N'SO72080', 3, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 1069, 1081, 1076, 11330, 1, 19, 6, N'SO72081', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (540, 1069, 1081, 1076, 11330, 1, 19, 6, N'SO72081', 2, 1, 1, 32.6000, 32.6000, 0, 0, 12.1924, 12.1924, 32.6000, 2.6080, 0.8150, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1069, 1081, 1076, 11330, 1, 19, 6, N'SO72081', 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 (570, 1069, 1081, 1076, 11368, 1, 6, 9, N'SO72126', 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 (541, 1069, 1081, 1076, 11368, 1, 6, 9, N'SO72126', 2, 1, 1, 28.9900, 28.9900, 0, 0, 10.8423, 10.8423, 28.9900, 2.3192, 0.7248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (530, 1069, 1081, 1076, 11368, 1, 6, 9, N'SO72126', 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 (237, 1069, 1081, 1076, 11368, 2, 6, 9, N'SO72126', 4, 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 (467, 1069, 1081, 1076, 11368, 2, 6, 9, N'SO72126', 5, 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 (606, 1069, 1081, 1076, 11429, 1, 100, 7, N'SO72122', 1, 1, 1, 539.9900, 539.9900, 0, 0, 343.6496, 343.6496, 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 (479, 1069, 1081, 1076, 11429, 1, 100, 7, N'SO72122', 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, 1069, 1081, 1076, 11429, 1, 100, 7, N'SO72122', 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, 1069, 1081, 1076, 11429, 1, 100, 7, N'SO72122', 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 (214, 1069, 1081, 1076, 11791, 1, 100, 1, N'SO72064', 1, 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 (237, 1069, 1081, 1076, 11791, 1, 100, 1, N'SO72064', 2, 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 (536, 1069, 1081, 1076, 11802, 1, 19, 6, N'SO72083', 1, 1, 1, 29.9900, 29.9900, 0, 0, 11.2163, 11.2163, 29.9900, 2.3992, 0.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1069, 1081, 1076, 11802, 2, 19, 6, N'SO72083', 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 (214, 1069, 1081, 1076, 11859, 1, 100, 1, N'SO72075', 1, 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, 1069, 1081, 1076, 11965, 1, 6, 9, N'SO72066', 1, 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 (536, 1070, 1082, 1077, 11287, 1, 19, 6, N'SO72148', 1, 1, 1, 29.9900, 29.9900, 0, 0, 11.2163, 11.2163, 29.9900, 2.3992, 0.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 1070, 1082, 1077, 11619, 1, 19, 6, N'SO72145', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1070, 1082, 1077, 11655, 1, 100, 4, N'SO72159', 1, 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, 1070, 1082, 1077, 11655, 1, 100, 4, N'SO72159', 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 (537, 1070, 1082, 1077, 11881, 1, 100, 4, N'SO72160', 1, 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, 1070, 1082, 1077, 11881, 1, 100, 4, N'SO72160', 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 (485, 1070, 1082, 1077, 11881, 1, 100, 4, N'SO72160', 3, 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, 1070, 1082, 1077, 11881, 1, 100, 4, N'SO72160', 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 (477, 1070, 1082, 1077, 11881, 1, 100, 4, N'SO72160', 5, 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 (473, 1070, 1082, 1077, 11881, 1, 100, 4, N'SO72160', 6, 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 (590, 1070, 1082, 1077, 11930, 1, 6, 9, N'SO72171', 1, 1, 1, 769.4900, 769.4900, 0, 0, 419.7784, 419.7784, 769.4900, 61.5592, 19.2373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (474, 1070, 1082, 1077, 11930, 1, 6, 9, N'SO72171', 2, 1, 1, 69.9900, 69.9900, 0, 0, 26.1763, 26.1763, 69.9900, 5.5992, 1.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1070, 1082, 1077, 11930, 1, 6, 9, N'SO72171', 3, 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 (528, 1071, 1083, 1078, 11148, 1, 6, 9, N'SO72191', 1, 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, 1071, 1083, 1078, 11148, 1, 6, 9, N'SO72191', 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 (568, 1071, 1083, 1078, 11224, 1, 100, 1, N'SO72256', 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 (222, 1071, 1083, 1078, 11224, 1, 100, 1, N'SO72256', 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 (231, 1071, 1083, 1078, 11253, 1, 19, 6, N'SO72186', 1, 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 (529, 1071, 1083, 1078, 11262, 1, 19, 6, N'SO72201', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (538, 1071, 1083, 1078, 11262, 1, 19, 6, N'SO72201', 2, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1071, 1083, 1078, 11262, 1, 19, 6, N'SO72201', 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 (484, 1071, 1083, 1078, 11262, 1, 19, 6, N'SO72201', 4, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1071, 1083, 1078, 11314, 1, 100, 1, N'SO72199', 1, 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 (484, 1071, 1083, 1078, 11314, 1, 100, 1, N'SO72199', 2, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1071, 1083, 1078, 11331, 1, 19, 6, N'SO72211', 1, 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, 1071, 1083, 1078, 11331, 1, 19, 6, N'SO72211', 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 (489, 1071, 1083, 1078, 11331, 1, 19, 6, N'SO72211', 3, 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 (225, 1071, 1083, 1078, 11331, 1, 19, 6, N'SO72211', 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 (477, 1071, 1083, 1078, 11354, 1, 100, 8, N'SO72236', 1, 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, 1071, 1083, 1078, 11354, 1, 100, 8, N'SO72236', 2, 1, 1, 8.9900, 8.9900, 0, 0, 6.9223, 6.9223, 8.9900, 0.7192, 0.2248, 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 (479, 1071, 1083, 1078, 11354, 1, 100, 8, N'SO72236', 3, 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 (214, 1071, 1083, 1078, 11498, 1, 19, 6, N'SO72187', 1, 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 (489, 1071, 1083, 1078, 11560, 1, 98, 10, N'SO72237', 1, 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 (535, 1071, 1083, 1078, 11913, 1, 6, 9, N'SO72188', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (475, 1072, 1084, 1079, 11142, 1, 19, 6, N'SO72296', 1, 1, 1, 69.9900, 69.9900, 0, 0, 26.1763, 26.1763, 69.9900, 5.5992, 1.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (463, 1072, 1084, 1079, 11142, 1, 19, 6, N'SO72296', 2, 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 (573, 1072, 1084, 1079, 11242, 1, 100, 7, N'SO72324', 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 (214, 1072, 1084, 1079, 11242, 1, 100, 7, N'SO72324', 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 (570, 1072, 1084, 1079, 11359, 1, 6, 9, N'SO72355', 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 (479, 1072, 1084, 1079, 11359, 1, 6, 9, N'SO72355', 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, 1072, 1084, 1079, 11359, 1, 6, 9, N'SO72355', 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 (480, 1072, 1084, 1079, 11359, 1, 6, 9, N'SO72355', 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 (537, 1072, 1084, 1079, 11736, 1, 100, 4, N'SO72313', 1, 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, 1072, 1084, 1079, 11736, 1, 100, 4, N'SO72313', 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 (234, 1072, 1084, 1079, 11736, 1, 100, 4, N'SO72313', 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 (234, 1072, 1084, 1079, 11842, 1, 100, 1, N'SO72288', 1, 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, 1072, 1084, 1079, 11842, 1, 100, 1, N'SO72288', 2, 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 (528, 1073, 1085, 1080, 11131, 1, 19, 6, N'SO72371', 1, 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 (535, 1073, 1085, 1080, 11131, 1, 19, 6, N'SO72371', 2, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 1073, 1085, 1080, 11566, 1, 100, 7, N'SO72387', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (538, 1073, 1085, 1080, 11566, 1, 100, 7, N'SO72387', 2, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 1073, 1085, 1080, 11711, 1, 19, 6, N'SO72370', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (538, 1073, 1085, 1080, 11711, 1, 19, 6, N'SO72370', 2, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1073, 1085, 1080, 11711, 1, 19, 6, N'SO72370', 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 (537, 1073, 1085, 1080, 11851, 1, 100, 4, N'SO72391', 1, 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, 1073, 1085, 1080, 11857, 1, 100, 1, N'SO72392', 1, 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, 1073, 1085, 1080, 11857, 1, 100, 1, N'SO72392', 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 (214, 1073, 1085, 1080, 11857, 1, 100, 1, N'SO72392', 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 (537, 1073, 1085, 1080, 11974, 1, 100, 4, N'SO72390', 1, 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, 1073, 1085, 1080, 11974, 1, 100, 4, N'SO72390', 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 (217, 1073, 1085, 1080, 11974, 1, 100, 4, N'SO72390', 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 (537, 1074, 1086, 1081, 11085, 1, 100, 4, N'SO72476', 1, 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, 1074, 1086, 1081, 11085, 1, 100, 4, N'SO72476', 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 (217, 1074, 1086, 1081, 11085, 1, 100, 4, N'SO72476', 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 (528, 1074, 1086, 1081, 11166, 1, 100, 1, N'SO72475', 1, 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, 1074, 1086, 1081, 11166, 1, 100, 1, N'SO72475', 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 (535, 1074, 1086, 1081, 11752, 1, 6, 9, N'SO72452', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1074, 1086, 1081, 11752, 1, 6, 9, N'SO72452', 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 (485, 1074, 1086, 1081, 11752, 1, 6, 9, N'SO72452', 3, 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 (528, 1074, 1086, 1081, 11820, 1, 19, 6, N'SO72454', 1, 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 (536, 1074, 1086, 1081, 11820, 1, 19, 6, N'SO72454', 2, 1, 1, 29.9900, 29.9900, 0, 0, 11.2163, 11.2163, 29.9900, 2.3992, 0.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1074, 1086, 1081, 11848, 1, 100, 1, N'SO72477', 1, 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, 1074, 1086, 1081, 11848, 1, 100, 1, N'SO72477', 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 (480, 1074, 1086, 1081, 11848, 1, 100, 1, N'SO72477', 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 (536, 1075, 1087, 1082, 11262, 1, 19, 6, N'SO72527', 1, 1, 1, 29.9900, 29.9900, 0, 0, 11.2163, 11.2163, 29.9900, 2.3992, 0.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1075, 1087, 1082, 11262, 1, 19, 6, N'SO72527', 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 (463, 1075, 1087, 1082, 11262, 1, 19, 6, N'SO72527', 3, 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 (214, 1075, 1087, 1082, 11262, 1, 19, 6, N'SO72527', 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 (537, 1075, 1087, 1082, 11726, 1, 100, 1, N'SO72544', 1, 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, 1075, 1087, 1082, 11726, 1, 100, 1, N'SO72544', 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 (485, 1075, 1087, 1082, 11726, 1, 100, 1, N'SO72544', 3, 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, 1075, 1087, 1082, 11726, 1, 100, 1, N'SO72544', 4, 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 (222, 1075, 1087, 1082, 11726, 1, 100, 1, N'SO72544', 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 (529, 1076, 1088, 1083, 11194, 1, 100, 4, N'SO72599', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1076, 1088, 1083, 11194, 1, 100, 4, N'SO72599', 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 (463, 1076, 1088, 1083, 11194, 1, 100, 4, N'SO72599', 3, 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 (539, 1076, 1088, 1083, 11501, 1, 19, 6, N'SO72601', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1076, 1088, 1083, 11503, 1, 100, 4, N'SO72596', 1, 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 (478, 1077, 1089, 1084, 11102, 1, 6, 9, N'SO72645', 1, 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, 1077, 1089, 1084, 11102, 1, 6, 9, N'SO72645', 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 (487, 1077, 1089, 1084, 11102, 1, 6, 9, N'SO72645', 3, 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 (537, 1077, 1089, 1084, 11130, 1, 100, 1, N'SO72683', 1, 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, 1077, 1089, 1084, 11130, 1, 100, 1, N'SO72683', 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 (537, 1077, 1089, 1084, 11230, 1, 100, 4, N'SO72684', 1, 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, 1077, 1089, 1084, 11230, 1, 100, 4, N'SO72684', 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 (480, 1077, 1089, 1084, 11230, 1, 100, 4, N'SO72684', 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 (538, 1077, 1089, 1084, 11507, 1, 19, 6, N'SO72664', 1, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1077, 1089, 1084, 11507, 1, 19, 6, N'SO72664', 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 (537, 1077, 1089, 1084, 11676, 1, 100, 3, N'SO72686', 1, 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, 1077, 1089, 1084, 11676, 1, 100, 3, N'SO72686', 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 (491, 1077, 1089, 1084, 11682, 1, 100, 1, N'SO72663', 1, 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 (528, 1077, 1089, 1084, 11781, 1, 100, 4, N'SO72685', 1, 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, 1077, 1089, 1084, 11781, 1, 100, 4, N'SO72685', 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 (217, 1077, 1089, 1084, 11781, 1, 100, 4, N'SO72685', 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 (535, 1077, 1089, 1084, 11827, 1, 19, 6, N'SO72666', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1077, 1089, 1084, 11827, 1, 19, 6, N'SO72666', 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 (222, 1077, 1089, 1084, 11827, 1, 19, 6, N'SO72666', 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 (478, 1077, 1089, 1084, 11845, 1, 19, 6, N'SO72669', 1, 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, 1077, 1089, 1084, 11845, 1, 19, 6, N'SO72669', 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 (222, 1077, 1089, 1084, 11845, 1, 19, 6, N'SO72669', 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 (604, 1078, 1090, 1085, 11001, 1, 6, 9, N'SO72773', 1, 1, 1, 539.9900, 539.9900, 0, 0, 343.6496, 343.6496, 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 (477, 1078, 1090, 1085, 11001, 1, 6, 9, N'SO72773', 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 (479, 1078, 1090, 1085, 11001, 1, 6, 9, N'SO72773', 3, 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 (217, 1078, 1090, 1085, 11001, 1, 6, 9, N'SO72773', 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 (475, 1078, 1090, 1085, 11019, 1, 19, 6, N'SO72747', 1, 1, 1, 69.9900, 69.9900, 0, 0, 26.1763, 26.1763, 69.9900, 5.5992, 1.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1078, 1090, 1085, 11019, 1, 19, 6, N'SO72747', 2, 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 (568, 1078, 1090, 1085, 11263, 1, 100, 1, N'SO72776', 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 (479, 1078, 1090, 1085, 11263, 1, 100, 1, N'SO72776', 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 (463, 1078, 1090, 1085, 11263, 1, 100, 1, N'SO72776', 3, 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 (477, 1078, 1090, 1085, 11263, 1, 100, 1, N'SO72776', 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 (575, 1078, 1090, 1085, 11995, 1, 6, 9, N'SO72786', 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 (463, 1078, 1090, 1085, 11995, 1, 6, 9, N'SO72786', 2, 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 (214, 1078, 1090, 1085, 11995, 1, 6, 9, N'SO72786', 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 (529, 1079, 1091, 1086, 11142, 1, 19, 6, N'SO72801', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1079, 1091, 1086, 11142, 1, 19, 6, N'SO72801', 2, 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 (538, 1079, 1091, 1086, 11142, 1, 19, 6, N'SO72801', 3, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 1079, 1091, 1086, 11203, 1, 19, 6, N'SO72799', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (378, 1079, 1091, 1086, 11245, 1, 100, 8, N'SO72793', 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 (479, 1079, 1091, 1086, 11245, 1, 100, 8, N'SO72793', 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 (529, 1079, 1091, 1086, 11330, 1, 19, 6, N'SO72798', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, 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 (222, 1079, 1091, 1086, 11330, 1, 19, 6, N'SO72798', 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, 1079, 1091, 1086, 11913, 1, 6, 9, N'SO72792', 1, 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 (564, 1079, 1091, 1086, 11920, 1, 6, 9, N'SO72849', 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 (222, 1079, 1091, 1086, 11920, 1, 6, 9, N'SO72849', 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 (564, 1079, 1091, 1086, 11992, 1, 6, 9, N'SO72845', 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 (225, 1079, 1091, 1086, 11992, 1, 6, 9, N'SO72845', 2, 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 (477, 1080, 1092, 1087, 11223, 1, 19, 6, N'SO72881', 1, 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 (529, 1080, 1092, 1087, 11500, 1, 19, 6, N'SO72874', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (539, 1080, 1092, 1087, 11500, 1, 19, 6, N'SO72874', 2, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (231, 1080, 1092, 1087, 11500, 1, 19, 6, N'SO72874', 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 (577, 1080, 1092, 1087, 11549, 2, 98, 10, N'SO72911', 1, 1, 1, 1214.8500, 1214.8500, 0, 0, 755.1508, 755.1508, 1214.8500, 97.1880, 30.3713, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1080, 1092, 1087, 11549, 1, 98, 10, N'SO72911', 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, 1080, 1092, 1087, 11549, 1, 98, 10, N'SO72911', 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, 1080, 1092, 1087, 11549, 1, 98, 10, N'SO72911', 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 (228, 1080, 1092, 1087, 11549, 1, 98, 10, N'SO72911', 5, 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 (528, 1080, 1092, 1087, 11684, 1, 100, 1, N'SO72898', 1, 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, 1080, 1092, 1087, 11684, 1, 100, 1, N'SO72898', 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 (537, 1080, 1092, 1087, 11710, 1, 100, 4, N'SO72899', 1, 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 (231, 1080, 1092, 1087, 11801, 1, 100, 1, N'SO72852', 1, 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 (528, 1080, 1092, 1087, 11878, 1, 100, 1, N'SO72902', 1, 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, 1080, 1092, 1087, 11878, 1, 100, 1, N'SO72902', 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 (217, 1080, 1092, 1087, 11878, 1, 100, 1, N'SO72902', 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 (529, 1081, 1093, 1088, 11142, 1, 19, 6, N'SO72976', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (539, 1081, 1093, 1088, 11142, 1, 19, 6, N'SO72976', 2, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1081, 1093, 1088, 11142, 1, 19, 6, N'SO72976', 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 (228, 1081, 1093, 1088, 11185, 1, 19, 6, N'SO72956', 1, 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 (529, 1081, 1093, 1088, 11212, 1, 19, 6, N'SO72978', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (539, 1081, 1093, 1088, 11212, 1, 19, 6, N'SO72978', 2, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1081, 1093, 1088, 11212, 1, 19, 6, N'SO72978', 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 (465, 1081, 1093, 1088, 11212, 1, 19, 6, N'SO72978', 4, 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 (480, 1081, 1093, 1088, 11220, 1, 100, 4, N'SO72977', 1, 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 (484, 1081, 1093, 1088, 11220, 1, 100, 4, N'SO72977', 2, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (535, 1081, 1093, 1088, 11463, 1, 6, 9, N'SO72974', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1081, 1093, 1088, 11608, 1, 100, 7, N'SO73001', 1, 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, 1081, 1093, 1088, 11685, 1, 100, 1, N'SO72973', 1, 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 (490, 1081, 1093, 1088, 11685, 1, 100, 1, N'SO72973', 2, 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 (484, 1081, 1093, 1088, 11928, 1, 100, 4, N'SO72955', 1, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (586, 1081, 1093, 1088, 11943, 1, 6, 9, N'SO73031', 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 (479, 1081, 1093, 1088, 11943, 1, 6, 9, N'SO73031', 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, 1081, 1093, 1088, 11943, 1, 6, 9, N'SO73031', 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 (488, 1081, 1093, 1088, 11943, 1, 6, 9, N'SO73031', 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 (225, 1081, 1093, 1088, 11943, 1, 6, 9, N'SO73031', 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 (529, 1082, 1094, 1089, 11254, 1, 100, 1, N'SO73048', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1082, 1094, 1089, 11254, 1, 100, 1, N'SO73048', 2, 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 (217, 1082, 1094, 1089, 11254, 1, 100, 1, N'SO73048', 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 (566, 1082, 1094, 1089, 11257, 1, 100, 4, N'SO73079', 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, 1082, 1094, 1089, 11257, 1, 100, 4, N'SO73079', 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 (463, 1082, 1094, 1089, 11257, 1, 100, 4, N'SO73079', 3, 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 (539, 1082, 1094, 1089, 11330, 1, 19, 6, N'SO73049', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 1082, 1094, 1089, 11330, 1, 19, 6, N'SO73049', 2, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (566, 1082, 1094, 1089, 11372, 1, 6, 9, N'SO73097', 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 (479, 1082, 1094, 1089, 11372, 1, 6, 9, N'SO73097', 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 (475, 1082, 1094, 1089, 11661, 1, 19, 6, N'SO73055', 1, 1, 1, 69.9900, 69.9900, 0, 0, 26.1763, 26.1763, 69.9900, 5.5992, 1.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1082, 1094, 1089, 11661, 1, 19, 6, N'SO73055', 2, 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 (477, 1082, 1094, 1089, 11724, 1, 19, 6, N'SO73056', 1, 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 (481, 1082, 1094, 1089, 11724, 1, 19, 6, N'SO73056', 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 (214, 1082, 1094, 1089, 11724, 1, 19, 6, N'SO73056', 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 (535, 1083, 1095, 1090, 11215, 1, 19, 6, N'SO73124', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (564, 1083, 1095, 1090, 11417, 1, 100, 7, N'SO73177', 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 (214, 1083, 1095, 1090, 11417, 1, 100, 7, N'SO73177', 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 (490, 1083, 1095, 1090, 11487, 1, 100, 7, N'SO73143', 1, 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 (529, 1083, 1095, 1090, 11500, 1, 19, 6, N'SO73120', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1083, 1095, 1090, 11500, 1, 19, 6, N'SO73120', 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 (535, 1084, 1096, 1091, 11091, 1, 19, 6, N'SO73198', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1084, 1096, 1091, 11091, 1, 19, 6, N'SO73198', 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 (483, 1084, 1096, 1091, 11142, 1, 19, 6, N'SO73185', 1, 1, 1, 120.0000, 120.0000, 0, 0, 44.8800, 44.8800, 120.0000, 9.6000, 3.0000, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (484, 1084, 1096, 1091, 11262, 1, 19, 6, N'SO73186', 1, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (540, 1084, 1096, 1091, 11276, 1, 19, 6, N'SO73199', 1, 1, 1, 32.6000, 32.6000, 0, 0, 12.1924, 12.1924, 32.6000, 2.6080, 0.8150, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 1084, 1096, 1091, 11276, 1, 19, 6, N'SO73199', 2, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (540, 1084, 1096, 1091, 11276, 1, 19, 6, N'SO73201', 1, 1, 1, 32.6000, 32.6000, 0, 0, 12.1924, 12.1924, 32.6000, 2.6080, 0.8150, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (541, 1084, 1096, 1091, 11300, 1, 19, 6, N'SO73197', 1, 1, 1, 28.9900, 28.9900, 0, 0, 10.8423, 10.8423, 28.9900, 2.3192, 0.7248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (530, 1084, 1096, 1091, 11300, 1, 19, 6, N'SO73197', 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 (484, 1084, 1096, 1091, 11300, 1, 19, 6, N'SO73197', 3, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (476, 1084, 1096, 1091, 11652, 1, 19, 6, N'SO73207', 1, 1, 1, 69.9900, 69.9900, 0, 0, 26.1763, 26.1763, 69.9900, 5.5992, 1.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1084, 1096, 1091, 11652, 1, 19, 6, N'SO73207', 2, 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 (537, 1084, 1096, 1091, 11668, 1, 100, 4, N'SO73220', 1, 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, 1084, 1096, 1091, 11668, 1, 100, 4, N'SO73220', 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 (222, 1084, 1096, 1091, 11668, 1, 100, 4, N'SO73220', 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 (568, 1084, 1096, 1091, 11930, 2, 6, 9, N'SO73253', 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 (480, 1085, 1097, 1092, 11315, 1, 100, 1, N'SO73273', 1, 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 (530, 1085, 1097, 1092, 11418, 1, 100, 8, N'SO73297', 1, 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 (217, 1085, 1097, 1092, 11418, 1, 100, 8, N'SO73297', 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 (475, 1085, 1097, 1092, 11507, 1, 19, 6, N'SO73280', 1, 1, 1, 69.9900, 69.9900, 0, 0, 26.1763, 26.1763, 69.9900, 5.5992, 1.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (234, 1085, 1097, 1092, 11507, 1, 19, 6, N'SO73280', 2, 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 (490, 1085, 1097, 1092, 11650, 1, 100, 4, N'SO73272', 1, 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 (483, 1085, 1097, 1092, 11711, 1, 19, 6, N'SO73257', 1, 1, 1, 120.0000, 120.0000, 0, 0, 44.8800, 44.8800, 120.0000, 9.6000, 3.0000, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (536, 1085, 1097, 1092, 11784, 1, 19, 6, N'SO73275', 1, 1, 1, 29.9900, 29.9900, 0, 0, 11.2163, 11.2163, 29.9900, 2.3992, 0.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1085, 1097, 1092, 11784, 1, 19, 6, N'SO73275', 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 (217, 1085, 1097, 1092, 11784, 1, 19, 6, N'SO73275', 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 (536, 1085, 1097, 1092, 11868, 1, 19, 6, N'SO73277', 1, 1, 1, 29.9900, 29.9900, 0, 0, 11.2163, 11.2163, 29.9900, 2.3992, 0.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (471, 1085, 1097, 1092, 11868, 1, 19, 6, N'SO73277', 2, 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 (484, 1085, 1097, 1092, 11881, 1, 100, 4, N'SO73258', 1, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (590, 1085, 1097, 1092, 11929, 1, 6, 9, N'SO73313', 1, 1, 1, 769.4900, 769.4900, 0, 0, 419.7784, 419.7784, 769.4900, 61.5592, 19.2373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1085, 1097, 1092, 11929, 1, 6, 9, N'SO73313', 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, 1085, 1097, 1092, 11929, 1, 6, 9, N'SO73313', 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 (530, 1086, 1098, 1093, 11200, 1, 19, 6, N'SO73353', 1, 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 (217, 1086, 1098, 1093, 11200, 1, 19, 6, N'SO73353', 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 (586, 1086, 1098, 1093, 11252, 1, 100, 4, N'SO73397', 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 (479, 1086, 1098, 1093, 11252, 1, 100, 4, N'SO73397', 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, 1086, 1098, 1093, 11252, 1, 100, 4, N'SO73397', 3, 1, 1, 4.9900, 4.9900, 0, 0, 1.8663, 1.8663, 4.9900, 0.3992, 0.1248, 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 (225, 1086, 1098, 1093, 11252, 1, 100, 4, N'SO73397', 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 (530, 1086, 1098, 1093, 11276, 1, 19, 6, N'SO73352', 1, 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 (480, 1086, 1098, 1093, 11276, 1, 19, 6, N'SO73352', 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 (484, 1086, 1098, 1093, 11276, 1, 19, 6, N'SO73352', 3, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (567, 1086, 1098, 1093, 11363, 1, 6, 9, N'SO73411', 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 (537, 1086, 1098, 1093, 11652, 1, 19, 6, N'SO73375', 1, 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, 1086, 1098, 1093, 11652, 1, 19, 6, N'SO73375', 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 (484, 1086, 1098, 1093, 11652, 1, 19, 6, N'SO73375', 3, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1086, 1098, 1093, 11966, 1, 6, 9, N'SO73346', 1, 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 (530, 1087, 1099, 1094, 11091, 1, 19, 6, N'SO73431', 1, 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 (480, 1087, 1099, 1094, 11091, 2, 19, 6, N'SO73431', 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 (529, 1087, 1099, 1094, 11143, 1, 100, 4, N'SO73429', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1087, 1099, 1094, 11143, 1, 100, 4, N'SO73429', 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 (528, 1087, 1099, 1094, 11300, 1, 19, 6, N'SO73437', 1, 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 (535, 1087, 1099, 1094, 11300, 1, 19, 6, N'SO73437', 2, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1087, 1099, 1094, 11300, 1, 19, 6, N'SO73437', 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, 1087, 1099, 1094, 11300, 1, 19, 6, N'SO73437', 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 (489, 1087, 1099, 1094, 11300, 1, 19, 6, N'SO73437', 5, 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 (593, 1087, 1099, 1094, 11429, 1, 100, 7, N'SO73428', 1, 1, 1, 564.9900, 564.9900, 0, 0, 308.2179, 308.2179, 564.9900, 45.1992, 14.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 (488, 1087, 1099, 1094, 11429, 1, 100, 7, N'SO73428', 2, 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 (489, 1087, 1099, 1094, 11437, 1, 100, 7, N'SO73454', 1, 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 (537, 1087, 1099, 1094, 11667, 1, 100, 1, N'SO73461', 1, 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, 1087, 1099, 1094, 11667, 1, 100, 1, N'SO73461', 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 (586, 1087, 1099, 1094, 11942, 1, 6, 9, N'SO73498', 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 (222, 1087, 1099, 1094, 11942, 1, 6, 9, N'SO73498', 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 (576, 1087, 1099, 1094, 11991, 1, 6, 9, N'SO73503', 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 (477, 1087, 1099, 1094, 11991, 1, 6, 9, N'SO73503', 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 (479, 1087, 1099, 1094, 11991, 1, 6, 9, N'SO73503', 3, 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 (222, 1087, 1099, 1094, 11991, 1, 6, 9, N'SO73503', 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 (374, 1088, 1100, 1095, 11246, 1, 100, 8, N'SO73507', 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 (484, 1088, 1100, 1095, 11246, 1, 100, 8, N'SO73507', 2, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (566, 1088, 1100, 1095, 11259, 1, 100, 1, N'SO73568', 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 (222, 1088, 1100, 1095, 11259, 1, 100, 1, N'SO73568', 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 (478, 1088, 1100, 1095, 11824, 1, 19, 6, N'SO73529', 1, 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 (567, 1088, 1100, 1095, 11944, 1, 6, 9, N'SO73577', 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 (477, 1088, 1100, 1095, 11944, 1, 6, 9, N'SO73577', 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 (479, 1088, 1100, 1095, 11944, 1, 6, 9, N'SO73577', 3, 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 (214, 1088, 1100, 1095, 11944, 1, 6, 9, N'SO73577', 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 (528, 1089, 1101, 1096, 11086, 1, 100, 4, N'SO73610', 1, 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, 1089, 1101, 1096, 11086, 1, 100, 4, N'SO73610', 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 (222, 1089, 1101, 1096, 11086, 1, 100, 4, N'SO73610', 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 (463, 1089, 1101, 1096, 11086, 1, 100, 4, N'SO73610', 4, 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 (535, 1089, 1101, 1096, 11091, 1, 19, 6, N'SO73594', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1089, 1101, 1096, 11091, 1, 19, 6, N'SO73594', 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 (561, 1089, 1101, 1096, 11425, 1, 100, 7, N'SO73635', 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 (222, 1089, 1101, 1096, 11425, 1, 100, 7, N'SO73635', 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 (489, 1089, 1101, 1096, 11543, 1, 100, 7, N'SO73605', 1, 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 (538, 1089, 1101, 1096, 11556, 1, 98, 10, N'SO73606', 1, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (535, 1089, 1101, 1096, 11911, 1, 6, 9, N'SO73582', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (563, 1089, 1101, 1096, 11919, 1, 6, 9, N'SO73641', 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 (477, 1089, 1101, 1096, 11919, 1, 6, 9, N'SO73641', 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 (479, 1089, 1101, 1096, 11919, 1, 6, 9, N'SO73641', 3, 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 (473, 1089, 1101, 1096, 11919, 1, 6, 9, N'SO73641', 4, 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 (484, 1090, 1102, 1097, 11115, 1, 6, 9, N'SO73651', 1, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (530, 1090, 1102, 1097, 11131, 1, 19, 6, N'SO73665', 1, 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 (586, 1090, 1102, 1097, 11360, 1, 6, 9, N'SO73709', 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 (217, 1090, 1102, 1097, 11360, 1, 6, 9, N'SO73709', 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 (569, 1090, 1102, 1097, 11365, 1, 6, 9, N'SO73710', 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 (477, 1090, 1102, 1097, 11365, 1, 6, 9, N'SO73710', 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 (479, 1090, 1102, 1097, 11365, 1, 6, 9, N'SO73710', 3, 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 (222, 1090, 1102, 1097, 11735, 1, 100, 1, N'SO73663', 1, 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 (536, 1090, 1102, 1097, 11861, 1, 19, 6, N'SO73667', 1, 1, 1, 29.9900, 29.9900, 0, 0, 11.2163, 11.2163, 29.9900, 2.3992, 0.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1090, 1102, 1097, 11861, 1, 19, 6, N'SO73667', 2, 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 (528, 1090, 1102, 1097, 11861, 1, 19, 6, N'SO73667', 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 (585, 1090, 1102, 1097, 11946, 1, 6, 9, N'SO73711', 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 (477, 1090, 1102, 1097, 11972, 1, 100, 1, N'SO73643', 1, 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, 1090, 1102, 1097, 11972, 1, 100, 1, N'SO73643', 2, 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 (479, 1090, 1102, 1097, 11972, 1, 100, 1, N'SO73643', 3, 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 (567, 1091, 1103, 1098, 11261, 1, 100, 4, N'SO73768', 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 (228, 1091, 1103, 1098, 11510, 1, 19, 6, N'SO73728', 1, 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 (481, 1091, 1103, 1098, 11510, 1, 19, 6, N'SO73728', 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 (530, 1091, 1103, 1098, 11632, 1, 19, 6, N'SO73729', 1, 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, 1091, 1103, 1098, 11632, 1, 19, 6, N'SO73729', 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 (576, 1091, 1103, 1098, 11993, 1, 6, 9, N'SO73785', 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 (217, 1091, 1103, 1098, 11993, 1, 6, 9, N'SO73785', 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 (529, 1092, 1104, 1099, 11173, 1, 100, 1, N'SO73809', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1092, 1104, 1099, 11173, 1, 100, 1, N'SO73809', 2, 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 (540, 1092, 1104, 1099, 11276, 1, 19, 6, N'SO73815', 1, 1, 1, 32.6000, 32.6000, 0, 0, 12.1924, 12.1924, 32.6000, 2.6080, 0.8150, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1092, 1104, 1099, 11310, 1, 100, 4, N'SO73833', 1, 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, 1092, 1104, 1099, 11310, 1, 100, 4, N'SO73833', 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 (214, 1092, 1104, 1099, 11310, 1, 100, 4, N'SO73833', 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 (576, 1092, 1104, 1099, 11429, 1, 100, 7, N'SO73864', 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 (541, 1092, 1104, 1099, 11429, 1, 100, 7, N'SO73864', 2, 1, 1, 28.9900, 28.9900, 0, 0, 10.8423, 10.8423, 28.9900, 2.3192, 0.7248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (530, 1092, 1104, 1099, 11429, 1, 100, 7, N'SO73864', 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 (484, 1092, 1104, 1099, 11429, 1, 100, 7, N'SO73864', 4, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (234, 1092, 1104, 1099, 11505, 1, 19, 6, N'SO73791', 1, 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 (529, 1092, 1104, 1099, 11520, 1, 19, 6, N'SO73811', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (539, 1092, 1104, 1099, 11520, 1, 19, 6, N'SO73811', 2, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1092, 1104, 1099, 11520, 1, 19, 6, N'SO73811', 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 (530, 1092, 1104, 1099, 11520, 1, 19, 6, N'SO73812', 1, 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 (480, 1092, 1104, 1099, 11520, 2, 19, 6, N'SO73812', 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 (476, 1092, 1104, 1099, 11642, 1, 19, 6, N'SO73819', 1, 1, 1, 69.9900, 69.9900, 0, 0, 26.1763, 26.1763, 69.9900, 5.5992, 1.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (490, 1092, 1104, 1099, 11642, 1, 19, 6, N'SO73819', 2, 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 (361, 1093, 1105, 1100, 11048, 1, 6, 9, N'SO73924', 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, 1093, 1105, 1100, 11048, 1, 6, 9, N'SO73924', 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, 1093, 1105, 1100, 11048, 1, 6, 9, N'SO73924', 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 (489, 1093, 1105, 1100, 11048, 1, 6, 9, N'SO73924', 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 (225, 1093, 1105, 1100, 11048, 1, 6, 9, N'SO73924', 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 (479, 1093, 1105, 1100, 11078, 1, 19, 6, N'SO73869', 1, 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, 1093, 1105, 1100, 11078, 1, 19, 6, N'SO73869', 2, 1, 1, 4.9900, 4.9900, 0, 0, 1.8663, 1.8663, 4.9900, 0.3992, 0.1248, 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 (593, 1093, 1105, 1100, 11432, 1, 100, 7, N'SO73877', 1, 1, 1, 564.9900, 564.9900, 0, 0, 308.2179, 308.2179, 564.9900, 45.1992, 14.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 (485, 1093, 1105, 1100, 11432, 1, 100, 7, N'SO73877', 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 (214, 1093, 1105, 1100, 11432, 1, 100, 7, N'SO73877', 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 (489, 1093, 1105, 1100, 11631, 1, 19, 6, N'SO73879', 1, 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 (465, 1093, 1105, 1100, 11631, 1, 19, 6, N'SO73879', 2, 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 (214, 1093, 1105, 1100, 11711, 1, 19, 6, N'SO73878', 1, 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 (537, 1093, 1105, 1100, 11940, 1, 100, 4, N'SO73905', 1, 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 (535, 1094, 1106, 1101, 11114, 1, 6, 9, N'SO73942', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1094, 1106, 1101, 11114, 1, 6, 9, N'SO73942', 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 (214, 1094, 1106, 1101, 11114, 1, 6, 9, N'SO73942', 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 (572, 1094, 1106, 1101, 11364, 2, 6, 9, N'SO74026', 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 (530, 1094, 1106, 1101, 11510, 1, 19, 6, N'SO73960', 1, 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 (477, 1094, 1106, 1101, 11510, 1, 19, 6, N'SO73960', 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 (479, 1094, 1106, 1101, 11510, 1, 19, 6, N'SO73960', 3, 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 (482, 1094, 1106, 1101, 11510, 1, 19, 6, N'SO73960', 4, 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 (528, 1094, 1106, 1101, 11715, 1, 100, 4, N'SO73986', 1, 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, 1094, 1106, 1101, 11715, 1, 100, 4, N'SO73986', 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 (228, 1094, 1106, 1101, 11715, 1, 100, 4, N'SO73986', 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 (528, 1094, 1106, 1101, 11913, 1, 6, 9, N'SO73948', 1, 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 (480, 1094, 1106, 1101, 11913, 2, 6, 9, N'SO73948', 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 (535, 1095, 1107, 1102, 11369, 1, 6, 9, N'SO74032', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1095, 1107, 1102, 11369, 1, 6, 9, N'SO74032', 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 (484, 1095, 1107, 1102, 11500, 1, 19, 6, N'SO74031', 1, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (539, 1095, 1107, 1102, 11501, 1, 19, 6, N'SO74042', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1095, 1107, 1102, 11532, 1, 100, 1, N'SO74059', 1, 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, 1095, 1107, 1102, 11532, 1, 100, 1, N'SO74059', 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 (480, 1095, 1107, 1102, 11532, 1, 100, 1, N'SO74059', 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 (475, 1095, 1107, 1102, 11738, 1, 19, 6, N'SO74049', 1, 1, 1, 69.9900, 69.9900, 0, 0, 26.1763, 26.1763, 69.9900, 5.5992, 1.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (234, 1095, 1107, 1102, 11738, 1, 19, 6, N'SO74049', 2, 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 (566, 1095, 1107, 1102, 11947, 1, 6, 9, N'SO74093', 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 (535, 1096, 1108, 1103, 11371, 1, 6, 9, N'SO74097', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1096, 1108, 1103, 11512, 2, 19, 6, N'SO74132', 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, 1096, 1108, 1103, 11717, 1, 100, 1, N'SO74125', 1, 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, 1096, 1108, 1103, 11717, 1, 100, 1, N'SO74125', 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 (471, 1096, 1108, 1103, 11717, 1, 100, 1, N'SO74125', 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 (222, 1096, 1108, 1103, 11717, 1, 100, 1, N'SO74125', 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 (484, 1096, 1108, 1103, 11877, 1, 100, 4, N'SO74096', 1, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1097, 1109, 1104, 11051, 1, 6, 9, N'SO74155', 1, 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 (228, 1097, 1109, 1104, 11051, 1, 6, 9, N'SO74155', 2, 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 (529, 1097, 1109, 1104, 11170, 1, 100, 1, N'SO74158', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1097, 1109, 1104, 11170, 1, 100, 1, N'SO74158', 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 (228, 1097, 1109, 1104, 11170, 1, 100, 1, N'SO74158', 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, 1097, 1109, 1104, 11170, 1, 100, 1, N'SO74158', 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 (538, 1097, 1109, 1104, 11502, 1, 19, 6, N'SO74161', 1, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 1097, 1109, 1104, 11502, 1, 19, 6, N'SO74161', 2, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (484, 1097, 1109, 1104, 11502, 1, 19, 6, N'SO74161', 3, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1097, 1109, 1104, 11640, 1, 19, 6, N'SO74182', 1, 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, 1097, 1109, 1104, 11640, 1, 19, 6, N'SO74182', 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 (484, 1097, 1109, 1104, 11640, 1, 19, 6, N'SO74182', 3, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1097, 1109, 1104, 11786, 1, 100, 1, N'SO74148', 1, 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 (214, 1097, 1109, 1104, 11884, 1, 100, 1, N'SO74157', 1, 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, 1097, 1109, 1104, 11902, 1, 6, 9, N'SO74154', 1, 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 (537, 1098, 1110, 1105, 11133, 1, 100, 1, N'SO74212', 1, 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, 1098, 1110, 1105, 11133, 1, 100, 1, N'SO74212', 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, 1098, 1110, 1105, 11133, 1, 100, 1, N'SO74212', 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, 1098, 1110, 1105, 11133, 1, 100, 1, N'SO74212', 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 (529, 1098, 1110, 1105, 11276, 1, 100, 6, N'SO74192', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1098, 1110, 1105, 11276, 1, 100, 6, N'SO74192', 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 (528, 1098, 1110, 1105, 11276, 1, 100, 6, N'SO74196', 1, 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 (535, 1098, 1110, 1105, 11276, 1, 100, 6, N'SO74196', 2, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1098, 1110, 1105, 11276, 1, 100, 6, N'SO74196', 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 (237, 1098, 1110, 1105, 11530, 1, 100, 6, N'SO74194', 1, 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 (222, 1098, 1110, 1105, 11595, 1, 100, 8, N'SO74218', 1, 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 (490, 1098, 1110, 1105, 11715, 1, 100, 4, N'SO74191', 1, 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 (537, 1099, 1111, 1106, 11138, 1, 100, 4, N'SO74246', 1, 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, 1099, 1111, 1106, 11138, 1, 100, 4, N'SO74246', 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, 1099, 1111, 1106, 11185, 1, 100, 6, N'SO74245', 1, 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, 1099, 1111, 1106, 11185, 1, 100, 6, N'SO74245', 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 (214, 1099, 1111, 1106, 11185, 1, 100, 6, N'SO74245', 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 (471, 1099, 1111, 1106, 11185, 1, 100, 6, N'SO74245', 4, 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 (530, 1099, 1111, 1106, 11300, 1, 100, 6, N'SO74226', 1, 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 (487, 1099, 1111, 1106, 11300, 1, 100, 6, N'SO74226', 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 (228, 1099, 1111, 1106, 11300, 1, 100, 6, N'SO74226', 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 (484, 1099, 1111, 1106, 11749, 1, 100, 9, N'SO74224', 1, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1099, 1111, 1106, 11801, 1, 100, 1, N'SO74248', 1, 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, 1099, 1111, 1106, 11801, 1, 100, 1, N'SO74248', 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 (537, 1099, 1111, 1106, 11856, 1, 100, 1, N'SO74251', 1, 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, 1099, 1111, 1106, 11856, 1, 100, 1, N'SO74251', 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 (217, 1099, 1111, 1106, 11856, 1, 100, 1, N'SO74251', 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 (535, 1100, 1112, 1107, 11051, 1, 100, 9, N'SO74253', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1100, 1112, 1107, 11051, 1, 100, 9, N'SO74253', 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 (222, 1100, 1112, 1107, 11051, 1, 100, 9, N'SO74253', 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 (535, 1100, 1112, 1107, 11079, 1, 100, 9, N'SO74254', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1100, 1112, 1107, 11142, 1, 100, 6, N'SO74272', 1, 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, 1100, 1112, 1107, 11142, 1, 100, 6, N'SO74272', 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 (214, 1100, 1112, 1107, 11142, 1, 100, 6, N'SO74272', 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 (477, 1100, 1112, 1107, 11383, 1, 100, 7, N'SO74275', 1, 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 (479, 1100, 1112, 1107, 11383, 1, 100, 7, N'SO74275', 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 (214, 1100, 1112, 1107, 11383, 1, 100, 7, N'SO74275', 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 (222, 1100, 1112, 1107, 11733, 1, 100, 4, N'SO74261', 1, 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 (477, 1101, 1113, 1108, 11115, 1, 100, 9, N'SO74279', 1, 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, 1101, 1113, 1108, 11115, 1, 100, 9, N'SO74279', 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 (473, 1101, 1113, 1108, 11115, 1, 100, 9, N'SO74279', 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 (484, 1101, 1113, 1108, 11467, 1, 100, 9, N'SO74280', 1, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (540, 1102, 1114, 1109, 11287, 1, 100, 6, N'SO74316', 1, 1, 1, 32.6000, 32.6000, 0, 0, 12.1924, 12.1924, 32.6000, 2.6080, 0.8150, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 1102, 1114, 1109, 11287, 1, 100, 6, N'SO74316', 2, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1102, 1114, 1109, 11287, 1, 100, 6, N'SO74316', 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 (537, 1102, 1114, 1109, 11294, 1, 100, 1, N'SO74335', 1, 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, 1102, 1114, 1109, 11294, 1, 100, 1, N'SO74335', 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 (479, 1102, 1114, 1109, 11632, 1, 100, 6, N'SO74306', 1, 1, 1, 8.9900, 8.9900, 0, 0, 3.3623, 3.3623, 8.9900, 0.7192, 0.2248, 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 (477, 1102, 1114, 1109, 11632, 1, 100, 6, N'SO74306', 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 (471, 1102, 1114, 1109, 11632, 1, 100, 6, N'SO74306', 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 (528, 1102, 1114, 1109, 11645, 1, 100, 1, N'SO74334', 1, 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, 1102, 1114, 1109, 11645, 1, 100, 1, N'SO74334', 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 (217, 1102, 1114, 1109, 11645, 1, 100, 1, N'SO74334', 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 (465, 1102, 1114, 1109, 11645, 1, 100, 1, N'SO74334', 4, 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 (477, 1102, 1114, 1109, 11723, 1, 100, 6, N'SO74321', 1, 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 (217, 1102, 1114, 1109, 11723, 1, 100, 6, N'SO74321', 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 (537, 1103, 1115, 1110, 11218, 1, 100, 1, N'SO74362', 1, 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, 1103, 1115, 1110, 11218, 1, 100, 1, N'SO74362', 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 (217, 1103, 1115, 1110, 11435, 1, 100, 8, N'SO74364', 1, 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 (491, 1103, 1115, 1110, 11668, 1, 100, 4, N'SO74342', 1, 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 (214, 1104, 1116, 1111, 11091, 1, 100, 6, N'SO74373', 1, 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 (529, 1104, 1116, 1111, 11182, 1, 100, 1, N'SO74379', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1104, 1116, 1111, 11182, 1, 100, 1, N'SO74379', 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 (529, 1104, 1116, 1111, 11235, 1, 100, 1, N'SO74377', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1104, 1116, 1111, 11235, 1, 100, 1, N'SO74377', 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 (465, 1104, 1116, 1111, 11235, 1, 100, 1, N'SO74377', 3, 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 (480, 1104, 1116, 1111, 11309, 1, 100, 1, N'SO74376', 1, 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 (222, 1104, 1116, 1111, 11597, 1, 100, 7, N'SO74415', 1, 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 (480, 1104, 1116, 1111, 11644, 1, 100, 1, N'SO74375', 1, 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 (537, 1104, 1116, 1111, 11985, 1, 100, 1, N'SO74410', 1, 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, 1104, 1116, 1111, 11985, 1, 100, 1, N'SO74410', 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 (535, 1105, 1117, 1112, 11223, 1, 100, 6, N'SO74425', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1105, 1117, 1112, 11223, 1, 100, 6, N'SO74425', 2, 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 (529, 1105, 1117, 1112, 11236, 1, 100, 1, N'SO74422', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1105, 1117, 1112, 11236, 1, 100, 1, N'SO74422', 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 (222, 1105, 1117, 1112, 11552, 1, 100, 8, N'SO74441', 1, 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 (538, 1105, 1117, 1112, 11659, 1, 100, 6, N'SO74424', 1, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1106, 1118, 1113, 11186, 1, 100, 4, N'SO74464', 1, 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, 1106, 1118, 1113, 11186, 1, 100, 4, N'SO74464', 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 (476, 1106, 1118, 1113, 11211, 1, 100, 6, N'SO74455', 1, 1, 1, 69.9900, 69.9900, 0, 0, 26.1763, 26.1763, 69.9900, 5.5992, 1.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (535, 1106, 1118, 1113, 11262, 1, 100, 6, N'SO74446', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1106, 1118, 1113, 11262, 1, 100, 6, N'SO74446', 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 (538, 1106, 1118, 1113, 11277, 1, 100, 6, N'SO74447', 1, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 1106, 1118, 1113, 11277, 1, 100, 6, N'SO74447', 2, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (541, 1106, 1118, 1113, 11566, 1, 100, 7, N'SO74463', 1, 1, 1, 28.9900, 28.9900, 0, 0, 10.8423, 10.8423, 28.9900, 2.3192, 0.7248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (530, 1106, 1118, 1113, 11566, 1, 100, 7, N'SO74463', 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 (480, 1106, 1118, 1113, 11566, 1, 100, 7, N'SO74463', 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 (528, 1106, 1118, 1113, 11733, 1, 100, 4, N'SO74465', 1, 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, 1106, 1118, 1113, 11733, 1, 100, 4, N'SO74465', 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 (483, 1106, 1118, 1113, 11733, 1, 100, 4, N'SO74465', 3, 1, 1, 120.0000, 120.0000, 0, 0, 44.8800, 44.8800, 120.0000, 9.6000, 3.0000, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 1107, 1119, 1114, 11085, 1, 100, 4, N'SO74479', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1107, 1119, 1114, 11085, 1, 100, 4, N'SO74479', 2, 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 (539, 1107, 1119, 1114, 11091, 1, 100, 6, N'SO74480', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 1107, 1119, 1114, 11091, 1, 100, 6, N'SO74480', 2, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1107, 1119, 1114, 11441, 1, 100, 7, N'SO74502', 1, 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 (222, 1107, 1119, 1114, 11441, 1, 100, 7, N'SO74502', 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 (480, 1107, 1119, 1114, 11639, 1, 100, 4, N'SO74478', 1, 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 (214, 1107, 1119, 1114, 11730, 1, 100, 1, N'SO74477', 1, 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 (528, 1107, 1119, 1114, 11957, 1, 100, 1, N'SO74501', 1, 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, 1107, 1119, 1114, 11957, 1, 100, 1, N'SO74501', 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 (480, 1107, 1119, 1114, 11957, 1, 100, 1, N'SO74501', 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 (529, 1108, 1120, 1115, 11179, 1, 100, 4, N'SO74508', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1108, 1120, 1115, 11179, 1, 100, 4, N'SO74508', 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 (465, 1108, 1120, 1115, 11179, 1, 100, 4, N'SO74508', 3, 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 (536, 1108, 1120, 1115, 11200, 1, 100, 6, N'SO74516', 1, 1, 1, 29.9900, 29.9900, 0, 0, 11.2163, 11.2163, 29.9900, 2.3992, 0.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1108, 1120, 1115, 11200, 1, 100, 6, N'SO74516', 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 (486, 1108, 1120, 1115, 11200, 1, 100, 6, N'SO74516', 3, 1, 1, 159.0000, 159.0000, 0, 0, 59.4660, 59.4660, 159.0000, 12.7200, 3.9750, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 1108, 1120, 1115, 11498, 1, 100, 6, N'SO74511', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1108, 1120, 1115, 11824, 1, 100, 6, N'SO74522', 1, 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 (488, 1108, 1120, 1115, 11824, 1, 100, 6, N'SO74522', 2, 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 (484, 1108, 1120, 1115, 11923, 1, 100, 4, N'SO74503', 1, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1108, 1120, 1115, 11927, 1, 100, 1, N'SO74529', 1, 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 (537, 1108, 1120, 1115, 11938, 1, 100, 4, N'SO74530', 1, 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 (529, 1109, 1121, 1116, 11065, 1, 100, 4, N'SO74538', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1109, 1121, 1116, 11065, 1, 100, 4, N'SO74538', 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 (480, 1109, 1121, 1116, 11500, 1, 100, 6, N'SO74536', 1, 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 (537, 1109, 1121, 1116, 11533, 1, 100, 5, N'SO74548', 1, 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 (231, 1109, 1121, 1116, 11585, 1, 100, 10, N'SO74551', 1, 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 (483, 1110, 1122, 1117, 11019, 1, 100, 6, N'SO74561', 1, 1, 1, 120.0000, 120.0000, 0, 0, 44.8800, 44.8800, 120.0000, 9.6000, 3.0000, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1110, 1122, 1117, 11094, 1, 100, 9, N'SO74557', 1, 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, 1110, 1122, 1117, 11094, 1, 100, 9, N'SO74557', 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 (491, 1110, 1122, 1117, 11094, 1, 100, 9, N'SO74557', 3, 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 (225, 1110, 1122, 1117, 11094, 1, 100, 9, N'SO74557', 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 (528, 1110, 1122, 1117, 11172, 1, 100, 1, N'SO74581', 1, 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, 1110, 1122, 1117, 11172, 1, 100, 1, N'SO74581', 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 (478, 1110, 1122, 1117, 11172, 1, 100, 1, N'SO74581', 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, 1110, 1122, 1117, 11172, 1, 100, 1, N'SO74581', 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 (217, 1110, 1122, 1117, 11172, 1, 100, 1, N'SO74581', 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 (535, 1110, 1122, 1117, 11212, 1, 100, 6, N'SO74563', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1110, 1122, 1117, 11212, 1, 100, 6, N'SO74563', 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 (528, 1110, 1122, 1117, 11519, 1, 100, 6, N'SO74579', 1, 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, 1110, 1122, 1117, 11519, 1, 100, 6, N'SO74579', 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 (217, 1110, 1122, 1117, 11729, 1, 100, 1, N'SO74560', 1, 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 (537, 1110, 1122, 1117, 11844, 1, 100, 4, N'SO74582', 1, 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, 1110, 1122, 1117, 11844, 1, 100, 4, N'SO74582', 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 (222, 1110, 1122, 1117, 11844, 1, 100, 4, N'SO74582', 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 (528, 1110, 1122, 1117, 11849, 1, 100, 4, N'SO74580', 1, 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, 1110, 1122, 1117, 11849, 1, 100, 4, N'SO74580', 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 (486, 1110, 1122, 1117, 11849, 1, 100, 4, N'SO74580', 3, 1, 1, 159.0000, 159.0000, 0, 0, 59.4660, 59.4660, 159.0000, 12.7200, 3.9750, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (530, 1111, 1123, 1118, 11019, 1, 100, 6, N'SO74593', 1, 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, 1111, 1123, 1118, 11019, 1, 100, 6, N'SO74593', 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 (467, 1111, 1123, 1118, 11019, 1, 100, 6, N'SO74593', 3, 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 (528, 1111, 1123, 1118, 11067, 1, 100, 1, N'SO74615', 1, 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, 1111, 1123, 1118, 11067, 1, 100, 1, N'SO74615', 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 (222, 1111, 1123, 1118, 11067, 1, 100, 1, N'SO74615', 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 (463, 1111, 1123, 1118, 11067, 1, 100, 1, N'SO74615', 4, 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 (530, 1111, 1123, 1118, 11176, 1, 100, 6, N'SO74596', 1, 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 (535, 1111, 1123, 1118, 11287, 1, 100, 6, N'SO74597', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, 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 (528, 1111, 1123, 1118, 11287, 1, 100, 6, N'SO74597', 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 (480, 1111, 1123, 1118, 11656, 1, 100, 4, N'SO74592', 1, 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 (529, 1112, 1124, 1119, 11142, 1, 100, 6, N'SO74625', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1112, 1124, 1119, 11142, 1, 100, 6, N'SO74625', 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 (475, 1112, 1124, 1119, 11176, 1, 100, 6, N'SO74634', 1, 1, 1, 69.9900, 69.9900, 0, 0, 26.1763, 26.1763, 69.9900, 5.5992, 1.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (237, 1112, 1124, 1119, 11176, 1, 100, 6, N'SO74634', 2, 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 (463, 1112, 1124, 1119, 11176, 1, 100, 6, N'SO74634', 3, 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 (488, 1112, 1124, 1119, 11262, 1, 100, 6, N'SO74624', 1, 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 (477, 1112, 1124, 1119, 11349, 1, 100, 8, N'SO74649', 1, 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 (479, 1112, 1124, 1119, 11349, 1, 100, 8, N'SO74649', 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 (489, 1112, 1124, 1119, 11349, 1, 100, 8, N'SO74649', 3, 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 (490, 1112, 1124, 1119, 11716, 1, 100, 4, N'SO74623', 1, 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 (529, 1113, 1125, 1120, 11023, 1, 100, 4, N'SO74658', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1113, 1125, 1120, 11023, 1, 100, 4, N'SO74658', 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 (540, 1113, 1125, 1120, 11277, 1, 100, 6, N'SO74660', 1, 1, 1, 32.6000, 32.6000, 0, 0, 12.1924, 12.1924, 32.6000, 2.6080, 0.8150, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 1113, 1125, 1120, 11277, 1, 100, 6, N'SO74660', 2, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1113, 1125, 1120, 11277, 1, 100, 6, N'SO74660', 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 (528, 1113, 1125, 1120, 11633, 1, 100, 1, N'SO74687', 1, 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, 1113, 1125, 1120, 11633, 1, 100, 1, N'SO74687', 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 (217, 1113, 1125, 1120, 11633, 1, 100, 1, N'SO74687', 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 (536, 1113, 1125, 1120, 11698, 1, 100, 6, N'SO74662', 1, 1, 1, 29.9900, 29.9900, 0, 0, 11.2163, 11.2163, 29.9900, 2.3992, 0.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1113, 1125, 1120, 11823, 1, 100, 6, N'SO74668', 1, 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, 1113, 1125, 1120, 11823, 1, 100, 6, N'SO74668', 2, 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 (529, 1114, 1126, 1121, 11176, 1, 100, 6, N'SO74699', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (540, 1114, 1126, 1121, 11176, 1, 100, 6, N'SO74699', 2, 1, 1, 32.6000, 32.6000, 0, 0, 12.1924, 12.1924, 32.6000, 2.6080, 0.8150, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1114, 1126, 1121, 11176, 1, 100, 6, N'SO74699', 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 (480, 1114, 1126, 1121, 11308, 1, 100, 1, N'SO74695', 1, 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 (529, 1114, 1126, 1121, 11711, 1, 100, 6, N'SO74698', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (540, 1114, 1126, 1121, 11711, 1, 100, 6, N'SO74698', 2, 1, 1, 32.6000, 32.6000, 0, 0, 12.1924, 12.1924, 32.6000, 2.6080, 0.8150, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1115, 1127, 1122, 11190, 1, 100, 4, N'SO74750', 1, 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, 1115, 1127, 1122, 11190, 1, 100, 4, N'SO74750', 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 (535, 1115, 1127, 1122, 11277, 1, 100, 6, N'SO74728', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1115, 1127, 1122, 11277, 1, 100, 6, N'SO74728', 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 (480, 1115, 1127, 1122, 11277, 1, 100, 6, N'SO74728', 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 (491, 1115, 1127, 1122, 11819, 1, 100, 1, N'SO74726', 1, 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 (477, 1115, 1127, 1122, 11869, 1, 100, 6, N'SO74736', 1, 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 (467, 1115, 1127, 1122, 11869, 1, 100, 6, N'SO74736', 2, 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 (529, 1116, 1128, 1123, 11212, 1, 100, 6, N'SO74759', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1116, 1128, 1123, 11212, 1, 100, 6, N'SO74759', 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 (537, 1116, 1128, 1123, 11228, 1, 100, 4, N'SO74778', 1, 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, 1116, 1128, 1123, 11228, 1, 100, 4, N'SO74778', 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 (217, 1116, 1128, 1123, 11228, 1, 100, 4, N'SO74778', 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 (537, 1116, 1128, 1123, 11870, 1, 100, 1, N'SO74779', 1, 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, 1116, 1128, 1123, 11870, 1, 100, 1, N'SO74779', 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 (483, 1116, 1128, 1123, 11870, 1, 100, 1, N'SO74779', 3, 1, 1, 120.0000, 120.0000, 0, 0, 44.8800, 44.8800, 120.0000, 9.6000, 3.0000, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (234, 1116, 1128, 1123, 11870, 1, 100, 1, N'SO74779', 4, 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 (484, 1117, 1129, 1124, 11276, 1, 100, 6, N'SO74784', 1, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1117, 1129, 1124, 11458, 1, 100, 9, N'SO74795', 1, 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 (535, 1117, 1129, 1124, 11458, 1, 100, 9, N'SO74795', 2, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1117, 1129, 1124, 11458, 1, 100, 9, N'SO74795', 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 (480, 1117, 1129, 1124, 11501, 1, 100, 6, N'SO74793', 1, 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 (483, 1117, 1129, 1124, 11501, 1, 100, 6, N'SO74793', 2, 1, 1, 120.0000, 120.0000, 0, 0, 44.8800, 44.8800, 120.0000, 9.6000, 3.0000, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1117, 1129, 1124, 11636, 1, 100, 4, N'SO74794', 1, 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 (491, 1117, 1129, 1124, 11692, 1, 100, 4, N'SO74792', 1, 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 (478, 1117, 1129, 1124, 11740, 1, 100, 6, N'SO74801', 1, 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, 1117, 1129, 1124, 11740, 1, 100, 6, N'SO74801', 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 (214, 1117, 1129, 1124, 11740, 1, 100, 6, N'SO74801', 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 (484, 1117, 1129, 1124, 11874, 1, 100, 4, N'SO74785', 1, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (476, 1118, 1130, 1125, 11520, 1, 100, 6, N'SO74822', 1, 1, 1, 69.9900, 69.9900, 0, 0, 26.1763, 26.1763, 69.9900, 5.5992, 1.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (237, 1118, 1130, 1125, 11520, 1, 100, 6, N'SO74822', 2, 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 (489, 1118, 1130, 1125, 11680, 1, 100, 1, N'SO74814', 1, 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 (529, 1119, 1131, 1126, 11137, 1, 100, 1, N'SO74843', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1119, 1131, 1126, 11137, 1, 100, 1, N'SO74843', 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 (480, 1119, 1131, 1126, 11200, 1, 100, 6, N'SO74855', 1, 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 (530, 1119, 1131, 1126, 11507, 1, 100, 6, N'SO74856', 1, 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 (480, 1119, 1131, 1126, 11507, 1, 100, 6, N'SO74856', 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 (537, 1120, 1132, 1127, 11013, 1, 100, 1, N'SO74908', 1, 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, 1120, 1132, 1127, 11013, 1, 100, 1, N'SO74908', 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 (222, 1120, 1132, 1127, 11013, 1, 100, 1, N'SO74908', 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 (529, 1120, 1132, 1127, 11188, 1, 100, 4, N'SO74880', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1120, 1132, 1127, 11188, 1, 100, 4, N'SO74880', 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 (537, 1120, 1132, 1127, 11501, 1, 100, 6, N'SO74909', 1, 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, 1120, 1132, 1127, 11501, 1, 100, 6, N'SO74909', 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 (217, 1120, 1132, 1127, 11501, 1, 100, 6, N'SO74909', 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 (473, 1120, 1132, 1127, 11501, 1, 100, 6, N'SO74909', 4, 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 (530, 1120, 1132, 1127, 11711, 1, 100, 6, N'SO74887', 1, 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, 1121, 1133, 1128, 11209, 1, 100, 4, N'SO74935', 1, 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 (222, 1121, 1133, 1128, 11262, 1, 100, 6, N'SO74919', 1, 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 (541, 1121, 1133, 1128, 11276, 1, 100, 6, N'SO74923', 1, 1, 1, 28.9900, 28.9900, 0, 0, 10.8423, 10.8423, 28.9900, 2.3192, 0.7248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (530, 1121, 1133, 1128, 11276, 1, 100, 6, N'SO74923', 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 (214, 1121, 1133, 1128, 11276, 1, 100, 6, N'SO74923', 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 (535, 1121, 1133, 1128, 11330, 1, 100, 6, N'SO74922', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (484, 1121, 1133, 1128, 11501, 1, 100, 6, N'SO74913', 1, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (539, 1121, 1133, 1128, 11506, 1, 100, 6, N'SO74920', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 1121, 1133, 1128, 11506, 1, 100, 6, N'SO74920', 2, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1121, 1133, 1128, 11506, 1, 100, 6, N'SO74920', 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 (481, 1121, 1133, 1128, 11506, 1, 100, 6, N'SO74920', 4, 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 (231, 1122, 1134, 1129, 11131, 1, 100, 6, N'SO74941', 1, 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 (537, 1122, 1134, 1129, 11786, 1, 100, 1, N'SO74967', 1, 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, 1122, 1134, 1129, 11786, 1, 100, 1, N'SO74967', 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, 1122, 1134, 1129, 11786, 1, 100, 1, N'SO74967', 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 (536, 1122, 1134, 1129, 11823, 1, 100, 6, N'SO74949', 1, 1, 1, 29.9900, 29.9900, 0, 0, 11.2163, 11.2163, 29.9900, 2.3992, 0.7498, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1122, 1134, 1129, 11823, 1, 100, 6, N'SO74949', 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 (217, 1122, 1134, 1129, 11823, 1, 100, 6, N'SO74949', 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 (480, 1123, 1135, 1130, 11219, 1, 100, 1, N'SO74978', 1, 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 (529, 1123, 1135, 1130, 11331, 1, 100, 6, N'SO74975', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1123, 1135, 1130, 11331, 1, 100, 6, N'SO74975', 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 (529, 1123, 1135, 1130, 11502, 1, 100, 6, N'SO74977', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1123, 1135, 1130, 11502, 1, 100, 6, N'SO74977', 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 (237, 1123, 1135, 1130, 11502, 1, 100, 6, N'SO74977', 3, 1, 1, 49.9900, 49.9900, 0, 0, 38.4923, 38.4923, 49.9900, 3.9992, 1.2498, 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 (225, 1123, 1135, 1130, 11502, 1, 100, 6, N'SO74977', 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 (529, 1123, 1135, 1130, 11642, 1, 100, 6, N'SO74980', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (538, 1123, 1135, 1130, 11642, 1, 100, 6, N'SO74980', 2, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1123, 1135, 1130, 11642, 1, 100, 6, N'SO74980', 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 (478, 1124, 1136, 1131, 11123, 1, 100, 9, N'SO75001', 1, 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, 1124, 1136, 1131, 11123, 1, 100, 9, N'SO75001', 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 (217, 1124, 1136, 1131, 11123, 1, 100, 9, N'SO75001', 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 (491, 1124, 1136, 1131, 11123, 1, 100, 9, N'SO75001', 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 (529, 1124, 1136, 1131, 11229, 1, 100, 4, N'SO75004', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1124, 1136, 1131, 11229, 1, 100, 4, N'SO75004', 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 (484, 1125, 1137, 1132, 11118, 1, 100, 9, N'SO75034', 1, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 1125, 1137, 1132, 11185, 1, 100, 6, N'SO75038', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (538, 1125, 1137, 1132, 11185, 1, 100, 6, N'SO75038', 2, 1, 1, 21.4900, 21.4900, 0, 0, 8.0373, 8.0373, 21.4900, 1.7192, 0.5373, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (489, 1125, 1137, 1132, 11185, 1, 100, 6, N'SO75038', 3, 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 (225, 1125, 1137, 1132, 11711, 1, 100, 6, N'SO75036', 1, 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 (489, 1125, 1137, 1132, 11711, 1, 100, 6, N'SO75036', 2, 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 (535, 1126, 1138, 1133, 11176, 1, 100, 6, N'SO75070', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (530, 1126, 1138, 1133, 11502, 1, 100, 6, N'SO75069', 1, 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 (217, 1126, 1138, 1133, 11502, 1, 100, 6, N'SO75069', 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 (231, 1126, 1138, 1133, 11502, 1, 100, 6, N'SO75069', 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, 1126, 1138, 1133, 11502, 1, 100, 6, N'SO75069', 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 (535, 1126, 1138, 1133, 11875, 1, 100, 6, N'SO75073', 1, 1, 1, 24.9900, 24.9900, 0, 0, 9.3463, 9.3463, 24.9900, 1.9992, 0.6248, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1126, 1138, 1133, 11875, 1, 100, 6, N'SO75073', 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 (483, 1127, 1139, 1134, 11078, 1, 100, 6, N'SO75084', 1, 1, 1, 120.0000, 120.0000, 0, 0, 44.8800, 44.8800, 120.0000, 9.6000, 3.0000, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([ProductKey], [OrderDateKey], [DueDateKey], [ShipDateKey], [CustomerKey], [PromotionKey], [CurrencyKey], [SalesTerritoryKey], [SalesOrderNumber], [SalesOrderLineNumber], [RevisionNumber], [OrderQuantity], [UnitPrice], [ExtendedAmount], [UnitPriceDiscountPct], [DiscountAmount], [ProductStandardCost], [TotalProductCost], [SalesAmount], [TaxAmt], [Freight], [CarrierTrackingNumber], [CustomerPONumber]) VALUES (529, 1127, 1139, 1134, 11287, 1, 100, 6, N'SO75096', 1, 1, 1, 3.9900, 3.9900, 0, 0, 1.4923, 1.4923, 3.9900, 0.3192, 0.0998, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1127, 1139, 1134, 11287, 1, 100, 6, N'SO75096', 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 (237, 1127, 1139, 1134, 11287, 1, 100, 6, N'SO75096', 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 (488, 1127, 1139, 1134, 11657, 1, 100, 4, N'SO75095', 1, 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 (214, 1127, 1139, 1134, 11794, 1, 100, 4, N'SO75087', 1, 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, 1127, 1139, 1134, 11927, 1, 100, 1, N'SO75085', 1, 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 (484, 1127, 1139, 1134, 11927, 1, 100, 1, N'SO75085', 2, 1, 1, 7.9500, 7.9500, 0, 0, 2.9733, 2.9733, 7.9500, 0.6360, 0.1988, NULL, NULL)
INSERT [dbo].[SALES_DATA] ([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, 1127, 1139, 1134, 11981, 1, 100, 1, N'SO75119', 1, 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, 1127, 1139, 1134, 11981, 1, 100, 1, N'SO75119', 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 (480, 1127, 1139, 1134, 11981, 1, 100, 1, N'SO75119', 3, 1, 1, 2.2900, 2.2900, 0, 0, 0.8565, 0.8565, 2.2900, 0.1832, 0.0573, NULL, NULL)
GO