├── adventureworks ├── README.md ├── data │ ├── AWBuildVersion.csv │ ├── Address.csv │ ├── AddressType.csv │ ├── BillOfMaterials.csv │ ├── BusinessEntity.csv │ ├── BusinessEntityAddress.csv │ ├── BusinessEntityContact.csv │ ├── ContactType.csv │ ├── CountryRegion.csv │ ├── CountryRegionCurrency.csv │ ├── CreditCard.csv │ ├── Culture.csv │ ├── Currency.csv │ ├── CurrencyRate.csv │ ├── Customer.csv │ ├── Department.csv │ ├── Document.csv │ ├── EmailAddress.csv │ ├── Employee.csv │ ├── EmployeeDepartmentHistory.csv │ ├── EmployeePayHistory.csv │ ├── ErrorLog.csv │ ├── Illustration.csv │ ├── JobCandidate.csv │ ├── JobCandidate_TOREMOVE.csv │ ├── Location.csv │ ├── Password.csv │ ├── Person.csv │ ├── PersonCreditCard.csv │ ├── PersonPhone.csv │ ├── PhoneNumberType.csv │ ├── Product.csv │ ├── ProductCategory.csv │ ├── ProductCostHistory.csv │ ├── ProductDescription.csv │ ├── ProductDocument.csv │ ├── ProductInventory.csv │ ├── ProductListPriceHistory.csv │ ├── ProductModel.csv │ ├── ProductModelIllustration.csv │ ├── ProductModelProductDescriptionCulture.csv │ ├── ProductModelorg.csv │ ├── ProductPhoto.csv │ ├── ProductProductPhoto.csv │ ├── ProductReview.csv │ ├── ProductSubcategory.csv │ ├── ProductVendor.csv │ ├── PurchaseOrderDetail.csv │ ├── PurchaseOrderHeader.csv │ ├── SalesOrderDetail.csv │ ├── SalesOrderHeader.csv │ ├── SalesOrderHeaderSalesReason.csv │ ├── SalesPerson.csv │ ├── SalesPersonQuotaHistory.csv │ ├── SalesReason.csv │ ├── SalesTaxRate.csv │ ├── SalesTerritory.csv │ ├── SalesTerritoryHistory.csv │ ├── ScrapReason.csv │ ├── Shift.csv │ ├── ShipMethod.csv │ ├── ShoppingCartItem.csv │ ├── SpecialOffer.csv │ ├── SpecialOfferProduct.csv │ ├── StateProvince.csv │ ├── Store.csv │ ├── TransactionHistory.csv │ ├── TransactionHistoryArchive.csv │ ├── UnitMeasure.csv │ ├── Vendor.csv │ ├── WorkOrder.csv │ └── WorkOrderRouting.csv └── install.sql ├── chinook-1.4 ├── Chinook_PostgreSql.sql ├── Chinook_PostgreSql_utf8.sql ├── LICENSE.md ├── datamodel.png └── readme.md ├── dellstore2-normal-1.0 ├── LICENSE ├── README └── dellstore2-normal-1.0.sql ├── french-towns-communes-francaises ├── Makefile ├── README ├── comsimp2postgresql.py └── french-towns-communes-francaises.sql ├── iso-3166 ├── README └── iso-3166.sql ├── pagila-0.10.1 ├── README ├── pagila-data.sql ├── pagila-insert-data.sql └── pagila-schema.sql ├── readme.md ├── role-based-access-control ├── rbac.sql ├── readme.md └── sandhu-ferraiolo-kuhn-00.pdf ├── usda-r18-1.0 ├── README └── usda.sql └── worldDB-1.0 ├── README └── world.sql /adventureworks/README.md: -------------------------------------------------------------------------------- 1 | # Adventureworks from SQL Server 2 | 3 | Commands: 4 | 5 | ``` 6 | psql -c "CREATE DATABASE \"Adventureworks\";" 7 | psql -d Adventureworks < install.sql 8 | ``` 9 | 10 | To see list of tables 11 | 12 | ``` 13 | \c "Adventureworks" 14 | \dt (humanresources|person|production|purchasing|sales).* 15 | ``` 16 | 17 | 18 | Credits: [lorint-AdventureWorks for Postgres](https://github.com/lorint/AdventureWorks-for-Postgres) 19 | -------------------------------------------------------------------------------- /adventureworks/data/AWBuildVersion.csv: -------------------------------------------------------------------------------- 1 | 1 12.0.1800 2014-02-20 04:26:00 2014-07-08 00:00:00 2 | -------------------------------------------------------------------------------- /adventureworks/data/Address.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morenoh149/postgresDBSamples/2bdc9539762092912655e1b82b7433d3151389dc/adventureworks/data/Address.csv -------------------------------------------------------------------------------- /adventureworks/data/AddressType.csv: -------------------------------------------------------------------------------- 1 | 1 Billing {B84F78B1-4EFE-4A0E-8CB7-70E9F112F886} 2008-04-30 00:00:00 2 | 2 Home {41BC2FF6-F0FC-475F-8EB9-CEC0805AA0F2} 2008-04-30 00:00:00 3 | 3 Main Office {8EEEC28C-07A2-4FB9-AD0A-42D4A0BBC575} 2008-04-30 00:00:00 4 | 4 Primary {24CB3088-4345-47C4-86C5-17B535133D1E} 2008-04-30 00:00:00 5 | 5 Shipping {B29DA3F8-19A3-47DA-9DAA-15C84F4A83A5} 2008-04-30 00:00:00 6 | 6 Archive {A67F238A-5BA2-444B-966C-0467ED9C427F} 2008-04-30 00:00:00 7 | -------------------------------------------------------------------------------- /adventureworks/data/ContactType.csv: -------------------------------------------------------------------------------- 1 | 1 Accounting Manager 2008-04-30 00:00:00 2 | 2 Assistant Sales Agent 2008-04-30 00:00:00 3 | 3 Assistant Sales Representative 2008-04-30 00:00:00 4 | 4 Coordinator Foreign Markets 2008-04-30 00:00:00 5 | 5 Export Administrator 2008-04-30 00:00:00 6 | 6 International Marketing Manager 2008-04-30 00:00:00 7 | 7 Marketing Assistant 2008-04-30 00:00:00 8 | 8 Marketing Manager 2008-04-30 00:00:00 9 | 9 Marketing Representative 2008-04-30 00:00:00 10 | 10 Order Administrator 2008-04-30 00:00:00 11 | 11 Owner 2008-04-30 00:00:00 12 | 12 Owner/Marketing Assistant 2008-04-30 00:00:00 13 | 13 Product Manager 2008-04-30 00:00:00 14 | 14 Purchasing Agent 2008-04-30 00:00:00 15 | 15 Purchasing Manager 2008-04-30 00:00:00 16 | 16 Regional Account Representative 2008-04-30 00:00:00 17 | 17 Sales Agent 2008-04-30 00:00:00 18 | 18 Sales Associate 2008-04-30 00:00:00 19 | 19 Sales Manager 2008-04-30 00:00:00 20 | 20 Sales Representative 2008-04-30 00:00:00 21 | -------------------------------------------------------------------------------- /adventureworks/data/CountryRegion.csv: -------------------------------------------------------------------------------- 1 | AD Andorra 2008-04-30 00:00:00 2 | AE United Arab Emirates 2008-04-30 00:00:00 3 | AF Afghanistan 2008-04-30 00:00:00 4 | AG Antigua and Barbuda 2008-04-30 00:00:00 5 | AI Anguilla 2008-04-30 00:00:00 6 | AL Albania 2008-04-30 00:00:00 7 | AM Armenia 2008-04-30 00:00:00 8 | AN Netherlands Antilles 2008-04-30 00:00:00 9 | AO Angola 2008-04-30 00:00:00 10 | AQ Antarctica 2008-04-30 00:00:00 11 | AR Argentina 2008-04-30 00:00:00 12 | AS American Samoa 2008-04-30 00:00:00 13 | AT Austria 2008-04-30 00:00:00 14 | AU Australia 2008-04-30 00:00:00 15 | AW Aruba 2008-04-30 00:00:00 16 | AZ Azerbaijan 2008-04-30 00:00:00 17 | BA Bosnia and Herzegovina 2008-04-30 00:00:00 18 | BB Barbados 2008-04-30 00:00:00 19 | BD Bangladesh 2008-04-30 00:00:00 20 | BE Belgium 2008-04-30 00:00:00 21 | BF Burkina Faso 2008-04-30 00:00:00 22 | BG Bulgaria 2008-04-30 00:00:00 23 | BH Bahrain 2008-04-30 00:00:00 24 | BI Burundi 2008-04-30 00:00:00 25 | BJ Benin 2008-04-30 00:00:00 26 | BM Bermuda 2008-04-30 00:00:00 27 | BN Brunei 2008-04-30 00:00:00 28 | BO Bolivia 2008-04-30 00:00:00 29 | BR Brazil 2008-04-30 00:00:00 30 | BS Bahamas, The 2008-04-30 00:00:00 31 | BT Bhutan 2008-04-30 00:00:00 32 | BV Bouvet Island 2008-04-30 00:00:00 33 | BW Botswana 2008-04-30 00:00:00 34 | BY Belarus 2008-04-30 00:00:00 35 | BZ Belize 2008-04-30 00:00:00 36 | CA Canada 2008-04-30 00:00:00 37 | CC Cocos (Keeling) Islands 2008-04-30 00:00:00 38 | CD Congo (DRC) 2008-04-30 00:00:00 39 | CF Central African Republic 2008-04-30 00:00:00 40 | CG Congo 2008-04-30 00:00:00 41 | CH Switzerland 2008-04-30 00:00:00 42 | CI Côte d'Ivoire 2008-04-30 00:00:00 43 | CK Cook Islands 2008-04-30 00:00:00 44 | CL Chile 2008-04-30 00:00:00 45 | CM Cameroon 2008-04-30 00:00:00 46 | CN China 2008-04-30 00:00:00 47 | CO Colombia 2008-04-30 00:00:00 48 | CR Costa Rica 2008-04-30 00:00:00 49 | CS Serbia and Montenegro 2008-04-30 00:00:00 50 | CU Cuba 2008-04-30 00:00:00 51 | CV Cape Verde 2008-04-30 00:00:00 52 | CX Christmas Island 2008-04-30 00:00:00 53 | CY Cyprus 2008-04-30 00:00:00 54 | CZ Czech Republic 2008-04-30 00:00:00 55 | DE Germany 2008-04-30 00:00:00 56 | DJ Djibouti 2008-04-30 00:00:00 57 | DK Denmark 2008-04-30 00:00:00 58 | DM Dominica 2008-04-30 00:00:00 59 | DO Dominican Republic 2008-04-30 00:00:00 60 | DZ Algeria 2008-04-30 00:00:00 61 | EC Ecuador 2008-04-30 00:00:00 62 | EE Estonia 2008-04-30 00:00:00 63 | EG Egypt 2008-04-30 00:00:00 64 | ER Eritrea 2008-04-30 00:00:00 65 | ES Spain 2008-04-30 00:00:00 66 | ET Ethiopia 2008-04-30 00:00:00 67 | FI Finland 2008-04-30 00:00:00 68 | FJ Fiji Islands 2008-04-30 00:00:00 69 | FK Falkland Islands (Islas Malvinas) 2008-04-30 00:00:00 70 | FM Micronesia 2008-04-30 00:00:00 71 | FO Faroe Islands 2008-04-30 00:00:00 72 | FR France 2008-04-30 00:00:00 73 | GA Gabon 2008-04-30 00:00:00 74 | GB United Kingdom 2008-04-30 00:00:00 75 | GD Grenada 2008-04-30 00:00:00 76 | GE Georgia 2008-04-30 00:00:00 77 | GF French Guiana 2008-04-30 00:00:00 78 | GH Ghana 2008-04-30 00:00:00 79 | GI Gibraltar 2008-04-30 00:00:00 80 | GL Greenland 2008-04-30 00:00:00 81 | GM Gambia, The 2008-04-30 00:00:00 82 | GN Guinea 2008-04-30 00:00:00 83 | GP Guadeloupe 2008-04-30 00:00:00 84 | GQ Equatorial Guinea 2008-04-30 00:00:00 85 | GR Greece 2008-04-30 00:00:00 86 | GS South Georgia and the South Sandwich Islands 2008-04-30 00:00:00 87 | GT Guatemala 2008-04-30 00:00:00 88 | GU Guam 2008-04-30 00:00:00 89 | GW Guinea-Bissau 2008-04-30 00:00:00 90 | GY Guyana 2008-04-30 00:00:00 91 | HK Hong Kong SAR 2008-04-30 00:00:00 92 | HM Heard Island and McDonald Islands 2008-04-30 00:00:00 93 | HN Honduras 2008-04-30 00:00:00 94 | HR Croatia 2008-04-30 00:00:00 95 | HT Haiti 2008-04-30 00:00:00 96 | HU Hungary 2008-04-30 00:00:00 97 | ID Indonesia 2008-04-30 00:00:00 98 | IE Ireland 2008-04-30 00:00:00 99 | IL Israel 2008-04-30 00:00:00 100 | IN India 2008-04-30 00:00:00 101 | IO British Indian Ocean Territory 2008-04-30 00:00:00 102 | IQ Iraq 2008-04-30 00:00:00 103 | IR Iran 2008-04-30 00:00:00 104 | IS Iceland 2008-04-30 00:00:00 105 | IT Italy 2008-04-30 00:00:00 106 | JM Jamaica 2008-04-30 00:00:00 107 | JO Jordan 2008-04-30 00:00:00 108 | JP Japan 2008-04-30 00:00:00 109 | KE Kenya 2008-04-30 00:00:00 110 | KG Kyrgyzstan 2008-04-30 00:00:00 111 | KH Cambodia 2008-04-30 00:00:00 112 | KI Kiribati 2008-04-30 00:00:00 113 | KM Comoros 2008-04-30 00:00:00 114 | KN Saint Kitts and Nevis 2008-04-30 00:00:00 115 | KP North Korea 2008-04-30 00:00:00 116 | KR Korea 2008-04-30 00:00:00 117 | KW Kuwait 2008-04-30 00:00:00 118 | KY Cayman Islands 2008-04-30 00:00:00 119 | KZ Kazakhstan 2008-04-30 00:00:00 120 | LA Laos 2008-04-30 00:00:00 121 | LB Lebanon 2008-04-30 00:00:00 122 | LC Saint Lucia 2008-04-30 00:00:00 123 | LI Liechtenstein 2008-04-30 00:00:00 124 | LK Sri Lanka 2008-04-30 00:00:00 125 | LR Liberia 2008-04-30 00:00:00 126 | LS Lesotho 2008-04-30 00:00:00 127 | LT Lithuania 2008-04-30 00:00:00 128 | LU Luxembourg 2008-04-30 00:00:00 129 | LV Latvia 2008-04-30 00:00:00 130 | LY Libya 2008-04-30 00:00:00 131 | MA Morocco 2008-04-30 00:00:00 132 | MC Monaco 2008-04-30 00:00:00 133 | MD Moldova 2008-04-30 00:00:00 134 | MG Madagascar 2008-04-30 00:00:00 135 | MH Marshall Islands 2008-04-30 00:00:00 136 | MK Macedonia, Former Yugoslav Republic of 2008-04-30 00:00:00 137 | ML Mali 2008-04-30 00:00:00 138 | MM Myanmar 2008-04-30 00:00:00 139 | MN Mongolia 2008-04-30 00:00:00 140 | MO Macao SAR 2008-04-30 00:00:00 141 | MP Northern Mariana Islands 2008-04-30 00:00:00 142 | MQ Martinique 2008-04-30 00:00:00 143 | MR Mauritania 2008-04-30 00:00:00 144 | MS Montserrat 2008-04-30 00:00:00 145 | MT Malta 2008-04-30 00:00:00 146 | MU Mauritius 2008-04-30 00:00:00 147 | MV Maldives 2008-04-30 00:00:00 148 | MW Malawi 2008-04-30 00:00:00 149 | MX Mexico 2008-04-30 00:00:00 150 | MY Malaysia 2008-04-30 00:00:00 151 | MZ Mozambique 2008-04-30 00:00:00 152 | NA Namibia 2008-04-30 00:00:00 153 | NC New Caledonia 2008-04-30 00:00:00 154 | NE Niger 2008-04-30 00:00:00 155 | NF Norfolk Island 2008-04-30 00:00:00 156 | NG Nigeria 2008-04-30 00:00:00 157 | NI Nicaragua 2008-04-30 00:00:00 158 | NL Netherlands 2008-04-30 00:00:00 159 | NO Norway 2008-04-30 00:00:00 160 | NP Nepal 2008-04-30 00:00:00 161 | NR Nauru 2008-04-30 00:00:00 162 | NU Niue 2008-04-30 00:00:00 163 | NZ New Zealand 2008-04-30 00:00:00 164 | OM Oman 2008-04-30 00:00:00 165 | PA Panama 2008-04-30 00:00:00 166 | PE Peru 2008-04-30 00:00:00 167 | PF French Polynesia 2008-04-30 00:00:00 168 | PG Papua New Guinea 2008-04-30 00:00:00 169 | PH Philippines 2008-04-30 00:00:00 170 | PK Pakistan 2008-04-30 00:00:00 171 | PL Poland 2008-04-30 00:00:00 172 | PM Saint Pierre and Miquelon 2008-04-30 00:00:00 173 | PN Pitcairn Islands 2008-04-30 00:00:00 174 | PR Puerto Rico 2008-04-30 00:00:00 175 | PS Palestinian Authority 2008-04-30 00:00:00 176 | PT Portugal 2008-04-30 00:00:00 177 | PW Palau 2008-04-30 00:00:00 178 | PY Paraguay 2008-04-30 00:00:00 179 | QA Qatar 2008-04-30 00:00:00 180 | RE Réunion 2008-04-30 00:00:00 181 | RO Romania 2008-04-30 00:00:00 182 | RU Russia 2008-04-30 00:00:00 183 | RW Rwanda 2008-04-30 00:00:00 184 | SA Saudi Arabia 2008-04-30 00:00:00 185 | SB Solomon Islands 2008-04-30 00:00:00 186 | SC Seychelles 2008-04-30 00:00:00 187 | SD Sudan 2008-04-30 00:00:00 188 | SE Sweden 2008-04-30 00:00:00 189 | SG Singapore 2008-04-30 00:00:00 190 | SH Saint Helena 2008-04-30 00:00:00 191 | SI Slovenia 2008-04-30 00:00:00 192 | SJ Svalbard and Jan Mayen 2008-04-30 00:00:00 193 | SK Slovakia 2008-04-30 00:00:00 194 | SL Sierra Leone 2008-04-30 00:00:00 195 | SM San Marino 2008-04-30 00:00:00 196 | SN Senegal 2008-04-30 00:00:00 197 | SO Somalia 2008-04-30 00:00:00 198 | SR Suriname 2008-04-30 00:00:00 199 | ST São Tomé and Príncipe 2008-04-30 00:00:00 200 | SV El Salvador 2008-04-30 00:00:00 201 | SY Syria 2008-04-30 00:00:00 202 | SZ Swaziland 2008-04-30 00:00:00 203 | TC Turks and Caicos Islands 2008-04-30 00:00:00 204 | TD Chad 2008-04-30 00:00:00 205 | TF French Southern and Antarctic Lands 2008-04-30 00:00:00 206 | TG Togo 2008-04-30 00:00:00 207 | TH Thailand 2008-04-30 00:00:00 208 | TJ Tajikistan 2008-04-30 00:00:00 209 | TK Tokelau 2008-04-30 00:00:00 210 | TL Timor-Leste 2008-04-30 00:00:00 211 | TM Turkmenistan 2008-04-30 00:00:00 212 | TN Tunisia 2008-04-30 00:00:00 213 | TO Tonga 2008-04-30 00:00:00 214 | TR Turkey 2008-04-30 00:00:00 215 | TT Trinidad and Tobago 2008-04-30 00:00:00 216 | TV Tuvalu 2008-04-30 00:00:00 217 | TW Taiwan 2008-04-30 00:00:00 218 | TZ Tanzania 2008-04-30 00:00:00 219 | UA Ukraine 2008-04-30 00:00:00 220 | UG Uganda 2008-04-30 00:00:00 221 | UM U.S. Minor Outlying Islands 2008-04-30 00:00:00 222 | US United States 2008-04-30 00:00:00 223 | UY Uruguay 2008-04-30 00:00:00 224 | UZ Uzbekistan 2008-04-30 00:00:00 225 | VA Vatican City 2008-04-30 00:00:00 226 | VC Saint Vincent and the Grenadine 2008-04-30 00:00:00 227 | VE Venezuela 2008-04-30 00:00:00 228 | VG Virgin Islands, British 2008-04-30 00:00:00 229 | VI Virgin Islands, U.S. 2008-04-30 00:00:00 230 | VN Vietnam 2008-04-30 00:00:00 231 | VU Vanuatu 2008-04-30 00:00:00 232 | WF Wallis and Futuna 2008-04-30 00:00:00 233 | WS Samoa 2008-04-30 00:00:00 234 | YE Yemen 2008-04-30 00:00:00 235 | YT Mayotte 2008-04-30 00:00:00 236 | ZA South Africa 2008-04-30 00:00:00 237 | ZM Zambia 2008-04-30 00:00:00 238 | ZW Zimbabwe 2008-04-30 00:00:00 239 | -------------------------------------------------------------------------------- /adventureworks/data/CountryRegionCurrency.csv: -------------------------------------------------------------------------------- 1 | AE AED 2014-02-08 10:17:21.510000000 2 | AR ARS 2014-02-08 10:17:21.510000000 3 | AT ATS 2014-02-08 10:17:21.510000000 4 | AT EUR 2008-04-30 00:00:00 5 | AU AUD 2014-02-08 10:17:21.510000000 6 | BB BBD 2014-02-08 10:17:21.510000000 7 | BD BDT 2014-02-08 10:17:21.510000000 8 | BE BEF 2014-02-08 10:17:21.510000000 9 | BE EUR 2008-04-30 00:00:00 10 | BG BGN 2014-02-08 10:17:21.510000000 11 | BH BHD 2014-02-08 10:17:21.510000000 12 | BN BND 2014-02-08 10:17:21.510000000 13 | BO BOB 2014-02-08 10:17:21.510000000 14 | BR BRL 2014-02-08 10:17:21.510000000 15 | BS BSD 2014-02-08 10:17:21.510000000 16 | BT BTN 2014-02-08 10:17:21.510000000 17 | CA CAD 2014-02-08 10:17:21.510000000 18 | CH CHF 2014-02-08 10:17:21.510000000 19 | CL CLP 2014-02-08 10:17:21.510000000 20 | CN CNY 2014-02-08 10:17:21.510000000 21 | CO COP 2014-02-08 10:17:21.510000000 22 | CR CRC 2014-02-08 10:17:21.510000000 23 | CY CYP 2014-02-08 10:17:21.510000000 24 | CZ CZK 2014-02-08 10:17:21.510000000 25 | DE DEM 2014-02-08 10:17:21.510000000 26 | DE EUR 2014-02-08 10:17:21.510000000 27 | DK DKK 2014-02-08 10:17:21.510000000 28 | DO DOP 2014-02-08 10:17:21.510000000 29 | DZ DZD 2014-02-08 10:17:21.510000000 30 | EC USD 2014-02-08 10:17:21.510000000 31 | EE EEK 2014-02-08 10:17:21.510000000 32 | EG EGP 2014-02-08 10:17:21.510000000 33 | ES ESP 2014-02-08 10:17:21.510000000 34 | ES EUR 2008-04-30 00:00:00 35 | FI EUR 2008-04-30 00:00:00 36 | FI FIM 2014-02-08 10:17:21.510000000 37 | FJ FJD 2014-02-08 10:17:21.510000000 38 | FR EUR 2014-02-08 10:17:21.510000000 39 | FR FRF 2014-02-08 10:17:21.510000000 40 | GB GBP 2014-02-08 10:17:21.510000000 41 | GH GHC 2014-02-08 10:17:21.510000000 42 | GR EUR 2008-04-30 00:00:00 43 | GR GRD 2014-02-08 10:17:21.510000000 44 | GT GTQ 2014-02-08 10:17:21.510000000 45 | HK HKD 2014-02-08 10:17:21.510000000 46 | HR HRK 2014-02-08 10:17:21.510000000 47 | HU HUF 2014-02-08 10:17:21.510000000 48 | ID IDR 2014-02-08 10:17:21.510000000 49 | IE EUR 2008-04-30 00:00:00 50 | IE IEP 2014-02-08 10:17:21.510000000 51 | IL ILS 2014-02-08 10:17:21.510000000 52 | IN INR 2014-02-08 10:17:21.510000000 53 | IS ISK 2014-02-08 10:17:21.510000000 54 | IT EUR 2008-04-30 00:00:00 55 | IT ITL 2014-02-08 10:17:21.510000000 56 | JM JMD 2014-02-08 10:17:21.510000000 57 | JO JOD 2014-02-08 10:17:21.510000000 58 | JP JPY 2014-02-08 10:17:21.510000000 59 | KE KES 2014-02-08 10:17:21.510000000 60 | KR KRW 2014-02-08 10:17:21.510000000 61 | KW KWD 2014-02-08 10:17:21.510000000 62 | LB LBP 2014-02-08 10:17:21.510000000 63 | LK LKR 2014-02-08 10:17:21.510000000 64 | LT LTL 2014-02-08 10:17:21.510000000 65 | LU EUR 2008-04-30 00:00:00 66 | LV LVL 2014-02-08 10:17:21.510000000 67 | MA MAD 2014-02-08 10:17:21.510000000 68 | MT MTL 2014-02-08 10:17:21.510000000 69 | MU MUR 2014-02-08 10:17:21.510000000 70 | MV MVR 2014-02-08 10:17:21.510000000 71 | MX MXN 2014-02-08 10:17:21.510000000 72 | MY MYR 2014-02-08 10:17:21.510000000 73 | NA NAD 2014-02-08 10:17:21.510000000 74 | NG NGN 2014-02-08 10:17:21.510000000 75 | NL EUR 2008-04-30 00:00:00 76 | NL NLG 2014-02-08 10:17:21.510000000 77 | NO NOK 2014-02-08 10:17:21.510000000 78 | NP NPR 2014-02-08 10:17:21.510000000 79 | NZ NZD 2014-02-08 10:17:21.510000000 80 | OM OMR 2014-02-08 10:17:21.510000000 81 | PA PAB 2014-02-08 10:17:21.510000000 82 | PE PEN 2014-02-08 10:17:21.510000000 83 | PH PHP 2014-02-08 10:17:21.510000000 84 | PK PKR 2014-02-08 10:17:21.510000000 85 | PL PLN 2014-02-08 10:17:21.510000000 86 | PL PLZ 2014-02-08 10:17:21.510000000 87 | PT EUR 2008-04-30 00:00:00 88 | PT PTE 2014-02-08 10:17:21.510000000 89 | PY PYG 2014-02-08 10:17:21.510000000 90 | RO ROL 2014-02-08 10:17:21.510000000 91 | RU RUB 2014-02-08 10:17:21.510000000 92 | RU RUR 2014-02-08 10:17:21.510000000 93 | SA SAR 2014-02-08 10:17:21.510000000 94 | SE SEK 2014-02-08 10:17:21.510000000 95 | SG SGD 2014-02-08 10:17:21.510000000 96 | SI SIT 2014-02-08 10:17:21.510000000 97 | SK SKK 2014-02-08 10:17:21.510000000 98 | SV SVC 2014-02-08 10:17:21.510000000 99 | TH THB 2014-02-08 10:17:21.510000000 100 | TN TND 2014-02-08 10:17:21.510000000 101 | TR TRL 2014-02-08 10:17:21.510000000 102 | TT TTD 2014-02-08 10:17:21.510000000 103 | TW TWD 2014-02-08 10:17:21.510000000 104 | US USD 2014-02-08 10:17:21.510000000 105 | UY UYU 2014-02-08 10:17:21.510000000 106 | VE VEB 2014-02-08 10:17:21.510000000 107 | VN VND 2014-02-08 10:17:21.510000000 108 | ZA ZAR 2014-02-08 10:17:21.510000000 109 | ZW ZWD 2014-02-08 10:17:21.510000000 110 | -------------------------------------------------------------------------------- /adventureworks/data/Culture.csv: -------------------------------------------------------------------------------- 1 | Invariant Language (Invariant Country) 2008-04-30 00:00:00 2 | ar Arabic 2008-04-30 00:00:00 3 | en English 2008-04-30 00:00:00 4 | es Spanish 2008-04-30 00:00:00 5 | fr French 2008-04-30 00:00:00 6 | he Hebrew 2008-04-30 00:00:00 7 | th Thai 2008-04-30 00:00:00 8 | zh-cht Chinese 2008-04-30 00:00:00 9 | -------------------------------------------------------------------------------- /adventureworks/data/Currency.csv: -------------------------------------------------------------------------------- 1 | AED Emirati Dirham 2008-04-30 00:00:00 2 | AFA Afghani 2008-04-30 00:00:00 3 | ALL Lek 2008-04-30 00:00:00 4 | AMD Armenian Dram 2008-04-30 00:00:00 5 | ANG Netherlands Antillian Guilder 2008-04-30 00:00:00 6 | AOA Kwanza 2008-04-30 00:00:00 7 | ARS Argentine Peso 2008-04-30 00:00:00 8 | ATS Shilling 2008-04-30 00:00:00 9 | AUD Australian Dollar 2008-04-30 00:00:00 10 | AWG Aruban Guilder 2008-04-30 00:00:00 11 | AZM Azerbaijanian Manat 2008-04-30 00:00:00 12 | BBD Barbados Dollar 2008-04-30 00:00:00 13 | BDT Taka 2008-04-30 00:00:00 14 | BEF Belgian Franc 2008-04-30 00:00:00 15 | BGN Bulgarian Lev 2008-04-30 00:00:00 16 | BHD Bahraini Dinar 2008-04-30 00:00:00 17 | BND Brunei Dollar 2008-04-30 00:00:00 18 | BOB Boliviano 2008-04-30 00:00:00 19 | BRL Brazilian Real 2008-04-30 00:00:00 20 | BSD Bahamian Dollar 2008-04-30 00:00:00 21 | BTN Ngultrum 2008-04-30 00:00:00 22 | CAD Canadian Dollar 2008-04-30 00:00:00 23 | CHF Swiss Franc 2008-04-30 00:00:00 24 | CLP Chilean Peso 2008-04-30 00:00:00 25 | CNY Yuan Renminbi 2008-04-30 00:00:00 26 | COP Colombian Peso 2008-04-30 00:00:00 27 | CRC Costa Rican Colon 2008-04-30 00:00:00 28 | CYP Cyprus Pound 2008-04-30 00:00:00 29 | CZK Czech Koruna 2008-04-30 00:00:00 30 | DEM Deutsche Mark 2008-04-30 00:00:00 31 | DKK Danish Krone 2008-04-30 00:00:00 32 | DOP Dominican Peso 2008-04-30 00:00:00 33 | DZD Algerian Dinar 2008-04-30 00:00:00 34 | EEK Kroon 2008-04-30 00:00:00 35 | EGP Egyptian Pound 2008-04-30 00:00:00 36 | ESP Spanish Peseta 2008-04-30 00:00:00 37 | EUR EURO 2008-04-30 00:00:00 38 | FIM Markka 2008-04-30 00:00:00 39 | FJD Fiji Dollar 2008-04-30 00:00:00 40 | FRF French Franc 2008-04-30 00:00:00 41 | GBP United Kingdom Pound 2008-04-30 00:00:00 42 | GHC Cedi 2008-04-30 00:00:00 43 | GRD Drachma 2008-04-30 00:00:00 44 | GTQ Quetzal 2008-04-30 00:00:00 45 | HKD Hong Kong Dollar 2008-04-30 00:00:00 46 | HRK Croatian Kuna 2008-04-30 00:00:00 47 | HUF Forint 2008-04-30 00:00:00 48 | IDR Rupiah 2008-04-30 00:00:00 49 | IEP Irish Pound 2008-04-30 00:00:00 50 | ILS New Israeli Shekel 2008-04-30 00:00:00 51 | INR Indian Rupee 2008-04-30 00:00:00 52 | ISK Iceland Krona 2008-04-30 00:00:00 53 | ITL Italian Lira 2008-04-30 00:00:00 54 | JMD Jamaican Dollar 2008-04-30 00:00:00 55 | JOD Jordanian Dinar 2008-04-30 00:00:00 56 | JPY Yen 2008-04-30 00:00:00 57 | KES Kenyan Shilling 2008-04-30 00:00:00 58 | KRW Won 2008-04-30 00:00:00 59 | KWD Kuwaiti Dinar 2008-04-30 00:00:00 60 | LBP Lebanese Pound 2008-04-30 00:00:00 61 | LKR Sri Lankan Rupee 2008-04-30 00:00:00 62 | LTL Lithuanian Litas 2008-04-30 00:00:00 63 | LVL Latvian Lats 2008-04-30 00:00:00 64 | MAD Moroccan Dirham 2008-04-30 00:00:00 65 | MTL Maltese Lira 2008-04-30 00:00:00 66 | MUR Mauritius Rupee 2008-04-30 00:00:00 67 | MVR Rufiyaa 2008-04-30 00:00:00 68 | MXN Mexican Peso 2008-04-30 00:00:00 69 | MYR Malaysian Ringgit 2008-04-30 00:00:00 70 | NAD Namibia Dollar 2008-04-30 00:00:00 71 | NGN Naira 2008-04-30 00:00:00 72 | NLG Netherlands Guilder 2008-04-30 00:00:00 73 | NOK Norwegian Krone 2008-04-30 00:00:00 74 | NPR Nepalese Rupee 2008-04-30 00:00:00 75 | NZD New Zealand Dollar 2008-04-30 00:00:00 76 | OMR Omani Rial 2008-04-30 00:00:00 77 | PAB Balboa 2008-04-30 00:00:00 78 | PEN Nuevo Sol 2008-04-30 00:00:00 79 | PHP Philippine Peso 2008-04-30 00:00:00 80 | PKR Pakistan Rupee 2008-04-30 00:00:00 81 | PLN Zloty 2008-04-30 00:00:00 82 | PLZ Polish Zloty(old) 2008-04-30 00:00:00 83 | PTE Portuguese Escudo 2008-04-30 00:00:00 84 | PYG Guarani 2008-04-30 00:00:00 85 | ROL Leu 2008-04-30 00:00:00 86 | RUB Russian Ruble 2008-04-30 00:00:00 87 | RUR Russian Ruble(old) 2008-04-30 00:00:00 88 | SAR Saudi Riyal 2008-04-30 00:00:00 89 | SEK Swedish Krona 2008-04-30 00:00:00 90 | SGD Singapore Dollar 2008-04-30 00:00:00 91 | SIT Tolar 2008-04-30 00:00:00 92 | SKK Slovak Koruna 2008-04-30 00:00:00 93 | SVC El Salvador Colon 2008-04-30 00:00:00 94 | THB Baht 2008-04-30 00:00:00 95 | TND Tunisian Dinar 2008-04-30 00:00:00 96 | TRL Turkish Lira 2008-04-30 00:00:00 97 | TTD Trinidad and Tobago Dollar 2008-04-30 00:00:00 98 | TWD New Taiwan Dollar 2008-04-30 00:00:00 99 | USD US Dollar 2008-04-30 00:00:00 100 | UYU Uruguayan Peso 2008-04-30 00:00:00 101 | VEB Bolivar 2008-04-30 00:00:00 102 | VND Dong 2008-04-30 00:00:00 103 | XOF CFA Franc BCEAO 2008-04-30 00:00:00 104 | ZAR Rand 2008-04-30 00:00:00 105 | ZWD Zimbabwe Dollar 2008-04-30 00:00:00 106 | -------------------------------------------------------------------------------- /adventureworks/data/Department.csv: -------------------------------------------------------------------------------- 1 | 1 Engineering Research and Development 2008-04-30 00:00:00 2 | 2 Tool Design Research and Development 2008-04-30 00:00:00 3 | 3 Sales Sales and Marketing 2008-04-30 00:00:00 4 | 4 Marketing Sales and Marketing 2008-04-30 00:00:00 5 | 5 Purchasing Inventory Management 2008-04-30 00:00:00 6 | 6 Research and Development Research and Development 2008-04-30 00:00:00 7 | 7 Production Manufacturing 2008-04-30 00:00:00 8 | 8 Production Control Manufacturing 2008-04-30 00:00:00 9 | 9 Human Resources Executive General and Administration 2008-04-30 00:00:00 10 | 10 Finance Executive General and Administration 2008-04-30 00:00:00 11 | 11 Information Services Executive General and Administration 2008-04-30 00:00:00 12 | 12 Document Control Quality Assurance 2008-04-30 00:00:00 13 | 13 Quality Assurance Quality Assurance 2008-04-30 00:00:00 14 | 14 Facilities and Maintenance Executive General and Administration 2008-04-30 00:00:00 15 | 15 Shipping and Receiving Inventory Management 2008-04-30 00:00:00 16 | 16 Executive Executive General and Administration 2008-04-30 00:00:00 17 | -------------------------------------------------------------------------------- /adventureworks/data/EmployeeDepartmentHistory.csv: -------------------------------------------------------------------------------- 1 | 1 16 1 2009-01-14 2009-01-13 00:00:00 2 | 2 1 1 2008-01-31 2008-01-30 00:00:00 3 | 3 1 1 2007-11-11 2007-11-10 00:00:00 4 | 4 1 1 2007-12-05 2010-05-30 2010-05-28 00:00:00 5 | 4 2 1 2010-05-31 2010-05-30 00:00:00 6 | 5 1 1 2008-01-06 2008-01-05 00:00:00 7 | 6 1 1 2008-01-24 2008-01-23 00:00:00 8 | 7 6 1 2009-02-08 2009-02-07 00:00:00 9 | 8 6 1 2008-12-29 2008-12-28 00:00:00 10 | 9 6 1 2009-01-16 2009-01-15 00:00:00 11 | 10 6 1 2009-05-03 2009-05-02 00:00:00 12 | 11 2 1 2010-12-05 2010-12-04 00:00:00 13 | 12 2 1 2007-12-11 2007-12-10 00:00:00 14 | 13 2 1 2010-12-23 2010-12-22 00:00:00 15 | 14 1 1 2010-12-30 2010-12-29 00:00:00 16 | 15 1 1 2011-01-18 2011-01-17 00:00:00 17 | 16 5 1 2007-12-20 2009-07-14 2009-07-12 00:00:00 18 | 16 4 1 2009-07-15 2009-07-14 00:00:00 19 | 17 4 1 2007-01-26 2007-01-25 00:00:00 20 | 18 4 1 2011-02-07 2011-02-06 00:00:00 21 | 19 4 1 2011-02-14 2011-02-13 00:00:00 22 | 20 4 1 2011-01-07 2011-01-06 00:00:00 23 | 21 4 1 2009-03-02 2009-03-01 00:00:00 24 | 22 4 1 2008-12-12 2008-12-11 00:00:00 25 | 23 4 1 2009-01-12 2009-01-11 00:00:00 26 | 24 4 1 2009-01-18 2009-01-17 00:00:00 27 | 25 7 1 2009-02-03 2009-02-02 00:00:00 28 | 26 8 1 2008-12-01 2008-11-30 00:00:00 29 | 27 7 1 2008-02-27 2008-02-26 00:00:00 30 | 28 7 1 2006-06-30 2006-06-29 00:00:00 31 | 29 7 1 2009-01-23 2009-01-22 00:00:00 32 | 30 7 1 2009-01-29 2009-01-28 00:00:00 33 | 31 7 1 2009-01-04 2009-01-03 00:00:00 34 | 32 7 1 2008-12-29 2008-12-28 00:00:00 35 | 33 7 1 2008-12-17 2008-12-16 00:00:00 36 | 34 7 1 2009-02-16 2009-02-15 00:00:00 37 | 35 7 1 2009-02-08 2009-02-07 00:00:00 38 | 36 7 1 2009-02-10 2009-02-09 00:00:00 39 | 37 7 1 2009-03-07 2009-03-06 00:00:00 40 | 38 7 1 2010-01-16 2010-01-15 00:00:00 41 | 39 7 1 2010-02-05 2010-02-04 00:00:00 42 | 40 7 3 2007-12-26 2007-12-25 00:00:00 43 | 41 7 3 2009-01-21 2009-01-20 00:00:00 44 | 42 7 3 2008-12-27 2008-12-26 00:00:00 45 | 43 7 3 2009-01-02 2009-01-01 00:00:00 46 | 44 7 3 2008-12-08 2008-12-07 00:00:00 47 | 45 7 3 2009-02-26 2009-02-25 00:00:00 48 | 46 7 3 2009-02-08 2009-02-07 00:00:00 49 | 47 7 1 2009-02-22 2009-02-21 00:00:00 50 | 48 7 1 2008-01-06 2008-01-05 00:00:00 51 | 49 7 1 2008-01-07 2008-01-06 00:00:00 52 | 50 7 1 2008-02-02 2008-02-01 00:00:00 53 | 51 7 1 2008-02-20 2008-02-19 00:00:00 54 | 52 7 1 2008-03-10 2008-03-09 00:00:00 55 | 53 7 1 2008-03-28 2008-03-27 00:00:00 56 | 54 7 1 2010-01-01 2009-12-31 00:00:00 57 | 55 7 3 2008-02-08 2008-02-07 00:00:00 58 | 56 7 3 2009-02-05 2009-02-04 00:00:00 59 | 57 7 3 2009-02-23 2009-02-22 00:00:00 60 | 58 7 3 2008-12-05 2008-12-04 00:00:00 61 | 59 7 3 2008-12-24 2008-12-23 00:00:00 62 | 60 7 3 2009-01-11 2009-01-10 00:00:00 63 | 61 7 3 2009-01-18 2009-01-17 00:00:00 64 | 62 7 2 2008-03-17 2008-03-16 00:00:00 65 | 63 7 2 2010-01-29 2010-01-28 00:00:00 66 | 64 7 2 2010-02-23 2010-02-22 00:00:00 67 | 65 7 2 2010-02-23 2010-02-22 00:00:00 68 | 66 7 2 2009-12-22 2009-12-21 00:00:00 69 | 67 7 2 2009-03-05 2009-03-04 00:00:00 70 | 68 7 2 2009-12-03 2009-12-02 00:00:00 71 | 69 7 2 2009-02-15 2009-02-14 00:00:00 72 | 70 7 2 2008-12-15 2008-12-14 00:00:00 73 | 71 7 3 2009-02-15 2009-02-14 00:00:00 74 | 72 7 3 2008-12-01 2008-11-30 00:00:00 75 | 73 7 3 2008-12-19 2008-12-18 00:00:00 76 | 74 7 3 2009-01-07 2009-01-06 00:00:00 77 | 75 7 3 2009-01-26 2009-01-25 00:00:00 78 | 76 7 3 2009-02-12 2009-02-11 00:00:00 79 | 77 7 3 2009-03-03 2009-03-02 00:00:00 80 | 78 7 2 2008-12-15 2008-12-14 00:00:00 81 | 79 7 2 2010-01-24 2010-01-23 00:00:00 82 | 80 7 2 2010-01-17 2010-01-16 00:00:00 83 | 81 7 2 2009-12-29 2009-12-28 00:00:00 84 | 82 7 2 2010-03-03 2010-03-02 00:00:00 85 | 83 7 2 2010-02-12 2010-02-11 00:00:00 86 | 84 7 2 2010-02-05 2010-02-04 00:00:00 87 | 85 7 2 2009-12-11 2009-12-10 00:00:00 88 | 86 7 2 2009-01-05 2009-01-04 00:00:00 89 | 87 7 3 2008-12-22 2008-12-21 00:00:00 90 | 88 7 3 2009-12-18 2009-12-17 00:00:00 91 | 89 7 3 2010-02-01 2010-01-31 00:00:00 92 | 90 7 3 2010-02-20 2010-02-19 00:00:00 93 | 91 7 3 2010-01-12 2010-01-11 00:00:00 94 | 92 7 3 2010-03-10 2010-03-09 00:00:00 95 | 93 7 2 2008-12-27 2008-12-26 00:00:00 96 | 94 7 2 2008-12-12 2008-12-11 00:00:00 97 | 95 7 2 2008-12-19 2008-12-18 00:00:00 98 | 96 7 2 2009-03-02 2009-03-01 00:00:00 99 | 97 7 2 2009-02-10 2009-02-09 00:00:00 100 | 98 7 2 2009-02-11 2009-02-10 00:00:00 101 | 99 7 2 2009-01-06 2009-01-05 00:00:00 102 | 100 7 2 2009-01-12 2009-01-11 00:00:00 103 | 101 7 2 2009-01-25 2009-01-24 00:00:00 104 | 102 7 2 2008-12-03 2008-12-02 00:00:00 105 | 103 7 2 2009-12-06 2009-12-05 00:00:00 106 | 104 7 2 2009-12-25 2009-12-24 00:00:00 107 | 105 7 2 2009-12-25 2009-12-24 00:00:00 108 | 106 7 2 2010-02-27 2010-02-26 00:00:00 109 | 107 7 2 2010-02-08 2010-02-07 00:00:00 110 | 108 7 1 2008-12-08 2008-12-07 00:00:00 111 | 109 7 1 2008-12-07 2008-12-06 00:00:00 112 | 110 7 1 2008-12-14 2008-12-13 00:00:00 113 | 111 7 1 2008-12-17 2008-12-16 00:00:00 114 | 112 7 1 2009-01-01 2008-12-31 00:00:00 115 | 113 7 1 2008-12-25 2008-12-24 00:00:00 116 | 114 7 1 2009-01-13 2009-01-12 00:00:00 117 | 115 7 1 2009-01-20 2009-01-19 00:00:00 118 | 116 7 1 2009-01-31 2009-01-30 00:00:00 119 | 117 7 1 2009-02-18 2009-02-17 00:00:00 120 | 118 7 1 2009-02-13 2009-02-12 00:00:00 121 | 119 7 1 2009-02-25 2009-02-24 00:00:00 122 | 120 7 1 2009-03-04 2009-03-03 00:00:00 123 | 121 15 1 2009-01-02 2009-01-01 00:00:00 124 | 122 15 2 2008-12-07 2008-12-06 00:00:00 125 | 123 15 2 2008-12-07 2008-12-06 00:00:00 126 | 124 15 3 2008-12-26 2008-12-25 00:00:00 127 | 125 15 1 2009-01-20 2009-01-19 00:00:00 128 | 126 15 1 2009-02-26 2009-02-25 00:00:00 129 | 127 7 3 2009-01-03 2009-01-02 00:00:00 130 | 128 7 3 2008-12-04 2008-12-03 00:00:00 131 | 129 7 3 2008-12-22 2008-12-21 00:00:00 132 | 130 7 3 2009-02-13 2009-02-12 00:00:00 133 | 131 7 3 2009-02-15 2009-02-14 00:00:00 134 | 132 7 3 2009-02-22 2009-02-21 00:00:00 135 | 133 7 3 2009-01-10 2009-01-09 00:00:00 136 | 134 7 1 2009-01-14 2009-01-13 00:00:00 137 | 135 7 1 2008-12-04 2008-12-03 00:00:00 138 | 136 7 1 2009-12-11 2009-12-10 00:00:00 139 | 137 7 1 2009-02-23 2009-02-22 00:00:00 140 | 138 7 1 2009-02-04 2009-02-03 00:00:00 141 | 139 7 1 2010-01-06 2010-01-05 00:00:00 142 | 140 7 1 2010-01-22 2010-01-21 00:00:00 143 | 141 7 1 2010-01-24 2010-01-23 00:00:00 144 | 142 7 1 2010-03-04 2010-03-03 00:00:00 145 | 143 7 1 2010-02-13 2010-02-12 00:00:00 146 | 144 7 1 2009-01-17 2009-01-16 00:00:00 147 | 145 7 2 2009-01-27 2009-01-26 00:00:00 148 | 146 7 2 2008-12-07 2008-12-06 00:00:00 149 | 147 7 2 2008-12-26 2008-12-25 00:00:00 150 | 148 7 2 2009-01-14 2009-01-13 00:00:00 151 | 149 7 2 2009-01-31 2009-01-30 00:00:00 152 | 150 7 2 2009-02-26 2009-02-25 00:00:00 153 | 151 7 2 2009-02-19 2009-02-18 00:00:00 154 | 152 7 2 2009-02-01 2009-01-31 00:00:00 155 | 153 7 2 2008-12-16 2008-12-15 00:00:00 156 | 154 7 2 2008-12-23 2008-12-22 00:00:00 157 | 155 7 2 2009-01-04 2009-01-03 00:00:00 158 | 156 7 2 2009-01-11 2009-01-10 00:00:00 159 | 157 7 2 2009-02-03 2009-02-02 00:00:00 160 | 158 7 2 2009-03-07 2009-03-06 00:00:00 161 | 159 7 2 2009-02-16 2009-02-15 00:00:00 162 | 160 7 1 2009-01-21 2009-01-20 00:00:00 163 | 161 7 1 2008-12-15 2008-12-14 00:00:00 164 | 162 7 1 2009-01-03 2009-01-02 00:00:00 165 | 163 7 1 2009-02-08 2009-02-07 00:00:00 166 | 164 7 1 2009-03-06 2009-03-05 00:00:00 167 | 165 7 1 2009-01-22 2009-01-21 00:00:00 168 | 166 7 1 2009-02-21 2009-02-20 00:00:00 169 | 167 7 1 2008-12-02 2008-12-01 00:00:00 170 | 168 7 1 2008-12-07 2008-12-06 00:00:00 171 | 169 7 1 2008-12-14 2008-12-13 00:00:00 172 | 170 7 1 2008-12-21 2008-12-20 00:00:00 173 | 171 7 1 2009-01-02 2009-01-01 00:00:00 174 | 172 7 1 2009-01-16 2009-01-15 00:00:00 175 | 173 7 1 2009-01-21 2009-01-20 00:00:00 176 | 174 7 1 2009-01-27 2009-01-26 00:00:00 177 | 175 7 1 2009-02-02 2009-02-01 00:00:00 178 | 176 7 1 2009-02-14 2009-02-13 00:00:00 179 | 177 7 1 2009-02-21 2009-02-20 00:00:00 180 | 178 7 1 2009-03-03 2009-03-02 00:00:00 181 | 179 7 1 2009-03-05 2009-03-04 00:00:00 182 | 180 7 3 2009-02-20 2009-02-19 00:00:00 183 | 181 7 3 2008-12-09 2008-12-08 00:00:00 184 | 182 7 3 2008-12-28 2008-12-27 00:00:00 185 | 183 7 3 2009-01-22 2009-01-21 00:00:00 186 | 184 7 3 2009-02-09 2009-02-08 00:00:00 187 | 185 7 3 2009-02-28 2009-02-27 00:00:00 188 | 186 7 2 2009-02-08 2009-02-07 00:00:00 189 | 187 7 2 2008-12-09 2008-12-08 00:00:00 190 | 188 7 2 2008-12-27 2008-12-26 00:00:00 191 | 189 7 2 2009-01-15 2009-01-14 00:00:00 192 | 190 7 2 2009-02-02 2009-02-01 00:00:00 193 | 191 7 2 2009-02-26 2009-02-25 00:00:00 194 | 192 7 1 2009-03-05 2009-03-04 00:00:00 195 | 193 7 1 2008-12-06 2008-12-05 00:00:00 196 | 194 7 1 2008-12-12 2008-12-11 00:00:00 197 | 195 7 1 2008-12-17 2008-12-16 00:00:00 198 | 196 7 1 2008-12-24 2008-12-23 00:00:00 199 | 197 7 1 2008-12-31 2008-12-30 00:00:00 200 | 198 7 1 2009-01-04 2009-01-03 00:00:00 201 | 199 7 1 2009-01-12 2009-01-11 00:00:00 202 | 200 7 1 2009-01-17 2009-01-16 00:00:00 203 | 201 7 1 2009-01-29 2009-01-28 00:00:00 204 | 202 7 1 2009-02-05 2009-02-04 00:00:00 205 | 203 7 1 2009-02-24 2009-02-23 00:00:00 206 | 204 7 1 2009-03-08 2009-03-07 00:00:00 207 | 205 7 3 2009-02-26 2009-02-25 00:00:00 208 | 206 7 3 2008-12-02 2008-12-01 00:00:00 209 | 207 7 3 2008-12-02 2008-12-01 00:00:00 210 | 208 7 3 2009-01-08 2009-01-07 00:00:00 211 | 209 7 3 2009-01-27 2009-01-26 00:00:00 212 | 210 7 3 2009-02-20 2009-02-19 00:00:00 213 | 211 13 1 2009-02-28 2009-02-27 00:00:00 214 | 212 13 1 2008-12-09 2008-12-08 00:00:00 215 | 213 13 3 2010-02-23 2010-02-22 00:00:00 216 | 214 13 2 2009-02-02 2009-02-01 00:00:00 217 | 215 13 1 2009-01-15 2009-01-14 00:00:00 218 | 216 13 1 2008-12-28 2008-12-27 00:00:00 219 | 217 12 1 2009-01-04 2009-01-03 00:00:00 220 | 218 12 3 2008-12-16 2008-12-15 00:00:00 221 | 219 12 1 2009-01-22 2009-01-21 00:00:00 222 | 220 12 1 2009-02-09 2009-02-08 00:00:00 223 | 221 12 2 2009-03-06 2009-03-05 00:00:00 224 | 222 8 1 2008-12-12 2008-12-11 00:00:00 225 | 223 8 1 2009-01-26 2009-01-25 00:00:00 226 | 224 7 1 2009-01-07 2011-08-31 2011-08-29 00:00:00 227 | 224 8 1 2011-09-01 2011-08-31 00:00:00 228 | 225 8 2 2009-02-13 2009-02-12 00:00:00 229 | 226 8 3 2009-03-03 2009-03-02 00:00:00 230 | 227 14 1 2009-12-02 2009-12-01 00:00:00 231 | 228 14 1 2008-12-14 2008-12-13 00:00:00 232 | 229 14 3 2010-02-16 2010-02-15 00:00:00 233 | 230 14 2 2010-03-05 2010-03-04 00:00:00 234 | 231 14 3 2010-03-07 2010-03-06 00:00:00 235 | 232 14 2 2010-01-27 2010-01-26 00:00:00 236 | 233 14 1 2009-12-21 2009-12-20 00:00:00 237 | 234 10 1 2009-01-31 2013-11-13 2013-11-11 00:00:00 238 | 234 16 1 2013-11-14 2013-11-13 00:00:00 239 | 235 9 1 2008-12-06 2008-12-05 00:00:00 240 | 236 9 1 2009-02-25 2009-02-24 00:00:00 241 | 237 9 1 2009-02-06 2009-02-05 00:00:00 242 | 238 9 1 2009-01-01 2008-12-31 00:00:00 243 | 239 9 1 2008-12-25 2008-12-24 00:00:00 244 | 240 9 1 2008-12-13 2008-12-12 00:00:00 245 | 241 10 1 2009-01-30 2009-01-29 00:00:00 246 | 242 10 1 2008-12-18 2008-12-17 00:00:00 247 | 243 10 1 2009-01-06 2009-01-05 00:00:00 248 | 244 10 1 2009-01-24 2009-01-23 00:00:00 249 | 245 10 1 2009-02-18 2009-02-17 00:00:00 250 | 246 10 1 2009-02-11 2009-02-10 00:00:00 251 | 247 10 1 2009-03-01 2009-02-28 00:00:00 252 | 248 10 1 2009-03-08 2009-03-07 00:00:00 253 | 249 10 1 2008-12-25 2008-12-24 00:00:00 254 | 250 4 1 2011-02-25 2011-07-30 2011-07-28 00:00:00 255 | 250 13 1 2011-07-31 2012-07-14 2012-07-12 00:00:00 256 | 250 5 1 2012-07-15 2012-07-14 00:00:00 257 | 251 5 1 2009-02-10 2009-02-09 00:00:00 258 | 252 5 1 2009-02-28 2009-02-27 00:00:00 259 | 253 5 1 2009-12-17 2009-12-16 00:00:00 260 | 254 5 1 2010-01-04 2010-01-03 00:00:00 261 | 255 5 1 2010-01-11 2010-01-10 00:00:00 262 | 256 5 1 2010-01-23 2010-01-22 00:00:00 263 | 257 5 1 2010-01-27 2010-01-26 00:00:00 264 | 258 5 1 2010-01-31 2010-01-30 00:00:00 265 | 259 5 1 2010-03-09 2010-03-08 00:00:00 266 | 260 5 1 2010-12-06 2010-12-05 00:00:00 267 | 261 5 1 2010-12-25 2010-12-24 00:00:00 268 | 262 10 1 2009-01-12 2009-01-11 00:00:00 269 | 263 11 1 2008-12-11 2008-12-10 00:00:00 270 | 264 11 1 2009-02-04 2009-02-03 00:00:00 271 | 265 11 2 2008-12-04 2008-12-03 00:00:00 272 | 266 11 1 2009-02-23 2009-02-22 00:00:00 273 | 267 11 1 2009-02-16 2009-02-15 00:00:00 274 | 268 11 1 2009-02-03 2009-02-02 00:00:00 275 | 269 11 1 2009-01-11 2009-01-10 00:00:00 276 | 270 11 1 2009-01-17 2009-01-16 00:00:00 277 | 271 11 1 2009-01-22 2009-01-21 00:00:00 278 | 272 11 1 2008-12-23 2008-12-22 00:00:00 279 | 273 3 1 2011-02-15 2011-02-14 00:00:00 280 | 274 3 1 2011-01-04 2011-01-03 00:00:00 281 | 275 3 1 2011-05-31 2011-05-30 00:00:00 282 | 276 3 1 2011-05-31 2011-05-30 00:00:00 283 | 277 3 1 2011-05-31 2011-05-30 00:00:00 284 | 278 3 1 2011-05-31 2011-05-30 00:00:00 285 | 279 3 1 2011-05-31 2011-05-30 00:00:00 286 | 280 3 1 2011-05-31 2011-05-30 00:00:00 287 | 281 3 1 2011-05-31 2011-05-30 00:00:00 288 | 282 3 1 2011-05-31 2011-05-30 00:00:00 289 | 283 3 1 2011-05-31 2011-05-30 00:00:00 290 | 284 3 1 2012-09-30 2012-09-29 00:00:00 291 | 285 3 1 2013-03-14 2013-03-13 00:00:00 292 | 286 3 1 2013-05-30 2013-05-29 00:00:00 293 | 287 3 1 2012-04-16 2012-04-15 00:00:00 294 | 288 3 1 2013-05-30 2013-05-29 00:00:00 295 | 289 3 1 2012-05-30 2012-05-29 00:00:00 296 | 290 3 1 2012-05-30 2012-05-29 00:00:00 297 | -------------------------------------------------------------------------------- /adventureworks/data/EmployeePayHistory.csv: -------------------------------------------------------------------------------- 1 | 1 2009-01-14 00:00:00 125.5 2 2014-06-30 00:00:00 2 | 2 2008-01-31 00:00:00 63.4615 2 2014-06-30 00:00:00 3 | 3 2007-11-11 00:00:00 43.2692 2 2014-06-30 00:00:00 4 | 4 2007-12-05 00:00:00 8.62 2 2007-11-21 00:00:00 5 | 4 2010-05-31 00:00:00 23.72 2 2010-05-16 00:00:00 6 | 4 2011-12-15 00:00:00 29.8462 2 2011-12-01 00:00:00 7 | 5 2008-01-06 00:00:00 32.6923 2 2014-06-30 00:00:00 8 | 6 2008-01-24 00:00:00 32.6923 2 2014-06-30 00:00:00 9 | 7 2009-02-08 00:00:00 50.4808 2 2014-06-30 00:00:00 10 | 8 2008-12-29 00:00:00 40.8654 2 2014-06-30 00:00:00 11 | 9 2009-01-16 00:00:00 40.8654 2 2014-06-30 00:00:00 12 | 10 2009-05-03 00:00:00 42.4808 2 2014-06-30 00:00:00 13 | 11 2010-12-05 00:00:00 28.8462 2 2014-06-30 00:00:00 14 | 12 2007-12-11 00:00:00 25 2 2014-06-30 00:00:00 15 | 13 2010-12-23 00:00:00 25 2 2014-06-30 00:00:00 16 | 14 2010-12-30 00:00:00 36.0577 2 2014-06-30 00:00:00 17 | 15 2011-01-18 00:00:00 32.6923 2 2014-06-30 00:00:00 18 | 16 2007-12-20 00:00:00 24 2 2007-12-06 00:00:00 19 | 16 2009-07-15 00:00:00 28.75 2 2009-07-01 00:00:00 20 | 16 2012-04-30 00:00:00 37.5 2 2012-04-16 00:00:00 21 | 17 2007-01-26 00:00:00 13.4615 2 2014-06-30 00:00:00 22 | 18 2011-02-07 00:00:00 14.4231 2 2014-06-30 00:00:00 23 | 19 2011-02-14 00:00:00 13.4615 2 2014-06-30 00:00:00 24 | 20 2011-01-07 00:00:00 13.4615 2 2014-06-30 00:00:00 25 | 21 2009-03-02 00:00:00 14.4231 2 2014-06-30 00:00:00 26 | 22 2008-12-12 00:00:00 14.4231 2 2014-06-30 00:00:00 27 | 23 2009-01-12 00:00:00 14.4231 2 2014-06-30 00:00:00 28 | 24 2009-01-18 00:00:00 14.4231 2 2014-06-30 00:00:00 29 | 25 2009-02-03 00:00:00 84.1346 2 2014-06-30 00:00:00 30 | 26 2008-12-01 00:00:00 24.5192 2 2014-06-30 00:00:00 31 | 27 2008-02-27 00:00:00 25 2 2014-06-30 00:00:00 32 | 28 2006-06-30 00:00:00 12.45 1 2014-06-30 00:00:00 33 | 29 2009-01-23 00:00:00 12.45 1 2014-06-30 00:00:00 34 | 30 2009-01-29 00:00:00 12.45 1 2014-06-30 00:00:00 35 | 31 2009-01-04 00:00:00 12.45 1 2014-06-30 00:00:00 36 | 32 2008-12-29 00:00:00 12.45 1 2014-06-30 00:00:00 37 | 33 2008-12-17 00:00:00 12.45 1 2014-06-30 00:00:00 38 | 34 2009-02-16 00:00:00 12.45 1 2014-06-30 00:00:00 39 | 35 2009-02-08 00:00:00 12.45 1 2014-06-30 00:00:00 40 | 36 2009-02-10 00:00:00 12.45 1 2014-06-30 00:00:00 41 | 37 2009-03-07 00:00:00 12.45 1 2014-06-30 00:00:00 42 | 38 2010-01-16 00:00:00 12.45 1 2014-06-30 00:00:00 43 | 39 2010-02-05 00:00:00 12.45 1 2014-06-30 00:00:00 44 | 40 2007-12-26 00:00:00 25 2 2014-06-30 00:00:00 45 | 41 2009-01-21 00:00:00 12.45 1 2014-06-30 00:00:00 46 | 42 2008-12-27 00:00:00 12.45 1 2014-06-30 00:00:00 47 | 43 2009-01-02 00:00:00 12.45 1 2014-06-30 00:00:00 48 | 44 2008-12-08 00:00:00 12.45 1 2014-06-30 00:00:00 49 | 45 2009-02-26 00:00:00 12.45 1 2014-06-30 00:00:00 50 | 46 2009-02-08 00:00:00 12.45 1 2014-06-30 00:00:00 51 | 47 2009-02-22 00:00:00 25 2 2014-06-30 00:00:00 52 | 48 2008-01-06 00:00:00 13.45 1 2014-06-30 00:00:00 53 | 49 2008-01-07 00:00:00 13.45 1 2014-06-30 00:00:00 54 | 50 2008-02-02 00:00:00 13.45 1 2014-06-30 00:00:00 55 | 51 2008-02-20 00:00:00 13.45 1 2014-06-30 00:00:00 56 | 52 2008-03-10 00:00:00 13.45 1 2014-06-30 00:00:00 57 | 53 2008-03-28 00:00:00 13.45 1 2014-06-30 00:00:00 58 | 54 2010-01-01 00:00:00 13.45 1 2014-06-30 00:00:00 59 | 55 2008-02-08 00:00:00 25 2 2014-06-30 00:00:00 60 | 56 2009-02-05 00:00:00 11 1 2014-06-30 00:00:00 61 | 57 2009-02-23 00:00:00 11 1 2014-06-30 00:00:00 62 | 58 2008-12-05 00:00:00 11 1 2014-06-30 00:00:00 63 | 59 2008-12-24 00:00:00 11 1 2014-06-30 00:00:00 64 | 60 2009-01-11 00:00:00 11 1 2014-06-30 00:00:00 65 | 61 2009-01-18 00:00:00 11 1 2014-06-30 00:00:00 66 | 62 2008-03-17 00:00:00 25 2 2014-06-30 00:00:00 67 | 63 2010-01-29 00:00:00 12.45 1 2014-06-30 00:00:00 68 | 64 2010-02-23 00:00:00 12.45 1 2014-06-30 00:00:00 69 | 65 2010-02-23 00:00:00 12.45 1 2014-06-30 00:00:00 70 | 66 2009-12-22 00:00:00 12.45 1 2014-06-30 00:00:00 71 | 67 2009-03-05 00:00:00 12.45 1 2014-06-30 00:00:00 72 | 68 2009-12-03 00:00:00 12.45 1 2014-06-30 00:00:00 73 | 69 2009-02-15 00:00:00 12.45 1 2014-06-30 00:00:00 74 | 70 2008-12-15 00:00:00 12.45 1 2014-06-30 00:00:00 75 | 71 2009-02-15 00:00:00 25 2 2014-06-30 00:00:00 76 | 72 2008-12-01 00:00:00 9.5 1 2014-06-30 00:00:00 77 | 73 2008-12-19 00:00:00 9.5 1 2014-06-30 00:00:00 78 | 74 2009-01-07 00:00:00 9.5 1 2014-06-30 00:00:00 79 | 75 2009-01-26 00:00:00 9.5 1 2014-06-30 00:00:00 80 | 76 2009-02-12 00:00:00 9.5 1 2014-06-30 00:00:00 81 | 77 2009-03-03 00:00:00 9.5 1 2014-06-30 00:00:00 82 | 78 2008-12-15 00:00:00 25 2 2014-06-30 00:00:00 83 | 79 2010-01-24 00:00:00 15 1 2014-06-30 00:00:00 84 | 80 2010-01-17 00:00:00 15 1 2014-06-30 00:00:00 85 | 81 2009-12-29 00:00:00 15 1 2014-06-30 00:00:00 86 | 82 2010-03-03 00:00:00 15 1 2014-06-30 00:00:00 87 | 83 2010-02-12 00:00:00 15 1 2014-06-30 00:00:00 88 | 84 2010-02-05 00:00:00 15 1 2014-06-30 00:00:00 89 | 85 2009-12-11 00:00:00 15 1 2014-06-30 00:00:00 90 | 86 2009-01-05 00:00:00 15 1 2014-06-30 00:00:00 91 | 87 2008-12-22 00:00:00 25 2 2014-06-30 00:00:00 92 | 88 2009-12-18 00:00:00 13.45 1 2014-06-30 00:00:00 93 | 89 2010-02-01 00:00:00 13.45 1 2014-06-30 00:00:00 94 | 90 2010-02-20 00:00:00 13.45 1 2014-06-30 00:00:00 95 | 91 2010-01-12 00:00:00 13.45 1 2014-06-30 00:00:00 96 | 92 2010-03-10 00:00:00 13.45 1 2014-06-30 00:00:00 97 | 93 2008-12-27 00:00:00 25 2 2014-06-30 00:00:00 98 | 94 2008-12-12 00:00:00 11 1 2014-06-30 00:00:00 99 | 95 2008-12-19 00:00:00 11 1 2014-06-30 00:00:00 100 | 96 2009-03-02 00:00:00 11 1 2014-06-30 00:00:00 101 | 97 2009-02-10 00:00:00 11 1 2014-06-30 00:00:00 102 | 98 2009-02-11 00:00:00 11 1 2014-06-30 00:00:00 103 | 99 2009-01-06 00:00:00 11 1 2014-06-30 00:00:00 104 | 100 2009-01-12 00:00:00 11 1 2014-06-30 00:00:00 105 | 101 2009-01-25 00:00:00 11 1 2014-06-30 00:00:00 106 | 102 2008-12-03 00:00:00 25 2 2014-06-30 00:00:00 107 | 103 2009-12-06 00:00:00 13.45 1 2014-06-30 00:00:00 108 | 104 2009-12-25 00:00:00 13.45 1 2014-06-30 00:00:00 109 | 105 2009-12-25 00:00:00 13.45 1 2014-06-30 00:00:00 110 | 106 2010-02-27 00:00:00 13.45 1 2014-06-30 00:00:00 111 | 107 2010-02-08 00:00:00 13.45 1 2014-06-30 00:00:00 112 | 108 2008-12-08 00:00:00 25 2 2014-06-30 00:00:00 113 | 109 2008-12-07 00:00:00 11 1 2014-06-30 00:00:00 114 | 110 2008-12-14 00:00:00 11 1 2014-06-30 00:00:00 115 | 111 2008-12-17 00:00:00 11 1 2014-06-30 00:00:00 116 | 112 2009-01-01 00:00:00 11 1 2014-06-30 00:00:00 117 | 113 2008-12-25 00:00:00 11 1 2014-06-30 00:00:00 118 | 114 2009-01-13 00:00:00 11 1 2014-06-30 00:00:00 119 | 115 2009-01-20 00:00:00 11 1 2014-06-30 00:00:00 120 | 116 2009-01-31 00:00:00 11 1 2014-06-30 00:00:00 121 | 117 2009-02-18 00:00:00 11 1 2014-06-30 00:00:00 122 | 118 2009-02-13 00:00:00 11 1 2014-06-30 00:00:00 123 | 119 2009-02-25 00:00:00 11 1 2014-06-30 00:00:00 124 | 120 2009-03-04 00:00:00 11 1 2014-06-30 00:00:00 125 | 121 2009-01-02 00:00:00 19.2308 2 2014-06-30 00:00:00 126 | 122 2008-12-07 00:00:00 9 1 2014-06-30 00:00:00 127 | 123 2008-12-07 00:00:00 9.5 2 2014-06-30 00:00:00 128 | 124 2008-12-26 00:00:00 9 1 2014-06-30 00:00:00 129 | 125 2009-01-20 00:00:00 9.5 2 2014-06-30 00:00:00 130 | 126 2009-02-26 00:00:00 9 1 2014-06-30 00:00:00 131 | 127 2009-01-03 00:00:00 25 2 2014-06-30 00:00:00 132 | 128 2008-12-04 00:00:00 15 1 2014-06-30 00:00:00 133 | 129 2008-12-22 00:00:00 15 1 2014-06-30 00:00:00 134 | 130 2009-02-13 00:00:00 15 1 2014-06-30 00:00:00 135 | 131 2009-02-15 00:00:00 15 1 2014-06-30 00:00:00 136 | 132 2009-02-22 00:00:00 15 1 2014-06-30 00:00:00 137 | 133 2009-01-10 00:00:00 15 1 2014-06-30 00:00:00 138 | 134 2009-01-14 00:00:00 25 2 2014-06-30 00:00:00 139 | 135 2008-12-04 00:00:00 14 1 2014-06-30 00:00:00 140 | 136 2009-12-11 00:00:00 14 1 2014-06-30 00:00:00 141 | 137 2009-02-23 00:00:00 14 1 2014-06-30 00:00:00 142 | 138 2009-02-04 00:00:00 14 1 2014-06-30 00:00:00 143 | 139 2010-01-06 00:00:00 14 1 2014-06-30 00:00:00 144 | 140 2010-01-22 00:00:00 14 1 2014-06-30 00:00:00 145 | 141 2010-01-24 00:00:00 14 1 2014-06-30 00:00:00 146 | 142 2010-03-04 00:00:00 14 1 2014-06-30 00:00:00 147 | 143 2010-02-13 00:00:00 14 1 2014-06-30 00:00:00 148 | 144 2009-01-17 00:00:00 14 1 2014-06-30 00:00:00 149 | 145 2009-01-27 00:00:00 25 2 2014-06-30 00:00:00 150 | 146 2008-12-07 00:00:00 9.5 1 2014-06-30 00:00:00 151 | 147 2008-12-26 00:00:00 9.5 1 2014-06-30 00:00:00 152 | 148 2009-01-14 00:00:00 9.5 1 2014-06-30 00:00:00 153 | 149 2009-01-31 00:00:00 9.5 1 2014-06-30 00:00:00 154 | 150 2009-02-26 00:00:00 9.5 1 2014-06-30 00:00:00 155 | 151 2009-02-19 00:00:00 9.5 1 2014-06-30 00:00:00 156 | 152 2009-02-01 00:00:00 25 2 2014-06-30 00:00:00 157 | 153 2008-12-16 00:00:00 14 1 2014-06-30 00:00:00 158 | 154 2008-12-23 00:00:00 14 1 2014-06-30 00:00:00 159 | 155 2009-01-04 00:00:00 14 1 2014-06-30 00:00:00 160 | 156 2009-01-11 00:00:00 14 1 2014-06-30 00:00:00 161 | 157 2009-02-03 00:00:00 14 1 2014-06-30 00:00:00 162 | 158 2009-03-07 00:00:00 14 1 2014-06-30 00:00:00 163 | 159 2009-02-16 00:00:00 14 1 2014-06-30 00:00:00 164 | 160 2009-01-21 00:00:00 25 2 2014-06-30 00:00:00 165 | 161 2008-12-15 00:00:00 10 1 2014-06-30 00:00:00 166 | 162 2009-01-03 00:00:00 10 1 2014-06-30 00:00:00 167 | 163 2009-02-08 00:00:00 10 1 2014-06-30 00:00:00 168 | 164 2009-03-06 00:00:00 10 1 2014-06-30 00:00:00 169 | 165 2009-01-22 00:00:00 10 1 2014-06-30 00:00:00 170 | 166 2009-02-21 00:00:00 25 2 2014-06-30 00:00:00 171 | 167 2008-12-02 00:00:00 6.5 1 2008-11-18 00:00:00 172 | 167 2011-12-01 00:00:00 7.25 1 2011-11-17 00:00:00 173 | 167 2013-07-14 00:00:00 9.5 1 2013-06-30 00:00:00 174 | 168 2008-12-07 00:00:00 9.5 1 2014-06-30 00:00:00 175 | 169 2008-12-14 00:00:00 9.5 1 2014-06-30 00:00:00 176 | 170 2008-12-21 00:00:00 6.5 1 2008-12-07 00:00:00 177 | 170 2011-12-01 00:00:00 7.25 1 2011-11-17 00:00:00 178 | 170 2013-07-14 00:00:00 9.5 1 2013-06-30 00:00:00 179 | 171 2009-01-02 00:00:00 9.5 1 2014-06-30 00:00:00 180 | 172 2009-01-16 00:00:00 6.5 1 2009-01-02 00:00:00 181 | 172 2011-12-01 00:00:00 7.25 1 2011-11-17 00:00:00 182 | 172 2013-07-14 00:00:00 9.5 1 2013-06-30 00:00:00 183 | 173 2009-01-21 00:00:00 9.5 1 2014-06-30 00:00:00 184 | 174 2009-01-27 00:00:00 6.75 1 2009-01-13 00:00:00 185 | 174 2011-12-01 00:00:00 7.25 1 2011-11-17 00:00:00 186 | 174 2013-07-14 00:00:00 9.5 1 2013-06-30 00:00:00 187 | 175 2009-02-02 00:00:00 6.5 1 2009-01-19 00:00:00 188 | 175 2011-12-01 00:00:00 7.25 1 2011-11-17 00:00:00 189 | 175 2013-07-14 00:00:00 9.5 1 2013-06-30 00:00:00 190 | 176 2009-02-14 00:00:00 6.5 1 2009-01-31 00:00:00 191 | 176 2011-12-01 00:00:00 7.25 1 2011-11-17 00:00:00 192 | 176 2013-07-14 00:00:00 9.5 1 2013-06-30 00:00:00 193 | 177 2009-02-21 00:00:00 6.5 1 2009-02-07 00:00:00 194 | 177 2011-12-01 00:00:00 7.25 1 2011-11-17 00:00:00 195 | 177 2013-07-14 00:00:00 9.5 1 2013-06-30 00:00:00 196 | 178 2009-03-03 00:00:00 6.5 1 2009-02-17 00:00:00 197 | 178 2011-12-01 00:00:00 7 1 2011-11-17 00:00:00 198 | 178 2013-07-14 00:00:00 9.5 1 2013-06-30 00:00:00 199 | 179 2009-03-05 00:00:00 9.5 1 2014-06-30 00:00:00 200 | 180 2009-02-20 00:00:00 25 2 2014-06-30 00:00:00 201 | 181 2008-12-09 00:00:00 14 1 2014-06-30 00:00:00 202 | 182 2008-12-28 00:00:00 14 1 2014-06-30 00:00:00 203 | 183 2009-01-22 00:00:00 14 1 2014-06-30 00:00:00 204 | 184 2009-02-09 00:00:00 14 1 2014-06-30 00:00:00 205 | 185 2009-02-28 00:00:00 14 1 2014-06-30 00:00:00 206 | 186 2009-02-08 00:00:00 25 2 2014-06-30 00:00:00 207 | 187 2008-12-09 00:00:00 10 1 2014-06-30 00:00:00 208 | 188 2008-12-27 00:00:00 10 1 2014-06-30 00:00:00 209 | 189 2009-01-15 00:00:00 10 1 2014-06-30 00:00:00 210 | 190 2009-02-02 00:00:00 10 1 2014-06-30 00:00:00 211 | 191 2009-02-26 00:00:00 10 1 2014-06-30 00:00:00 212 | 192 2009-03-05 00:00:00 25 2 2014-06-30 00:00:00 213 | 193 2008-12-06 00:00:00 15 1 2014-06-30 00:00:00 214 | 194 2008-12-12 00:00:00 15 1 2014-06-30 00:00:00 215 | 195 2008-12-17 00:00:00 15 1 2014-06-30 00:00:00 216 | 196 2008-12-24 00:00:00 15 1 2014-06-30 00:00:00 217 | 197 2008-12-31 00:00:00 15 1 2014-06-30 00:00:00 218 | 198 2009-01-04 00:00:00 15 1 2014-06-30 00:00:00 219 | 199 2009-01-12 00:00:00 15 1 2014-06-30 00:00:00 220 | 200 2009-01-17 00:00:00 15 1 2014-06-30 00:00:00 221 | 201 2009-01-29 00:00:00 15 1 2014-06-30 00:00:00 222 | 202 2009-02-05 00:00:00 15 1 2014-06-30 00:00:00 223 | 203 2009-02-24 00:00:00 15 1 2014-06-30 00:00:00 224 | 204 2009-03-08 00:00:00 15 1 2014-06-30 00:00:00 225 | 205 2009-02-26 00:00:00 25 2 2014-06-30 00:00:00 226 | 206 2008-12-02 00:00:00 10 1 2014-06-30 00:00:00 227 | 207 2008-12-02 00:00:00 10 1 2014-06-30 00:00:00 228 | 208 2009-01-08 00:00:00 10 1 2014-06-30 00:00:00 229 | 209 2009-01-27 00:00:00 10 1 2014-06-30 00:00:00 230 | 210 2009-02-20 00:00:00 10 1 2014-06-30 00:00:00 231 | 211 2009-02-28 00:00:00 28.8462 2 2014-06-30 00:00:00 232 | 212 2008-12-09 00:00:00 21.6346 2 2014-06-30 00:00:00 233 | 213 2010-02-23 00:00:00 10.5769 2 2014-06-30 00:00:00 234 | 214 2009-02-02 00:00:00 10.5769 2 2014-06-30 00:00:00 235 | 215 2009-01-15 00:00:00 10.5769 2 2014-06-30 00:00:00 236 | 216 2008-12-28 00:00:00 10.5769 2 2014-06-30 00:00:00 237 | 217 2009-01-04 00:00:00 17.7885 2 2014-06-30 00:00:00 238 | 218 2008-12-16 00:00:00 16.8269 2 2014-06-30 00:00:00 239 | 219 2009-01-22 00:00:00 10.25 2 2014-06-30 00:00:00 240 | 220 2009-02-09 00:00:00 10.25 2 2014-06-30 00:00:00 241 | 221 2009-03-06 00:00:00 16.8269 2 2014-06-30 00:00:00 242 | 222 2008-12-12 00:00:00 23.5577 2 2014-06-30 00:00:00 243 | 223 2009-01-26 00:00:00 16 2 2014-06-30 00:00:00 244 | 224 2008-01-08 00:00:00 8.62 2 2007-12-25 00:00:00 245 | 224 2011-08-31 00:00:00 13.5 2 2011-08-17 00:00:00 246 | 224 2012-01-01 00:00:00 16 2 2011-12-18 00:00:00 247 | 225 2009-02-13 00:00:00 16 2 2014-06-30 00:00:00 248 | 226 2009-03-03 00:00:00 16 2 2014-06-30 00:00:00 249 | 227 2009-12-02 00:00:00 24.0385 2 2014-06-30 00:00:00 250 | 228 2008-12-14 00:00:00 20.4327 2 2014-06-30 00:00:00 251 | 229 2010-02-16 00:00:00 9.25 1 2014-06-30 00:00:00 252 | 230 2010-03-05 00:00:00 9.25 1 2014-06-30 00:00:00 253 | 231 2010-03-07 00:00:00 9.25 1 2014-06-30 00:00:00 254 | 232 2010-01-27 00:00:00 9.25 1 2014-06-30 00:00:00 255 | 233 2009-12-21 00:00:00 9.75 2 2014-06-30 00:00:00 256 | 234 2009-01-31 00:00:00 39.06 2 2009-01-17 00:00:00 257 | 234 2011-11-14 00:00:00 48.5577 2 2011-10-31 00:00:00 258 | 234 2012-01-29 00:00:00 60.0962 2 2012-01-15 00:00:00 259 | 235 2008-12-06 00:00:00 27.1394 2 2014-06-30 00:00:00 260 | 236 2009-02-25 00:00:00 13.9423 2 2014-06-30 00:00:00 261 | 237 2009-02-06 00:00:00 13.9423 2 2014-06-30 00:00:00 262 | 238 2009-01-01 00:00:00 18.2692 2 2014-06-30 00:00:00 263 | 239 2008-12-25 00:00:00 16.5865 2 2014-06-30 00:00:00 264 | 240 2008-12-13 00:00:00 18.2692 2 2014-06-30 00:00:00 265 | 241 2009-01-30 00:00:00 34.7356 2 2014-06-30 00:00:00 266 | 242 2008-12-18 00:00:00 19 2 2014-06-30 00:00:00 267 | 243 2009-01-06 00:00:00 19 2 2014-06-30 00:00:00 268 | 244 2009-01-24 00:00:00 19 2 2014-06-30 00:00:00 269 | 245 2009-02-18 00:00:00 26.4423 2 2014-06-30 00:00:00 270 | 246 2009-02-11 00:00:00 19 2 2014-06-30 00:00:00 271 | 247 2009-03-01 00:00:00 19 2 2014-06-30 00:00:00 272 | 248 2009-03-08 00:00:00 26.4423 2 2014-06-30 00:00:00 273 | 249 2008-12-25 00:00:00 43.2692 2 2014-06-30 00:00:00 274 | 250 2011-02-21 00:00:00 9.86 2 2011-02-07 00:00:00 275 | 250 2011-07-30 00:00:00 22.5 2 2011-07-16 00:00:00 276 | 250 2012-07-14 00:00:00 30 2 2012-06-30 00:00:00 277 | 251 2009-02-10 00:00:00 18.2692 2 2014-06-30 00:00:00 278 | 252 2009-02-28 00:00:00 18.2692 2 2014-06-30 00:00:00 279 | 253 2009-12-17 00:00:00 18.2692 2 2014-06-30 00:00:00 280 | 254 2010-01-04 00:00:00 18.2692 2 2014-06-30 00:00:00 281 | 255 2010-01-11 00:00:00 18.2692 2 2014-06-30 00:00:00 282 | 256 2010-01-23 00:00:00 18.2692 2 2014-06-30 00:00:00 283 | 257 2010-01-27 00:00:00 18.2692 2 2014-06-30 00:00:00 284 | 258 2010-01-31 00:00:00 18.2692 2 2014-06-30 00:00:00 285 | 259 2010-03-09 00:00:00 18.2692 2 2014-06-30 00:00:00 286 | 260 2010-12-06 00:00:00 12.75 2 2014-06-30 00:00:00 287 | 261 2010-12-25 00:00:00 12.75 2 2014-06-30 00:00:00 288 | 262 2009-01-12 00:00:00 13.4615 2 2014-06-30 00:00:00 289 | 263 2008-12-11 00:00:00 50.4808 2 2014-06-30 00:00:00 290 | 264 2009-02-04 00:00:00 39.6635 2 2014-06-30 00:00:00 291 | 265 2008-12-04 00:00:00 32.4519 2 2014-06-30 00:00:00 292 | 266 2009-02-23 00:00:00 32.4519 2 2014-06-30 00:00:00 293 | 267 2009-02-16 00:00:00 27.4038 2 2014-06-30 00:00:00 294 | 268 2009-02-03 00:00:00 27.4038 2 2014-06-30 00:00:00 295 | 269 2009-01-11 00:00:00 27.4038 2 2014-06-30 00:00:00 296 | 270 2009-01-17 00:00:00 38.4615 2 2014-06-30 00:00:00 297 | 271 2009-01-22 00:00:00 38.4615 2 2014-06-30 00:00:00 298 | 272 2008-12-23 00:00:00 27.4038 2 2014-06-30 00:00:00 299 | 273 2011-02-15 00:00:00 72.1154 2 2014-06-30 00:00:00 300 | 274 2011-01-04 00:00:00 48.101 2 2014-06-30 00:00:00 301 | 275 2011-05-31 00:00:00 23.0769 2 2014-06-30 00:00:00 302 | 276 2011-05-31 00:00:00 23.0769 2 2014-06-30 00:00:00 303 | 277 2011-05-31 00:00:00 23.0769 2 2014-06-30 00:00:00 304 | 278 2011-05-31 00:00:00 23.0769 2 2014-06-30 00:00:00 305 | 279 2011-05-31 00:00:00 23.0769 2 2014-06-30 00:00:00 306 | 280 2011-05-31 00:00:00 23.0769 2 2014-06-30 00:00:00 307 | 281 2011-05-31 00:00:00 23.0769 2 2014-06-30 00:00:00 308 | 282 2011-05-31 00:00:00 23.0769 2 2014-06-30 00:00:00 309 | 283 2011-05-31 00:00:00 23.0769 2 2014-06-30 00:00:00 310 | 284 2012-09-30 00:00:00 23.0769 2 2014-06-30 00:00:00 311 | 285 2013-03-14 00:00:00 48.101 2 2014-06-30 00:00:00 312 | 286 2013-05-30 00:00:00 23.0769 2 2014-06-30 00:00:00 313 | 287 2012-04-16 00:00:00 48.101 2 2014-06-30 00:00:00 314 | 288 2013-05-30 00:00:00 23.0769 2 2014-06-30 00:00:00 315 | 289 2012-05-30 00:00:00 23.0769 2 2014-06-30 00:00:00 316 | 290 2012-05-30 00:00:00 23.0769 2 2014-06-30 00:00:00 317 | -------------------------------------------------------------------------------- /adventureworks/data/ErrorLog.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morenoh149/postgresDBSamples/2bdc9539762092912655e1b82b7433d3151389dc/adventureworks/data/ErrorLog.csv -------------------------------------------------------------------------------- /adventureworks/data/Location.csv: -------------------------------------------------------------------------------- 1 | 1 Tool Crib 0 .00 2008-04-30 00:00:00 2 | 2 Sheet Metal Racks 0 .00 2008-04-30 00:00:00 3 | 3 Paint Shop 0 .00 2008-04-30 00:00:00 4 | 4 Paint Storage 0 .00 2008-04-30 00:00:00 5 | 5 Metal Storage 0 .00 2008-04-30 00:00:00 6 | 6 Miscellaneous Storage 0 .00 2008-04-30 00:00:00 7 | 7 Finished Goods Storage 0 .00 2008-04-30 00:00:00 8 | 10 Frame Forming 22.5 96.00 2008-04-30 00:00:00 9 | 20 Frame Welding 25 108.00 2008-04-30 00:00:00 10 | 30 Debur and Polish 14.5 120.00 2008-04-30 00:00:00 11 | 40 Paint 15.75 120.00 2008-04-30 00:00:00 12 | 45 Specialized Paint 18 80.00 2008-04-30 00:00:00 13 | 50 Subassembly 12.25 120.00 2008-04-30 00:00:00 14 | 60 Final Assembly 12.25 120.00 2008-04-30 00:00:00 15 | -------------------------------------------------------------------------------- /adventureworks/data/PhoneNumberType.csv: -------------------------------------------------------------------------------- 1 | 1 Cell 2017-12-13 13:19:22.273000000 2 | 2 Home 2017-12-13 13:19:22.273000000 3 | 3 Work 2017-12-13 13:19:22.273000000 4 | -------------------------------------------------------------------------------- /adventureworks/data/ProductCategory.csv: -------------------------------------------------------------------------------- 1 | 1 Bikes {CFBDA25C-DF71-47A7-B81B-64EE161AA37C} 2008-04-30 00:00:00 2 | 2 Components {C657828D-D808-4ABA-91A3-AF2CE02300E9} 2008-04-30 00:00:00 3 | 3 Clothing {10A7C342-CA82-48D4-8A38-46A2EB089B74} 2008-04-30 00:00:00 4 | 4 Accessories {2BE3BE36-D9A2-4EEE-B593-ED895D97C2A6} 2008-04-30 00:00:00 5 | -------------------------------------------------------------------------------- /adventureworks/data/ProductCostHistory.csv: -------------------------------------------------------------------------------- 1 | 707 2011-05-31 00:00:00 2012-05-29 00:00:00 12.0278 2012-05-29 00:00:00 2 | 707 2012-05-30 00:00:00 2013-05-29 00:00:00 13.8782 2013-05-29 00:00:00 3 | 707 2013-05-30 00:00:00 13.0863 2013-05-16 00:00:00 4 | 708 2011-05-31 00:00:00 2012-05-29 00:00:00 12.0278 2012-05-29 00:00:00 5 | 708 2012-05-30 00:00:00 2013-05-29 00:00:00 13.8782 2013-05-29 00:00:00 6 | 708 2013-05-30 00:00:00 13.0863 2013-05-16 00:00:00 7 | 709 2011-05-31 00:00:00 2012-05-29 00:00:00 3.3963 2012-05-29 00:00:00 8 | 710 2011-05-31 00:00:00 2012-05-29 00:00:00 3.3963 2012-05-29 00:00:00 9 | 711 2011-05-31 00:00:00 2012-05-29 00:00:00 12.0278 2012-05-29 00:00:00 10 | 711 2012-05-30 00:00:00 2013-05-29 00:00:00 13.8782 2013-05-29 00:00:00 11 | 711 2013-05-30 00:00:00 13.0863 2013-05-16 00:00:00 12 | 712 2011-05-31 00:00:00 2012-05-29 00:00:00 5.7052 2012-05-29 00:00:00 13 | 712 2012-05-30 00:00:00 2013-05-29 00:00:00 5.2297 2013-05-29 00:00:00 14 | 712 2013-05-30 00:00:00 6.9223 2013-05-16 00:00:00 15 | 713 2011-05-31 00:00:00 2012-05-29 00:00:00 31.7244 2012-05-29 00:00:00 16 | 713 2012-05-30 00:00:00 2013-05-29 00:00:00 29.0807 2013-05-29 00:00:00 17 | 713 2013-05-30 00:00:00 38.4923 2013-05-16 00:00:00 18 | 714 2011-05-31 00:00:00 2012-05-29 00:00:00 31.7244 2012-05-29 00:00:00 19 | 714 2012-05-30 00:00:00 2013-05-29 00:00:00 29.0807 2013-05-29 00:00:00 20 | 714 2013-05-30 00:00:00 38.4923 2013-05-16 00:00:00 21 | 715 2011-05-31 00:00:00 2012-05-29 00:00:00 31.7244 2012-05-29 00:00:00 22 | 715 2012-05-30 00:00:00 2013-05-29 00:00:00 29.0807 2013-05-29 00:00:00 23 | 715 2013-05-30 00:00:00 38.4923 2013-05-16 00:00:00 24 | 716 2011-05-31 00:00:00 2012-05-29 00:00:00 31.7244 2012-05-29 00:00:00 25 | 716 2012-05-30 00:00:00 2013-05-29 00:00:00 29.0807 2013-05-29 00:00:00 26 | 716 2013-05-30 00:00:00 38.4923 2013-05-16 00:00:00 27 | 717 2011-05-31 00:00:00 2012-05-29 00:00:00 747.9682 2012-05-29 00:00:00 28 | 717 2012-05-30 00:00:00 2013-05-29 00:00:00 722.2568 2013-05-29 00:00:00 29 | 717 2013-05-30 00:00:00 868.6342 2013-05-16 00:00:00 30 | 718 2011-05-31 00:00:00 2012-05-29 00:00:00 747.9682 2012-05-29 00:00:00 31 | 718 2012-05-30 00:00:00 2013-05-29 00:00:00 722.2568 2013-05-29 00:00:00 32 | 718 2013-05-30 00:00:00 868.6342 2013-05-16 00:00:00 33 | 719 2011-05-31 00:00:00 2012-05-29 00:00:00 747.9682 2012-05-29 00:00:00 34 | 719 2012-05-30 00:00:00 2013-05-29 00:00:00 722.2568 2013-05-29 00:00:00 35 | 719 2013-05-30 00:00:00 868.6342 2013-05-16 00:00:00 36 | 720 2011-05-31 00:00:00 2012-05-29 00:00:00 747.9682 2012-05-29 00:00:00 37 | 720 2012-05-30 00:00:00 2013-05-29 00:00:00 722.2568 2013-05-29 00:00:00 38 | 720 2013-05-30 00:00:00 868.6342 2013-05-16 00:00:00 39 | 721 2011-05-31 00:00:00 2012-05-29 00:00:00 747.9682 2012-05-29 00:00:00 40 | 721 2012-05-30 00:00:00 2013-05-29 00:00:00 722.2568 2013-05-29 00:00:00 41 | 721 2013-05-30 00:00:00 868.6342 2013-05-16 00:00:00 42 | 722 2011-05-31 00:00:00 2012-05-29 00:00:00 176.1997 2012-05-29 00:00:00 43 | 722 2012-05-30 00:00:00 2013-05-29 00:00:00 170.1428 2013-05-29 00:00:00 44 | 722 2013-05-30 00:00:00 204.6251 2013-05-16 00:00:00 45 | 723 2011-05-31 00:00:00 2012-05-29 00:00:00 176.1997 2012-05-29 00:00:00 46 | 723 2012-05-30 00:00:00 2013-05-29 00:00:00 170.1428 2013-05-29 00:00:00 47 | 723 2013-05-30 00:00:00 204.6251 2013-05-16 00:00:00 48 | 724 2011-05-31 00:00:00 2012-05-29 00:00:00 176.1997 2012-05-29 00:00:00 49 | 724 2012-05-30 00:00:00 2013-05-29 00:00:00 170.1428 2013-05-29 00:00:00 50 | 724 2013-05-30 00:00:00 204.6251 2013-05-16 00:00:00 51 | 725 2011-05-31 00:00:00 2012-05-29 00:00:00 181.4857 2012-05-29 00:00:00 52 | 725 2012-05-30 00:00:00 2013-05-29 00:00:00 187.1571 2013-05-29 00:00:00 53 | 726 2011-05-31 00:00:00 2012-05-29 00:00:00 181.4857 2012-05-29 00:00:00 54 | 726 2012-05-30 00:00:00 2013-05-29 00:00:00 187.1571 2013-05-29 00:00:00 55 | 727 2011-05-31 00:00:00 2012-05-29 00:00:00 181.4857 2012-05-29 00:00:00 56 | 727 2012-05-30 00:00:00 2013-05-29 00:00:00 187.1571 2013-05-29 00:00:00 57 | 728 2011-05-31 00:00:00 2012-05-29 00:00:00 181.4857 2012-05-29 00:00:00 58 | 728 2012-05-30 00:00:00 2013-05-29 00:00:00 187.1571 2013-05-29 00:00:00 59 | 729 2011-05-31 00:00:00 2012-05-29 00:00:00 181.4857 2012-05-29 00:00:00 60 | 729 2012-05-30 00:00:00 2013-05-29 00:00:00 187.1571 2013-05-29 00:00:00 61 | 730 2011-05-31 00:00:00 2012-05-29 00:00:00 181.4857 2012-05-29 00:00:00 62 | 730 2012-05-30 00:00:00 2013-05-29 00:00:00 187.1571 2013-05-29 00:00:00 63 | 731 2011-05-31 00:00:00 2012-05-29 00:00:00 352.1394 2012-05-29 00:00:00 64 | 732 2011-05-31 00:00:00 2012-05-29 00:00:00 352.1394 2012-05-29 00:00:00 65 | 733 2011-05-31 00:00:00 2012-05-29 00:00:00 352.1394 2012-05-29 00:00:00 66 | 734 2011-05-31 00:00:00 2012-05-29 00:00:00 352.1394 2012-05-29 00:00:00 67 | 735 2011-05-31 00:00:00 2012-05-29 00:00:00 352.1394 2012-05-29 00:00:00 68 | 736 2011-05-31 00:00:00 2012-05-29 00:00:00 176.1997 2012-05-29 00:00:00 69 | 736 2012-05-30 00:00:00 2013-05-29 00:00:00 170.1428 2013-05-29 00:00:00 70 | 736 2013-05-30 00:00:00 204.6251 2013-05-16 00:00:00 71 | 737 2011-05-31 00:00:00 2012-05-29 00:00:00 176.1997 2012-05-29 00:00:00 72 | 737 2012-05-30 00:00:00 2013-05-29 00:00:00 170.1428 2013-05-29 00:00:00 73 | 737 2013-05-30 00:00:00 204.6251 2013-05-16 00:00:00 74 | 738 2011-05-31 00:00:00 2012-05-29 00:00:00 176.1997 2012-05-29 00:00:00 75 | 738 2012-05-30 00:00:00 2013-05-29 00:00:00 170.1428 2013-05-29 00:00:00 76 | 738 2013-05-30 00:00:00 204.6251 2013-05-16 00:00:00 77 | 739 2011-05-31 00:00:00 2012-05-29 00:00:00 623.8403 2012-05-29 00:00:00 78 | 739 2012-05-30 00:00:00 2013-05-29 00:00:00 660.9142 2013-05-29 00:00:00 79 | 739 2013-05-30 00:00:00 747.2002 2013-05-16 00:00:00 80 | 740 2011-05-31 00:00:00 2012-05-29 00:00:00 706.811 2012-05-29 00:00:00 81 | 741 2011-05-31 00:00:00 2012-05-29 00:00:00 706.811 2012-05-29 00:00:00 82 | 742 2011-05-31 00:00:00 2012-05-29 00:00:00 623.8403 2012-05-29 00:00:00 83 | 742 2012-05-30 00:00:00 2013-05-29 00:00:00 660.9142 2013-05-29 00:00:00 84 | 742 2013-05-30 00:00:00 747.2002 2013-05-16 00:00:00 85 | 743 2011-05-31 00:00:00 2012-05-29 00:00:00 617.0281 2012-05-29 00:00:00 86 | 743 2012-05-30 00:00:00 2013-05-29 00:00:00 653.6971 2013-05-29 00:00:00 87 | 743 2013-05-30 00:00:00 739.041 2013-05-16 00:00:00 88 | 744 2011-05-31 00:00:00 2012-05-29 00:00:00 699.0928 2012-05-29 00:00:00 89 | 745 2011-05-31 00:00:00 2012-05-29 00:00:00 699.0928 2012-05-29 00:00:00 90 | 746 2011-05-31 00:00:00 2012-05-29 00:00:00 617.0281 2012-05-29 00:00:00 91 | 746 2012-05-30 00:00:00 2013-05-29 00:00:00 653.6971 2013-05-29 00:00:00 92 | 746 2013-05-30 00:00:00 739.041 2013-05-16 00:00:00 93 | 747 2011-05-31 00:00:00 2012-05-29 00:00:00 617.0281 2012-05-29 00:00:00 94 | 747 2012-05-30 00:00:00 2013-05-29 00:00:00 653.6971 2013-05-29 00:00:00 95 | 747 2013-05-30 00:00:00 739.041 2013-05-16 00:00:00 96 | 748 2011-05-31 00:00:00 2012-05-29 00:00:00 623.8403 2012-05-29 00:00:00 97 | 748 2012-05-30 00:00:00 2013-05-29 00:00:00 660.9142 2013-05-29 00:00:00 98 | 748 2013-05-30 00:00:00 747.2002 2013-05-16 00:00:00 99 | 749 2011-05-31 00:00:00 2012-05-29 00:00:00 2171.2942 2012-05-29 00:00:00 100 | 750 2011-05-31 00:00:00 2012-05-29 00:00:00 2171.2942 2012-05-29 00:00:00 101 | 751 2011-05-31 00:00:00 2012-05-29 00:00:00 2171.2942 2012-05-29 00:00:00 102 | 752 2011-05-31 00:00:00 2012-05-29 00:00:00 2171.2942 2012-05-29 00:00:00 103 | 753 2011-05-31 00:00:00 2012-05-29 00:00:00 2171.2942 2012-05-29 00:00:00 104 | 754 2011-05-31 00:00:00 2012-05-29 00:00:00 884.7083 2012-05-29 00:00:00 105 | 755 2011-05-31 00:00:00 2012-05-29 00:00:00 884.7083 2012-05-29 00:00:00 106 | 756 2011-05-31 00:00:00 2012-05-29 00:00:00 884.7083 2012-05-29 00:00:00 107 | 757 2011-05-31 00:00:00 2012-05-29 00:00:00 884.7083 2012-05-29 00:00:00 108 | 758 2011-05-31 00:00:00 2012-05-29 00:00:00 884.7083 2012-05-29 00:00:00 109 | 759 2011-05-31 00:00:00 2012-05-29 00:00:00 413.1463 2012-05-29 00:00:00 110 | 759 2012-05-30 00:00:00 2013-05-29 00:00:00 486.7066 2013-05-29 00:00:00 111 | 760 2011-05-31 00:00:00 2012-05-29 00:00:00 413.1463 2012-05-29 00:00:00 112 | 760 2012-05-30 00:00:00 2013-05-29 00:00:00 486.7066 2013-05-29 00:00:00 113 | 761 2011-05-31 00:00:00 2012-05-29 00:00:00 413.1463 2012-05-29 00:00:00 114 | 761 2012-05-30 00:00:00 2013-05-29 00:00:00 486.7066 2013-05-29 00:00:00 115 | 762 2011-05-31 00:00:00 2012-05-29 00:00:00 413.1463 2012-05-29 00:00:00 116 | 762 2012-05-30 00:00:00 2013-05-29 00:00:00 486.7066 2013-05-29 00:00:00 117 | 763 2011-05-31 00:00:00 2012-05-29 00:00:00 413.1463 2012-05-29 00:00:00 118 | 763 2012-05-30 00:00:00 2013-05-29 00:00:00 486.7066 2013-05-29 00:00:00 119 | 764 2011-05-31 00:00:00 2012-05-29 00:00:00 413.1463 2012-05-29 00:00:00 120 | 764 2012-05-30 00:00:00 2013-05-29 00:00:00 486.7066 2013-05-29 00:00:00 121 | 765 2011-05-31 00:00:00 2012-05-29 00:00:00 413.1463 2012-05-29 00:00:00 122 | 765 2012-05-30 00:00:00 2013-05-29 00:00:00 486.7066 2013-05-29 00:00:00 123 | 766 2011-05-31 00:00:00 2012-05-29 00:00:00 413.1463 2012-05-29 00:00:00 124 | 766 2012-05-30 00:00:00 2013-05-29 00:00:00 486.7066 2013-05-29 00:00:00 125 | 767 2011-05-31 00:00:00 2012-05-29 00:00:00 413.1463 2012-05-29 00:00:00 126 | 767 2012-05-30 00:00:00 2013-05-29 00:00:00 486.7066 2013-05-29 00:00:00 127 | 768 2011-05-31 00:00:00 2012-05-29 00:00:00 413.1463 2012-05-29 00:00:00 128 | 768 2012-05-30 00:00:00 2013-05-29 00:00:00 486.7066 2013-05-29 00:00:00 129 | 769 2011-05-31 00:00:00 2012-05-29 00:00:00 413.1463 2012-05-29 00:00:00 130 | 769 2012-05-30 00:00:00 2013-05-29 00:00:00 486.7066 2013-05-29 00:00:00 131 | 770 2011-05-31 00:00:00 2012-05-29 00:00:00 413.1463 2012-05-29 00:00:00 132 | 770 2012-05-30 00:00:00 2013-05-29 00:00:00 486.7066 2013-05-29 00:00:00 133 | 771 2011-05-31 00:00:00 2012-05-29 00:00:00 1912.1544 2012-05-29 00:00:00 134 | 772 2011-05-31 00:00:00 2012-05-29 00:00:00 1912.1544 2012-05-29 00:00:00 135 | 773 2011-05-31 00:00:00 2012-05-29 00:00:00 1912.1544 2012-05-29 00:00:00 136 | 774 2011-05-31 00:00:00 2012-05-29 00:00:00 1912.1544 2012-05-29 00:00:00 137 | 775 2011-05-31 00:00:00 2012-05-29 00:00:00 1898.0944 2012-05-29 00:00:00 138 | 776 2011-05-31 00:00:00 2012-05-29 00:00:00 1898.0944 2012-05-29 00:00:00 139 | 777 2011-05-31 00:00:00 2012-05-29 00:00:00 1898.0944 2012-05-29 00:00:00 140 | 778 2011-05-31 00:00:00 2012-05-29 00:00:00 1898.0944 2012-05-29 00:00:00 141 | 779 2012-05-30 00:00:00 2013-05-29 00:00:00 1117.8559 2013-05-29 00:00:00 142 | 779 2013-05-30 00:00:00 1265.6195 2013-05-16 00:00:00 143 | 780 2012-05-30 00:00:00 2013-05-29 00:00:00 1117.8559 2013-05-29 00:00:00 144 | 780 2013-05-30 00:00:00 1265.6195 2013-05-16 00:00:00 145 | 781 2012-05-30 00:00:00 2013-05-29 00:00:00 1117.8559 2013-05-29 00:00:00 146 | 781 2013-05-30 00:00:00 1265.6195 2013-05-16 00:00:00 147 | 782 2012-05-30 00:00:00 2013-05-29 00:00:00 1105.81 2013-05-29 00:00:00 148 | 782 2013-05-30 00:00:00 1251.9813 2013-05-16 00:00:00 149 | 783 2012-05-30 00:00:00 2013-05-29 00:00:00 1105.81 2013-05-29 00:00:00 150 | 783 2013-05-30 00:00:00 1251.9813 2013-05-16 00:00:00 151 | 784 2012-05-30 00:00:00 2013-05-29 00:00:00 1105.81 2013-05-29 00:00:00 152 | 784 2013-05-30 00:00:00 1251.9813 2013-05-16 00:00:00 153 | 785 2012-05-30 00:00:00 2013-05-29 00:00:00 598.4354 2013-05-29 00:00:00 154 | 786 2012-05-30 00:00:00 2013-05-29 00:00:00 598.4354 2013-05-29 00:00:00 155 | 787 2012-05-30 00:00:00 2013-05-29 00:00:00 598.4354 2013-05-29 00:00:00 156 | 788 2012-05-30 00:00:00 2013-05-29 00:00:00 598.4354 2013-05-29 00:00:00 157 | 789 2012-05-30 00:00:00 2013-05-29 00:00:00 1518.7864 2013-05-29 00:00:00 158 | 790 2012-05-30 00:00:00 2013-05-29 00:00:00 1518.7864 2013-05-29 00:00:00 159 | 791 2012-05-30 00:00:00 2013-05-29 00:00:00 1518.7864 2013-05-29 00:00:00 160 | 792 2012-05-30 00:00:00 2013-05-29 00:00:00 1320.6838 2013-05-29 00:00:00 161 | 792 2013-05-30 00:00:00 1554.9479 2013-05-16 00:00:00 162 | 793 2012-05-30 00:00:00 2013-05-29 00:00:00 1320.6838 2013-05-29 00:00:00 163 | 793 2013-05-30 00:00:00 1554.9479 2013-05-16 00:00:00 164 | 794 2012-05-30 00:00:00 2013-05-29 00:00:00 1320.6838 2013-05-29 00:00:00 165 | 794 2013-05-30 00:00:00 1554.9479 2013-05-16 00:00:00 166 | 795 2012-05-30 00:00:00 2013-05-29 00:00:00 1320.6838 2013-05-29 00:00:00 167 | 795 2013-05-30 00:00:00 1554.9479 2013-05-16 00:00:00 168 | 796 2012-05-30 00:00:00 2013-05-29 00:00:00 1320.6838 2013-05-29 00:00:00 169 | 796 2013-05-30 00:00:00 1554.9479 2013-05-16 00:00:00 170 | 797 2012-05-30 00:00:00 2013-05-29 00:00:00 605.6492 2013-05-29 00:00:00 171 | 797 2013-05-30 00:00:00 713.0798 2013-05-16 00:00:00 172 | 798 2012-05-30 00:00:00 2013-05-29 00:00:00 605.6492 2013-05-29 00:00:00 173 | 798 2013-05-30 00:00:00 713.0798 2013-05-16 00:00:00 174 | 799 2012-05-30 00:00:00 2013-05-29 00:00:00 605.6492 2013-05-29 00:00:00 175 | 799 2013-05-30 00:00:00 713.0798 2013-05-16 00:00:00 176 | 800 2012-05-30 00:00:00 2013-05-29 00:00:00 605.6492 2013-05-29 00:00:00 177 | 800 2013-05-30 00:00:00 713.0798 2013-05-16 00:00:00 178 | 801 2012-05-30 00:00:00 2013-05-29 00:00:00 605.6492 2013-05-29 00:00:00 179 | 801 2013-05-30 00:00:00 713.0798 2013-05-16 00:00:00 180 | 802 2012-05-30 00:00:00 2013-05-29 00:00:00 65.8097 2013-05-29 00:00:00 181 | 803 2012-05-30 00:00:00 2013-05-29 00:00:00 77.9176 2013-05-29 00:00:00 182 | 804 2012-05-30 00:00:00 2013-05-29 00:00:00 101.8936 2013-05-29 00:00:00 183 | 805 2012-05-30 00:00:00 2013-05-29 00:00:00 15.1848 2013-05-29 00:00:00 184 | 806 2012-05-30 00:00:00 2013-05-29 00:00:00 45.4168 2013-05-29 00:00:00 185 | 807 2012-05-30 00:00:00 2013-05-29 00:00:00 55.3801 2013-05-29 00:00:00 186 | 808 2012-05-30 00:00:00 2013-05-29 00:00:00 17.978 2013-05-29 00:00:00 187 | 808 2013-05-30 00:00:00 19.7758 2013-05-16 00:00:00 188 | 809 2012-05-30 00:00:00 2013-05-29 00:00:00 24.9932 2013-05-29 00:00:00 189 | 809 2013-05-30 00:00:00 27.4925 2013-05-16 00:00:00 190 | 810 2012-05-30 00:00:00 2013-05-29 00:00:00 48.5453 2013-05-29 00:00:00 191 | 810 2013-05-30 00:00:00 53.3999 2013-05-16 00:00:00 192 | 811 2012-05-30 00:00:00 2013-05-29 00:00:00 17.978 2013-05-29 00:00:00 193 | 811 2013-05-30 00:00:00 19.7758 2013-05-16 00:00:00 194 | 812 2012-05-30 00:00:00 2013-05-29 00:00:00 24.9932 2013-05-29 00:00:00 195 | 812 2013-05-30 00:00:00 27.4925 2013-05-16 00:00:00 196 | 813 2012-05-30 00:00:00 2013-05-29 00:00:00 48.5453 2013-05-29 00:00:00 197 | 813 2013-05-30 00:00:00 53.3999 2013-05-16 00:00:00 198 | 814 2012-05-30 00:00:00 2013-05-29 00:00:00 185.8193 2013-05-29 00:00:00 199 | 815 2012-05-30 00:00:00 2013-05-29 00:00:00 26.9708 2013-05-29 00:00:00 200 | 816 2012-05-30 00:00:00 2013-05-29 00:00:00 92.8071 2013-05-29 00:00:00 201 | 817 2012-05-30 00:00:00 2013-05-29 00:00:00 133.2955 2013-05-29 00:00:00 202 | 818 2012-05-30 00:00:00 2013-05-29 00:00:00 37.9909 2013-05-29 00:00:00 203 | 819 2012-05-30 00:00:00 2013-05-29 00:00:00 110.2829 2013-05-29 00:00:00 204 | 820 2012-05-30 00:00:00 2013-05-29 00:00:00 146.5466 2013-05-29 00:00:00 205 | 821 2012-05-30 00:00:00 2013-05-29 00:00:00 96.7964 2013-05-29 00:00:00 206 | 822 2012-05-30 00:00:00 2013-05-29 00:00:00 300.1188 2013-05-29 00:00:00 207 | 822 2013-05-30 00:00:00 360.9428 2013-05-16 00:00:00 208 | 823 2012-05-30 00:00:00 2013-05-29 00:00:00 38.9588 2013-05-29 00:00:00 209 | 824 2012-05-30 00:00:00 2013-05-29 00:00:00 104.7951 2013-05-29 00:00:00 210 | 825 2012-05-30 00:00:00 2013-05-29 00:00:00 145.2835 2013-05-29 00:00:00 211 | 826 2012-05-30 00:00:00 2013-05-29 00:00:00 49.9789 2013-05-29 00:00:00 212 | 827 2012-05-30 00:00:00 2013-05-29 00:00:00 122.2709 2013-05-29 00:00:00 213 | 828 2012-05-30 00:00:00 2013-05-29 00:00:00 158.5346 2013-05-29 00:00:00 214 | 829 2012-05-30 00:00:00 2013-05-29 00:00:00 108.7844 2013-05-29 00:00:00 215 | 830 2012-05-30 00:00:00 2013-05-29 00:00:00 185.8193 2013-05-29 00:00:00 216 | 831 2012-05-30 00:00:00 2013-05-29 00:00:00 185.8193 2013-05-29 00:00:00 217 | 832 2012-05-30 00:00:00 2013-05-29 00:00:00 185.8193 2013-05-29 00:00:00 218 | 833 2012-05-30 00:00:00 2013-05-29 00:00:00 300.1188 2013-05-29 00:00:00 219 | 833 2013-05-30 00:00:00 360.9428 2013-05-16 00:00:00 220 | 834 2012-05-30 00:00:00 2013-05-29 00:00:00 300.1188 2013-05-29 00:00:00 221 | 834 2013-05-30 00:00:00 360.9428 2013-05-16 00:00:00 222 | 835 2012-05-30 00:00:00 2013-05-29 00:00:00 300.1188 2013-05-29 00:00:00 223 | 835 2013-05-30 00:00:00 360.9428 2013-05-16 00:00:00 224 | 836 2012-05-30 00:00:00 2013-05-29 00:00:00 300.1188 2013-05-29 00:00:00 225 | 836 2013-05-30 00:00:00 360.9428 2013-05-16 00:00:00 226 | 837 2012-05-30 00:00:00 2013-05-29 00:00:00 722.2568 2013-05-29 00:00:00 227 | 837 2013-05-30 00:00:00 868.6342 2013-05-16 00:00:00 228 | 838 2012-05-30 00:00:00 2013-05-29 00:00:00 722.2568 2013-05-29 00:00:00 229 | 838 2013-05-30 00:00:00 868.6342 2013-05-16 00:00:00 230 | 839 2012-05-30 00:00:00 2013-05-29 00:00:00 722.2568 2013-05-29 00:00:00 231 | 839 2013-05-30 00:00:00 868.6342 2013-05-16 00:00:00 232 | 840 2012-05-30 00:00:00 2013-05-29 00:00:00 722.2568 2013-05-29 00:00:00 233 | 840 2013-05-30 00:00:00 868.6342 2013-05-16 00:00:00 234 | 841 2012-05-30 00:00:00 2013-05-29 00:00:00 24.7459 2013-05-29 00:00:00 235 | 842 2012-05-30 00:00:00 2013-05-29 00:00:00 51.5625 2013-05-29 00:00:00 236 | 843 2012-05-30 00:00:00 2013-05-29 00:00:00 10.3125 2013-05-29 00:00:00 237 | 844 2012-05-30 00:00:00 2013-05-29 00:00:00 8.2459 2013-05-29 00:00:00 238 | 845 2012-05-30 00:00:00 2013-05-29 00:00:00 10.3084 2013-05-29 00:00:00 239 | 846 2012-05-30 00:00:00 2013-05-29 00:00:00 5.7709 2013-05-29 00:00:00 240 | 847 2012-05-30 00:00:00 2013-05-29 00:00:00 14.4334 2013-05-29 00:00:00 241 | 848 2012-05-30 00:00:00 2013-05-29 00:00:00 18.5584 2013-05-29 00:00:00 242 | 849 2012-05-30 00:00:00 2013-05-29 00:00:00 24.7459 2013-05-29 00:00:00 243 | 850 2012-05-30 00:00:00 2013-05-29 00:00:00 24.7459 2013-05-29 00:00:00 244 | 851 2012-05-30 00:00:00 2013-05-29 00:00:00 24.7459 2013-05-29 00:00:00 245 | 852 2012-05-30 00:00:00 2013-05-29 00:00:00 30.9334 2013-05-29 00:00:00 246 | 853 2012-05-30 00:00:00 2013-05-29 00:00:00 30.9334 2013-05-29 00:00:00 247 | 854 2012-05-30 00:00:00 2013-05-29 00:00:00 30.9334 2013-05-29 00:00:00 248 | 855 2012-05-30 00:00:00 2013-05-29 00:00:00 37.1209 2013-05-29 00:00:00 249 | 856 2012-05-30 00:00:00 2013-05-29 00:00:00 37.1209 2013-05-29 00:00:00 250 | 857 2012-05-30 00:00:00 2013-05-29 00:00:00 37.1209 2013-05-29 00:00:00 251 | 858 2012-05-30 00:00:00 2013-05-29 00:00:00 9.7136 2013-05-29 00:00:00 252 | 858 2013-05-30 00:00:00 9.1593 2013-05-16 00:00:00 253 | 859 2012-05-30 00:00:00 2013-05-29 00:00:00 9.7136 2013-05-29 00:00:00 254 | 859 2013-05-30 00:00:00 9.1593 2013-05-16 00:00:00 255 | 860 2012-05-30 00:00:00 2013-05-29 00:00:00 9.7136 2013-05-29 00:00:00 256 | 860 2013-05-30 00:00:00 9.1593 2013-05-16 00:00:00 257 | 861 2012-05-30 00:00:00 2013-05-29 00:00:00 15.6709 2013-05-29 00:00:00 258 | 862 2012-05-30 00:00:00 2013-05-29 00:00:00 15.6709 2013-05-29 00:00:00 259 | 863 2012-05-30 00:00:00 2013-05-29 00:00:00 15.6709 2013-05-29 00:00:00 260 | 864 2013-05-30 00:00:00 23.749 2013-05-16 00:00:00 261 | 865 2013-05-30 00:00:00 23.749 2013-05-16 00:00:00 262 | 866 2013-05-30 00:00:00 23.749 2013-05-16 00:00:00 263 | 867 2013-05-30 00:00:00 26.1763 2013-05-16 00:00:00 264 | 868 2013-05-30 00:00:00 26.1763 2013-05-16 00:00:00 265 | 869 2013-05-30 00:00:00 26.1763 2013-05-16 00:00:00 266 | 870 2013-05-30 00:00:00 1.8663 2013-05-16 00:00:00 267 | 871 2013-05-30 00:00:00 3.7363 2013-05-16 00:00:00 268 | 872 2013-05-30 00:00:00 3.3623 2013-05-16 00:00:00 269 | 873 2013-05-30 00:00:00 0.8565 2013-05-16 00:00:00 270 | 874 2013-05-30 00:00:00 3.3623 2013-05-16 00:00:00 271 | 875 2013-05-30 00:00:00 3.3623 2013-05-16 00:00:00 272 | 876 2013-05-30 00:00:00 44.88 2013-05-16 00:00:00 273 | 877 2013-05-30 00:00:00 2.9733 2013-05-16 00:00:00 274 | 878 2013-05-30 00:00:00 8.2205 2013-05-16 00:00:00 275 | 879 2013-05-30 00:00:00 59.466 2013-05-16 00:00:00 276 | 880 2013-05-30 00:00:00 20.5663 2013-05-16 00:00:00 277 | 881 2013-05-30 00:00:00 41.5723 2013-05-16 00:00:00 278 | 882 2013-05-30 00:00:00 41.5723 2013-05-16 00:00:00 279 | 883 2013-05-30 00:00:00 41.5723 2013-05-16 00:00:00 280 | 884 2013-05-30 00:00:00 41.5723 2013-05-16 00:00:00 281 | 885 2013-05-30 00:00:00 601.7437 2013-05-16 00:00:00 282 | 886 2013-05-30 00:00:00 199.8519 2013-05-16 00:00:00 283 | 887 2013-05-30 00:00:00 601.7437 2013-05-16 00:00:00 284 | 888 2013-05-30 00:00:00 601.7437 2013-05-16 00:00:00 285 | 889 2013-05-30 00:00:00 601.7437 2013-05-16 00:00:00 286 | 890 2013-05-30 00:00:00 601.7437 2013-05-16 00:00:00 287 | 891 2013-05-30 00:00:00 601.7437 2013-05-16 00:00:00 288 | 892 2013-05-30 00:00:00 601.7437 2013-05-16 00:00:00 289 | 893 2013-05-30 00:00:00 601.7437 2013-05-16 00:00:00 290 | 894 2013-05-30 00:00:00 53.9282 2013-05-16 00:00:00 291 | 895 2013-05-30 00:00:00 199.8519 2013-05-16 00:00:00 292 | 896 2013-05-30 00:00:00 199.8519 2013-05-16 00:00:00 293 | 897 2013-05-30 00:00:00 199.8519 2013-05-16 00:00:00 294 | 898 2013-05-30 00:00:00 199.8519 2013-05-16 00:00:00 295 | 899 2013-05-30 00:00:00 199.8519 2013-05-16 00:00:00 296 | 900 2013-05-30 00:00:00 199.8519 2013-05-16 00:00:00 297 | 901 2013-05-30 00:00:00 199.8519 2013-05-16 00:00:00 298 | 902 2013-05-30 00:00:00 199.8519 2013-05-16 00:00:00 299 | 903 2013-05-30 00:00:00 199.8519 2013-05-16 00:00:00 300 | 904 2013-05-30 00:00:00 199.3757 2013-05-16 00:00:00 301 | 905 2013-05-30 00:00:00 199.3757 2013-05-16 00:00:00 302 | 906 2013-05-30 00:00:00 199.3757 2013-05-16 00:00:00 303 | 907 2013-05-30 00:00:00 47.286 2013-05-16 00:00:00 304 | 908 2013-05-30 00:00:00 12.0413 2013-05-16 00:00:00 305 | 909 2013-05-30 00:00:00 17.3782 2013-05-16 00:00:00 306 | 910 2013-05-30 00:00:00 23.3722 2013-05-16 00:00:00 307 | 911 2013-05-30 00:00:00 12.0413 2013-05-16 00:00:00 308 | 912 2013-05-30 00:00:00 17.3782 2013-05-16 00:00:00 309 | 913 2013-05-30 00:00:00 23.3722 2013-05-16 00:00:00 310 | 914 2013-05-30 00:00:00 12.0413 2013-05-16 00:00:00 311 | 915 2013-05-30 00:00:00 17.3782 2013-05-16 00:00:00 312 | 916 2013-05-30 00:00:00 23.3722 2013-05-16 00:00:00 313 | 917 2013-05-30 00:00:00 144.5938 2013-05-16 00:00:00 314 | 918 2013-05-30 00:00:00 144.5938 2013-05-16 00:00:00 315 | 919 2013-05-30 00:00:00 144.5938 2013-05-16 00:00:00 316 | 920 2013-05-30 00:00:00 144.5938 2013-05-16 00:00:00 317 | 921 2013-05-30 00:00:00 1.8663 2013-05-16 00:00:00 318 | 922 2013-05-30 00:00:00 1.4923 2013-05-16 00:00:00 319 | 923 2013-05-30 00:00:00 1.8663 2013-05-16 00:00:00 320 | 924 2013-05-30 00:00:00 136.785 2013-05-16 00:00:00 321 | 925 2013-05-30 00:00:00 136.785 2013-05-16 00:00:00 322 | 926 2013-05-30 00:00:00 136.785 2013-05-16 00:00:00 323 | 927 2013-05-30 00:00:00 136.785 2013-05-16 00:00:00 324 | 928 2013-05-30 00:00:00 9.3463 2013-05-16 00:00:00 325 | 929 2013-05-30 00:00:00 11.2163 2013-05-16 00:00:00 326 | 930 2013-05-30 00:00:00 13.09 2013-05-16 00:00:00 327 | 931 2013-05-30 00:00:00 8.0373 2013-05-16 00:00:00 328 | 932 2013-05-30 00:00:00 9.3463 2013-05-16 00:00:00 329 | 933 2013-05-30 00:00:00 12.1924 2013-05-16 00:00:00 330 | 934 2013-05-30 00:00:00 10.8423 2013-05-16 00:00:00 331 | 935 2013-05-30 00:00:00 17.9776 2013-05-16 00:00:00 332 | 936 2013-05-30 00:00:00 27.568 2013-05-16 00:00:00 333 | 937 2013-05-30 00:00:00 35.9596 2013-05-16 00:00:00 334 | 938 2013-05-30 00:00:00 17.9776 2013-05-16 00:00:00 335 | 939 2013-05-30 00:00:00 27.568 2013-05-16 00:00:00 336 | 940 2013-05-30 00:00:00 35.9596 2013-05-16 00:00:00 337 | 941 2013-05-30 00:00:00 35.9596 2013-05-16 00:00:00 338 | 942 2013-05-30 00:00:00 199.3757 2013-05-16 00:00:00 339 | 943 2013-05-30 00:00:00 136.785 2013-05-16 00:00:00 340 | 944 2013-05-30 00:00:00 144.5938 2013-05-16 00:00:00 341 | 945 2013-05-30 00:00:00 40.6216 2013-05-16 00:00:00 342 | 946 2013-05-30 00:00:00 20.464 2013-05-16 00:00:00 343 | 947 2013-05-30 00:00:00 40.6571 2013-05-16 00:00:00 344 | 948 2013-05-30 00:00:00 47.286 2013-05-16 00:00:00 345 | 949 2013-05-30 00:00:00 77.9176 2013-05-16 00:00:00 346 | 950 2013-05-30 00:00:00 113.8816 2013-05-16 00:00:00 347 | 951 2013-05-30 00:00:00 179.8156 2013-05-16 00:00:00 348 | 952 2013-05-30 00:00:00 8.9866 2013-05-16 00:00:00 349 | 953 2013-05-30 00:00:00 755.1508 2013-05-16 00:00:00 350 | 954 2013-05-30 00:00:00 1481.9379 2013-05-16 00:00:00 351 | 955 2013-05-30 00:00:00 1481.9379 2013-05-16 00:00:00 352 | 956 2013-05-30 00:00:00 1481.9379 2013-05-16 00:00:00 353 | 957 2013-05-30 00:00:00 1481.9379 2013-05-16 00:00:00 354 | 958 2013-05-30 00:00:00 461.4448 2013-05-16 00:00:00 355 | 959 2013-05-30 00:00:00 461.4448 2013-05-16 00:00:00 356 | 960 2013-05-30 00:00:00 461.4448 2013-05-16 00:00:00 357 | 961 2013-05-30 00:00:00 461.4448 2013-05-16 00:00:00 358 | 962 2013-05-30 00:00:00 461.4448 2013-05-16 00:00:00 359 | 963 2013-05-30 00:00:00 461.4448 2013-05-16 00:00:00 360 | 964 2013-05-30 00:00:00 461.4448 2013-05-16 00:00:00 361 | 965 2013-05-30 00:00:00 461.4448 2013-05-16 00:00:00 362 | 966 2013-05-30 00:00:00 1481.9379 2013-05-16 00:00:00 363 | 967 2013-05-30 00:00:00 1481.9379 2013-05-16 00:00:00 364 | 968 2013-05-30 00:00:00 1481.9379 2013-05-16 00:00:00 365 | 969 2013-05-30 00:00:00 1481.9379 2013-05-16 00:00:00 366 | 970 2013-05-30 00:00:00 755.1508 2013-05-16 00:00:00 367 | 971 2013-05-30 00:00:00 755.1508 2013-05-16 00:00:00 368 | 972 2013-05-30 00:00:00 755.1508 2013-05-16 00:00:00 369 | 973 2013-05-30 00:00:00 1082.51 2013-05-16 00:00:00 370 | 974 2013-05-30 00:00:00 1082.51 2013-05-16 00:00:00 371 | 975 2013-05-30 00:00:00 1082.51 2013-05-16 00:00:00 372 | 976 2013-05-30 00:00:00 1082.51 2013-05-16 00:00:00 373 | 977 2013-05-30 00:00:00 343.6496 2013-05-16 00:00:00 374 | 978 2013-05-30 00:00:00 461.4448 2013-05-16 00:00:00 375 | 979 2013-05-30 00:00:00 461.4448 2013-05-16 00:00:00 376 | 980 2013-05-30 00:00:00 419.7784 2013-05-16 00:00:00 377 | 981 2013-05-30 00:00:00 419.7784 2013-05-16 00:00:00 378 | 982 2013-05-30 00:00:00 419.7784 2013-05-16 00:00:00 379 | 983 2013-05-30 00:00:00 419.7784 2013-05-16 00:00:00 380 | 984 2013-05-30 00:00:00 308.2179 2013-05-16 00:00:00 381 | 985 2013-05-30 00:00:00 308.2179 2013-05-16 00:00:00 382 | 986 2013-05-30 00:00:00 308.2179 2013-05-16 00:00:00 383 | 987 2013-05-30 00:00:00 308.2179 2013-05-16 00:00:00 384 | 988 2013-05-30 00:00:00 308.2179 2013-05-16 00:00:00 385 | 989 2013-05-30 00:00:00 294.5797 2013-05-16 00:00:00 386 | 990 2013-05-30 00:00:00 294.5797 2013-05-16 00:00:00 387 | 991 2013-05-30 00:00:00 294.5797 2013-05-16 00:00:00 388 | 992 2013-05-30 00:00:00 294.5797 2013-05-16 00:00:00 389 | 993 2013-05-30 00:00:00 294.5797 2013-05-16 00:00:00 390 | 994 2013-05-30 00:00:00 23.9716 2013-05-16 00:00:00 391 | 995 2013-05-30 00:00:00 44.9506 2013-05-16 00:00:00 392 | 996 2013-05-30 00:00:00 53.9416 2013-05-16 00:00:00 393 | 997 2013-05-30 00:00:00 343.6496 2013-05-16 00:00:00 394 | 998 2013-05-30 00:00:00 343.6496 2013-05-16 00:00:00 395 | 999 2013-05-30 00:00:00 343.6496 2013-05-16 00:00:00 396 | -------------------------------------------------------------------------------- /adventureworks/data/ProductDocument.csv: -------------------------------------------------------------------------------- 1 | 317 6AC0 2013-12-29 13:51:58.103000000 2 | 318 6AC0 2013-12-29 13:51:58.103000000 3 | 319 6AC0 2013-12-29 13:51:58.103000000 4 | 506 7AC0 2013-12-29 13:51:58.103000000 5 | 506 7B40 2013-12-29 13:51:58.103000000 6 | 514 7C20 2013-12-29 13:51:58.120000000 7 | 515 7C20 2013-12-29 13:51:58.120000000 8 | 516 7C20 2013-12-29 13:51:58.120000000 9 | 517 7C20 2013-12-29 13:51:58.120000000 10 | 518 7C20 2013-12-29 13:51:58.120000000 11 | 519 7C20 2013-12-29 13:51:58.120000000 12 | 520 7C20 2013-12-29 13:51:58.120000000 13 | 521 7C20 2013-12-29 13:51:58.120000000 14 | 522 7C20 2013-12-29 13:51:58.120000000 15 | 928 6AC0 2013-12-29 13:51:58.103000000 16 | 929 6AC0 2013-12-29 13:51:58.103000000 17 | 930 6AC0 2013-12-29 13:51:58.103000000 18 | 931 6AC0 2013-12-29 13:51:58.103000000 19 | 932 6AC0 2013-12-29 13:51:58.103000000 20 | 933 6AC0 2013-12-29 13:51:58.103000000 21 | 934 6AC0 2013-12-29 13:51:58.103000000 22 | 935 7BC0 2013-12-29 13:51:58.103000000 23 | 936 7BC0 2013-12-29 13:51:58.103000000 24 | 937 7BC0 2013-12-29 13:51:58.103000000 25 | 938 7BC0 2013-12-29 13:51:58.103000000 26 | 939 7BC0 2013-12-29 13:51:58.103000000 27 | 940 7BC0 2013-12-29 13:51:58.103000000 28 | 941 7BC0 2013-12-29 13:51:58.103000000 29 | 977 5AC0 2013-12-29 13:51:58.103000000 30 | 997 5AC0 2013-12-29 13:51:58.103000000 31 | 998 5AC0 2013-12-29 13:51:58.103000000 32 | 999 5AC0 2013-12-29 13:51:58.120000000 33 | -------------------------------------------------------------------------------- /adventureworks/data/ProductListPriceHistory.csv: -------------------------------------------------------------------------------- 1 | 707 2011-05-31 00:00:00 2012-05-29 00:00:00 33.6442 2012-05-29 00:00:00 2 | 707 2012-05-30 00:00:00 2013-05-29 00:00:00 33.6442 2013-05-29 00:00:00 3 | 707 2013-05-30 00:00:00 34.99 2013-05-09 00:00:00 4 | 708 2011-05-31 00:00:00 2012-05-29 00:00:00 33.6442 2012-05-29 00:00:00 5 | 708 2012-05-30 00:00:00 2013-05-29 00:00:00 33.6442 2013-05-29 00:00:00 6 | 708 2013-05-30 00:00:00 34.99 2013-05-09 00:00:00 7 | 709 2011-05-31 00:00:00 2012-05-29 00:00:00 9.5 2012-05-29 00:00:00 8 | 710 2011-05-31 00:00:00 2012-05-29 00:00:00 9.5 2012-05-29 00:00:00 9 | 711 2011-05-31 00:00:00 2012-05-29 00:00:00 33.6442 2012-05-29 00:00:00 10 | 711 2012-05-30 00:00:00 2013-05-29 00:00:00 33.6442 2013-05-29 00:00:00 11 | 711 2013-05-30 00:00:00 34.99 2013-05-09 00:00:00 12 | 712 2011-05-31 00:00:00 2012-05-29 00:00:00 8.6442 2012-05-29 00:00:00 13 | 712 2012-05-30 00:00:00 2013-05-29 00:00:00 8.6442 2013-05-29 00:00:00 14 | 712 2013-05-30 00:00:00 8.99 2013-05-09 00:00:00 15 | 713 2011-05-31 00:00:00 2012-05-29 00:00:00 48.0673 2012-05-29 00:00:00 16 | 713 2012-05-30 00:00:00 2013-05-29 00:00:00 48.0673 2013-05-29 00:00:00 17 | 713 2013-05-30 00:00:00 49.99 2013-05-09 00:00:00 18 | 714 2011-05-31 00:00:00 2012-05-29 00:00:00 48.0673 2012-05-29 00:00:00 19 | 714 2012-05-30 00:00:00 2013-05-29 00:00:00 48.0673 2013-05-29 00:00:00 20 | 714 2013-05-30 00:00:00 49.99 2013-05-09 00:00:00 21 | 715 2011-05-31 00:00:00 2012-05-29 00:00:00 48.0673 2012-05-29 00:00:00 22 | 715 2012-05-30 00:00:00 2013-05-29 00:00:00 48.0673 2013-05-29 00:00:00 23 | 715 2013-05-30 00:00:00 49.99 2013-05-09 00:00:00 24 | 716 2011-05-31 00:00:00 2012-05-29 00:00:00 48.0673 2012-05-29 00:00:00 25 | 716 2012-05-30 00:00:00 2013-05-29 00:00:00 48.0673 2013-05-29 00:00:00 26 | 716 2013-05-30 00:00:00 49.99 2013-05-09 00:00:00 27 | 717 2011-05-31 00:00:00 2012-05-29 00:00:00 1263.4598 2012-05-29 00:00:00 28 | 717 2012-05-30 00:00:00 2013-05-29 00:00:00 1301.3636 2013-05-29 00:00:00 29 | 717 2013-05-30 00:00:00 1431.5 2013-05-09 00:00:00 30 | 718 2011-05-31 00:00:00 2012-05-29 00:00:00 1263.4598 2012-05-29 00:00:00 31 | 718 2012-05-30 00:00:00 2013-05-29 00:00:00 1301.3636 2013-05-29 00:00:00 32 | 718 2013-05-30 00:00:00 1431.5 2013-05-09 00:00:00 33 | 719 2011-05-31 00:00:00 2012-05-29 00:00:00 1263.4598 2012-05-29 00:00:00 34 | 719 2012-05-30 00:00:00 2013-05-29 00:00:00 1301.3636 2013-05-29 00:00:00 35 | 719 2013-05-30 00:00:00 1431.5 2013-05-09 00:00:00 36 | 720 2011-05-31 00:00:00 2012-05-29 00:00:00 1263.4598 2012-05-29 00:00:00 37 | 720 2012-05-30 00:00:00 2013-05-29 00:00:00 1301.3636 2013-05-29 00:00:00 38 | 720 2013-05-30 00:00:00 1431.5 2013-05-09 00:00:00 39 | 721 2011-05-31 00:00:00 2012-05-29 00:00:00 1263.4598 2012-05-29 00:00:00 40 | 721 2012-05-30 00:00:00 2013-05-29 00:00:00 1301.3636 2013-05-29 00:00:00 41 | 721 2013-05-30 00:00:00 1431.5 2013-05-09 00:00:00 42 | 722 2011-05-31 00:00:00 2012-05-29 00:00:00 297.6346 2012-05-29 00:00:00 43 | 722 2012-05-30 00:00:00 2013-05-29 00:00:00 306.5636 2013-05-29 00:00:00 44 | 722 2013-05-30 00:00:00 337.22 2013-05-09 00:00:00 45 | 723 2011-05-31 00:00:00 2012-05-29 00:00:00 297.6346 2012-05-29 00:00:00 46 | 723 2012-05-30 00:00:00 2013-05-29 00:00:00 306.5636 2013-05-29 00:00:00 47 | 723 2013-05-30 00:00:00 337.22 2013-05-09 00:00:00 48 | 724 2011-05-31 00:00:00 2012-05-29 00:00:00 297.6346 2012-05-29 00:00:00 49 | 724 2012-05-30 00:00:00 2013-05-29 00:00:00 306.5636 2013-05-29 00:00:00 50 | 724 2013-05-30 00:00:00 337.22 2013-05-09 00:00:00 51 | 725 2011-05-31 00:00:00 2012-05-29 00:00:00 306.5636 2012-05-29 00:00:00 52 | 725 2012-05-30 00:00:00 2013-05-29 00:00:00 337.22 2013-05-29 00:00:00 53 | 726 2011-05-31 00:00:00 2012-05-29 00:00:00 306.5636 2012-05-29 00:00:00 54 | 726 2012-05-30 00:00:00 2013-05-29 00:00:00 337.22 2013-05-29 00:00:00 55 | 727 2011-05-31 00:00:00 2012-05-29 00:00:00 306.5636 2012-05-29 00:00:00 56 | 727 2012-05-30 00:00:00 2013-05-29 00:00:00 337.22 2013-05-29 00:00:00 57 | 728 2011-05-31 00:00:00 2012-05-29 00:00:00 306.5636 2012-05-29 00:00:00 58 | 728 2012-05-30 00:00:00 2013-05-29 00:00:00 337.22 2013-05-29 00:00:00 59 | 729 2011-05-31 00:00:00 2012-05-29 00:00:00 306.5636 2012-05-29 00:00:00 60 | 729 2012-05-30 00:00:00 2013-05-29 00:00:00 337.22 2013-05-29 00:00:00 61 | 730 2011-05-31 00:00:00 2012-05-29 00:00:00 306.5636 2012-05-29 00:00:00 62 | 730 2012-05-30 00:00:00 2013-05-29 00:00:00 337.22 2013-05-29 00:00:00 63 | 731 2011-05-31 00:00:00 2012-05-29 00:00:00 594.83 2012-05-29 00:00:00 64 | 732 2011-05-31 00:00:00 2012-05-29 00:00:00 594.83 2012-05-29 00:00:00 65 | 733 2011-05-31 00:00:00 2012-05-29 00:00:00 594.83 2012-05-29 00:00:00 66 | 734 2011-05-31 00:00:00 2012-05-29 00:00:00 594.83 2012-05-29 00:00:00 67 | 735 2011-05-31 00:00:00 2012-05-29 00:00:00 594.83 2012-05-29 00:00:00 68 | 736 2011-05-31 00:00:00 2012-05-29 00:00:00 297.6346 2012-05-29 00:00:00 69 | 736 2012-05-30 00:00:00 2013-05-29 00:00:00 306.5636 2013-05-29 00:00:00 70 | 736 2013-05-30 00:00:00 337.22 2013-05-09 00:00:00 71 | 737 2011-05-31 00:00:00 2012-05-29 00:00:00 297.6346 2012-05-29 00:00:00 72 | 737 2012-05-30 00:00:00 2013-05-29 00:00:00 306.5636 2013-05-29 00:00:00 73 | 737 2013-05-30 00:00:00 337.22 2013-05-09 00:00:00 74 | 738 2011-05-31 00:00:00 2012-05-29 00:00:00 297.6346 2012-05-29 00:00:00 75 | 738 2012-05-30 00:00:00 2013-05-29 00:00:00 306.5636 2013-05-29 00:00:00 76 | 738 2013-05-30 00:00:00 337.22 2013-05-09 00:00:00 77 | 739 2011-05-31 00:00:00 2012-05-29 00:00:00 1204.3248 2012-05-29 00:00:00 78 | 739 2012-05-30 00:00:00 2013-05-29 00:00:00 1240.4545 2013-05-29 00:00:00 79 | 739 2013-05-30 00:00:00 1364.5 2013-05-09 00:00:00 80 | 740 2011-05-31 00:00:00 2012-05-29 00:00:00 1364.5 2012-05-29 00:00:00 81 | 741 2011-05-31 00:00:00 2012-05-29 00:00:00 1364.5 2012-05-29 00:00:00 82 | 742 2011-05-31 00:00:00 2012-05-29 00:00:00 1204.3248 2012-05-29 00:00:00 83 | 742 2012-05-30 00:00:00 2013-05-29 00:00:00 1240.4545 2013-05-29 00:00:00 84 | 742 2013-05-30 00:00:00 1364.5 2013-05-09 00:00:00 85 | 743 2011-05-31 00:00:00 2012-05-29 00:00:00 1191.1739 2012-05-29 00:00:00 86 | 743 2012-05-30 00:00:00 2013-05-29 00:00:00 1226.9091 2013-05-29 00:00:00 87 | 743 2013-05-30 00:00:00 1349.6 2013-05-09 00:00:00 88 | 744 2011-05-31 00:00:00 2012-05-29 00:00:00 1349.6 2012-05-29 00:00:00 89 | 745 2011-05-31 00:00:00 2012-05-29 00:00:00 1349.6 2012-05-29 00:00:00 90 | 746 2011-05-31 00:00:00 2012-05-29 00:00:00 1191.1739 2012-05-29 00:00:00 91 | 746 2012-05-30 00:00:00 2013-05-29 00:00:00 1226.9091 2013-05-29 00:00:00 92 | 746 2013-05-30 00:00:00 1349.6 2013-05-09 00:00:00 93 | 747 2011-05-31 00:00:00 2012-05-29 00:00:00 1191.1739 2012-05-29 00:00:00 94 | 747 2012-05-30 00:00:00 2013-05-29 00:00:00 1226.9091 2013-05-29 00:00:00 95 | 747 2013-05-30 00:00:00 1349.6 2013-05-09 00:00:00 96 | 748 2011-05-31 00:00:00 2012-05-29 00:00:00 1204.3248 2012-05-29 00:00:00 97 | 748 2012-05-30 00:00:00 2013-05-29 00:00:00 1240.4545 2013-05-29 00:00:00 98 | 748 2013-05-30 00:00:00 1364.5 2013-05-09 00:00:00 99 | 749 2011-05-31 00:00:00 2012-05-29 00:00:00 3578.27 2012-05-29 00:00:00 100 | 750 2011-05-31 00:00:00 2012-05-29 00:00:00 3578.27 2012-05-29 00:00:00 101 | 751 2011-05-31 00:00:00 2012-05-29 00:00:00 3578.27 2012-05-29 00:00:00 102 | 752 2011-05-31 00:00:00 2012-05-29 00:00:00 3578.27 2012-05-29 00:00:00 103 | 753 2011-05-31 00:00:00 2012-05-29 00:00:00 3578.27 2012-05-29 00:00:00 104 | 754 2011-05-31 00:00:00 2012-05-29 00:00:00 1457.99 2012-05-29 00:00:00 105 | 755 2011-05-31 00:00:00 2012-05-29 00:00:00 1457.99 2012-05-29 00:00:00 106 | 756 2011-05-31 00:00:00 2012-05-29 00:00:00 1457.99 2012-05-29 00:00:00 107 | 757 2011-05-31 00:00:00 2012-05-29 00:00:00 1457.99 2012-05-29 00:00:00 108 | 758 2011-05-31 00:00:00 2012-05-29 00:00:00 1457.99 2012-05-29 00:00:00 109 | 759 2011-05-31 00:00:00 2012-05-29 00:00:00 699.0982 2012-05-29 00:00:00 110 | 759 2012-05-30 00:00:00 2013-05-29 00:00:00 782.99 2013-05-29 00:00:00 111 | 760 2011-05-31 00:00:00 2012-05-29 00:00:00 699.0982 2012-05-29 00:00:00 112 | 760 2012-05-30 00:00:00 2013-05-29 00:00:00 782.99 2013-05-29 00:00:00 113 | 761 2011-05-31 00:00:00 2012-05-29 00:00:00 699.0982 2012-05-29 00:00:00 114 | 761 2012-05-30 00:00:00 2013-05-29 00:00:00 782.99 2013-05-29 00:00:00 115 | 762 2011-05-31 00:00:00 2012-05-29 00:00:00 699.0982 2012-05-29 00:00:00 116 | 762 2012-05-30 00:00:00 2013-05-29 00:00:00 782.99 2013-05-29 00:00:00 117 | 763 2011-05-31 00:00:00 2012-05-29 00:00:00 699.0982 2012-05-29 00:00:00 118 | 763 2012-05-30 00:00:00 2013-05-29 00:00:00 782.99 2013-05-29 00:00:00 119 | 764 2011-05-31 00:00:00 2012-05-29 00:00:00 699.0982 2012-05-29 00:00:00 120 | 764 2012-05-30 00:00:00 2013-05-29 00:00:00 782.99 2013-05-29 00:00:00 121 | 765 2011-05-31 00:00:00 2012-05-29 00:00:00 699.0982 2012-05-29 00:00:00 122 | 765 2012-05-30 00:00:00 2013-05-29 00:00:00 782.99 2013-05-29 00:00:00 123 | 766 2011-05-31 00:00:00 2012-05-29 00:00:00 699.0982 2012-05-29 00:00:00 124 | 766 2012-05-30 00:00:00 2013-05-29 00:00:00 782.99 2013-05-29 00:00:00 125 | 767 2011-05-31 00:00:00 2012-05-29 00:00:00 699.0982 2012-05-29 00:00:00 126 | 767 2012-05-30 00:00:00 2013-05-29 00:00:00 782.99 2013-05-29 00:00:00 127 | 768 2011-05-31 00:00:00 2012-05-29 00:00:00 699.0982 2012-05-29 00:00:00 128 | 768 2012-05-30 00:00:00 2013-05-29 00:00:00 782.99 2013-05-29 00:00:00 129 | 769 2011-05-31 00:00:00 2012-05-29 00:00:00 699.0982 2012-05-29 00:00:00 130 | 769 2012-05-30 00:00:00 2013-05-29 00:00:00 782.99 2013-05-29 00:00:00 131 | 770 2011-05-31 00:00:00 2012-05-29 00:00:00 699.0982 2012-05-29 00:00:00 132 | 770 2012-05-30 00:00:00 2013-05-29 00:00:00 782.99 2013-05-29 00:00:00 133 | 771 2011-05-31 00:00:00 2012-05-29 00:00:00 3399.99 2012-05-29 00:00:00 134 | 772 2011-05-31 00:00:00 2012-05-29 00:00:00 3399.99 2012-05-29 00:00:00 135 | 773 2011-05-31 00:00:00 2012-05-29 00:00:00 3399.99 2012-05-29 00:00:00 136 | 774 2011-05-31 00:00:00 2012-05-29 00:00:00 3399.99 2012-05-29 00:00:00 137 | 775 2011-05-31 00:00:00 2012-05-29 00:00:00 3374.99 2012-05-29 00:00:00 138 | 776 2011-05-31 00:00:00 2012-05-29 00:00:00 3374.99 2012-05-29 00:00:00 139 | 777 2011-05-31 00:00:00 2012-05-29 00:00:00 3374.99 2012-05-29 00:00:00 140 | 778 2011-05-31 00:00:00 2012-05-29 00:00:00 3374.99 2012-05-29 00:00:00 141 | 779 2012-05-30 00:00:00 2013-05-29 00:00:00 2071.4196 2013-05-29 00:00:00 142 | 779 2013-05-30 00:00:00 2319.99 2013-05-09 00:00:00 143 | 780 2012-05-30 00:00:00 2013-05-29 00:00:00 2071.4196 2013-05-29 00:00:00 144 | 780 2013-05-30 00:00:00 2319.99 2013-05-09 00:00:00 145 | 781 2012-05-30 00:00:00 2013-05-29 00:00:00 2071.4196 2013-05-29 00:00:00 146 | 781 2013-05-30 00:00:00 2319.99 2013-05-09 00:00:00 147 | 782 2012-05-30 00:00:00 2013-05-29 00:00:00 2049.0982 2013-05-29 00:00:00 148 | 782 2013-05-30 00:00:00 2294.99 2013-05-09 00:00:00 149 | 783 2012-05-30 00:00:00 2013-05-29 00:00:00 2049.0982 2013-05-29 00:00:00 150 | 783 2013-05-30 00:00:00 2294.99 2013-05-09 00:00:00 151 | 784 2012-05-30 00:00:00 2013-05-29 00:00:00 2049.0982 2013-05-29 00:00:00 152 | 784 2013-05-30 00:00:00 2294.99 2013-05-09 00:00:00 153 | 785 2012-05-30 00:00:00 2013-05-29 00:00:00 1079.99 2013-05-29 00:00:00 154 | 786 2012-05-30 00:00:00 2013-05-29 00:00:00 1079.99 2013-05-29 00:00:00 155 | 787 2012-05-30 00:00:00 2013-05-29 00:00:00 1079.99 2013-05-29 00:00:00 156 | 788 2012-05-30 00:00:00 2013-05-29 00:00:00 1079.99 2013-05-29 00:00:00 157 | 789 2012-05-30 00:00:00 2013-05-29 00:00:00 2443.35 2013-05-29 00:00:00 158 | 790 2012-05-30 00:00:00 2013-05-29 00:00:00 2443.35 2013-05-29 00:00:00 159 | 791 2012-05-30 00:00:00 2013-05-29 00:00:00 2443.35 2013-05-29 00:00:00 160 | 792 2012-05-30 00:00:00 2013-05-29 00:00:00 2181.5625 2013-05-29 00:00:00 161 | 792 2013-05-30 00:00:00 2443.35 2013-05-09 00:00:00 162 | 793 2012-05-30 00:00:00 2013-05-29 00:00:00 2181.5625 2013-05-29 00:00:00 163 | 793 2013-05-30 00:00:00 2443.35 2013-05-09 00:00:00 164 | 794 2012-05-30 00:00:00 2013-05-29 00:00:00 2181.5625 2013-05-29 00:00:00 165 | 794 2013-05-30 00:00:00 2443.35 2013-05-09 00:00:00 166 | 795 2012-05-30 00:00:00 2013-05-29 00:00:00 2181.5625 2013-05-29 00:00:00 167 | 795 2013-05-30 00:00:00 2443.35 2013-05-09 00:00:00 168 | 796 2012-05-30 00:00:00 2013-05-29 00:00:00 2181.5625 2013-05-29 00:00:00 169 | 796 2013-05-30 00:00:00 2443.35 2013-05-09 00:00:00 170 | 797 2012-05-30 00:00:00 2013-05-29 00:00:00 1000.4375 2013-05-29 00:00:00 171 | 797 2013-05-30 00:00:00 1120.49 2013-05-09 00:00:00 172 | 798 2012-05-30 00:00:00 2013-05-29 00:00:00 1000.4375 2013-05-29 00:00:00 173 | 798 2013-05-30 00:00:00 1120.49 2013-05-09 00:00:00 174 | 799 2012-05-30 00:00:00 2013-05-29 00:00:00 1000.4375 2013-05-29 00:00:00 175 | 799 2013-05-30 00:00:00 1120.49 2013-05-09 00:00:00 176 | 800 2012-05-30 00:00:00 2013-05-29 00:00:00 1000.4375 2013-05-29 00:00:00 177 | 800 2013-05-30 00:00:00 1120.49 2013-05-09 00:00:00 178 | 801 2012-05-30 00:00:00 2013-05-29 00:00:00 1000.4375 2013-05-29 00:00:00 179 | 801 2013-05-30 00:00:00 1120.49 2013-05-09 00:00:00 180 | 802 2012-05-30 00:00:00 2013-05-29 00:00:00 148.22 2013-05-29 00:00:00 181 | 803 2012-05-30 00:00:00 2013-05-29 00:00:00 175.49 2013-05-29 00:00:00 182 | 804 2012-05-30 00:00:00 2013-05-29 00:00:00 229.49 2013-05-29 00:00:00 183 | 805 2012-05-30 00:00:00 2013-05-29 00:00:00 34.2 2013-05-29 00:00:00 184 | 806 2012-05-30 00:00:00 2013-05-29 00:00:00 102.29 2013-05-29 00:00:00 185 | 807 2012-05-30 00:00:00 2013-05-29 00:00:00 124.73 2013-05-29 00:00:00 186 | 808 2012-05-30 00:00:00 2013-05-29 00:00:00 40.4909 2013-05-29 00:00:00 187 | 808 2013-05-30 00:00:00 44.54 2013-05-09 00:00:00 188 | 809 2012-05-30 00:00:00 2013-05-29 00:00:00 56.2909 2013-05-29 00:00:00 189 | 809 2013-05-30 00:00:00 61.92 2013-05-09 00:00:00 190 | 810 2012-05-30 00:00:00 2013-05-29 00:00:00 109.3364 2013-05-29 00:00:00 191 | 810 2013-05-30 00:00:00 120.27 2013-05-09 00:00:00 192 | 811 2012-05-30 00:00:00 2013-05-29 00:00:00 40.4909 2013-05-29 00:00:00 193 | 811 2013-05-30 00:00:00 44.54 2013-05-09 00:00:00 194 | 812 2012-05-30 00:00:00 2013-05-29 00:00:00 56.2909 2013-05-29 00:00:00 195 | 812 2013-05-30 00:00:00 61.92 2013-05-09 00:00:00 196 | 813 2012-05-30 00:00:00 2013-05-29 00:00:00 109.3364 2013-05-29 00:00:00 197 | 813 2013-05-30 00:00:00 120.27 2013-05-09 00:00:00 198 | 814 2012-05-30 00:00:00 2013-05-29 00:00:00 348.76 2013-05-29 00:00:00 199 | 815 2012-05-30 00:00:00 2013-05-29 00:00:00 60.745 2013-05-29 00:00:00 200 | 816 2012-05-30 00:00:00 2013-05-29 00:00:00 209.025 2013-05-29 00:00:00 201 | 817 2012-05-30 00:00:00 2013-05-29 00:00:00 300.215 2013-05-29 00:00:00 202 | 818 2012-05-30 00:00:00 2013-05-29 00:00:00 85.565 2013-05-29 00:00:00 203 | 819 2012-05-30 00:00:00 2013-05-29 00:00:00 248.385 2013-05-29 00:00:00 204 | 820 2012-05-30 00:00:00 2013-05-29 00:00:00 330.06 2013-05-29 00:00:00 205 | 821 2012-05-30 00:00:00 2013-05-29 00:00:00 218.01 2013-05-29 00:00:00 206 | 822 2012-05-30 00:00:00 2013-05-29 00:00:00 540.7545 2013-05-29 00:00:00 207 | 822 2013-05-30 00:00:00 594.83 2013-05-09 00:00:00 208 | 823 2012-05-30 00:00:00 2013-05-29 00:00:00 87.745 2013-05-29 00:00:00 209 | 824 2012-05-30 00:00:00 2013-05-29 00:00:00 236.025 2013-05-29 00:00:00 210 | 825 2012-05-30 00:00:00 2013-05-29 00:00:00 327.215 2013-05-29 00:00:00 211 | 826 2012-05-30 00:00:00 2013-05-29 00:00:00 112.565 2013-05-29 00:00:00 212 | 827 2012-05-30 00:00:00 2013-05-29 00:00:00 275.385 2013-05-29 00:00:00 213 | 828 2012-05-30 00:00:00 2013-05-29 00:00:00 357.06 2013-05-29 00:00:00 214 | 829 2012-05-30 00:00:00 2013-05-29 00:00:00 245.01 2013-05-29 00:00:00 215 | 830 2012-05-30 00:00:00 2013-05-29 00:00:00 348.76 2013-05-29 00:00:00 216 | 831 2012-05-30 00:00:00 2013-05-29 00:00:00 348.76 2013-05-29 00:00:00 217 | 832 2012-05-30 00:00:00 2013-05-29 00:00:00 348.76 2013-05-29 00:00:00 218 | 833 2012-05-30 00:00:00 2013-05-29 00:00:00 540.7545 2013-05-29 00:00:00 219 | 833 2013-05-30 00:00:00 594.83 2013-05-09 00:00:00 220 | 834 2012-05-30 00:00:00 2013-05-29 00:00:00 540.7545 2013-05-29 00:00:00 221 | 834 2013-05-30 00:00:00 594.83 2013-05-09 00:00:00 222 | 835 2012-05-30 00:00:00 2013-05-29 00:00:00 540.7545 2013-05-29 00:00:00 223 | 835 2013-05-30 00:00:00 594.83 2013-05-09 00:00:00 224 | 836 2012-05-30 00:00:00 2013-05-29 00:00:00 540.7545 2013-05-29 00:00:00 225 | 836 2013-05-30 00:00:00 594.83 2013-05-09 00:00:00 226 | 837 2012-05-30 00:00:00 2013-05-29 00:00:00 1301.3636 2013-05-29 00:00:00 227 | 837 2013-05-30 00:00:00 1431.5 2013-05-09 00:00:00 228 | 838 2012-05-30 00:00:00 2013-05-29 00:00:00 1301.3636 2013-05-29 00:00:00 229 | 838 2013-05-30 00:00:00 1431.5 2013-05-09 00:00:00 230 | 839 2012-05-30 00:00:00 2013-05-29 00:00:00 1301.3636 2013-05-29 00:00:00 231 | 839 2013-05-30 00:00:00 1431.5 2013-05-09 00:00:00 232 | 840 2012-05-30 00:00:00 2013-05-29 00:00:00 1301.3636 2013-05-29 00:00:00 233 | 840 2013-05-30 00:00:00 1431.5 2013-05-09 00:00:00 234 | 841 2012-05-30 00:00:00 2013-05-29 00:00:00 59.99 2013-05-29 00:00:00 235 | 842 2012-05-30 00:00:00 2013-05-29 00:00:00 125 2013-05-29 00:00:00 236 | 843 2012-05-30 00:00:00 2013-05-29 00:00:00 25 2013-05-29 00:00:00 237 | 844 2012-05-30 00:00:00 2013-05-29 00:00:00 19.99 2013-05-29 00:00:00 238 | 845 2012-05-30 00:00:00 2013-05-29 00:00:00 24.99 2013-05-29 00:00:00 239 | 846 2012-05-30 00:00:00 2013-05-29 00:00:00 13.99 2013-05-29 00:00:00 240 | 847 2012-05-30 00:00:00 2013-05-29 00:00:00 34.99 2013-05-29 00:00:00 241 | 848 2012-05-30 00:00:00 2013-05-29 00:00:00 44.99 2013-05-29 00:00:00 242 | 849 2012-05-30 00:00:00 2013-05-29 00:00:00 59.99 2013-05-29 00:00:00 243 | 850 2012-05-30 00:00:00 2013-05-29 00:00:00 59.99 2013-05-29 00:00:00 244 | 851 2012-05-30 00:00:00 2013-05-29 00:00:00 59.99 2013-05-29 00:00:00 245 | 852 2012-05-30 00:00:00 2013-05-29 00:00:00 74.99 2013-05-29 00:00:00 246 | 853 2012-05-30 00:00:00 2013-05-29 00:00:00 74.99 2013-05-29 00:00:00 247 | 854 2012-05-30 00:00:00 2013-05-29 00:00:00 74.99 2013-05-29 00:00:00 248 | 855 2012-05-30 00:00:00 2013-05-29 00:00:00 89.99 2013-05-29 00:00:00 249 | 856 2012-05-30 00:00:00 2013-05-29 00:00:00 89.99 2013-05-29 00:00:00 250 | 857 2012-05-30 00:00:00 2013-05-29 00:00:00 89.99 2013-05-29 00:00:00 251 | 858 2012-05-30 00:00:00 2013-05-29 00:00:00 23.5481 2013-05-29 00:00:00 252 | 858 2013-05-30 00:00:00 24.49 2013-05-09 00:00:00 253 | 859 2012-05-30 00:00:00 2013-05-29 00:00:00 23.5481 2013-05-29 00:00:00 254 | 859 2013-05-30 00:00:00 24.49 2013-05-09 00:00:00 255 | 860 2012-05-30 00:00:00 2013-05-29 00:00:00 23.5481 2013-05-29 00:00:00 256 | 860 2013-05-30 00:00:00 24.49 2013-05-09 00:00:00 257 | 861 2012-05-30 00:00:00 2013-05-29 00:00:00 37.99 2013-05-29 00:00:00 258 | 862 2012-05-30 00:00:00 2013-05-29 00:00:00 37.99 2013-05-29 00:00:00 259 | 863 2012-05-30 00:00:00 2013-05-29 00:00:00 37.99 2013-05-29 00:00:00 260 | 864 2013-05-30 00:00:00 63.5 2013-05-09 00:00:00 261 | 865 2013-05-30 00:00:00 63.5 2013-05-09 00:00:00 262 | 866 2013-05-30 00:00:00 63.5 2013-05-09 00:00:00 263 | 867 2013-05-30 00:00:00 69.99 2013-05-09 00:00:00 264 | 868 2013-05-30 00:00:00 69.99 2013-05-09 00:00:00 265 | 869 2013-05-30 00:00:00 69.99 2013-05-09 00:00:00 266 | 870 2013-05-30 00:00:00 4.99 2013-05-09 00:00:00 267 | 871 2013-05-30 00:00:00 9.99 2013-05-09 00:00:00 268 | 872 2013-05-30 00:00:00 8.99 2013-05-09 00:00:00 269 | 873 2013-05-30 00:00:00 2.29 2013-05-09 00:00:00 270 | 874 2013-05-30 00:00:00 8.99 2013-05-09 00:00:00 271 | 875 2013-05-30 00:00:00 8.99 2013-05-09 00:00:00 272 | 876 2013-05-30 00:00:00 120 2013-05-09 00:00:00 273 | 877 2013-05-30 00:00:00 7.95 2013-05-09 00:00:00 274 | 878 2013-05-30 00:00:00 21.98 2013-05-09 00:00:00 275 | 879 2013-05-30 00:00:00 159 2013-05-09 00:00:00 276 | 880 2013-05-30 00:00:00 54.99 2013-05-09 00:00:00 277 | 881 2013-05-30 00:00:00 53.99 2013-05-09 00:00:00 278 | 882 2013-05-30 00:00:00 53.99 2013-05-09 00:00:00 279 | 883 2013-05-30 00:00:00 53.99 2013-05-09 00:00:00 280 | 884 2013-05-30 00:00:00 53.99 2013-05-09 00:00:00 281 | 885 2013-05-30 00:00:00 1003.91 2013-05-09 00:00:00 282 | 886 2013-05-30 00:00:00 333.42 2013-05-09 00:00:00 283 | 887 2013-05-30 00:00:00 1003.91 2013-05-09 00:00:00 284 | 888 2013-05-30 00:00:00 1003.91 2013-05-09 00:00:00 285 | 889 2013-05-30 00:00:00 1003.91 2013-05-09 00:00:00 286 | 890 2013-05-30 00:00:00 1003.91 2013-05-09 00:00:00 287 | 891 2013-05-30 00:00:00 1003.91 2013-05-09 00:00:00 288 | 892 2013-05-30 00:00:00 1003.91 2013-05-09 00:00:00 289 | 893 2013-05-30 00:00:00 1003.91 2013-05-09 00:00:00 290 | 894 2013-05-30 00:00:00 121.46 2013-05-09 00:00:00 291 | 895 2013-05-30 00:00:00 333.42 2013-05-09 00:00:00 292 | 896 2013-05-30 00:00:00 333.42 2013-05-09 00:00:00 293 | 897 2013-05-30 00:00:00 333.42 2013-05-09 00:00:00 294 | 898 2013-05-30 00:00:00 333.42 2013-05-09 00:00:00 295 | 899 2013-05-30 00:00:00 333.42 2013-05-09 00:00:00 296 | 900 2013-05-30 00:00:00 333.42 2013-05-09 00:00:00 297 | 901 2013-05-30 00:00:00 333.42 2013-05-09 00:00:00 298 | 902 2013-05-30 00:00:00 333.42 2013-05-09 00:00:00 299 | 903 2013-05-30 00:00:00 333.42 2013-05-09 00:00:00 300 | 904 2013-05-30 00:00:00 364.09 2013-05-09 00:00:00 301 | 905 2013-05-30 00:00:00 364.09 2013-05-09 00:00:00 302 | 906 2013-05-30 00:00:00 364.09 2013-05-09 00:00:00 303 | 907 2013-05-30 00:00:00 106.5 2013-05-09 00:00:00 304 | 908 2013-05-30 00:00:00 27.12 2013-05-09 00:00:00 305 | 909 2013-05-30 00:00:00 39.14 2013-05-09 00:00:00 306 | 910 2013-05-30 00:00:00 52.64 2013-05-09 00:00:00 307 | 911 2013-05-30 00:00:00 27.12 2013-05-09 00:00:00 308 | 912 2013-05-30 00:00:00 39.14 2013-05-09 00:00:00 309 | 913 2013-05-30 00:00:00 52.64 2013-05-09 00:00:00 310 | 914 2013-05-30 00:00:00 27.12 2013-05-09 00:00:00 311 | 915 2013-05-30 00:00:00 39.14 2013-05-09 00:00:00 312 | 916 2013-05-30 00:00:00 52.64 2013-05-09 00:00:00 313 | 917 2013-05-30 00:00:00 264.05 2013-05-09 00:00:00 314 | 918 2013-05-30 00:00:00 264.05 2013-05-09 00:00:00 315 | 919 2013-05-30 00:00:00 264.05 2013-05-09 00:00:00 316 | 920 2013-05-30 00:00:00 264.05 2013-05-09 00:00:00 317 | 921 2013-05-30 00:00:00 4.99 2013-05-09 00:00:00 318 | 922 2013-05-30 00:00:00 3.99 2013-05-09 00:00:00 319 | 923 2013-05-30 00:00:00 4.99 2013-05-09 00:00:00 320 | 924 2013-05-30 00:00:00 249.79 2013-05-09 00:00:00 321 | 925 2013-05-30 00:00:00 249.79 2013-05-09 00:00:00 322 | 926 2013-05-30 00:00:00 249.79 2013-05-09 00:00:00 323 | 927 2013-05-30 00:00:00 249.79 2013-05-09 00:00:00 324 | 928 2013-05-30 00:00:00 24.99 2013-05-09 00:00:00 325 | 929 2013-05-30 00:00:00 29.99 2013-05-09 00:00:00 326 | 930 2013-05-30 00:00:00 35 2013-05-09 00:00:00 327 | 931 2013-05-30 00:00:00 21.49 2013-05-09 00:00:00 328 | 932 2013-05-30 00:00:00 24.99 2013-05-09 00:00:00 329 | 933 2013-05-30 00:00:00 32.6 2013-05-09 00:00:00 330 | 934 2013-05-30 00:00:00 28.99 2013-05-09 00:00:00 331 | 935 2013-05-30 00:00:00 40.49 2013-05-09 00:00:00 332 | 936 2013-05-30 00:00:00 62.09 2013-05-09 00:00:00 333 | 937 2013-05-30 00:00:00 80.99 2013-05-09 00:00:00 334 | 938 2013-05-30 00:00:00 40.49 2013-05-09 00:00:00 335 | 939 2013-05-30 00:00:00 62.09 2013-05-09 00:00:00 336 | 940 2013-05-30 00:00:00 80.99 2013-05-09 00:00:00 337 | 941 2013-05-30 00:00:00 80.99 2013-05-09 00:00:00 338 | 942 2013-05-30 00:00:00 364.09 2013-05-09 00:00:00 339 | 943 2013-05-30 00:00:00 249.79 2013-05-09 00:00:00 340 | 944 2013-05-30 00:00:00 264.05 2013-05-09 00:00:00 341 | 945 2013-05-30 00:00:00 91.49 2013-05-09 00:00:00 342 | 946 2013-05-30 00:00:00 46.09 2013-05-09 00:00:00 343 | 947 2013-05-30 00:00:00 91.57 2013-05-09 00:00:00 344 | 948 2013-05-30 00:00:00 106.5 2013-05-09 00:00:00 345 | 949 2013-05-30 00:00:00 175.49 2013-05-09 00:00:00 346 | 950 2013-05-30 00:00:00 256.49 2013-05-09 00:00:00 347 | 951 2013-05-30 00:00:00 404.99 2013-05-09 00:00:00 348 | 952 2013-05-30 00:00:00 20.24 2013-05-09 00:00:00 349 | 953 2013-05-30 00:00:00 1214.85 2013-05-09 00:00:00 350 | 954 2013-05-30 00:00:00 2384.07 2013-05-09 00:00:00 351 | 955 2013-05-30 00:00:00 2384.07 2013-05-09 00:00:00 352 | 956 2013-05-30 00:00:00 2384.07 2013-05-09 00:00:00 353 | 957 2013-05-30 00:00:00 2384.07 2013-05-09 00:00:00 354 | 958 2013-05-30 00:00:00 742.35 2013-05-09 00:00:00 355 | 959 2013-05-30 00:00:00 742.35 2013-05-09 00:00:00 356 | 960 2013-05-30 00:00:00 742.35 2013-05-09 00:00:00 357 | 961 2013-05-30 00:00:00 742.35 2013-05-09 00:00:00 358 | 962 2013-05-30 00:00:00 742.35 2013-05-09 00:00:00 359 | 963 2013-05-30 00:00:00 742.35 2013-05-09 00:00:00 360 | 964 2013-05-30 00:00:00 742.35 2013-05-09 00:00:00 361 | 965 2013-05-30 00:00:00 742.35 2013-05-09 00:00:00 362 | 966 2013-05-30 00:00:00 2384.07 2013-05-09 00:00:00 363 | 967 2013-05-30 00:00:00 2384.07 2013-05-09 00:00:00 364 | 968 2013-05-30 00:00:00 2384.07 2013-05-09 00:00:00 365 | 969 2013-05-30 00:00:00 2384.07 2013-05-09 00:00:00 366 | 970 2013-05-30 00:00:00 1214.85 2013-05-09 00:00:00 367 | 971 2013-05-30 00:00:00 1214.85 2013-05-09 00:00:00 368 | 972 2013-05-30 00:00:00 1214.85 2013-05-09 00:00:00 369 | 973 2013-05-30 00:00:00 1700.99 2013-05-09 00:00:00 370 | 974 2013-05-30 00:00:00 1700.99 2013-05-09 00:00:00 371 | 975 2013-05-30 00:00:00 1700.99 2013-05-09 00:00:00 372 | 976 2013-05-30 00:00:00 1700.99 2013-05-09 00:00:00 373 | 977 2013-05-30 00:00:00 539.99 2013-05-09 00:00:00 374 | 978 2013-05-30 00:00:00 742.35 2013-05-09 00:00:00 375 | 979 2013-05-30 00:00:00 742.35 2013-05-09 00:00:00 376 | 980 2013-05-30 00:00:00 769.49 2013-05-09 00:00:00 377 | 981 2013-05-30 00:00:00 769.49 2013-05-09 00:00:00 378 | 982 2013-05-30 00:00:00 769.49 2013-05-09 00:00:00 379 | 983 2013-05-30 00:00:00 769.49 2013-05-09 00:00:00 380 | 984 2013-05-30 00:00:00 564.99 2013-05-09 00:00:00 381 | 985 2013-05-30 00:00:00 564.99 2013-05-09 00:00:00 382 | 986 2013-05-30 00:00:00 564.99 2013-05-09 00:00:00 383 | 987 2013-05-30 00:00:00 564.99 2013-05-09 00:00:00 384 | 988 2013-05-30 00:00:00 564.99 2013-05-09 00:00:00 385 | 989 2013-05-30 00:00:00 539.99 2013-05-09 00:00:00 386 | 990 2013-05-30 00:00:00 539.99 2013-05-09 00:00:00 387 | 991 2013-05-30 00:00:00 539.99 2013-05-09 00:00:00 388 | 992 2013-05-30 00:00:00 539.99 2013-05-09 00:00:00 389 | 993 2013-05-30 00:00:00 539.99 2013-05-09 00:00:00 390 | 994 2013-05-30 00:00:00 53.99 2013-05-09 00:00:00 391 | 995 2013-05-30 00:00:00 101.24 2013-05-09 00:00:00 392 | 996 2013-05-30 00:00:00 121.49 2013-05-09 00:00:00 393 | 997 2013-05-30 00:00:00 539.99 2013-05-09 00:00:00 394 | 998 2013-05-30 00:00:00 539.99 2013-05-09 00:00:00 395 | 999 2013-05-30 00:00:00 539.99 2013-05-09 00:00:00 396 | -------------------------------------------------------------------------------- /adventureworks/data/ProductModelIllustration.csv: -------------------------------------------------------------------------------- 1 | 7 3 2014-01-09 14:41:02.167000000 2 | 10 3 2014-01-09 14:41:02.167000000 3 | 47 4 2014-01-09 14:41:02.183000000 4 | 47 5 2014-01-09 14:41:02.183000000 5 | 48 4 2014-01-09 14:41:02.183000000 6 | 48 5 2014-01-09 14:41:02.183000000 7 | 67 6 2014-01-09 14:41:02.200000000 8 | -------------------------------------------------------------------------------- /adventureworks/data/ProductProductPhoto.csv: -------------------------------------------------------------------------------- 1 | 1 1 1 2008-03-31 00:00:00 2 | 2 1 1 2008-03-31 00:00:00 3 | 3 1 1 2008-03-31 00:00:00 4 | 4 1 1 2008-03-31 00:00:00 5 | 316 1 1 2008-03-31 00:00:00 6 | 317 1 1 2008-03-31 00:00:00 7 | 318 1 1 2008-03-31 00:00:00 8 | 319 1 1 2008-03-31 00:00:00 9 | 320 1 1 2008-03-31 00:00:00 10 | 321 1 1 2008-03-31 00:00:00 11 | 322 1 1 2008-03-31 00:00:00 12 | 323 1 1 2008-03-31 00:00:00 13 | 324 1 1 2008-03-31 00:00:00 14 | 325 1 1 2008-03-31 00:00:00 15 | 326 1 1 2008-03-31 00:00:00 16 | 327 1 1 2008-03-31 00:00:00 17 | 328 1 1 2008-03-31 00:00:00 18 | 329 1 1 2008-03-31 00:00:00 19 | 330 1 1 2008-03-31 00:00:00 20 | 331 1 1 2008-03-31 00:00:00 21 | 332 160 1 2008-03-31 00:00:00 22 | 341 1 1 2008-03-31 00:00:00 23 | 342 1 1 2008-03-31 00:00:00 24 | 343 1 1 2008-03-31 00:00:00 25 | 344 1 1 2008-03-31 00:00:00 26 | 345 1 1 2008-03-31 00:00:00 27 | 346 1 1 2008-03-31 00:00:00 28 | 347 1 1 2008-03-31 00:00:00 29 | 348 1 1 2008-03-31 00:00:00 30 | 349 1 1 2008-03-31 00:00:00 31 | 350 1 1 2008-03-31 00:00:00 32 | 351 1 1 2008-03-31 00:00:00 33 | 352 1 1 2008-03-31 00:00:00 34 | 355 1 1 2008-03-31 00:00:00 35 | 356 1 1 2008-03-31 00:00:00 36 | 357 1 1 2008-03-31 00:00:00 37 | 358 1 1 2008-03-31 00:00:00 38 | 359 1 1 2008-03-31 00:00:00 39 | 360 1 1 2008-03-31 00:00:00 40 | 361 1 1 2008-03-31 00:00:00 41 | 362 1 1 2008-03-31 00:00:00 42 | 363 1 1 2008-03-31 00:00:00 43 | 364 1 1 2008-03-31 00:00:00 44 | 365 1 1 2008-03-31 00:00:00 45 | 366 1 1 2008-03-31 00:00:00 46 | 367 1 1 2008-03-31 00:00:00 47 | 368 1 1 2008-03-31 00:00:00 48 | 369 1 1 2008-03-31 00:00:00 49 | 370 1 1 2008-03-31 00:00:00 50 | 371 1 1 2008-03-31 00:00:00 51 | 372 1 1 2008-03-31 00:00:00 52 | 373 1 1 2008-03-31 00:00:00 53 | 374 1 1 2008-03-31 00:00:00 54 | 375 1 1 2008-03-31 00:00:00 55 | 376 1 1 2008-03-31 00:00:00 56 | 377 1 1 2008-03-31 00:00:00 57 | 378 1 1 2008-03-31 00:00:00 58 | 379 1 1 2008-03-31 00:00:00 59 | 380 1 1 2008-03-31 00:00:00 60 | 381 1 1 2008-03-31 00:00:00 61 | 382 1 1 2008-03-31 00:00:00 62 | 383 1 1 2008-03-31 00:00:00 63 | 384 1 1 2008-03-31 00:00:00 64 | 385 1 1 2008-03-31 00:00:00 65 | 386 1 1 2008-03-31 00:00:00 66 | 387 1 1 2008-03-31 00:00:00 67 | 388 1 1 2008-03-31 00:00:00 68 | 389 1 1 2008-03-31 00:00:00 69 | 390 1 1 2008-03-31 00:00:00 70 | 391 1 1 2008-03-31 00:00:00 71 | 392 1 1 2008-03-31 00:00:00 72 | 393 1 1 2008-03-31 00:00:00 73 | 394 1 1 2008-03-31 00:00:00 74 | 395 1 1 2008-03-31 00:00:00 75 | 396 1 1 2008-03-31 00:00:00 76 | 397 1 1 2008-03-31 00:00:00 77 | 398 1 1 2008-03-31 00:00:00 78 | 399 1 1 2008-03-31 00:00:00 79 | 400 1 1 2008-03-31 00:00:00 80 | 401 1 1 2008-03-31 00:00:00 81 | 402 1 1 2008-03-31 00:00:00 82 | 403 1 1 2008-03-31 00:00:00 83 | 404 1 1 2008-03-31 00:00:00 84 | 405 1 1 2008-03-31 00:00:00 85 | 406 1 1 2008-03-31 00:00:00 86 | 407 1 1 2008-03-31 00:00:00 87 | 408 1 1 2008-03-31 00:00:00 88 | 409 1 1 2008-03-31 00:00:00 89 | 410 1 1 2008-03-31 00:00:00 90 | 411 1 1 2008-03-31 00:00:00 91 | 412 1 1 2008-03-31 00:00:00 92 | 413 1 1 2008-03-31 00:00:00 93 | 414 1 1 2008-03-31 00:00:00 94 | 415 1 1 2008-03-31 00:00:00 95 | 416 1 1 2008-03-31 00:00:00 96 | 417 1 1 2008-03-31 00:00:00 97 | 418 1 1 2008-03-31 00:00:00 98 | 419 1 1 2008-03-31 00:00:00 99 | 420 1 1 2008-03-31 00:00:00 100 | 421 1 1 2008-03-31 00:00:00 101 | 422 1 1 2008-03-31 00:00:00 102 | 423 1 1 2008-03-31 00:00:00 103 | 424 1 1 2008-03-31 00:00:00 104 | 425 1 1 2008-03-31 00:00:00 105 | 426 1 1 2008-03-31 00:00:00 106 | 427 1 1 2008-03-31 00:00:00 107 | 428 1 1 2008-03-31 00:00:00 108 | 429 1 1 2008-03-31 00:00:00 109 | 430 1 1 2008-03-31 00:00:00 110 | 431 1 1 2008-03-31 00:00:00 111 | 432 1 1 2008-03-31 00:00:00 112 | 433 1 1 2008-03-31 00:00:00 113 | 434 1 1 2008-03-31 00:00:00 114 | 435 1 1 2008-03-31 00:00:00 115 | 436 1 1 2008-03-31 00:00:00 116 | 437 1 1 2008-03-31 00:00:00 117 | 438 1 1 2008-03-31 00:00:00 118 | 439 1 1 2008-03-31 00:00:00 119 | 440 1 1 2008-03-31 00:00:00 120 | 441 1 1 2008-03-31 00:00:00 121 | 442 1 1 2008-03-31 00:00:00 122 | 443 1 1 2008-03-31 00:00:00 123 | 444 1 1 2008-03-31 00:00:00 124 | 445 1 1 2008-03-31 00:00:00 125 | 446 1 1 2008-03-31 00:00:00 126 | 447 1 1 2008-03-31 00:00:00 127 | 448 1 1 2008-03-31 00:00:00 128 | 449 1 1 2008-03-31 00:00:00 129 | 450 1 1 2008-03-31 00:00:00 130 | 451 1 1 2008-03-31 00:00:00 131 | 452 1 1 2008-03-31 00:00:00 132 | 453 1 1 2008-03-31 00:00:00 133 | 454 1 1 2008-03-31 00:00:00 134 | 455 1 1 2008-03-31 00:00:00 135 | 456 1 1 2008-03-31 00:00:00 136 | 457 1 1 2008-03-31 00:00:00 137 | 458 1 1 2008-03-31 00:00:00 138 | 459 1 1 2008-03-31 00:00:00 139 | 460 1 1 2008-03-31 00:00:00 140 | 461 1 1 2008-03-31 00:00:00 141 | 462 1 1 2008-03-31 00:00:00 142 | 463 1 1 2008-03-31 00:00:00 143 | 464 1 1 2008-03-31 00:00:00 144 | 465 1 1 2008-03-31 00:00:00 145 | 466 1 1 2008-03-31 00:00:00 146 | 467 1 1 2008-03-31 00:00:00 147 | 468 1 1 2008-03-31 00:00:00 148 | 469 1 1 2008-03-31 00:00:00 149 | 470 1 1 2008-03-31 00:00:00 150 | 471 1 1 2008-03-31 00:00:00 151 | 472 1 1 2008-03-31 00:00:00 152 | 473 1 1 2008-03-31 00:00:00 153 | 474 1 1 2008-03-31 00:00:00 154 | 475 1 1 2008-03-31 00:00:00 155 | 476 1 1 2008-03-31 00:00:00 156 | 477 1 1 2008-03-31 00:00:00 157 | 478 1 1 2008-03-31 00:00:00 158 | 479 1 1 2008-03-31 00:00:00 159 | 480 1 1 2008-03-31 00:00:00 160 | 481 1 1 2008-03-31 00:00:00 161 | 482 1 1 2008-03-31 00:00:00 162 | 483 1 1 2008-03-31 00:00:00 163 | 484 1 1 2008-03-31 00:00:00 164 | 485 1 1 2008-03-31 00:00:00 165 | 486 1 1 2008-03-31 00:00:00 166 | 487 1 1 2008-03-31 00:00:00 167 | 488 1 1 2008-03-31 00:00:00 168 | 489 1 1 2008-03-31 00:00:00 169 | 490 1 1 2008-03-31 00:00:00 170 | 491 1 1 2008-03-31 00:00:00 171 | 492 1 1 2008-03-31 00:00:00 172 | 493 1 1 2008-03-31 00:00:00 173 | 494 1 1 2008-03-31 00:00:00 174 | 495 1 1 2008-03-31 00:00:00 175 | 496 1 1 2008-03-31 00:00:00 176 | 497 1 1 2008-03-31 00:00:00 177 | 504 1 1 2008-03-31 00:00:00 178 | 505 1 1 2008-03-31 00:00:00 179 | 506 1 1 2008-03-31 00:00:00 180 | 507 1 1 2008-03-31 00:00:00 181 | 508 1 1 2008-03-31 00:00:00 182 | 509 1 1 2008-03-31 00:00:00 183 | 510 1 1 2008-03-31 00:00:00 184 | 511 1 1 2008-03-31 00:00:00 185 | 512 1 1 2008-03-31 00:00:00 186 | 513 1 1 2008-03-31 00:00:00 187 | 514 1 1 2008-03-31 00:00:00 188 | 515 1 1 2008-03-31 00:00:00 189 | 516 1 1 2008-03-31 00:00:00 190 | 517 1 1 2008-03-31 00:00:00 191 | 518 1 1 2008-03-31 00:00:00 192 | 519 1 1 2008-03-31 00:00:00 193 | 520 1 1 2008-03-31 00:00:00 194 | 521 1 1 2008-03-31 00:00:00 195 | 522 1 1 2008-03-31 00:00:00 196 | 523 1 1 2008-03-31 00:00:00 197 | 524 1 1 2008-03-31 00:00:00 198 | 525 1 1 2008-03-31 00:00:00 199 | 526 1 1 2008-03-31 00:00:00 200 | 527 1 1 2008-03-31 00:00:00 201 | 528 1 1 2008-03-31 00:00:00 202 | 529 1 1 2008-03-31 00:00:00 203 | 530 1 1 2008-03-31 00:00:00 204 | 531 1 1 2008-03-31 00:00:00 205 | 532 1 1 2008-03-31 00:00:00 206 | 533 1 1 2008-03-31 00:00:00 207 | 534 1 1 2008-03-31 00:00:00 208 | 535 1 1 2008-03-31 00:00:00 209 | 679 1 1 2008-03-31 00:00:00 210 | 680 1 1 2008-03-31 00:00:00 211 | 706 1 1 2008-03-31 00:00:00 212 | 707 1 1 2011-05-01 00:00:00 213 | 708 1 1 2011-05-01 00:00:00 214 | 709 1 1 2011-05-01 00:00:00 215 | 710 1 1 2011-05-01 00:00:00 216 | 711 1 1 2011-05-01 00:00:00 217 | 712 1 1 2011-05-01 00:00:00 218 | 713 162 1 2011-05-01 00:00:00 219 | 714 162 1 2011-05-01 00:00:00 220 | 715 162 1 2011-05-01 00:00:00 221 | 716 162 1 2011-05-01 00:00:00 222 | 717 1 1 2011-05-01 00:00:00 223 | 718 1 1 2011-05-01 00:00:00 224 | 719 1 1 2011-05-01 00:00:00 225 | 720 1 1 2011-05-01 00:00:00 226 | 721 1 1 2011-05-01 00:00:00 227 | 722 1 1 2011-05-01 00:00:00 228 | 723 1 1 2011-05-01 00:00:00 229 | 724 1 1 2011-05-01 00:00:00 230 | 725 1 1 2011-05-01 00:00:00 231 | 726 1 1 2011-05-01 00:00:00 232 | 727 1 1 2011-05-01 00:00:00 233 | 728 1 1 2011-05-01 00:00:00 234 | 729 1 1 2011-05-01 00:00:00 235 | 730 1 1 2011-05-01 00:00:00 236 | 731 1 1 2011-05-01 00:00:00 237 | 732 1 1 2011-05-01 00:00:00 238 | 733 1 1 2011-05-01 00:00:00 239 | 734 1 1 2011-05-01 00:00:00 240 | 735 1 1 2011-05-01 00:00:00 241 | 736 1 1 2011-05-01 00:00:00 242 | 737 1 1 2011-05-01 00:00:00 243 | 738 1 1 2011-05-01 00:00:00 244 | 739 143 1 2011-05-01 00:00:00 245 | 740 143 1 2011-05-01 00:00:00 246 | 741 143 1 2011-05-01 00:00:00 247 | 742 143 1 2011-05-01 00:00:00 248 | 743 139 1 2011-05-01 00:00:00 249 | 744 139 1 2011-05-01 00:00:00 250 | 745 139 1 2011-05-01 00:00:00 251 | 746 139 1 2011-05-01 00:00:00 252 | 747 139 1 2011-05-01 00:00:00 253 | 748 143 1 2011-05-01 00:00:00 254 | 749 126 1 2011-05-01 00:00:00 255 | 750 126 1 2011-05-01 00:00:00 256 | 751 126 1 2011-05-01 00:00:00 257 | 752 126 1 2011-05-01 00:00:00 258 | 753 126 1 2011-05-01 00:00:00 259 | 754 111 1 2011-05-01 00:00:00 260 | 755 111 1 2011-05-01 00:00:00 261 | 756 111 1 2011-05-01 00:00:00 262 | 757 111 1 2011-05-01 00:00:00 263 | 758 111 1 2011-05-01 00:00:00 264 | 759 126 1 2011-05-01 00:00:00 265 | 760 126 1 2011-05-01 00:00:00 266 | 761 126 1 2011-05-01 00:00:00 267 | 762 126 1 2011-05-01 00:00:00 268 | 763 126 1 2011-05-01 00:00:00 269 | 764 126 1 2011-05-01 00:00:00 270 | 765 118 1 2011-05-01 00:00:00 271 | 766 118 1 2011-05-01 00:00:00 272 | 767 118 1 2011-05-01 00:00:00 273 | 768 118 1 2011-05-01 00:00:00 274 | 769 118 1 2011-05-01 00:00:00 275 | 770 118 1 2011-05-01 00:00:00 276 | 771 128 1 2011-05-01 00:00:00 277 | 772 128 1 2011-05-01 00:00:00 278 | 773 128 1 2011-05-01 00:00:00 279 | 774 128 1 2011-05-01 00:00:00 280 | 775 118 1 2011-05-01 00:00:00 281 | 776 118 1 2011-05-01 00:00:00 282 | 777 118 1 2011-05-01 00:00:00 283 | 778 118 1 2011-05-01 00:00:00 284 | 779 84 1 2012-04-30 00:00:00 285 | 780 84 1 2012-04-30 00:00:00 286 | 781 84 1 2012-04-30 00:00:00 287 | 782 78 1 2012-04-30 00:00:00 288 | 783 78 1 2012-04-30 00:00:00 289 | 784 78 1 2012-04-30 00:00:00 290 | 785 78 1 2012-04-30 00:00:00 291 | 786 78 1 2012-04-30 00:00:00 292 | 787 78 1 2012-04-30 00:00:00 293 | 788 78 1 2012-04-30 00:00:00 294 | 789 179 1 2012-04-30 00:00:00 295 | 790 179 1 2012-04-30 00:00:00 296 | 791 179 1 2012-04-30 00:00:00 297 | 792 179 1 2012-04-30 00:00:00 298 | 793 177 1 2012-04-30 00:00:00 299 | 794 177 1 2012-04-30 00:00:00 300 | 795 177 1 2012-04-30 00:00:00 301 | 796 177 1 2012-04-30 00:00:00 302 | 797 131 1 2012-04-30 00:00:00 303 | 798 131 1 2012-04-30 00:00:00 304 | 799 131 1 2012-04-30 00:00:00 305 | 800 131 1 2012-04-30 00:00:00 306 | 801 131 1 2012-04-30 00:00:00 307 | 802 138 1 2012-04-30 00:00:00 308 | 803 138 1 2012-04-30 00:00:00 309 | 804 138 1 2012-04-30 00:00:00 310 | 805 1 1 2012-04-30 00:00:00 311 | 806 1 1 2012-04-30 00:00:00 312 | 807 1 1 2012-04-30 00:00:00 313 | 808 145 1 2012-04-30 00:00:00 314 | 809 1 1 2012-04-30 00:00:00 315 | 810 1 1 2012-04-30 00:00:00 316 | 811 1 1 2012-04-30 00:00:00 317 | 812 1 1 2012-04-30 00:00:00 318 | 813 1 1 2012-04-30 00:00:00 319 | 814 1 1 2012-04-30 00:00:00 320 | 815 160 1 2012-04-30 00:00:00 321 | 816 160 1 2012-04-30 00:00:00 322 | 817 160 1 2012-04-30 00:00:00 323 | 818 160 1 2012-04-30 00:00:00 324 | 819 160 1 2012-04-30 00:00:00 325 | 820 160 1 2012-04-30 00:00:00 326 | 821 160 1 2012-04-30 00:00:00 327 | 822 1 1 2012-04-30 00:00:00 328 | 823 160 1 2012-04-30 00:00:00 329 | 824 160 1 2012-04-30 00:00:00 330 | 825 160 1 2012-04-30 00:00:00 331 | 826 160 1 2012-04-30 00:00:00 332 | 827 160 1 2012-04-30 00:00:00 333 | 828 160 1 2012-04-30 00:00:00 334 | 829 160 1 2012-04-30 00:00:00 335 | 830 1 1 2012-04-30 00:00:00 336 | 831 1 1 2012-04-30 00:00:00 337 | 832 1 1 2012-04-30 00:00:00 338 | 833 1 1 2012-04-30 00:00:00 339 | 834 1 1 2012-04-30 00:00:00 340 | 835 1 1 2012-04-30 00:00:00 341 | 836 1 1 2012-04-30 00:00:00 342 | 837 1 1 2012-04-30 00:00:00 343 | 838 1 1 2012-04-30 00:00:00 344 | 839 1 1 2012-04-30 00:00:00 345 | 840 1 1 2012-04-30 00:00:00 346 | 841 176 1 2012-04-30 00:00:00 347 | 842 1 1 2012-04-30 00:00:00 348 | 843 167 1 2012-04-30 00:00:00 349 | 844 172 1 2012-04-30 00:00:00 350 | 845 166 1 2012-04-30 00:00:00 351 | 846 156 1 2012-04-30 00:00:00 352 | 847 137 1 2012-04-30 00:00:00 353 | 848 153 1 2012-04-30 00:00:00 354 | 849 176 1 2012-04-30 00:00:00 355 | 850 176 1 2012-04-30 00:00:00 356 | 851 176 1 2012-04-30 00:00:00 357 | 852 1 1 2012-04-30 00:00:00 358 | 853 1 1 2012-04-30 00:00:00 359 | 854 1 1 2012-04-30 00:00:00 360 | 855 1 1 2012-04-30 00:00:00 361 | 856 1 1 2012-04-30 00:00:00 362 | 857 1 1 2012-04-30 00:00:00 363 | 858 1 1 2012-04-30 00:00:00 364 | 859 1 1 2012-04-30 00:00:00 365 | 860 1 1 2012-04-30 00:00:00 366 | 861 1 1 2012-04-30 00:00:00 367 | 862 1 1 2012-04-30 00:00:00 368 | 863 1 1 2012-04-30 00:00:00 369 | 864 1 1 2013-04-30 00:00:00 370 | 865 1 1 2013-04-30 00:00:00 371 | 866 1 1 2013-04-30 00:00:00 372 | 867 175 1 2013-04-30 00:00:00 373 | 868 175 1 2013-04-30 00:00:00 374 | 869 175 1 2013-04-30 00:00:00 375 | 870 159 1 2013-04-30 00:00:00 376 | 871 1 1 2013-04-30 00:00:00 377 | 872 158 1 2013-04-30 00:00:00 378 | 873 157 1 2013-04-30 00:00:00 379 | 874 1 1 2013-04-30 00:00:00 380 | 875 1 1 2013-04-30 00:00:00 381 | 876 1 1 2013-04-30 00:00:00 382 | 877 1 1 2013-04-30 00:00:00 383 | 878 1 1 2013-04-30 00:00:00 384 | 879 1 1 2013-04-30 00:00:00 385 | 880 1 1 2013-04-30 00:00:00 386 | 881 165 1 2013-04-30 00:00:00 387 | 882 165 1 2013-04-30 00:00:00 388 | 883 165 1 2013-04-30 00:00:00 389 | 884 165 1 2013-04-30 00:00:00 390 | 885 1 1 2013-04-30 00:00:00 391 | 886 141 1 2013-04-30 00:00:00 392 | 887 1 1 2013-04-30 00:00:00 393 | 888 1 1 2013-04-30 00:00:00 394 | 889 1 1 2013-04-30 00:00:00 395 | 890 1 1 2013-04-30 00:00:00 396 | 891 1 1 2013-04-30 00:00:00 397 | 892 1 1 2013-04-30 00:00:00 398 | 893 1 1 2013-04-30 00:00:00 399 | 894 154 1 2013-04-30 00:00:00 400 | 895 1 1 2013-04-30 00:00:00 401 | 896 1 1 2013-04-30 00:00:00 402 | 897 1 1 2013-04-30 00:00:00 403 | 898 1 1 2013-04-30 00:00:00 404 | 899 141 1 2013-04-30 00:00:00 405 | 900 141 1 2013-04-30 00:00:00 406 | 901 141 1 2013-04-30 00:00:00 407 | 902 141 1 2013-04-30 00:00:00 408 | 903 1 1 2013-04-30 00:00:00 409 | 904 1 1 2013-04-30 00:00:00 410 | 905 1 1 2013-04-30 00:00:00 411 | 906 1 1 2013-04-30 00:00:00 412 | 907 1 1 2013-04-30 00:00:00 413 | 908 149 1 2013-04-30 00:00:00 414 | 909 1 1 2013-04-30 00:00:00 415 | 910 1 1 2013-04-30 00:00:00 416 | 911 1 1 2013-04-30 00:00:00 417 | 912 1 1 2013-04-30 00:00:00 418 | 913 1 1 2013-04-30 00:00:00 419 | 914 1 1 2013-04-30 00:00:00 420 | 915 1 1 2013-04-30 00:00:00 421 | 916 1 1 2013-04-30 00:00:00 422 | 917 1 1 2013-04-30 00:00:00 423 | 918 1 1 2013-04-30 00:00:00 424 | 919 1 1 2013-04-30 00:00:00 425 | 920 1 1 2013-04-30 00:00:00 426 | 921 1 1 2013-04-30 00:00:00 427 | 922 1 1 2013-04-30 00:00:00 428 | 923 173 1 2013-04-30 00:00:00 429 | 924 1 1 2013-04-30 00:00:00 430 | 925 1 1 2013-04-30 00:00:00 431 | 926 1 1 2013-04-30 00:00:00 432 | 927 1 1 2013-04-30 00:00:00 433 | 928 1 1 2013-04-30 00:00:00 434 | 929 1 1 2013-04-30 00:00:00 435 | 930 146 1 2013-04-30 00:00:00 436 | 931 1 1 2013-04-30 00:00:00 437 | 932 1 1 2013-04-30 00:00:00 438 | 933 155 1 2013-04-30 00:00:00 439 | 934 1 1 2013-04-30 00:00:00 440 | 935 147 1 2013-04-30 00:00:00 441 | 936 147 1 2013-04-30 00:00:00 442 | 937 147 1 2013-04-30 00:00:00 443 | 938 135 1 2013-04-30 00:00:00 444 | 939 135 1 2013-04-30 00:00:00 445 | 940 135 1 2013-04-30 00:00:00 446 | 941 135 1 2013-04-30 00:00:00 447 | 942 1 1 2013-04-30 00:00:00 448 | 943 1 1 2013-04-30 00:00:00 449 | 944 1 1 2013-04-30 00:00:00 450 | 945 1 1 2013-04-30 00:00:00 451 | 946 1 1 2013-04-30 00:00:00 452 | 947 1 1 2013-04-30 00:00:00 453 | 948 1 1 2013-04-30 00:00:00 454 | 949 1 1 2013-04-30 00:00:00 455 | 950 1 1 2013-04-30 00:00:00 456 | 951 1 1 2013-04-30 00:00:00 457 | 952 150 1 2013-04-30 00:00:00 458 | 953 87 1 2013-04-30 00:00:00 459 | 954 99 1 2013-04-30 00:00:00 460 | 955 99 1 2013-04-30 00:00:00 461 | 956 99 1 2013-04-30 00:00:00 462 | 957 99 1 2013-04-30 00:00:00 463 | 958 87 1 2013-04-30 00:00:00 464 | 959 87 1 2013-04-30 00:00:00 465 | 960 87 1 2013-04-30 00:00:00 466 | 961 99 1 2013-04-30 00:00:00 467 | 962 99 1 2013-04-30 00:00:00 468 | 963 99 1 2013-04-30 00:00:00 469 | 964 99 1 2013-04-30 00:00:00 470 | 965 99 1 2013-04-30 00:00:00 471 | 966 87 1 2013-04-30 00:00:00 472 | 967 87 1 2013-04-30 00:00:00 473 | 968 87 1 2013-04-30 00:00:00 474 | 969 87 1 2013-04-30 00:00:00 475 | 970 87 1 2013-04-30 00:00:00 476 | 971 87 1 2013-04-30 00:00:00 477 | 972 87 1 2013-04-30 00:00:00 478 | 973 113 1 2013-04-30 00:00:00 479 | 974 113 1 2013-04-30 00:00:00 480 | 975 113 1 2013-04-30 00:00:00 481 | 976 113 1 2013-04-30 00:00:00 482 | 977 102 1 2013-04-30 00:00:00 483 | 978 87 1 2013-04-30 00:00:00 484 | 979 87 1 2013-04-30 00:00:00 485 | 980 80 1 2013-04-30 00:00:00 486 | 981 80 1 2013-04-30 00:00:00 487 | 982 80 1 2013-04-30 00:00:00 488 | 983 80 1 2013-04-30 00:00:00 489 | 984 1 1 2013-04-30 00:00:00 490 | 985 1 1 2013-04-30 00:00:00 491 | 986 1 1 2013-04-30 00:00:00 492 | 987 1 1 2013-04-30 00:00:00 493 | 988 1 1 2013-04-30 00:00:00 494 | 989 1 1 2013-04-30 00:00:00 495 | 990 1 1 2013-04-30 00:00:00 496 | 991 1 1 2013-04-30 00:00:00 497 | 992 1 1 2013-04-30 00:00:00 498 | 993 1 1 2013-04-30 00:00:00 499 | 994 1 1 2013-04-30 00:00:00 500 | 995 1 1 2013-04-30 00:00:00 501 | 996 1 1 2013-04-30 00:00:00 502 | 997 102 1 2013-04-30 00:00:00 503 | 998 102 1 2013-04-30 00:00:00 504 | 999 102 1 2013-04-30 00:00:00 505 | -------------------------------------------------------------------------------- /adventureworks/data/ProductReview.csv: -------------------------------------------------------------------------------- 1 | 1 709 John Smith 2013-09-18 00:00:00 john@fourthcoffee.com 5 "I can't believe I'm singing the praises of a pair of socks, but I just came back from a grueling 2 | 3-day ride and these socks really helped make the trip a blast. They're lightweight yet really cushioned my feet all day. 3 | The reinforced toe is nearly bullet-proof and I didn't experience any problems with rubbing or blisters like I have with 4 | other brands. I know it sounds silly, but it's always the little stuff (like comfortable feet) that makes or breaks a long trip. 5 | I won't go on another trip without them!" 2013-09-18 00:00:00 6 | 2 937 David 2013-11-13 00:00:00 david@graphicdesigninstitute.com 4 "A little on the heavy side, but overall the entry/exit is easy in all conditions. I've used these pedals for 7 | more than 3 years and I've never had a problem. Cleanup is easy. Mud and sand don't get trapped. I would like 8 | them even better if there was a weight reduction. Maybe in the next design. Still, I would recommend them to a friend." 2013-11-13 00:00:00 9 | 3 937 Jill 2013-11-15 00:00:00 jill@margiestravel.com 2 "Maybe it's just because I'm new to mountain biking, but I had a terrible time getting use 10 | to these pedals. In my first outing, I wiped out trying to release my foot. Any suggestions on 11 | ways I can adjust the pedals, or is it just a learning curve thing?" 2013-11-15 00:00:00 12 | 4 798 Laura Norman 2013-11-15 00:00:00 laura@treyresearch.net 5 "The Road-550-W from Adventure Works Cycles is everything it's advertised to be. Finally, a quality bike that 13 | is actually built for a woman and provides control and comfort in one neat package. The top tube is shorter, the suspension is weight-tuned and there's a much shorter reach to the brake 14 | levers. All this adds up to a great mountain bike that is sure to accommodate any woman's anatomy. In addition to getting the size right, the saddle is incredibly comfortable. 15 | Attention to detail is apparent in every aspect from the frame finish to the careful design of each component. Each component is a solid performer without any fluff. 16 | The designers clearly did their homework and thought about size, weight, and funtionality throughout. And at less than 19 pounds, the bike is manageable for even the most petite cyclist. 17 | 18 | We had 5 riders take the bike out for a spin and really put it to the test. The results were consistent and very positive. Our testers loved the manuverability 19 | and control they had with the redesigned frame on the 550-W. A definite improvement over the 2002 design. Four out of five testers listed quick handling 20 | and responsivness were the key elements they noticed. Technical climbing and on the flats, the bike just cruises through the rough. Tight corners and obstacles were handled effortlessly. The fifth tester was more impressed with the smooth ride. The heavy-duty shocks absorbed even the worst bumps and provided a soft ride on all but the 21 | nastiest trails and biggest drops. The shifting was rated superb and typical of what we've come to expect from Adventure Works Cycles. On descents, the bike handled flawlessly and tracked very well. The bike is well balanced front-to-rear and frame flex was minimal. In particular, the testers 22 | noted that the brake system had a unique combination of power and modulation. While some brake setups can be overly touchy, these brakes had a good 23 | amount of power, but also a good feel that allows you to apply as little or as much braking power as is needed. Second is their short break-in period. We found that they tend to break-in well before 24 | the end of the first ride; while others take two to three rides (or more) to come to full power. 25 | 26 | On the negative side, the pedals were not quite up to our tester's standards. 27 | Just for fun, we experimented with routine maintenance tasks. Overall we found most operations to be straight forward and easy to complete. The only exception was replacing the front wheel. The maintenance manual that comes 28 | with the bike say to install the front wheel with the axle quick release or bolt, then compress the fork a few times before fastening and tightening the two quick-release mechanisms on the bottom of the dropouts. This is to seat the axle in the dropouts, and if you do not 29 | do this, the axle will become seated after you tightened the two bottom quick releases, which will then become loose. It's better to test the tightness carefully or you may notice that the two bottom quick releases have come loose enough to fall completely open. And that's something you don't want to experience 30 | while out on the road! 31 | 32 | The Road-550-W frame is available in a variety of sizes and colors and has the same durable, high-quality aluminum that AWC is known for. At a MSRP of just under $1125.00, it's comparable in price to its closest competitors and 33 | we think that after a test drive you'l find the quality and performance above and beyond . You'll have a grin on your face and be itching to get out on the road for more. While designed for serious road racing, the Road-550-W would be an excellent choice for just about any terrain and 34 | any level of experience. It's a huge step in the right direction for female cyclists and well worth your consideration and hard-earned money." 2013-11-15 00:00:00 35 | -------------------------------------------------------------------------------- /adventureworks/data/ProductSubcategory.csv: -------------------------------------------------------------------------------- 1 | 1 1 Mountain Bikes {2D364ADE-264A-433C-B092-4FCBF3804E01} 2008-04-30 00:00:00 2 | 2 1 Road Bikes {000310C0-BCC8-42C4-B0C3-45AE611AF06B} 2008-04-30 00:00:00 3 | 3 1 Touring Bikes {02C5061D-ECDC-4274-B5F1-E91D76BC3F37} 2008-04-30 00:00:00 4 | 4 2 Handlebars {3EF2C725-7135-4C85-9AE6-AE9A3BDD9283} 2008-04-30 00:00:00 5 | 5 2 Bottom Brackets {A9E54089-8A1E-4CF5-8646-E3801F685934} 2008-04-30 00:00:00 6 | 6 2 Brakes {D43BA4A3-EF0D-426B-90EB-4BE4547DD30C} 2008-04-30 00:00:00 7 | 7 2 Chains {E93A7231-F16C-4B0F-8C41-C73FDEC62DA0} 2008-04-30 00:00:00 8 | 8 2 Cranksets {4F644521-422B-4F19-974A-E3DF6102567E} 2008-04-30 00:00:00 9 | 9 2 Derailleurs {1830D70C-AA2A-40C0-A271-5BA86F38F8BF} 2008-04-30 00:00:00 10 | 10 2 Forks {B5F9BA42-B69B-4FDD-B2EC-57FB7B42E3CF} 2008-04-30 00:00:00 11 | 11 2 Headsets {7C782BBE-5A16-495A-AA50-10AFE5A84AF2} 2008-04-30 00:00:00 12 | 12 2 Mountain Frames {61B21B65-E16A-4BE7-9300-4D8E9DB861BE} 2008-04-30 00:00:00 13 | 13 2 Pedals {6D24AC07-7A84-4849-864A-865A14125BC9} 2008-04-30 00:00:00 14 | 14 2 Road Frames {5515F857-075B-4F9A-87B7-43B4997077B3} 2008-04-30 00:00:00 15 | 15 2 Saddles {049FFFA3-9D30-46DF-82F7-F20730EC02B3} 2008-04-30 00:00:00 16 | 16 2 Touring Frames {D2E3F1A8-56C4-4F36-B29D-5659FC0D2789} 2008-04-30 00:00:00 17 | 17 2 Wheels {43521287-4B0B-438E-B80E-D82D9AD7C9F0} 2008-04-30 00:00:00 18 | 18 3 Bib-Shorts {67B58D2B-5798-4A90-8C6C-5DDACF057171} 2008-04-30 00:00:00 19 | 19 3 Caps {430DD6A8-A755-4B23-BB05-52520107DA5F} 2008-04-30 00:00:00 20 | 20 3 Gloves {92D5657B-0032-4E49-BAD5-41A441A70942} 2008-04-30 00:00:00 21 | 21 3 Jerseys {09E91437-BA4F-4B1A-8215-74184FD95DB8} 2008-04-30 00:00:00 22 | 22 3 Shorts {1A5BA5B3-03C3-457C-B11E-4FA85EDE87DA} 2008-04-30 00:00:00 23 | 23 3 Socks {701019C3-09FE-4949-8386-C6CE686474E5} 2008-04-30 00:00:00 24 | 24 3 Tights {5DEB3E55-9897-4416-B18A-515E970BC2D1} 2008-04-30 00:00:00 25 | 25 3 Vests {9AD7FE93-5BA0-4736-B578-FF80A2071297} 2008-04-30 00:00:00 26 | 26 4 Bike Racks {4624B5CE-66D6-496B-9201-C053DF3556CC} 2008-04-30 00:00:00 27 | 27 4 Bike Stands {43B445C8-B820-424E-A1D5-90D81DA0B46F} 2008-04-30 00:00:00 28 | 28 4 Bottles and Cages {9B7DFF41-9FA3-4776-8DEF-2C9A48C8B779} 2008-04-30 00:00:00 29 | 29 4 Cleaners {9AD3BCF0-244D-4EC4-A6A0-FB701351C6A3} 2008-04-30 00:00:00 30 | 30 4 Fenders {1697F8A2-0A08-4883-B7DD-D19117B4E9A7} 2008-04-30 00:00:00 31 | 31 4 Helmets {F5E07A33-C9E0-439C-B5F3-9F25FB65BECC} 2008-04-30 00:00:00 32 | 32 4 Hydration Packs {646A8906-FC87-4267-A443-9C6D791E6693} 2008-04-30 00:00:00 33 | 33 4 Lights {954178BA-624F-42DB-95F6-CA035F36D130} 2008-04-30 00:00:00 34 | 34 4 Locks {19646983-3FA0-4773-9A0C-F34C49DF9BC8} 2008-04-30 00:00:00 35 | 35 4 Panniers {3002A5D5-FEC3-464B-BEF3-E0F81D35F431} 2008-04-30 00:00:00 36 | 36 4 Pumps {FE4D46F2-C87C-48C5-A4A1-3F55712D80B1} 2008-04-30 00:00:00 37 | 37 4 Tires and Tubes {3C17C9AE-E906-48B4-BDD3-60E28D47DCDF} 2008-04-30 00:00:00 38 | -------------------------------------------------------------------------------- /adventureworks/data/SalesPerson.csv: -------------------------------------------------------------------------------- 1 | 274 0 0 559697.5639 0 {48754992-9EE0-4C0E-8C94-9451604E3E02} 2010-12-28 00:00:00 2 | 275 2 300000 4100 0.012 3763178.1787 1750406.4785 {1E0A7274-3064-4F58-88EE-4C6586C87169} 2011-05-24 00:00:00 3 | 276 4 250000 2000 0.015 4251368.5497 1439156.0291 {4DD9EEE4-8E81-4F8C-AF97-683394C1F7C0} 2011-05-24 00:00:00 4 | 277 3 250000 2500 0.015 3189418.3662 1997186.2037 {39012928-BFEC-4242-874D-423162C3F567} 2011-05-24 00:00:00 5 | 278 6 250000 500 0.01 1453719.4653 1620276.8966 {7A0AE1AB-B283-40F9-91D1-167ABF06D720} 2011-05-24 00:00:00 6 | 279 5 300000 6700 0.01 2315185.611 1849640.9418 {52A5179D-3239-4157-AE29-17E868296DC0} 2011-05-24 00:00:00 7 | 280 1 250000 5000 0.01 1352577.1325 1927059.178 {BE941A4A-FB50-4947-BDA4-BB8972365B08} 2011-05-24 00:00:00 8 | 281 4 250000 3550 0.01 2458535.6169 2073505.9999 {35326DDB-7278-4FEF-B3BA-EA137B69094E} 2011-05-24 00:00:00 9 | 282 6 250000 5000 0.015 2604540.7172 2038234.6549 {31FD7FC1-DC84-4F05-B9A0-762519EACACC} 2011-05-24 00:00:00 10 | 283 1 250000 3500 0.012 1573012.9383 1371635.3158 {6BAC15B2-8FFB-45A9-B6D5-040E16C2073F} 2011-05-24 00:00:00 11 | 284 1 300000 3900 0.019 1576562.1966 0 {AC94EC04-A2DC-43E3-8654-DD0C546ABC17} 2012-09-23 00:00:00 12 | 285 0 0 172524.4512 0 {CFDBEF27-B1F7-4A56-A878-0221C73BAE67} 2013-03-07 00:00:00 13 | 286 9 250000 5650 0.018 1421810.9242 2278548.9776 {9B968777-75DC-45BD-A8DF-9CDAA72839E1} 2013-05-23 00:00:00 14 | 287 0 0 519905.932 0 {1DD1F689-DF74-4149-8600-59555EEF154B} 2012-04-09 00:00:00 15 | 288 8 250000 75 0.018 1827066.7118 1307949.7917 {224BB25A-62E3-493E-ACAF-4F8F5C72396A} 2013-05-23 00:00:00 16 | 289 10 250000 5150 0.02 4116871.2277 1635823.3967 {25F6838D-9DB4-4833-9DDC-7A24283AF1BA} 2012-05-23 00:00:00 17 | 290 7 250000 985 0.016 3121616.3202 2396539.7601 {F509E3D4-76C8-42AA-B353-90B7B8DB08DE} 2012-05-23 00:00:00 18 | -------------------------------------------------------------------------------- /adventureworks/data/SalesPersonQuotaHistory.csv: -------------------------------------------------------------------------------- 1 | 274 2011-05-31 00:00:00 28000 {99109BBF-8693-4587-BC23-6036EC89E1BE} 2011-04-16 00:00:00 2 | 274 2011-08-31 00:00:00 7000 {DFD01444-8900-461C-8D6F-04598DAE01D4} 2011-07-17 00:00:00 3 | 274 2011-12-01 00:00:00 91000 {0A69F453-9689-4CCF-A08C-C644670F5668} 2011-10-17 00:00:00 4 | 274 2012-02-29 00:00:00 140000 {DA8D1458-5FB9-4C3E-9EAD-8F5CE1393047} 2012-01-15 00:00:00 5 | 274 2012-05-30 00:00:00 70000 {760CEF84-B980-417B-A667-7358C38857F0} 2012-04-15 00:00:00 6 | 274 2012-08-30 00:00:00 154000 {FB29E024-F26A-49AA-A7CC-C99AE7BA4853} 2012-07-16 00:00:00 7 | 274 2012-11-30 00:00:00 107000 {13947D2C-A254-47C9-8817-CBD186FFA526} 2012-10-16 00:00:00 8 | 274 2013-02-28 00:00:00 58000 {BC1A222F-47A0-48D1-9C56-AC873269DC98} 2013-01-14 00:00:00 9 | 274 2013-05-30 00:00:00 263000 {8B4E3CBF-F0EF-49C5-9A8C-87679055057E} 2013-04-15 00:00:00 10 | 274 2013-08-30 00:00:00 116000 {E9DE95E3-B119-4441-BD1D-B27FC4516022} 2013-07-16 00:00:00 11 | 274 2013-11-30 00:00:00 84000 {7CEA47B5-8391-4414-A866-FF6EC6628CD3} 2013-10-16 00:00:00 12 | 274 2014-03-01 00:00:00 187000 {0CFB6474-20AA-46D3-A5C0-29DBA2EDA025} 2014-01-15 00:00:00 13 | 275 2011-05-31 00:00:00 367000 {5F7E9647-3F08-49B0-A4A4-90257FC78197} 2011-04-16 00:00:00 14 | 275 2011-08-31 00:00:00 556000 {87AC1FB7-A3C5-43A6-90AA-2D09AE00148A} 2011-07-17 00:00:00 15 | 275 2011-12-01 00:00:00 502000 {52849F15-2FC4-4154-894D-1E3D3DAEA181} 2011-10-17 00:00:00 16 | 275 2012-02-29 00:00:00 550000 {C69B67DB-F35F-4DAD-A8A8-C4D074AD17DB} 2012-01-15 00:00:00 17 | 275 2012-05-30 00:00:00 1429000 {ACE52EBF-5328-4B20-951F-F7323F0D3A56} 2012-04-15 00:00:00 18 | 275 2012-08-30 00:00:00 1324000 {59FD606C-22FF-4F43-951B-74FCA7758EDE} 2012-07-16 00:00:00 19 | 275 2012-11-30 00:00:00 729000 {A2907D41-6271-43D5-8439-DFFEB6B963FA} 2012-10-16 00:00:00 20 | 275 2013-02-28 00:00:00 1194000 {08270720-0537-4F0E-BA15-375EC0660F31} 2013-01-14 00:00:00 21 | 275 2013-05-30 00:00:00 1575000 {AA3C8A00-6590-497E-80F6-075BB947E025} 2013-04-15 00:00:00 22 | 275 2013-08-30 00:00:00 1218000 {12AAC834-AB2F-4E84-B85D-08839670C198} 2013-07-16 00:00:00 23 | 275 2013-11-30 00:00:00 849000 {118F1FC6-7B7E-4588-90B0-F08BA349DBE7} 2013-10-16 00:00:00 24 | 275 2014-03-01 00:00:00 869000 {1290B655-35F4-4447-A4C5-1385F62FEF4D} 2014-01-15 00:00:00 25 | 276 2011-05-31 00:00:00 637000 {2DF41DD8-182E-4C57-AE81-718F714CB4FF} 2011-04-16 00:00:00 26 | 276 2011-08-31 00:00:00 781000 {CB65848E-16D8-42FD-A9F3-8A8CAE4CEB9C} 2011-07-17 00:00:00 27 | 276 2011-12-01 00:00:00 665000 {E35D6A3A-8303-47DD-B0E6-FD7D40A396B2} 2011-10-17 00:00:00 28 | 276 2012-02-29 00:00:00 639000 {F8443072-C5B3-4F3F-8E20-5F53C90B0414} 2012-01-15 00:00:00 29 | 276 2012-05-30 00:00:00 1355000 {1B62E37F-2045-404A-B3F0-4E7B65C8D979} 2012-04-15 00:00:00 30 | 276 2012-08-30 00:00:00 1009000 {68082AFC-9A96-4EDE-8B8E-64C4E9F8DDD4} 2012-07-16 00:00:00 31 | 276 2012-11-30 00:00:00 860000 {A6FCE001-AF4B-45FA-998C-F69E097D650E} 2012-10-16 00:00:00 32 | 276 2013-02-28 00:00:00 1021000 {AEDA3A74-5E52-4FDC-AE81-E236B4D14F5F} 2013-01-14 00:00:00 33 | 276 2013-05-30 00:00:00 1525000 {C81757CA-DA32-4618-8429-395F96283A6D} 2013-04-15 00:00:00 34 | 276 2013-08-30 00:00:00 1276000 {C5A85488-C1DC-4F85-9B24-ADDF853793F8} 2013-07-16 00:00:00 35 | 276 2013-11-30 00:00:00 894000 {9D246AF6-85FE-4A25-A266-70A11895D013} 2013-10-16 00:00:00 36 | 276 2014-03-01 00:00:00 1124000 {633A5552-F996-475F-BD93-BB6F343F65D8} 2014-01-15 00:00:00 37 | 277 2011-05-31 00:00:00 565000 {D1F92EC2-0C55-47D4-BE71-54B37223D19F} 2011-04-16 00:00:00 38 | 277 2011-08-31 00:00:00 872000 {F9823592-5888-487D-9B86-79074A27A96F} 2011-07-17 00:00:00 39 | 277 2011-12-01 00:00:00 846000 {472859C3-39A7-4504-A0CD-760CBEAC95F8} 2011-10-17 00:00:00 40 | 277 2012-02-29 00:00:00 952000 {ECA1E739-05F5-4584-9118-927634284E93} 2012-01-15 00:00:00 41 | 277 2012-05-30 00:00:00 1600000 {D368DC2C-F142-48F6-A787-91D818C04534} 2012-04-15 00:00:00 42 | 277 2012-08-30 00:00:00 1352000 {64C8E4F4-F979-4816-A2EE-B044AD74224D} 2012-07-16 00:00:00 43 | 277 2012-11-30 00:00:00 839000 {0569DF99-DEAB-46CE-8818-8EEE2DD47BF1} 2012-10-16 00:00:00 44 | 277 2013-02-28 00:00:00 1369000 {0323D0BC-C5CC-4D67-8935-DD05074FBA43} 2013-01-14 00:00:00 45 | 277 2013-05-30 00:00:00 1171000 {FCA465DE-87F6-4F95-B80F-103726CE823B} 2013-04-15 00:00:00 46 | 277 2013-08-30 00:00:00 971000 {D1CF9BFC-0E82-4B0A-BECC-DA6246767A74} 2013-07-16 00:00:00 47 | 277 2013-11-30 00:00:00 714000 {980224A6-3397-4AF9-9B7B-883C80122A6A} 2013-10-16 00:00:00 48 | 277 2014-03-01 00:00:00 947000 {440AA05D-4BC7-4093-8C4E-54F7F8C74BB9} 2014-01-15 00:00:00 49 | 278 2011-05-31 00:00:00 244000 {16962D2D-F610-4150-9C05-0BE2E0FFE207} 2011-04-16 00:00:00 50 | 278 2011-08-31 00:00:00 356000 {5690E967-970D-41F6-9864-C64BD61A896D} 2011-07-17 00:00:00 51 | 278 2011-12-01 00:00:00 266000 {9AEDA6BA-4476-4F8E-821B-26B52596718F} 2011-10-17 00:00:00 52 | 278 2012-02-29 00:00:00 341000 {EE81E30A-0878-4FDD-B626-C44AD7B7DF61} 2012-01-15 00:00:00 53 | 278 2012-05-30 00:00:00 542000 {AB87AE3A-A0DB-4073-B348-02851BE80D64} 2012-04-15 00:00:00 54 | 278 2012-08-30 00:00:00 329000 {B06507B8-6A96-4819-AC31-A77411C9B777} 2012-07-16 00:00:00 55 | 278 2012-11-30 00:00:00 239000 {4580482F-A91E-4482-A95D-FC7BCE1A2E01} 2012-10-16 00:00:00 56 | 278 2013-02-28 00:00:00 418000 {C7A90E1B-3B08-4B58-84F7-8F70C9092D86} 2013-01-14 00:00:00 57 | 278 2013-05-30 00:00:00 507000 {0E252D7F-F0A3-493A-93FF-1ACA0FBFE0AD} 2013-04-15 00:00:00 58 | 278 2013-08-30 00:00:00 453000 {F22DFA8F-2D6D-4CA1-9ABF-48D8B2B4F705} 2013-07-16 00:00:00 59 | 278 2013-11-30 00:00:00 280000 {F30D6135-6631-406A-A396-BE71E1BD87CF} 2013-10-16 00:00:00 60 | 278 2014-03-01 00:00:00 390000 {0696B200-1180-4150-9BDF-0EC0A83C78BF} 2014-01-15 00:00:00 61 | 279 2011-05-31 00:00:00 669000 {C40AC76F-5027-4417-9B60-CB1210AC079A} 2011-04-16 00:00:00 62 | 279 2011-08-31 00:00:00 917000 {982237B6-4533-4DCB-907A-9E15D45AFA59} 2011-07-17 00:00:00 63 | 279 2011-12-01 00:00:00 780000 {20819180-2DE9-41FE-9EFB-6513453D69A0} 2011-10-17 00:00:00 64 | 279 2012-02-29 00:00:00 802000 {B762B64B-0E51-41C9-889F-1535BF553BED} 2012-01-15 00:00:00 65 | 279 2012-05-30 00:00:00 734000 {480C5A5B-E2AC-4C72-930B-B80E770FB14B} 2012-04-15 00:00:00 66 | 279 2012-08-30 00:00:00 647000 {660A70A8-CE25-4CEC-8866-FB50C5377BEC} 2012-07-16 00:00:00 67 | 279 2012-11-30 00:00:00 571000 {E7F639AC-53C3-4B66-8ECD-5F71E7CACB99} 2012-10-16 00:00:00 68 | 279 2013-02-28 00:00:00 572000 {173AD1F3-C953-4182-8168-97190CA5F929} 2013-01-14 00:00:00 69 | 279 2013-05-30 00:00:00 950000 {399FAA31-8935-4E8A-8AE6-9B3DEB5BF5E0} 2013-04-15 00:00:00 70 | 279 2013-08-30 00:00:00 675000 {3BD5FB9E-0D3C-41B5-A619-CB98D6E5B7FE} 2013-07-16 00:00:00 71 | 279 2013-11-30 00:00:00 538000 {95B4B50B-08E7-4B71-A68C-B55F9400395B} 2013-10-16 00:00:00 72 | 279 2014-03-01 00:00:00 686000 {BB8C5BB9-475D-438B-A611-17A20F4A6B91} 2014-01-15 00:00:00 73 | 280 2011-05-31 00:00:00 165000 {4F97C4D6-9C4C-4915-9CA4-EAB679D373F6} 2011-04-16 00:00:00 74 | 280 2011-08-31 00:00:00 469000 {BA494EA7-5CED-4044-995C-39A69DD68B34} 2011-07-17 00:00:00 75 | 280 2011-12-01 00:00:00 264000 {D2FE8C53-8307-4C36-9571-F5648DA24CA2} 2011-10-17 00:00:00 76 | 280 2012-02-29 00:00:00 301000 {B9C12814-44B8-47CE-8DB8-45A7C91E360B} 2012-01-15 00:00:00 77 | 280 2012-05-30 00:00:00 210000 {1EA57383-0BE7-46E8-BFB9-21034FABE6CC} 2012-04-15 00:00:00 78 | 280 2012-08-30 00:00:00 226000 {876E5DD7-DE44-4497-BB38-08B1D56A9F5D} 2012-07-16 00:00:00 79 | 280 2012-11-30 00:00:00 190000 {3E7198AA-2BF8-4050-9050-091D14F61FF1} 2012-10-16 00:00:00 80 | 280 2013-02-28 00:00:00 224000 {ADC65C86-AFEE-4A07-80D9-F23039954C4A} 2013-01-14 00:00:00 81 | 280 2013-05-30 00:00:00 319000 {58E9567D-5174-4A27-A95A-11DA6E6DC585} 2013-04-15 00:00:00 82 | 280 2013-08-30 00:00:00 450000 {FCEB753B-9A73-445A-937F-BA7EC99385B4} 2013-07-16 00:00:00 83 | 280 2013-11-30 00:00:00 343000 {A5CCD7A0-F696-489E-8D9B-73904D898DC6} 2013-10-16 00:00:00 84 | 280 2014-03-01 00:00:00 390000 {BFF32188-2095-43B6-88FF-4CDCDD7C2F4C} 2014-01-15 00:00:00 85 | 281 2011-05-31 00:00:00 460000 {FCEF2AF1-6183-41B3-A04F-2EAD88389267} 2011-04-16 00:00:00 86 | 281 2011-08-31 00:00:00 549000 {AD3E7040-3F1F-485E-A716-F7D18CE09E76} 2011-07-17 00:00:00 87 | 281 2011-12-01 00:00:00 473000 {90489216-EA7E-43B0-BE90-17F2ED47F2E2} 2011-10-17 00:00:00 88 | 281 2012-02-29 00:00:00 493000 {23DCFB7A-4B3F-4302-B88A-989B28C9C32A} 2012-01-15 00:00:00 89 | 281 2012-05-30 00:00:00 1034000 {61407C3A-731D-4269-9894-BFA0F447FE79} 2012-04-15 00:00:00 90 | 281 2012-08-30 00:00:00 813000 {BFB04C57-F0F4-4422-AA9B-D2A74E67A3A8} 2012-07-16 00:00:00 91 | 281 2012-11-30 00:00:00 470000 {49C77875-1C39-4253-8505-BD7FE53A0AE2} 2012-10-16 00:00:00 92 | 281 2013-02-28 00:00:00 555000 {F6C65525-B30A-42B5-BE6C-EA63B6BEF320} 2013-01-14 00:00:00 93 | 281 2013-05-30 00:00:00 935000 {CB4DE112-C5FA-4B67-8EEB-9F09569C249C} 2013-04-15 00:00:00 94 | 281 2013-08-30 00:00:00 684000 {CFA3347D-BBF9-4F9B-8339-6FC0FD0079F4} 2013-07-16 00:00:00 95 | 281 2013-11-30 00:00:00 614000 {070F2190-C4FB-4261-98EF-C6B5CA745DE8} 2013-10-16 00:00:00 96 | 281 2014-03-01 00:00:00 724000 {634A330E-8683-42D4-824F-39B3F9076270} 2014-01-15 00:00:00 97 | 282 2011-05-31 00:00:00 525000 {BDE90D55-C92E-4B0D-8E0C-72FD0EECE610} 2011-04-16 00:00:00 98 | 282 2011-08-31 00:00:00 767000 {10C5E693-5182-4951-9F36-0BAE17B3878C} 2011-07-17 00:00:00 99 | 282 2011-12-01 00:00:00 583000 {D3AFA546-5A53-47CA-B2AC-49A54D68C090} 2011-10-17 00:00:00 100 | 282 2012-02-29 00:00:00 583000 {85CD56A2-F1A1-4E1D-9AB6-F415D811F3C1} 2012-01-15 00:00:00 101 | 282 2012-05-30 00:00:00 496000 {1F07008F-826F-4C83-A3F6-B72EA3A406AF} 2012-04-15 00:00:00 102 | 282 2012-08-30 00:00:00 452000 {0F4F65CA-3A56-46F0-B5F0-9D86DB593CA3} 2012-07-16 00:00:00 103 | 282 2012-11-30 00:00:00 288000 {292D397C-B094-44BD-8374-CFF90CF4B10A} 2012-10-16 00:00:00 104 | 282 2013-02-28 00:00:00 247000 {122081EA-60AF-45E8-B732-7E614EDF8460} 2013-01-14 00:00:00 105 | 282 2013-05-30 00:00:00 1051000 {8253C051-2DD1-47B8-8E54-CB52882FDC01} 2013-04-15 00:00:00 106 | 282 2013-08-30 00:00:00 707000 {40ADE5DE-6CAE-40C2-8D7F-594045A6A40E} 2013-07-16 00:00:00 107 | 282 2013-11-30 00:00:00 569000 {62DD856A-7B26-4952-861D-5C8B85A2E859} 2013-10-16 00:00:00 108 | 282 2014-03-01 00:00:00 830000 {F020801A-4E65-42E3-83E5-CB92FDE0BEEE} 2014-01-15 00:00:00 109 | 283 2011-05-31 00:00:00 226000 {610F84C0-206D-487F-988E-C804ABFC11A5} 2011-04-16 00:00:00 110 | 283 2011-08-31 00:00:00 353000 {62CE3158-2B10-483F-BEB3-5E4D60966183} 2011-07-17 00:00:00 111 | 283 2011-12-01 00:00:00 280000 {7A09CD71-EED6-485B-8AF4-800C82AEC15A} 2011-10-17 00:00:00 112 | 283 2012-02-29 00:00:00 267000 {D44E0E60-C00C-413B-B288-1B69553120BC} 2012-01-15 00:00:00 113 | 283 2012-05-30 00:00:00 483000 {5E45EB9D-6592-444C-BB43-8B260AFABD7D} 2012-04-15 00:00:00 114 | 283 2012-08-30 00:00:00 341000 {A3974EB0-509F-432A-8046-8E14BB175A91} 2012-07-16 00:00:00 115 | 283 2012-11-30 00:00:00 151000 {A0018050-D5A1-46B9-88A0-37EA2034585A} 2012-10-16 00:00:00 116 | 283 2013-02-28 00:00:00 284000 {8DE8217F-553D-4614-B0E0-B0BDB32E7AEC} 2013-01-14 00:00:00 117 | 283 2013-05-30 00:00:00 631000 {9B6E418D-0842-4FE3-B86A-9ECA7CCE4367} 2013-04-15 00:00:00 118 | 283 2013-08-30 00:00:00 372000 {C97C50F2-2DBE-465D-8780-FE201F0CFD25} 2013-07-16 00:00:00 119 | 283 2013-11-30 00:00:00 234000 {816A0650-905E-4079-8F89-2E1A698A1E10} 2013-10-16 00:00:00 120 | 283 2014-03-01 00:00:00 403000 {99552F0A-6A94-4A5B-AFE9-A18973958B9E} 2014-01-15 00:00:00 121 | 284 2012-08-30 00:00:00 321000 {375ED681-8543-49E2-BB95-FA56545568E8} 2012-07-16 00:00:00 122 | 284 2012-11-30 00:00:00 281000 {62E27478-25EA-4F94-AF10-757C85F5CACE} 2012-10-16 00:00:00 123 | 284 2013-02-28 00:00:00 304000 {169659D9-A26F-4EA3-9F49-B0857C24CB4C} 2013-01-14 00:00:00 124 | 284 2013-05-30 00:00:00 516000 {5671EC9E-4FA4-4232-907F-5CB981445E52} 2013-04-15 00:00:00 125 | 284 2013-08-30 00:00:00 380000 {4B6EBE93-65ED-474B-9210-3115F0979546} 2013-07-16 00:00:00 126 | 284 2013-11-30 00:00:00 454000 {70785E05-776D-4479-B6B5-83D9B1C9D7DD} 2013-10-16 00:00:00 127 | 284 2014-03-01 00:00:00 497000 {D566E989-D212-4B08-BB20-BE7967ECEFAF} 2014-01-15 00:00:00 128 | 285 2013-05-30 00:00:00 132000 {A6B9418A-D891-469E-A2C2-5D3E8E7251FD} 2013-04-15 00:00:00 129 | 285 2013-08-30 00:00:00 40000 {EB5D735C-8BBD-4B6C-A7EB-A006335A5D2E} 2013-07-16 00:00:00 130 | 285 2013-11-30 00:00:00 7000 {F9488F84-7DFE-4073-8DE4-BA2BA1F3A00F} 2013-10-16 00:00:00 131 | 285 2014-03-01 00:00:00 26000 {2C00A4FC-8F81-4B01-8E12-5171E008803B} 2014-01-15 00:00:00 132 | 286 2013-05-30 00:00:00 478000 {03A84ECC-E299-4B61-A634-892399E0A0EC} 2013-04-15 00:00:00 133 | 286 2013-08-30 00:00:00 389000 {34B585BA-DD7E-41E6-AF29-A4AC61EAE320} 2013-07-16 00:00:00 134 | 286 2013-11-30 00:00:00 399000 {5AF006C1-AA62-4303-875F-F248B448297C} 2013-10-16 00:00:00 135 | 286 2014-03-01 00:00:00 421000 {53A0DF58-8B98-4371-97A5-14C1442A3582} 2014-01-15 00:00:00 136 | 287 2012-05-30 00:00:00 93000 {0103899F-618C-4478-90BB-815B20856F35} 2012-04-15 00:00:00 137 | 287 2012-08-30 00:00:00 15000 {F72567DA-8A78-43C7-9ADB-30B1503E6F56} 2012-07-16 00:00:00 138 | 287 2012-11-30 00:00:00 33000 {87A51A0F-3D6D-42D0-98A7-4AD934977417} 2012-10-16 00:00:00 139 | 287 2013-02-28 00:00:00 110000 {6206C73D-958D-44CA-B1C1-5E0C34A3C156} 2013-01-14 00:00:00 140 | 287 2013-05-30 00:00:00 184000 {5FBE0FBE-45FF-42AD-9E04-46D6C5DD24A9} 2013-04-15 00:00:00 141 | 287 2013-08-30 00:00:00 324000 {27DED788-F295-472A-8151-5254A86103E0} 2013-07-16 00:00:00 142 | 287 2013-11-30 00:00:00 116000 {B1382489-B7EF-465F-BC96-06FD27E8F320} 2013-10-16 00:00:00 143 | 287 2014-03-01 00:00:00 1000 {5DB4299A-1AD9-49C6-B024-528C771CAE3F} 2014-01-15 00:00:00 144 | 288 2013-05-30 00:00:00 728000 {0A25496D-5797-44F6-9331-A71D06B0FD63} 2013-04-15 00:00:00 145 | 288 2013-08-30 00:00:00 566000 {C88DAFC0-A293-4A00-98C2-1A530288A113} 2013-07-16 00:00:00 146 | 288 2013-11-30 00:00:00 366000 {A2B99573-AF8A-461A-B554-F489DE2FA266} 2013-10-16 00:00:00 147 | 288 2014-03-01 00:00:00 627000 {15E5EAE2-BD36-4798-A066-BC7594E2930B} 2014-01-15 00:00:00 148 | 289 2012-05-30 00:00:00 1898000 {76D1ED81-97A0-466E-8778-51B19E6B21FA} 2012-04-15 00:00:00 149 | 289 2012-08-30 00:00:00 1262000 {738AC57F-D7A4-42F6-BB6C-0447D877AA13} 2012-07-16 00:00:00 150 | 289 2012-11-30 00:00:00 938000 {9058A255-7745-494B-9A4B-6CEA2D0A3BA7} 2012-10-16 00:00:00 151 | 289 2013-02-28 00:00:00 1279000 {F436E58A-B6E5-4945-BEE1-C80602B7B7A8} 2013-01-14 00:00:00 152 | 289 2013-05-30 00:00:00 1506000 {81EF8BC1-EFF8-4CFF-ADC3-3B76104D9B5F} 2013-04-15 00:00:00 153 | 289 2013-08-30 00:00:00 1419000 {496E25D7-21A1-4185-9FBC-2DB261C8DE25} 2013-07-16 00:00:00 154 | 289 2013-11-30 00:00:00 883000 {CE0B49C6-CED2-46B2-83C4-28F72D04CE5C} 2013-10-16 00:00:00 155 | 289 2014-03-01 00:00:00 1329000 {15BE4C16-782C-40FD-861F-DD85CDEBCA83} 2014-01-15 00:00:00 156 | 290 2012-05-30 00:00:00 593000 {6A02AB77-5938-4EF9-AC8F-F150C4D18853} 2012-04-15 00:00:00 157 | 290 2012-08-30 00:00:00 409000 {3D041BA7-323F-48D5-9E7E-2B65B6AFD846} 2012-07-16 00:00:00 158 | 290 2012-11-30 00:00:00 217000 {AA12DE6F-C835-4876-9AFB-7AE5501DB57E} 2012-10-16 00:00:00 159 | 290 2013-02-28 00:00:00 404000 {C35FB2F4-1E84-4B8F-AF6B-186315CCAC08} 2013-01-14 00:00:00 160 | 290 2013-05-30 00:00:00 1262000 {C637E5F0-1E12-41F6-932E-53714B6961A8} 2013-04-15 00:00:00 161 | 290 2013-08-30 00:00:00 1057000 {59E16B51-71F7-48E4-8A80-359103FE685A} 2013-07-16 00:00:00 162 | 290 2013-11-30 00:00:00 707000 {A6CF1E2A-DA84-407A-9BEC-4AD473708C0B} 2013-10-16 00:00:00 163 | 290 2014-03-01 00:00:00 908000 {00F2F9F8-5158-4436-B134-7E0C462289E5} 2014-01-15 00:00:00 164 | -------------------------------------------------------------------------------- /adventureworks/data/SalesReason.csv: -------------------------------------------------------------------------------- 1 | 1 Price Other 2008-04-30 00:00:00 2 | 2 On Promotion Promotion 2008-04-30 00:00:00 3 | 3 Magazine Advertisement Marketing 2008-04-30 00:00:00 4 | 4 Television Advertisement Marketing 2008-04-30 00:00:00 5 | 5 Manufacturer Other 2008-04-30 00:00:00 6 | 6 Review Other 2008-04-30 00:00:00 7 | 7 Demo Event Marketing 2008-04-30 00:00:00 8 | 8 Sponsorship Marketing 2008-04-30 00:00:00 9 | 9 Quality Other 2008-04-30 00:00:00 10 | 10 Other Other 2008-04-30 00:00:00 11 | -------------------------------------------------------------------------------- /adventureworks/data/SalesTaxRate.csv: -------------------------------------------------------------------------------- 1 | 1 1 1 14 Canadian GST + Alberta Provincial Tax {683DE5DD-521A-47D4-A573-06A3CDB1BC5D} 2008-04-30 00:00:00 2 | 2 57 1 14.25 Canadian GST + Ontario Provincial Tax {05C4FFDB-4F84-4CDF-ABE5-FDF3216EA74E} 2008-04-30 00:00:00 3 | 3 63 1 14.25 Canadian GST + Quebec Provincial Tax {D4EDB557-56D7-403C-B538-4DF5E7302588} 2008-04-30 00:00:00 4 | 4 1 2 7 Canadian GST {F0D76907-B433-453F-B95E-16FCE73B807A} 2008-04-30 00:00:00 5 | 5 57 2 7 Canadian GST {7E0E97A2-878B-476F-A648-05A3DD4450ED} 2008-04-30 00:00:00 6 | 6 63 2 7 Canadian GST {1E285D2C-8AF7-47AA-B06A-762CF4D93ACD} 2008-04-30 00:00:00 7 | 7 7 3 7 Canadian GST {590CCB14-CB20-49BF-8FEE-E0C3ABC4C2B1} 2008-04-30 00:00:00 8 | 8 29 3 7 Canadian GST {A8365F30-78B7-4DBE-8985-F8260560126B} 2008-04-30 00:00:00 9 | 9 31 3 7 Canadian GST {F4FDE24B-7A53-4340-9D10-173E9424864A} 2008-04-30 00:00:00 10 | 10 41 3 7 Canadian GST {383D465B-E1D1-492A-83F3-AB3E9CBF3282} 2008-04-30 00:00:00 11 | 11 45 3 7 Canadian GST {8451909F-8A8D-4789-9F87-16A335D28053} 2008-04-30 00:00:00 12 | 12 49 3 7 Canadian GST {FB7607EE-8F12-41EA-B461-10885C6F1533} 2008-04-30 00:00:00 13 | 13 51 3 7 Canadian GST {06DF529D-EB11-446F-9570-9EE97B8EA1BF} 2008-04-30 00:00:00 14 | 16 69 3 7 Canadian GST {89D447A8-239A-4F31-A529-478821E8F714} 2008-04-30 00:00:00 15 | 17 83 3 7 Canadian GST {3847B431-F939-4E89-83FC-864912E3CFD2} 2008-04-30 00:00:00 16 | 18 6 1 7.75 Arizona State Sales Tax {89DD0E3A-C018-449E-A86B-885ADF684C5C} 2008-04-30 00:00:00 17 | 19 9 1 8.75 California State Sales Tax {90E3090E-DF71-407A-8059-04C3104523AF} 2008-04-30 00:00:00 18 | 20 15 1 8 Florida State Sales Tax {630AE36F-6E76-4A1F-AB25-6342159C80D2} 2008-04-30 00:00:00 19 | 21 30 1 7 Massachusetts State Sales Tax {207C7024-85FE-42CB-BF74-9FE88E2F4E1B} 2008-04-30 00:00:00 20 | 22 35 1 7.25 Michigan State Sales Tax {F9D1A85D-6474-43B5-A7EA-BED59E00439A} 2008-04-30 00:00:00 21 | 23 36 1 6.75 Minnesota State Sales Tax {1753D75F-8357-4497-BC92-543F17BBF514} 2008-04-30 00:00:00 22 | 24 72 1 7.25 Tennessese State Sales Tax {ECBA1BAB-A7A6-4CC2-8D0F-C094A38E5C0E} 2008-04-30 00:00:00 23 | 25 73 1 7.5 Texas State Sales Tax {D50102E1-0150-43F3-93AD-12AB6C1DEB06} 2008-04-30 00:00:00 24 | 26 74 1 5 Utah State Sales Tax {5E6D8621-36AF-40CE-972B-61AAEF0556D8} 2008-04-30 00:00:00 25 | 27 79 1 8.8 Washington State Sales Tax {9C84C0AF-41CD-4670-98BC-5026E188541F} 2008-04-30 00:00:00 26 | 28 77 3 10 Taxable Supply {F53B6A7E-7DA4-49E8-AC09-D57FEFAC64D3} 2008-04-30 00:00:00 27 | 29 20 3 16 Germany Output Tax {78C8A559-4D0F-45B6-B7A3-E11FF9A702F4} 2008-04-30 00:00:00 28 | 30 84 3 19.6 France Output Tax {5446EA04-FA7C-4B02-A157-A05F44BF47B6} 2008-04-30 00:00:00 29 | 31 14 3 17.5 United Kingdom Output Tax {ABD185A9-5367-44E1-8A6E-71D083943F3C} 2008-04-30 00:00:00 30 | -------------------------------------------------------------------------------- /adventureworks/data/SalesTerritory.csv: -------------------------------------------------------------------------------- 1 | 1 Northwest US North America 7887186.7882 3298694.4938 0 0 {43689A10-E30B-497F-B0DE-11DE20267FF7} 2008-04-30 00:00:00 2 | 2 Northeast US North America 2402176.8476 3607148.9371 0 0 {00FB7309-96CC-49E2-8363-0A1BA72486F2} 2008-04-30 00:00:00 3 | 3 Central US North America 3072175.118 3205014.0767 0 0 {DF6E7FD8-1A8D-468C-B103-ED8ADDB452C1} 2008-04-30 00:00:00 4 | 4 Southwest US North America 10510853.8739 5366575.7098 0 0 {DC3E9EA0-7950-4431-9428-99DBCBC33865} 2008-04-30 00:00:00 5 | 5 Southeast US North America 2538667.2515 3925071.4318 0 0 {6DC4165A-5E4C-42D2-809D-4344E0AC75E7} 2008-04-30 00:00:00 6 | 6 Canada CA North America 6771829.1376 5693988.86 0 0 {06B4AF8A-1639-476E-9266-110461D66B00} 2008-04-30 00:00:00 7 | 7 France FR Europe 4772398.3078 2396539.7601 0 0 {BF806804-9B4C-4B07-9D19-706F2E689552} 2008-04-30 00:00:00 8 | 8 Germany DE Europe 3805202.3478 1307949.7917 0 0 {6D2450DB-8159-414F-A917-E73EE91C38A9} 2008-04-30 00:00:00 9 | 9 Australia AU Pacific 5977814.9154 2278548.9776 0 0 {602E612E-DFE9-41D9-B894-27E489747885} 2008-04-30 00:00:00 10 | 10 United Kingdom GB Europe 5012905.3656 1635823.3967 0 0 {05FC7E1F-2DEA-414E-9ECD-09D150516FB5} 2008-04-30 00:00:00 11 | -------------------------------------------------------------------------------- /adventureworks/data/SalesTerritoryHistory.csv: -------------------------------------------------------------------------------- 1 | 275 2 2011-05-31 00:00:00 2012-11-29 00:00:00 {8563CE6A-00FF-47D7-BA4D-3C3E1CDEF531} 2012-11-22 00:00:00 2 | 275 3 2012-11-30 00:00:00 {2F44304C-EE87-4C72-813E-CA75C5F61F4C} 2012-11-23 00:00:00 3 | 276 4 2011-05-31 00:00:00 {64BCB1B3-A793-40BA-9859-D90F78C3F167} 2011-05-24 00:00:00 4 | 277 3 2011-05-31 00:00:00 2012-11-29 00:00:00 {3E9F893D-5142-46C9-A76A-867D1E3D6F90} 2012-11-22 00:00:00 5 | 277 2 2012-11-30 00:00:00 {132E4721-32DD-4A73-B556-1837F3A2B9AE} 2012-11-23 00:00:00 6 | 278 6 2011-05-31 00:00:00 {B7C8F9F5-5FB8-47B3-BE73-1B9A14BDF8B9} 2011-05-24 00:00:00 7 | 279 5 2011-05-31 00:00:00 {57D1CDCF-62CE-499F-8BE8-1BB71C4BB7EF} 2011-05-24 00:00:00 8 | 280 1 2011-05-31 00:00:00 2012-09-29 00:00:00 {FD3F5566-10E2-4960-BE12-0365E5665881} 2012-09-22 00:00:00 9 | 281 4 2011-05-31 00:00:00 {9D8754B2-C320-40DB-A77F-FF5A1BC0F46B} 2011-05-24 00:00:00 10 | 282 6 2011-05-31 00:00:00 2012-05-29 00:00:00 {2C9F5240-D8BF-4F85-897D-6083146DBC4B} 2012-05-22 00:00:00 11 | 282 10 2012-05-30 00:00:00 {92375465-38C6-4C86-ABA1-9838A2969475} 2012-05-23 00:00:00 12 | 283 1 2011-05-31 00:00:00 {009F7660-44A6-4ADF-BD4B-A5D1B79993F5} 2011-05-24 00:00:00 13 | 284 1 2012-09-30 00:00:00 {ED12F921-8023-48EF-84BD-94D942F4C009} 2012-09-23 00:00:00 14 | 286 9 2013-05-30 00:00:00 {D664D989-2BEB-4F2C-A4AA-691018965283} 2013-05-23 00:00:00 15 | 288 8 2013-05-30 00:00:00 {3E1360CB-32E0-4286-8D98-8539F1AB2550} 2013-05-23 00:00:00 16 | 289 6 2012-05-30 00:00:00 {987613ED-33D6-42A6-B992-0B33E9234934} 2012-05-23 00:00:00 17 | 290 7 2012-05-30 00:00:00 {8895E74D-6D38-4140-BBEA-A8136A2F480E} 2012-05-23 00:00:00 18 | -------------------------------------------------------------------------------- /adventureworks/data/ScrapReason.csv: -------------------------------------------------------------------------------- 1 | 1 Brake assembly not as ordered 2008-04-30 00:00:00 2 | 2 Color incorrect 2008-04-30 00:00:00 3 | 3 Gouge in metal 2008-04-30 00:00:00 4 | 4 Drill pattern incorrect 2008-04-30 00:00:00 5 | 5 Drill size too large 2008-04-30 00:00:00 6 | 6 Drill size too small 2008-04-30 00:00:00 7 | 7 Handling damage 2008-04-30 00:00:00 8 | 8 Paint process failed 2008-04-30 00:00:00 9 | 9 Primer process failed 2008-04-30 00:00:00 10 | 10 Seat assembly not as ordered 2008-04-30 00:00:00 11 | 11 Stress test failed 2008-04-30 00:00:00 12 | 12 Thermoform temperature too high 2008-04-30 00:00:00 13 | 13 Thermoform temperature too low 2008-04-30 00:00:00 14 | 14 Trim length too long 2008-04-30 00:00:00 15 | 15 Trim length too short 2008-04-30 00:00:00 16 | 16 Wheel misaligned 2008-04-30 00:00:00 17 | -------------------------------------------------------------------------------- /adventureworks/data/Shift.csv: -------------------------------------------------------------------------------- 1 | 1 Day 07:00:00.0000000 15:00:00.0000000 2008-04-30 00:00:00 2 | 2 Evening 15:00:00.0000000 23:00:00.0000000 2008-04-30 00:00:00 3 | 3 Night 23:00:00.0000000 07:00:00.0000000 2008-04-30 00:00:00 4 | -------------------------------------------------------------------------------- /adventureworks/data/ShipMethod.csv: -------------------------------------------------------------------------------- 1 | 1 XRQ - TRUCK GROUND 3.95 0.99 {6BE756D9-D7BE-4463-8F2C-AE60C710D606} 2008-04-30 00:00:00 2 | 2 ZY - EXPRESS 9.95 1.99 {3455079B-F773-4DC6-8F1E-2A58649C4AB8} 2008-04-30 00:00:00 3 | 3 OVERSEAS - DELUXE 29.95 2.99 {22F4E461-28CF-4ACE-A980-F686CF112EC8} 2008-04-30 00:00:00 4 | 4 OVERNIGHT J-FAST 21.95 1.29 {107E8356-E7A8-463D-B60C-079FFF467F3F} 2008-04-30 00:00:00 5 | 5 CARGO TRANSPORT 5 8.99 1.49 {B166019A-B134-4E76-B957-2B0490C610ED} 2008-04-30 00:00:00 6 | -------------------------------------------------------------------------------- /adventureworks/data/ShoppingCartItem.csv: -------------------------------------------------------------------------------- 1 | 2 14951 3 862 2013-11-09 17:54:07.603000000 2013-11-09 17:54:07.603000000 2 | 4 20621 4 881 2013-11-09 17:54:07.603000000 2013-11-09 17:54:07.603000000 3 | 5 20621 7 874 2013-11-09 17:54:07.603000000 2013-11-09 17:54:07.603000000 4 | -------------------------------------------------------------------------------- /adventureworks/data/SpecialOffer.csv: -------------------------------------------------------------------------------- 1 | 1 No Discount 0 No Discount No Discount 2011-05-01 00:00:00 2014-11-30 00:00:00 0 {0290C4F5-191F-4337-AB6B-0A2DDE03CBF9} 2011-04-01 00:00:00 2 | 2 Volume Discount 11 to 14 0.02 Volume Discount Reseller 2011-05-31 00:00:00 2014-05-30 00:00:00 11 14 {D7542EE7-15DB-4541-985C-5CC27AEF26D6} 2011-05-01 00:00:00 3 | 3 Volume Discount 15 to 24 0.05 Volume Discount Reseller 2011-05-31 00:00:00 2014-05-30 00:00:00 15 24 {4BDBCC01-8CF7-40A9-B643-40EC5B717491} 2011-05-01 00:00:00 4 | 4 Volume Discount 25 to 40 0.1 Volume Discount Reseller 2011-05-31 00:00:00 2014-05-30 00:00:00 25 40 {504B5E85-8F3F-4EBC-9E1D-C1BC5DEA9AA8} 2011-05-01 00:00:00 5 | 5 Volume Discount 41 to 60 0.15 Volume Discount Reseller 2011-05-31 00:00:00 2014-05-30 00:00:00 41 60 {677E1D9D-944F-4E81-90E8-47EB0A82D48C} 2011-05-01 00:00:00 6 | 6 Volume Discount over 60 0.2 Volume Discount Reseller 2011-05-31 00:00:00 2014-05-30 00:00:00 61 {8157F569-4E8D-46B6-9347-5D0F726A9439} 2011-05-01 00:00:00 7 | 7 Mountain-100 Clearance Sale 0.35 Discontinued Product Reseller 2012-04-13 00:00:00 2012-05-29 00:00:00 0 {7DF15BF5-6C05-47E7-80A4-22BD1CE59A72} 2012-03-14 00:00:00 8 | 8 Sport Helmet Discount-2002 0.1 Seasonal Discount Reseller 2012-05-30 00:00:00 2012-06-29 00:00:00 0 {20C5D2CC-A38F-48F8-AC9A-8F15943E52AE} 2012-04-30 00:00:00 9 | 9 Road-650 Overstock 0.3 Excess Inventory Reseller 2012-05-30 00:00:00 2012-07-30 00:00:00 0 {0CF8472B-F9E6-4945-9E09-549D7DDE2198} 2012-04-30 00:00:00 10 | 10 Mountain Tire Sale 0.5 Excess Inventory Customer 2013-05-14 00:00:00 2013-07-29 00:00:00 0 {220444AD-2EF3-4E4C-87E9-3AA6EE39A877} 2013-04-14 00:00:00 11 | 11 Sport Helmet Discount-2003 0.15 Seasonal Discount Reseller 2013-05-30 00:00:00 2013-06-29 00:00:00 0 {E72DAB1D-F44D-448B-9FE2-F259A2F0210D} 2013-04-30 00:00:00 12 | 12 LL Road Frame Sale 0.35 Excess Inventory Reseller 2013-05-30 00:00:00 2013-07-14 00:00:00 0 {C0AF1C89-9722-4235-9248-3FBA4D9E5841} 2013-04-30 00:00:00 13 | 13 Touring-3000 Promotion 0.15 New Product Reseller 2013-05-30 00:00:00 2013-08-29 00:00:00 0 {5061CCE4-E021-45A8-9A75-DFB36CBBCE85} 2013-04-30 00:00:00 14 | 14 Touring-1000 Promotion 0.2 New Product Reseller 2013-05-30 00:00:00 2013-08-29 00:00:00 0 {1AF84A9E-A98C-4BD9-B48F-DC2B8B6B010B} 2013-04-30 00:00:00 15 | 15 Half-Price Pedal Sale 0.5 Seasonal Discount Customer 2013-07-14 00:00:00 2013-08-14 00:00:00 0 {03E3594D-6EBB-46A6-B8EE-A9289C0C2E47} 2013-06-14 00:00:00 16 | 16 Mountain-500 Silver Clearance Sale 0.4 Discontinued Product Reseller 2014-03-31 00:00:00 2014-05-30 00:00:00 0 {EB7CB484-BCCF-4D2D-BF73-521B20014174} 2014-03-01 00:00:00 17 | -------------------------------------------------------------------------------- /adventureworks/data/StateProvince.csv: -------------------------------------------------------------------------------- 1 | 1 AB CA 0 Alberta 6 298C2880-AB1C-4982-A5AD-A36EB4BA0D34 2014-02-08 10:17:21.587000000 2 | 2 AK US 0 Alaska 1 5B7B8462-A888-4E0B-A3E1-7278F8AF107E 2014-02-08 10:17:21.587000000 3 | 3 AL US 0 Alabama 5 41B328BE-21AE-45D0-841D-6F8DD71CE626 2014-02-08 10:17:21.587000000 4 | 4 AR US 0 Arkansas 3 54656A80-06F2-4C70-BA10-247179FC246E 2014-02-08 10:17:21.587000000 5 | 5 AS AS 1 American Samoa 1 255D15E1-9F6E-4CF8-9E5F-6B3858AD9B6A 2014-02-08 10:17:21.587000000 6 | 6 AZ US 0 Arizona 4 FB8BE18E-F441-44F0-A4A9-1D0F204CB701 2014-02-08 10:17:21.587000000 7 | 7 BC CA 0 British Columbia 6 D27FCC6E-BB99-438B-BA86-285CEEB2FA53 2014-02-08 10:17:21.587000000 8 | 8 BY DE 0 Bayern 8 D54E5000-A0DA-46D1-86B0-B8FE16C9F781 2014-02-08 10:17:21.587000000 9 | 9 CA US 0 California 4 3B2FF23C-1C75-40AE-9093-F4EB42263F4E 2014-02-08 10:17:21.587000000 10 | 10 CO US 0 Colorado 3 292DF595-7D3C-41FB-A040-7C184D379FCE 2014-02-08 10:17:21.587000000 11 | 11 CT US 0 Connecticut 2 1E7BB47A-E16B-4968-86FA-45AF0211FA84 2014-02-08 10:17:21.587000000 12 | 12 DC US 0 District of Columbia 2 A1F3C57E-85B3-41E3-88E8-07244CF087DD 2014-02-08 10:17:21.587000000 13 | 13 DE US 0 Delaware 2 7A11AB1D-77C0-4021-9140-8E81F105618E 2014-02-08 10:17:21.587000000 14 | 14 ENG GB 1 England 10 3E3CB3F8-44B9-44D9-A1C3-CBFB11E0A7DA 2014-02-08 10:17:21.587000000 15 | 15 FL US 0 Florida 5 EE8BA90D-B2C3-418E-93DF-20E33F095959 2014-02-08 10:17:21.587000000 16 | 16 FM FM 1 Micronesia 9 3202DA35-AED4-40E2-9EC4-27C17F420170 2014-02-08 10:17:21.587000000 17 | 17 GA US 0 Georgia 5 A6CA20D1-31AC-4771-8994-93DBBDCCE360 2014-02-08 10:17:21.587000000 18 | 18 GU US 0 Guam 4 92B5A04E-26EC-4EDB-8D14-E72E29B14411 2014-02-08 10:17:21.587000000 19 | 19 HE DE 0 Hessen 8 834FC3DF-B60D-4F94-95BD-AEF8A9FB74E8 2014-02-08 10:17:21.587000000 20 | 20 HH DE 0 Hamburg 8 1CC5A134-60D7-40C2-9269-CDA494214ABF 2014-02-08 10:17:21.587000000 21 | 21 HI US 0 Hawaii 1 09CDCCDC-B4B8-44EA-B04F-6EF521E3E720 2014-02-08 10:17:21.587000000 22 | 22 IA US 0 Iowa 3 956A6C02-7D2F-4C9D-B275-8D2C0EF8FD83 2014-02-08 10:17:21.587000000 23 | 23 ID US 0 Idaho 1 628E983A-33C7-4CB4-867F-274EF12B3597 2014-02-08 10:17:21.587000000 24 | 24 IL US 0 Illinois 3 1F9120CF-683A-4132-A12C-98997FADEB26 2014-02-08 10:17:21.587000000 25 | 25 IN US 0 Indiana 2 91F21EF0-C528-4310-BB29-6BA45AE75A17 2014-02-08 10:17:21.587000000 26 | 26 KS US 0 Kansas 3 4ECCC236-56E8-4FF7-B510-BF50E0966046 2014-02-08 10:17:21.587000000 27 | 27 KY US 0 Kentucky 5 810918BC-45DC-4E01-8544-B322A05EC94E 2014-02-08 10:17:21.587000000 28 | 28 LA US 0 Louisiana 3 4E2BC5A5-0C3E-421B-BE18-5D79B4A7C0D0 2014-02-08 10:17:21.587000000 29 | 29 LB CA 0 Labrador 6 9847C998-A7BF-4A66-BBAC-75939B092CC0 2014-02-08 10:17:21.587000000 30 | 30 MA US 0 Massachusetts 2 77D7E754-1B03-4BB3-A4D4-B1A6AC1C968E 2014-02-08 10:17:21.587000000 31 | 31 MB CA 0 Manitoba 6 0FF23B5D-1E18-40F8-A886-9960ED699049 2014-02-08 10:17:21.587000000 32 | 32 MD US 0 Maryland 2 B3D8517D-A857-41E7-A692-A1CB02A5F667 2014-02-08 10:17:21.587000000 33 | 33 ME US 0 Maine 2 B978A102-632B-4345-8918-E0E8F440FC3B 2014-02-08 10:17:21.587000000 34 | 34 MH MH 1 Marshall Islands 9 C5C5A615-E2DD-4FDF-A4A7-0613C6CCAE80 2014-02-08 10:17:21.587000000 35 | 35 MI US 0 Michigan 3 0CB0855B-783A-4701-9D45-597A919BFB23 2014-02-08 10:17:21.587000000 36 | 36 MN US 0 Minnesota 3 553C8DAA-4142-427C-B772-66BEDADEF372 2014-02-08 10:17:21.587000000 37 | 37 MO US 0 Missouri 3 FF5D76AE-0B45-4F32-96F7-AD5B7775E9EC 2014-02-08 10:17:21.587000000 38 | 38 MP MP 1 Northern Mariana Islands 9 ABEBD704-DB65-47F7-A778-528025F7E7F4 2014-02-08 10:17:21.587000000 39 | 39 MS US 0 Mississippi 5 D33F23C7-60BE-4D31-8028-814A6CCA7F37 2014-02-08 10:17:21.587000000 40 | 40 MT US 0 Montana 1 D4FF6E1A-A8E8-4379-A43C-746DBB0D6D13 2014-02-08 10:17:21.587000000 41 | 41 NB CA 0 Brunswick 6 C28C848F-AE86-4859-9E7E-0190D6C22700 2014-02-08 10:17:21.587000000 42 | 42 NC US 0 North Carolina 5 2C1C5211-3388-4DFF-B0FF-DB0B43E4A22D 2014-02-08 10:17:21.587000000 43 | 43 ND US 0 North Dakota 3 1551BEA8-4DEE-477D-858F-45FF7A2FB14F 2014-02-08 10:17:21.587000000 44 | 44 NE US 0 Nebraska 3 2DEA1C82-A684-4D7C-BEA2-4119D9D3AE60 2014-02-08 10:17:21.587000000 45 | 45 NF CA 0 Newfoundland 6 26D01B6D-3726-453F-B1F3-98A332EB3D8D 2014-02-08 10:17:21.587000000 46 | 46 NH US 0 New Hampshire 2 B30C26AE-62E3-499A-80A8-A167275BAEBD 2014-02-08 10:17:21.587000000 47 | 47 NJ US 0 New Jersey 2 7464D0B1-78A7-4F8A-B4CC-375900005F46 2014-02-08 10:17:21.587000000 48 | 48 NM US 0 New Mexico 4 11DEDA26-4733-497F-BAE3-7BED6B076600 2014-02-08 10:17:21.587000000 49 | 49 NS CA 0 Nova Scotia 6 ADF58BA5-269F-4C48-8C7D-6754E4667ACF 2014-02-08 10:17:21.587000000 50 | 50 NSW AU 0 New South Wales 9 9910DD7E-A4C5-4599-86F5-9F581B53A92D 2014-02-08 10:17:21.587000000 51 | 51 NT CA 0 Northwest Territories 6 CCAAC582-EF30-492C-93CE-5F8B3452D531 2014-02-08 10:17:21.587000000 52 | 52 NV US 0 Nevada 1 50E0FBE0-50B7-40EB-A20B-AAAE85A680DD 2014-02-08 10:17:21.587000000 53 | 53 NW DE 0 Nordrhein-Westfalen 8 C385B296-FBB7-44E1-9DED-23B7FBA346F0 2014-02-08 10:17:21.587000000 54 | 54 NY US 0 New York 2 4F83E68D-4C26-4C53-A4B3-46B7F19C6498 2014-02-08 10:17:21.587000000 55 | 55 OH US 0 Ohio 2 6E1792B5-D021-47B1-98FC-9D60F46F3400 2014-02-08 10:17:21.587000000 56 | 56 OK US 0 Oklahoma 3 AA680EBA-B546-4718-8379-963DA0CEA86F 2014-02-08 10:17:21.587000000 57 | 57 ON CA 0 Ontario 6 5528E2CF-AE39-4F65-BD32-FA32C6FF96FA 2014-02-08 10:17:21.587000000 58 | 58 OR US 0 Oregon 1 17EBF52E-94C8-4E7B-9EF3-5B6236763B49 2014-02-08 10:17:21.587000000 59 | 59 PA US 0 Pennsylvania 2 9E1D834C-7076-4546-9F1B-1BD626037250 2014-02-08 10:17:21.587000000 60 | 60 PE CA 0 Prince Edward Island 6 8B3EC300-24F0-42AB-8DCF-60F45F007642 2014-02-08 10:17:21.587000000 61 | 61 PR US 0 Puerto Rico 5 71B87F6C-5C07-4B7F-8D8C-2C5310410579 2014-02-08 10:17:21.587000000 62 | 62 PW PW 1 Palau 9 EFCF1702-2358-40FC-BE8F-DF6D71A7D89A 2014-02-08 10:17:21.587000000 63 | 63 QC CA 0 Quebec 6 FF830158-3466-495F-BFCF-8A1B82A65355 2014-02-08 10:17:21.587000000 64 | 64 QLD AU 0 Queensland 9 152658FA-AD59-4FA0-82A6-F76980F0183F 2014-02-08 10:17:21.587000000 65 | 65 RI US 0 Rhode Island 2 7FC72AB3-646D-475F-A708-544AF3636AA8 2014-02-08 10:17:21.587000000 66 | 66 SA AU 0 South Australia 9 DCAE37CD-FD8D-41FE-90ED-EDAD22B63DC8 2014-02-08 10:17:21.587000000 67 | 67 SC US 0 South Carolina 5 131CF47D-4F64-4A08-AFCB-0A1EE17A8534 2014-02-08 10:17:21.587000000 68 | 68 SD US 0 South Dakota 3 90AAD17F-451F-42A1-9CF8-EC65B0ACB34F 2014-02-08 10:17:21.587000000 69 | 69 SK CA 0 Saskatchewan 6 D44759BA-43E8-42E7-98FA-54B377C734FC 2014-02-08 10:17:21.587000000 70 | 70 SL DE 0 Saarland 8 F555DD9E-A190-4DC4-9433-7FE257AA6E82 2014-02-08 10:17:21.587000000 71 | 71 TAS AU 0 Tasmania 9 2DB59B03-9F19-4D12-ACEF-974016827BE1 2014-02-08 10:17:21.587000000 72 | 72 TN US 0 Tennessee 5 D1B0F98F-514D-42B4-B84B-9C40A8A455D5 2014-02-08 10:17:21.587000000 73 | 73 TX US 0 Texas 4 99C542E0-5D3D-43A6-8D96-AF65A985D6E4 2014-02-08 10:17:21.587000000 74 | 74 UT US 0 Utah 1 FD66BE42-BFEF-4233-942B-E8D79A594AFA 2014-02-08 10:17:21.587000000 75 | 75 VA US 0 Virginia 5 990AA59C-838C-410F-A675-17EB861FA33F 2014-02-08 10:17:21.587000000 76 | 76 VI VI 1 Virgin Islands 5 14F593D3-1500-477D-AC6B-D41B3FAFBE5A 2014-02-08 10:17:21.587000000 77 | 77 VIC AU 0 Victoria 9 6A683928-8F1F-4369-A64A-60979E216824 2014-02-08 10:17:21.587000000 78 | 78 VT US 0 Vermont 2 348687E4-7879-4D74-AFD7-C8511588CFA3 2014-02-08 10:17:21.587000000 79 | 79 WA US 0 Washington 1 16274DF0-6F05-43A6-BC18-AD171017A1EB 2014-02-08 10:17:21.587000000 80 | 80 WI US 0 Wisconsin 3 9D93821E-3ADD-42DE-BD51-81CFA94046FF 2014-02-08 10:17:21.587000000 81 | 81 WV US 0 West Virginia 5 C9CE898F-8E21-4FBF-A70A-06F32D543A18 2014-02-08 10:17:21.587000000 82 | 82 WY US 0 Wyoming 1 778951DC-0475-4054-8CAB-892C8A38174E 2014-02-08 10:17:21.587000000 83 | 83 YT CA 0 Yukon Territory 6 A01F5896-C4B1-4C2A-9F60-56470DD39F82 2014-02-08 10:17:21.587000000 84 | 84 FR FR 1 France 7 092C7063-901E-414B-BC61-0BF7919DA883 2008-04-30 00:00:00 85 | 85 BB DE 0 Brandenburg 8 DD386C06-2BEB-4F18-9A85-C066F1A47EA1 2008-04-30 00:00:00 86 | 86 SN DE 0 Saxony 8 C3E9D0D7-12E7-4395-AC37-11498A3C5E2D 2008-04-30 00:00:00 87 | 87 01 FR 0 Ain 7 F6F7985C-9132-46B5-8963-F99C9F3234DE 2008-04-30 00:00:00 88 | 88 02 FR 0 Aisne 7 1B30C5E7-9BB4-4546-9306-4600CA0E90CA 2008-04-30 00:00:00 89 | 89 03 FR 0 Allier 7 DD59673D-852A-4AAF-9B27-623F54477EC2 2008-04-30 00:00:00 90 | 90 04 FR 0 Alpes-de-Haute Provence 7 458480B4-E4AB-4015-B73A-1B7296F8B8B3 2008-04-30 00:00:00 91 | 91 05 FR 0 Alpes (Haute) 7 0AF69922-9301-4E3E-8592-E7A268A27B7A 2008-04-30 00:00:00 92 | 92 06 FR 0 Alpes-Maritimes 7 1AAA549B-D0D0-4CFE-BE07-8F2858D44505 2008-04-30 00:00:00 93 | 93 07 FR 0 Ardèche 7 7C566B51-1E45-4BFF-98B7-34CB813DE6E1 2008-04-30 00:00:00 94 | 94 08 FR 0 Ardennes 7 91E9286B-E601-4F26-95E4-062865E515BF 2008-04-30 00:00:00 95 | 95 09 FR 0 Ariège 7 FE5A9442-417C-48C3-B582-ED40B7813C2C 2008-04-30 00:00:00 96 | 96 10 FR 0 Aube 7 519D0FB2-FFBF-4B4B-9112-58FEA32D84E6 2008-04-30 00:00:00 97 | 97 11 FR 0 Aude 7 B451CE92-B0F6-47FF-8769-050050432C9C 2008-04-30 00:00:00 98 | 98 12 FR 0 Aveyron 7 79CD2767-A7D9-4BD6-BEEC-D2CDF4DA0AF1 2008-04-30 00:00:00 99 | 99 13 FR 0 Bouches du Rhône 7 32519BD3-40C2-4976-8579-0F1A7D2D3DE4 2008-04-30 00:00:00 100 | 100 14 FR 0 Calvados 7 2BD91456-C8AE-4A5D-9270-A4A446ECCACB 2008-04-30 00:00:00 101 | 101 15 FR 0 Cantal 7 01CEC802-20CE-4F96-B475-2AD263CEA9D0 2008-04-30 00:00:00 102 | 102 16 FR 0 Charente 7 2659C871-80A6-4B8C-B70F-C797D0398BC4 2008-04-30 00:00:00 103 | 103 17 FR 0 Charente-Maritime 7 00723E00-C976-401D-A92B-E582DF3D6E01 2008-04-30 00:00:00 104 | 104 18 FR 0 Cher 7 6ADB6ECE-A89E-4B00-A886-90436ECD9B68 2008-04-30 00:00:00 105 | 105 19 FR 0 Corrèze 7 2363831B-B0BA-4976-92FA-1930817F66C4 2008-04-30 00:00:00 106 | 106 20 FR 0 Corse 7 B424959C-9400-492B-9B4C-9F478B77A02C 2008-04-30 00:00:00 107 | 107 21 FR 0 Côte d'Or 7 6E9C32D8-B47A-444E-818E-54ECCE0B779B 2008-04-30 00:00:00 108 | 108 22 FR 0 Côtes-d'Armor 7 A18C188B-64AC-44F6-9928-EB8FC2B924FD 2008-04-30 00:00:00 109 | 109 23 FR 0 Creuse 7 D745141E-8645-4309-ABAB-76A95A8B0A83 2008-04-30 00:00:00 110 | 110 24 FR 0 Dordogne 7 6EBA51C3-31D2-4376-A4E2-9121B048768F 2008-04-30 00:00:00 111 | 111 25 FR 0 Toubs 7 F0622EC9-4EB7-4019-9B08-FD2ED3F74B9B 2008-04-30 00:00:00 112 | 112 26 FR 0 Drôme 7 BE52295D-D7BD-4DC6-8862-82C0A03DBB30 2008-04-30 00:00:00 113 | 113 27 FR 0 Eure 7 8D04729D-75EF-410E-9D04-A95FA51B4B02 2008-04-30 00:00:00 114 | 114 28 FR 0 Eure et Loir 7 51CC8B1D-A2A1-440B-8105-BF0E6C74D213 2008-04-30 00:00:00 115 | 115 29 FR 0 Finistère 7 F35691E8-878A-4B62-90D8-3DE2FB7FAE1E 2008-04-30 00:00:00 116 | 116 30 FR 0 Gard 7 486709B6-66CA-4778-8DDE-13783AF7F08B 2008-04-30 00:00:00 117 | 117 31 FR 0 Garonne (Haute) 7 D1C5AF23-8E71-4320-845F-D324D2D83011 2008-04-30 00:00:00 118 | 118 32 FR 0 Gers 7 1E387594-EF10-401A-820E-58CC44C71D0C 2008-04-30 00:00:00 119 | 119 33 FR 0 Gironde 7 90B73724-A580-44A6-A1CE-54F98235B83B 2008-04-30 00:00:00 120 | 120 34 FR 0 Hérault 7 AB4408A6-1ACB-4AF4-9B1E-217636D7F3CA 2008-04-30 00:00:00 121 | 121 35 FR 0 Ille et Vilaine 7 DAF07757-B0B3-49E9-AD2A-CB659ED2B2B4 2008-04-30 00:00:00 122 | 122 36 FR 0 Indre 7 AA7107A6-C155-491D-9DF3-48CF033AF366 2008-04-30 00:00:00 123 | 123 37 FR 0 Indre et Loire 7 E8B02FCC-964E-4FDC-AB7E-287F4DF5142B 2008-04-30 00:00:00 124 | 124 38 FR 0 Isère 7 9C594BA5-1A5B-4B65-8EBE-85BF850FE27B 2008-04-30 00:00:00 125 | 125 39 FR 0 Jura 7 2D5E0BDE-F3C4-4887-B89F-DCA00BAB9D63 2008-04-30 00:00:00 126 | 126 40 FR 0 Landes 7 95827758-97C8-4058-B5A5-AFEDFAF4F70F 2008-04-30 00:00:00 127 | 127 41 FR 0 Loir et Cher 7 17EC707A-33F7-4261-86CB-9641C2927172 2008-04-30 00:00:00 128 | 128 42 FR 0 Loire 7 58B4525B-5306-4390-9EE9-48E2D9502C02 2008-04-30 00:00:00 129 | 129 43 FR 0 Loire (Haute) 7 F18BA5B9-2168-4872-9C80-E7F097AB88E0 2008-04-30 00:00:00 130 | 130 44 FR 0 Loire Atlantique 7 A87B21F6-4C5C-4735-8615-BBA99A16ACE2 2008-04-30 00:00:00 131 | 131 45 FR 0 Loiret 7 CC67B8C0-BAB9-4978-8B61-FA985AE094E1 2008-04-30 00:00:00 132 | 132 46 FR 0 Lot 7 FE593326-B0F0-433D-A060-7AA2D37D9CEA 2008-04-30 00:00:00 133 | 133 47 FR 0 Lot et Garonne 7 4FF85D44-E027-4341-A3B2-B9BA564547F8 2008-04-30 00:00:00 134 | 134 48 FR 0 Lozère 7 B862BBAB-AEF6-4C4D-881F-4207254983C7 2008-04-30 00:00:00 135 | 135 49 FR 0 Maine et Loire 7 EF2487E7-0965-4ABE-A06C-84CEF8964386 2008-04-30 00:00:00 136 | 136 50 FR 0 Manche 7 8139979C-2881-4668-9A8E-A45154F809EA 2008-04-30 00:00:00 137 | 137 51 FR 0 Marne 7 41B9CB24-50B3-43F7-9E0E-79D901BD45D0 2008-04-30 00:00:00 138 | 138 52 FR 0 Marne (Haute) 7 BABCE9D8-A133-4195-875F-1E65E48844C9 2008-04-30 00:00:00 139 | 139 53 FR 0 Mayenne 7 59593A57-5319-43B4-AD3B-78ABCB6C12F2 2008-04-30 00:00:00 140 | 140 54 FR 0 Meurthe et Moselle 7 8CE54442-ACF1-404D-AE17-540E4DA781AF 2008-04-30 00:00:00 141 | 141 55 FR 0 Meuse 7 CA5ED35C-0542-43ED-8F15-A5E1C9C9AB90 2008-04-30 00:00:00 142 | 142 56 FR 0 Morbihan 7 A1B147FE-14C8-4CB2-9902-C437FF44CE7B 2008-04-30 00:00:00 143 | 143 57 FR 0 Moselle 7 23EC96B5-21EE-4769-BE59-812EAE26A216 2008-04-30 00:00:00 144 | 144 58 FR 0 Nièvre 7 C6088B46-64B3-492C-A4CD-F81B93F351A1 2008-04-30 00:00:00 145 | 145 59 FR 0 Nord 7 70943DE7-D74A-4DE7-8DCF-3FEA66EFCFDB 2008-04-30 00:00:00 146 | 146 60 FR 0 Oise 7 E15A21BC-1BDB-413E-93FB-0A81D6869068 2008-04-30 00:00:00 147 | 147 61 FR 0 Orne 7 24753BB2-E1F6-4D1F-B659-81F2AD4A9458 2008-04-30 00:00:00 148 | 148 62 FR 0 Pas de Calais 7 72450195-ED1E-4A21-8CC5-5AAC8EB9327A 2008-04-30 00:00:00 149 | 149 63 FR 0 Puy de Dôme 7 E222D130-0D35-4C6A-9A98-024A758FC677 2008-04-30 00:00:00 150 | 150 64 FR 0 Pyrénées Atlantiques 7 F3B411D2-9E8C-4D53-AB5B-06016A44356B 2008-04-30 00:00:00 151 | 151 65 FR 0 Pyrénées (Hautes) 7 B5DCA57F-0714-4F42-81AF-0C5C9ECA01F9 2008-04-30 00:00:00 152 | 152 66 FR 0 Pyrénées Orientales 7 0374FD8E-3A19-4A9B-BB9E-DB5871503AFE 2008-04-30 00:00:00 153 | 153 67 FR 0 Rhin (Bas) 7 196859B3-40C3-4D54-ABBD-EF6AA8386DF9 2008-04-30 00:00:00 154 | 154 68 FR 0 Rhin (Haut) 7 1192F8BF-CCA6-4CE2-BD08-2DD6E80B6CF6 2008-04-30 00:00:00 155 | 155 69 FR 0 Rhône 7 D4F170D0-FF06-4A97-8DE3-9F377272AA74 2008-04-30 00:00:00 156 | 156 70 FR 0 Saône (Haute) 7 546FEB94-3737-4698-BA0D-DC051C088939 2008-04-30 00:00:00 157 | 157 71 FR 0 Saône et Loire 7 5D86860E-614E-4940-9CC4-549077196D5A 2008-04-30 00:00:00 158 | 158 72 FR 0 Sarthe 7 0E32D0E5-E9C9-404D-B500-180BEC6637D8 2008-04-30 00:00:00 159 | 159 73 FR 0 Savoie 7 F8931EDE-4941-420B-8D87-11C8514BC080 2008-04-30 00:00:00 160 | 160 74 FR 0 Savoie Haute 7 126AB534-FF0B-474E-AEFE-1CAA53C9C3A2 2008-04-30 00:00:00 161 | 161 75 FR 0 Seine (Paris) 7 E117A6FC-24B9-438B-86FF-8455107F4E9F 2008-04-30 00:00:00 162 | 162 76 FR 0 Seine Maritime 7 46070A8D-2B94-4A05-A29B-189F7FFA7C56 2008-04-30 00:00:00 163 | 163 77 FR 0 Seine et Marne 7 FD1511DB-0A30-4B14-B60E-D2247473415E 2008-04-30 00:00:00 164 | 164 78 FR 0 Yveline 7 A111EB2E-3217-485A-A510-673C0843C615 2008-04-30 00:00:00 165 | 165 79 FR 0 Sèvres (Deux) 7 38E0A3D9-E813-454C-BE54-6F019D687ECB 2008-04-30 00:00:00 166 | 166 80 FR 0 Somme 7 8366DE5D-5615-4168-9104-4379F9E59090 2008-04-30 00:00:00 167 | 167 81 FR 0 Tarne 7 406B4FD5-E4A8-4DB7-838B-8A33A617F242 2008-04-30 00:00:00 168 | 168 82 FR 0 Tarne et Garonne 7 544F6F15-6359-45CA-B271-2A310E6CF151 2008-04-30 00:00:00 169 | 169 83 FR 0 Var 7 08A673DC-6056-45B2-903C-976E8B6BD0B9 2008-04-30 00:00:00 170 | 170 84 FR 0 Vaucluse 7 29691831-ACED-46F8-BAD2-A8C914B4F9F4 2008-04-30 00:00:00 171 | 171 85 FR 0 La Vendée 7 2A5A84C2-30B0-4791-8DA1-25E3DDE497D8 2008-04-30 00:00:00 172 | 172 86 FR 0 Vienne 7 78A90D81-396C-431A-AA14-0751F2644B25 2008-04-30 00:00:00 173 | 173 87 FR 0 Vienne (Haute) 7 AB61F91C-50E3-45C3-A9D2-140940CECBF0 2008-04-30 00:00:00 174 | 174 88 FR 0 Vosges 7 5A5CB4C2-72A1-40B7-A779-5A36B76E3942 2008-04-30 00:00:00 175 | 175 89 FR 0 Yonne 7 3F8DE296-BEE5-4980-B81F-EBFCC1B16790 2008-04-30 00:00:00 176 | 176 90 FR 0 Belford (Territoire de) 7 76ADCAAA-4EB2-4AD8-893B-EF9F3CB5C6FB 2008-04-30 00:00:00 177 | 177 91 FR 0 Essonne 7 35894A81-C267-4511-A706-99EA2C08181F 2008-04-30 00:00:00 178 | 178 92 FR 0 Hauts de Seine 7 F8FD6D62-A913-4F10-9E42-D348EDA02BD9 2008-04-30 00:00:00 179 | 179 93 FR 0 Seine Saint Denis 7 466C15BC-46EC-427D-99DB-98C380634527 2008-04-30 00:00:00 180 | 180 94 FR 0 Val de Marne 7 FE0A2A02-FE1D-4B79-B970-167EC7F724FC 2008-04-30 00:00:00 181 | 181 95 FR 0 Val d'Oise 7 E7580D97-910B-42B4-B4E2-72C8733889E0 2008-04-30 00:00:00 182 | -------------------------------------------------------------------------------- /adventureworks/data/UnitMeasure.csv: -------------------------------------------------------------------------------- 1 | BOX Boxes 2008-04-30 00:00:00 2 | BTL Bottle 2008-04-30 00:00:00 3 | C Celsius 2008-04-30 00:00:00 4 | CAN Canister 2008-04-30 00:00:00 5 | CAR Carton 2008-04-30 00:00:00 6 | CBM Cubic meters 2008-04-30 00:00:00 7 | CCM Cubic centimeter 2008-04-30 00:00:00 8 | CDM Cubic decimeter 2008-04-30 00:00:00 9 | CM Centimeter 2008-04-30 00:00:00 10 | CM2 Square centimeter 2008-04-30 00:00:00 11 | CR Crate 2008-04-30 00:00:00 12 | CS Case 2008-04-30 00:00:00 13 | CTN Container 2008-04-30 00:00:00 14 | DM Decimeter 2008-04-30 00:00:00 15 | DZ Dozen 2008-04-30 00:00:00 16 | EA Each 2008-04-30 00:00:00 17 | FT3 Cubic foot 2008-04-30 00:00:00 18 | G Gram 2008-04-30 00:00:00 19 | GAL Gallon 2008-04-30 00:00:00 20 | IN Inch 2008-04-30 00:00:00 21 | KG Kilogram 2008-04-30 00:00:00 22 | KGV Kilogram/cubic meter 2008-04-30 00:00:00 23 | KM Kilometer 2008-04-30 00:00:00 24 | KT Kiloton 2008-04-30 00:00:00 25 | L Liter 2008-04-30 00:00:00 26 | LB US pound 2008-04-30 00:00:00 27 | M Meter 2008-04-30 00:00:00 28 | M2 Square meter 2008-04-30 00:00:00 29 | M3 Cubic meter 2008-04-30 00:00:00 30 | MG Milligram 2008-04-30 00:00:00 31 | ML Milliliter 2008-04-30 00:00:00 32 | MM Millimeter 2008-04-30 00:00:00 33 | OZ Ounces 2008-04-30 00:00:00 34 | PAK Pack 2008-04-30 00:00:00 35 | PAL Pallet 2008-04-30 00:00:00 36 | PC Piece 2008-04-30 00:00:00 37 | PCT Percentage 2008-04-30 00:00:00 38 | PT Pint, US liquid 2008-04-30 00:00:00 39 | -------------------------------------------------------------------------------- /adventureworks/data/Vendor.csv: -------------------------------------------------------------------------------- 1 | 1492 AUSTRALI0001 Australia Bike Retailer 1 1 1 2011-12-23 00:00:00 2 | 1494 ALLENSON0001 Allenson Cycles 2 1 1 2011-04-25 00:00:00 3 | 1496 ADVANCED0001 Advanced Bicycles 1 1 1 2011-04-25 00:00:00 4 | 1498 TRIKES0001 Trikes, Inc. 2 1 1 2012-02-03 00:00:00 5 | 1500 MORGANB0001 Morgan Bike Accessories 1 1 1 2012-02-02 00:00:00 6 | 1502 CYCLING0001 Cycling Master 1 1 1 2011-12-24 00:00:00 7 | 1504 CHICAGO0002 Chicago Rent-All 2 1 1 2011-12-24 00:00:00 8 | 1506 GREENWOO0001 Greenwood Athletic Company 1 1 1 2012-01-25 00:00:00 9 | 1508 COMPETE0001 Compete Enterprises, Inc 1 1 1 2011-12-24 00:00:00 10 | 1510 INTERNAT0001 International 1 1 1 2012-01-25 00:00:00 11 | 1512 LIGHTSP0001 Light Speed 1 1 1 2011-12-23 00:00:00 12 | 1514 TRAINING0001 Training Systems 1 1 1 2012-02-03 00:00:00 13 | 1516 GARDNER0001 Gardner Touring Cycles 1 0 0 2012-01-25 00:00:00 14 | 1518 INTERNAT0004 International Trek Center 1 1 1 2011-12-24 00:00:00 15 | 1520 G&KBI0001 G & K Bicycle Corp. 1 1 1 2011-12-24 00:00:00 16 | 1522 FIRSTNA0001 First National Sport Co. 1 1 1 2012-01-25 00:00:00 17 | 1524 RECREATI0001 Recreation Place 4 1 1 2012-02-02 00:00:00 18 | 1526 INTERNAT0002 International Bicycles 1 1 1 2012-01-25 00:00:00 19 | 1528 IMAGEMA0001 Image Makers Bike Center 1 1 1 2012-02-03 00:00:00 20 | 1530 COMFORT0001 Comfort Road Bicycles 1 1 1 2011-12-24 00:00:00 21 | 1532 KNOPFLER0001 Knopfler Cycles 1 1 1 2012-01-29 00:00:00 22 | 1534 READYRE0001 Ready Rentals 1 1 1 2012-02-02 00:00:00 23 | 1536 CRUGERB0001 Cruger Bike Company 1 1 1 2012-01-17 00:00:00 24 | 1538 VISTARO0001 Vista Road Bikes 3 1 1 2012-02-18 00:00:00 25 | 1540 BERGERON0001 Bergeron Off-Roads 1 1 1 2011-12-23 00:00:00 26 | 1542 HILLSBI0001 Hill's Bicycle Service 1 1 1 2012-01-25 00:00:00 27 | 1544 CIRCUIT0001 Circuit Cycles 1 0 0 2011-12-24 00:00:00 28 | 1546 GREENLA0001 Green Lake Bike Company 1 1 1 2012-01-29 00:00:00 29 | 1548 CONSUMER0001 Consumer Cycles 3 1 1 2011-12-24 00:00:00 30 | 1550 MERITBI0001 Merit Bikes 5 1 1 2012-02-03 00:00:00 31 | 1552 SPORTSH0001 Sports House 1 1 1 2012-01-25 00:00:00 32 | 1554 WESTAMER0001 WestAmerica Bicycle Co. 1 0 1 2012-02-18 00:00:00 33 | 1556 WESTJUN0001 West Junction Cycles 1 1 1 2012-02-18 00:00:00 34 | 1558 MARSH0001 Marsh 1 1 1 2012-02-03 00:00:00 35 | 1560 CAPITAL0001 Capital Road Cycles 1 1 1 2011-12-24 00:00:00 36 | 1562 NORSTAN0001 Norstan Bike Hut 1 1 1 2012-02-02 00:00:00 37 | 1564 ILLINOIS0001 Illinois Trek & Clothing 1 1 1 2011-12-23 00:00:00 38 | 1566 BURNETT0001 Burnett Road Warriors 1 1 1 2011-12-23 00:00:00 39 | 1568 CUSTOMF0001 Custom Frames, Inc. 2 1 1 2012-01-17 00:00:00 40 | 1570 FIRSTRA0001 First Rate Bicycles 1 1 1 2012-01-25 00:00:00 41 | 1572 NATIONAL0001 National Bike Association 1 1 1 2012-02-02 00:00:00 42 | 1574 JEFFSSP0001 Jeff's Sporting Goods 1 1 1 2011-12-24 00:00:00 43 | 1576 SUPERIOR0001 Superior Bicycles 1 1 1 2012-02-03 00:00:00 44 | 1578 VISIONC0001 Vision Cycles, Inc. 1 0 1 2012-02-18 00:00:00 45 | 1580 LITWARE0001 Litware, Inc. 1 1 1 www.litwareinc.com/ 2011-04-25 00:00:00 46 | 1582 INNERCI0001 Inner City Bikes 3 1 1 2012-01-25 00:00:00 47 | 1584 TREYRE0001 Trey Research 3 1 1 www.treyresearch.net/ 2012-01-25 00:00:00 48 | 1586 MITCHELL0001 Mitchell Sports 1 1 1 2012-02-02 00:00:00 49 | 1588 SIGNATUR0001 Signature Cycles 2 1 1 2012-02-02 00:00:00 50 | 1590 SUPERSAL0001 SUPERSALES INC. 1 1 1 2012-02-03 00:00:00 51 | 1592 LINDELL0001 Lindell 1 1 1 2012-01-29 00:00:00 52 | 1594 FITNESS0001 Fitness Association 1 1 1 2012-02-03 00:00:00 53 | 1596 ADATUM0001 A. Datum Corporation 1 1 1 www.adatum.com/ 2011-12-24 00:00:00 54 | 1598 CONTINEN0001 Continental Pro Cycles 3 1 1 2011-12-24 00:00:00 55 | 1600 FEDERAL0001 Federal Sport 3 1 1 2012-01-25 00:00:00 56 | 1602 BEAUMONT0001 Beaumont Bikes 1 0 1 2011-12-23 00:00:00 57 | 1604 BIKESAT0001 Bike Satellite Inc. 1 0 1 2011-12-23 00:00:00 58 | 1606 NORTHW0001 Northwind Traders 1 1 1 www.northwindtraders.com/ 2012-01-25 00:00:00 59 | 1608 SPORTPL0001 Sport Playground 1 1 1 2012-02-02 00:00:00 60 | 1610 HYBRIDB0001 Hybrid Bicycle Center 1 1 1 2012-01-25 00:00:00 61 | 1612 MIDWEST0001 Midwest Sport, Inc. 1 1 1 2012-02-02 00:00:00 62 | 1614 RELIANCE0001 Reliance Fitness, Inc. 2 0 0 2012-02-02 00:00:00 63 | 1616 AURORAB0001 Aurora Bike Center 1 1 1 2011-05-09 00:00:00 64 | 1618 METROSP0001 Metro Sport Equipment 1 1 1 2012-01-29 00:00:00 65 | 1620 LAKEWOOD0001 Lakewood Bicycle 1 1 1 2012-01-29 00:00:00 66 | 1622 SPEEDCO0001 Speed Corporation 1 1 1 2012-02-02 00:00:00 67 | 1624 COMPETIT0001 Competition Bike Training Systems 1 1 1 2011-12-24 00:00:00 68 | 1626 HILLBIC0001 Hill Bicycle Center 1 1 1 2012-01-25 00:00:00 69 | 1628 BICYCLE0001 Bicycle Specialists 1 1 1 2011-12-23 00:00:00 70 | 1630 INDIANA0001 Indiana Bicycle Center 1 1 1 2012-02-02 00:00:00 71 | 1632 SPORTFA0001 Sport Fan Co. 1 1 1 2012-02-02 00:00:00 72 | 1634 GMASKI0001 GMA Ski & Bike 1 1 1 2011-05-09 00:00:00 73 | 1636 INTEGRAT0001 Integrated Sport Products 1 1 1 2012-01-17 00:00:00 74 | 1638 INLINEA0001 Inline Accessories 1 1 1 2012-01-25 00:00:00 75 | 1640 LEGENDC0001 Legend Cycles 1 1 1 2012-02-02 00:00:00 76 | 1642 ELECTRON0001 Electronic Bike Co. 1 1 1 2012-02-02 00:00:00 77 | 1644 INTERNAT0003 International Sport Assoc. 1 1 1 2012-01-25 00:00:00 78 | 1646 ELECTRON0002 Electronic Bike Repair & Supplies 1 1 1 2012-01-17 00:00:00 79 | 1648 WIDEWOR0001 Wide World Importers 2 1 1 www.wideworldimporters.com/ 2012-01-17 00:00:00 80 | 1650 AMERICAN0001 American Bicycles and Wheels 1 1 1 2011-04-25 00:00:00 81 | 1652 VICTORY0001 Victory Bikes 5 1 1 2012-02-18 00:00:00 82 | 1654 AMERICAN0002 American Bikes 1 1 1 2011-05-09 00:00:00 83 | 1656 MOUNTAIN0001 Mountain Works 1 0 1 2012-02-02 00:00:00 84 | 1658 CROWLEY0001 Crowley Sport 1 1 1 2011-12-24 00:00:00 85 | 1660 MAGICCY0001 Magic Cycles 1 1 1 2012-01-25 00:00:00 86 | 1662 NORTHERN0001 Northern Bike Travel 3 1 1 2012-02-02 00:00:00 87 | 1664 ANDERSON0001 Anderson's Custom Bikes 1 1 1 2011-05-09 00:00:00 88 | 1666 LEAFRIV0001 Leaf River Terrain 1 0 1 2012-01-29 00:00:00 89 | 1668 TOURING0001 Touring Equipment Center 1 1 1 2012-02-03 00:00:00 90 | 1670 HOLIDAY0001 Holiday Skate & Cycle 1 1 1 2012-02-03 00:00:00 91 | 1672 EXPERTB0001 Expert Bike Co 1 1 1 2012-01-25 00:00:00 92 | 1674 VARSITY0001 Varsity Sport Co. 1 1 1 2012-02-18 00:00:00 93 | 1676 TEAMATH0001 Team Athletic Co. 1 1 1 2012-02-03 00:00:00 94 | 1678 PROSE0001 Proseware, Inc. 4 0 0 www.proseware.com/ 2011-05-09 00:00:00 95 | 1680 JACKSON0001 Jackson Authority 1 1 1 2012-01-25 00:00:00 96 | 1682 PREMIER0001 Premier Sport, Inc. 1 1 1 2012-02-02 00:00:00 97 | 1684 PROFESSI0001 Professional Athletic Consultants 1 1 1 2012-02-02 00:00:00 98 | 1686 PROSPOR0001 Pro Sport Industries 1 0 1 2012-02-02 00:00:00 99 | 1688 WOODFIT0001 Wood Fitness 1 1 1 2012-02-18 00:00:00 100 | 1690 BLOOMING0001 Bloomington Multisport 1 1 1 2011-12-23 00:00:00 101 | 1692 CARLSON0001 Carlson Specialties 2 1 1 2011-12-24 00:00:00 102 | 1694 COMPETE0002 Compete, Inc. 1 1 1 2011-12-24 00:00:00 103 | 1696 CHICAGO0001 Chicago City Saddles 1 1 1 2011-12-24 00:00:00 104 | 1698 BUSINESS0001 Business Equipment Center 2 1 1 2011-12-23 00:00:00 105 | -------------------------------------------------------------------------------- /chinook-1.4/Chinook_PostgreSql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morenoh149/postgresDBSamples/2bdc9539762092912655e1b82b7433d3151389dc/chinook-1.4/Chinook_PostgreSql.sql -------------------------------------------------------------------------------- /chinook-1.4/LICENSE.md: -------------------------------------------------------------------------------- 1 | Chinook Database 2 | -------------------------------------- 3 | Copyright (c) 2008-2017 Luis Rocha 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated 6 | documentation files (the "Software"), to deal in the Software without restriction, including without limitation 7 | the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and 8 | to permit persons to whom the Software is furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 11 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 12 | -------------------------------------------------------------------------------- /chinook-1.4/datamodel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morenoh149/postgresDBSamples/2bdc9539762092912655e1b82b7433d3151389dc/chinook-1.4/datamodel.png -------------------------------------------------------------------------------- /chinook-1.4/readme.md: -------------------------------------------------------------------------------- 1 | Chinook Database 1.4 2 | ============ 3 | 4 | https://github.com/lerocha/chinook-database 5 | 6 | PostgreSQL utf8 port of the Chinook Database 7 | 8 | INSTALL 9 | ------- 10 | 11 | ``` 12 | createdb -E UTF8 chinook 13 | psql -f Chinook_PostgreSql_utf8.sql -d chinook 14 | ``` 15 | 16 | DATA MODEL 17 | ----------- 18 | 19 | ![](datamodel.png) 20 | 21 | NOTES 22 | ------- 23 | 24 | The original sql file was converted to utf8 like so 25 | ```` 26 | iconv -f ISO-8859-1 -t UTF-8 Chinook_PostgreSql.sql > Chinook_PostgreSql_utf8.sql 27 | ``` 28 | -------------------------------------------------------------------------------- /dellstore2-normal-1.0/LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 2, June 1991 3 | 4 | Copyright (C) 1989, 1991 Free Software Foundation, Inc. 5 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA 6 | Everyone is permitted to copy and distribute verbatim copies 7 | of this license document, but changing it is not allowed. 8 | 9 | Preamble 10 | 11 | The licenses for most software are designed to take away your 12 | freedom to share and change it. By contrast, the GNU General Public 13 | License is intended to guarantee your freedom to share and change free 14 | software--to make sure the software is free for all its users. This 15 | General Public License applies to most of the Free Software 16 | Foundation's software and to any other program whose authors commit to 17 | using it. (Some other Free Software Foundation software is covered by 18 | the GNU Library General Public License instead.) You can apply it to 19 | your programs, too. 20 | 21 | When we speak of free software, we are referring to freedom, not 22 | price. Our General Public Licenses are designed to make sure that you 23 | have the freedom to distribute copies of free software (and charge for 24 | this service if you wish), that you receive source code or can get it 25 | if you want it, that you can change the software or use pieces of it 26 | in new free programs; and that you know you can do these things. 27 | 28 | To protect your rights, we need to make restrictions that forbid 29 | anyone to deny you these rights or to ask you to surrender the rights. 30 | These restrictions translate to certain responsibilities for you if you 31 | distribute copies of the software, or if you modify it. 32 | 33 | For example, if you distribute copies of such a program, whether 34 | gratis or for a fee, you must give the recipients all the rights that 35 | you have. You must make sure that they, too, receive or can get the 36 | source code. And you must show them these terms so they know their 37 | rights. 38 | 39 | We protect your rights with two steps: (1) copyright the software, and 40 | (2) offer you this license which gives you legal permission to copy, 41 | distribute and/or modify the software. 42 | 43 | Also, for each author's protection and ours, we want to make certain 44 | that everyone understands that there is no warranty for this free 45 | software. If the software is modified by someone else and passed on, we 46 | want its recipients to know that what they have is not the original, so 47 | that any problems introduced by others will not reflect on the original 48 | authors' reputations. 49 | 50 | Finally, any free program is threatened constantly by software 51 | patents. We wish to avoid the danger that redistributors of a free 52 | program will individually obtain patent licenses, in effect making the 53 | program proprietary. To prevent this, we have made it clear that any 54 | patent must be licensed for everyone's free use or not licensed at all. 55 | 56 | The precise terms and conditions for copying, distribution and 57 | modification follow. 58 | 59 | GNU GENERAL PUBLIC LICENSE 60 | TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 61 | 62 | 0. This License applies to any program or other work which contains 63 | a notice placed by the copyright holder saying it may be distributed 64 | under the terms of this General Public License. The "Program", below, 65 | refers to any such program or work, and a "work based on the Program" 66 | means either the Program or any derivative work under copyright law: 67 | that is to say, a work containing the Program or a portion of it, 68 | either verbatim or with modifications and/or translated into another 69 | language. (Hereinafter, translation is included without limitation in 70 | the term "modification".) Each licensee is addressed as "you". 71 | 72 | Activities other than copying, distribution and modification are not 73 | covered by this License; they are outside its scope. The act of 74 | running the Program is not restricted, and the output from the Program 75 | is covered only if its contents constitute a work based on the 76 | Program (independent of having been made by running the Program). 77 | Whether that is true depends on what the Program does. 78 | 79 | 1. You may copy and distribute verbatim copies of the Program's 80 | source code as you receive it, in any medium, provided that you 81 | conspicuously and appropriately publish on each copy an appropriate 82 | copyright notice and disclaimer of warranty; keep intact all the 83 | notices that refer to this License and to the absence of any warranty; 84 | and give any other recipients of the Program a copy of this License 85 | along with the Program. 86 | 87 | You may charge a fee for the physical act of transferring a copy, and 88 | you may at your option offer warranty protection in exchange for a fee. 89 | 90 | 2. You may modify your copy or copies of the Program or any portion 91 | of it, thus forming a work based on the Program, and copy and 92 | distribute such modifications or work under the terms of Section 1 93 | above, provided that you also meet all of these conditions: 94 | 95 | a) You must cause the modified files to carry prominent notices 96 | stating that you changed the files and the date of any change. 97 | 98 | b) You must cause any work that you distribute or publish, that in 99 | whole or in part contains or is derived from the Program or any 100 | part thereof, to be licensed as a whole at no charge to all third 101 | parties under the terms of this License. 102 | 103 | c) If the modified program normally reads commands interactively 104 | when run, you must cause it, when started running for such 105 | interactive use in the most ordinary way, to print or display an 106 | announcement including an appropriate copyright notice and a 107 | notice that there is no warranty (or else, saying that you provide 108 | a warranty) and that users may redistribute the program under 109 | these conditions, and telling the user how to view a copy of this 110 | License. (Exception: if the Program itself is interactive but 111 | does not normally print such an announcement, your work based on 112 | the Program is not required to print an announcement.) 113 | 114 | These requirements apply to the modified work as a whole. If 115 | identifiable sections of that work are not derived from the Program, 116 | and can be reasonably considered independent and separate works in 117 | themselves, then this License, and its terms, do not apply to those 118 | sections when you distribute them as separate works. But when you 119 | distribute the same sections as part of a whole which is a work based 120 | on the Program, the distribution of the whole must be on the terms of 121 | this License, whose permissions for other licensees extend to the 122 | entire whole, and thus to each and every part regardless of who wrote it. 123 | 124 | Thus, it is not the intent of this section to claim rights or contest 125 | your rights to work written entirely by you; rather, the intent is to 126 | exercise the right to control the distribution of derivative or 127 | collective works based on the Program. 128 | 129 | In addition, mere aggregation of another work not based on the Program 130 | with the Program (or with a work based on the Program) on a volume of 131 | a storage or distribution medium does not bring the other work under 132 | the scope of this License. 133 | 134 | 3. You may copy and distribute the Program (or a work based on it, 135 | under Section 2) in object code or executable form under the terms of 136 | Sections 1 and 2 above provided that you also do one of the following: 137 | 138 | a) Accompany it with the complete corresponding machine-readable 139 | source code, which must be distributed under the terms of Sections 140 | 1 and 2 above on a medium customarily used for software interchange; or, 141 | 142 | b) Accompany it with a written offer, valid for at least three 143 | years, to give any third party, for a charge no more than your 144 | cost of physically performing source distribution, a complete 145 | machine-readable copy of the corresponding source code, to be 146 | distributed under the terms of Sections 1 and 2 above on a medium 147 | customarily used for software interchange; or, 148 | 149 | c) Accompany it with the information you received as to the offer 150 | to distribute corresponding source code. (This alternative is 151 | allowed only for noncommercial distribution and only if you 152 | received the program in object code or executable form with such 153 | an offer, in accord with Subsection b above.) 154 | 155 | The source code for a work means the preferred form of the work for 156 | making modifications to it. For an executable work, complete source 157 | code means all the source code for all modules it contains, plus any 158 | associated interface definition files, plus the scripts used to 159 | control compilation and installation of the executable. However, as a 160 | special exception, the source code distributed need not include 161 | anything that is normally distributed (in either source or binary 162 | form) with the major components (compiler, kernel, and so on) of the 163 | operating system on which the executable runs, unless that component 164 | itself accompanies the executable. 165 | 166 | If distribution of executable or object code is made by offering 167 | access to copy from a designated place, then offering equivalent 168 | access to copy the source code from the same place counts as 169 | distribution of the source code, even though third parties are not 170 | compelled to copy the source along with the object code. 171 | 172 | 4. You may not copy, modify, sublicense, or distribute the Program 173 | except as expressly provided under this License. Any attempt 174 | otherwise to copy, modify, sublicense or distribute the Program is 175 | void, and will automatically terminate your rights under this License. 176 | However, parties who have received copies, or rights, from you under 177 | this License will not have their licenses terminated so long as such 178 | parties remain in full compliance. 179 | 180 | 5. You are not required to accept this License, since you have not 181 | signed it. However, nothing else grants you permission to modify or 182 | distribute the Program or its derivative works. These actions are 183 | prohibited by law if you do not accept this License. Therefore, by 184 | modifying or distributing the Program (or any work based on the 185 | Program), you indicate your acceptance of this License to do so, and 186 | all its terms and conditions for copying, distributing or modifying 187 | the Program or works based on it. 188 | 189 | 6. Each time you redistribute the Program (or any work based on the 190 | Program), the recipient automatically receives a license from the 191 | original licensor to copy, distribute or modify the Program subject to 192 | these terms and conditions. You may not impose any further 193 | restrictions on the recipients' exercise of the rights granted herein. 194 | You are not responsible for enforcing compliance by third parties to 195 | this License. 196 | 197 | 7. If, as a consequence of a court judgment or allegation of patent 198 | infringement or for any other reason (not limited to patent issues), 199 | conditions are imposed on you (whether by court order, agreement or 200 | otherwise) that contradict the conditions of this License, they do not 201 | excuse you from the conditions of this License. If you cannot 202 | distribute so as to satisfy simultaneously your obligations under this 203 | License and any other pertinent obligations, then as a consequence you 204 | may not distribute the Program at all. For example, if a patent 205 | license would not permit royalty-free redistribution of the Program by 206 | all those who receive copies directly or indirectly through you, then 207 | the only way you could satisfy both it and this License would be to 208 | refrain entirely from distribution of the Program. 209 | 210 | If any portion of this section is held invalid or unenforceable under 211 | any particular circumstance, the balance of the section is intended to 212 | apply and the section as a whole is intended to apply in other 213 | circumstances. 214 | 215 | It is not the purpose of this section to induce you to infringe any 216 | patents or other property right claims or to contest validity of any 217 | such claims; this section has the sole purpose of protecting the 218 | integrity of the free software distribution system, which is 219 | implemented by public license practices. Many people have made 220 | generous contributions to the wide range of software distributed 221 | through that system in reliance on consistent application of that 222 | system; it is up to the author/donor to decide if he or she is willing 223 | to distribute software through any other system and a licensee cannot 224 | impose that choice. 225 | 226 | This section is intended to make thoroughly clear what is believed to 227 | be a consequence of the rest of this License. 228 | 229 | 8. If the distribution and/or use of the Program is restricted in 230 | certain countries either by patents or by copyrighted interfaces, the 231 | original copyright holder who places the Program under this License 232 | may add an explicit geographical distribution limitation excluding 233 | those countries, so that distribution is permitted only in or among 234 | countries not thus excluded. In such case, this License incorporates 235 | the limitation as if written in the body of this License. 236 | 237 | 9. The Free Software Foundation may publish revised and/or new versions 238 | of the General Public License from time to time. Such new versions will 239 | be similar in spirit to the present version, but may differ in detail to 240 | address new problems or concerns. 241 | 242 | Each version is given a distinguishing version number. If the Program 243 | specifies a version number of this License which applies to it and "any 244 | later version", you have the option of following the terms and conditions 245 | either of that version or of any later version published by the Free 246 | Software Foundation. If the Program does not specify a version number of 247 | this License, you may choose any version ever published by the Free Software 248 | Foundation. 249 | 250 | 10. If you wish to incorporate parts of the Program into other free 251 | programs whose distribution conditions are different, write to the author 252 | to ask for permission. For software which is copyrighted by the Free 253 | Software Foundation, write to the Free Software Foundation; we sometimes 254 | make exceptions for this. Our decision will be guided by the two goals 255 | of preserving the free status of all derivatives of our free software and 256 | of promoting the sharing and reuse of software generally. 257 | 258 | NO WARRANTY 259 | 260 | 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY 261 | FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN 262 | OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES 263 | PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED 264 | OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 265 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS 266 | TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE 267 | PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, 268 | REPAIR OR CORRECTION. 269 | 270 | 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 271 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR 272 | REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, 273 | INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING 274 | OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED 275 | TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY 276 | YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER 277 | PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE 278 | POSSIBILITY OF SUCH DAMAGES. 279 | 280 | END OF TERMS AND CONDITIONS 281 | 282 | How to Apply These Terms to Your New Programs 283 | 284 | If you develop a new program, and you want it to be of the greatest 285 | possible use to the public, the best way to achieve this is to make it 286 | free software which everyone can redistribute and change under these terms. 287 | 288 | To do so, attach the following notices to the program. It is safest 289 | to attach them to the start of each source file to most effectively 290 | convey the exclusion of warranty; and each file should have at least 291 | the "copyright" line and a pointer to where the full notice is found. 292 | 293 | 294 | Copyright (C) 295 | 296 | This program is free software; you can redistribute it and/or modify 297 | it under the terms of the GNU General Public License as published by 298 | the Free Software Foundation; either version 2 of the License, or 299 | (at your option) any later version. 300 | 301 | This program is distributed in the hope that it will be useful, 302 | but WITHOUT ANY WARRANTY; without even the implied warranty of 303 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 304 | GNU General Public License for more details. 305 | 306 | You should have received a copy of the GNU General Public License 307 | along with this program; if not, write to the Free Software 308 | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA 309 | 310 | 311 | Also add information on how to contact you by electronic and paper mail. 312 | 313 | If the program is interactive, make it output a short notice like this 314 | when it starts in an interactive mode: 315 | 316 | Gnomovision version 69, Copyright (C) year name of author 317 | Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 318 | This is free software, and you are welcome to redistribute it 319 | under certain conditions; type `show c' for details. 320 | 321 | The hypothetical commands `show w' and `show c' should show the appropriate 322 | parts of the General Public License. Of course, the commands you use may 323 | be called something other than `show w' and `show c'; they could even be 324 | mouse-clicks or menu items--whatever suits your program. 325 | 326 | You should also get your employer (if you work as a programmer) or your 327 | school, if any, to sign a "copyright disclaimer" for the program, if 328 | necessary. Here is a sample; alter the names: 329 | 330 | Yoyodyne, Inc., hereby disclaims all copyright interest in the program 331 | `Gnomovision' (which makes passes at compilers) written by James Hacker. 332 | 333 | , 1 April 1989 334 | Ty Coon, President of Vice 335 | 336 | This General Public License does not permit incorporating your program into 337 | proprietary programs. If your program is a subroutine library, you may 338 | consider it more useful to permit linking proprietary applications with the 339 | library. If this is what you want to do, use the GNU Library General 340 | Public License instead of this License. 341 | -------------------------------------------------------------------------------- /dellstore2-normal-1.0/README: -------------------------------------------------------------------------------- 1 | Dell Store 2 2 | ============ 3 | 4 | http://linux.dell.com/dvdstore/ 5 | 6 | PostgreSQL port of the Dell Store 2 database 7 | 8 | INSTALL 9 | ------- 10 | 11 | createdb -E LATIN1 dellstore2 12 | createlang plpgsql dellstore2 13 | * Save all .csv files from the dell store distribution into the dellstore2 directory * 14 | psql -f dellstore.sql dellstore2 15 | -------------------------------------------------------------------------------- /dellstore2-normal-1.0/dellstore2-normal-1.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morenoh149/postgresDBSamples/2bdc9539762092912655e1b82b7433d3151389dc/dellstore2-normal-1.0/dellstore2-normal-1.0.sql -------------------------------------------------------------------------------- /french-towns-communes-francaises/Makefile: -------------------------------------------------------------------------------- 1 | TARBALL=/tmp/french-towns-communes-francaises.tar 2 | DB=communes 3 | 4 | all: french-towns-communes-francaises.sql 5 | 6 | french-towns-communes-francaises.sql: create.sql dump.sql 7 | cat $^ > $@ 8 | 9 | dump.sql: 10 | PGCLIENTENCODING=utf-8 pg_dump --data-only --no-owner ${DB} > $@ 11 | 12 | recreate: 13 | dropdb ${DB} ; createdb ${DB} && psql -f create.sql ${DB} 14 | python comsimp2postgresql.py 15 | 16 | dist: all 17 | (cd ..; \ 18 | tar cvf ${TARBALL} Communes/comsimp2postgresql.py \ 19 | Communes/Makefile Communes/french-towns-communes-francaises.sql; \ 20 | gzip --best --force --verbose ${TARBALL}) 21 | 22 | clean: 23 | rm -f dump.sql 24 | 25 | .PHONY: dump.sql 26 | -------------------------------------------------------------------------------- /french-towns-communes-francaises/README: -------------------------------------------------------------------------------- 1 | Release Notes 2 | 3 | A database of all French towns and regions from Stephane Bortzmeyer. UTF-8 encoded. 4 | -------------------------------------------------------------------------------- /french-towns-communes-francaises/comsimp2postgresql.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | 3 | import string 4 | import psycopg 5 | 6 | connection = psycopg.connect("dbname=communes") 7 | 8 | file = open("reg.txt") 9 | cursor = connection.cursor() 10 | # Drop headers 11 | file.readline() 12 | for line in file.xreadlines(): 13 | line = string.strip(line) 14 | # http://www.insee.fr/fr/nom_def_met/nomenclatures/cog/doc_flregions.asp for 15 | # explanations on the field names. 16 | (REGION, CHEFLIEU, TNCC, NCC, NCCENR) = string.split(line, "\t") 17 | cursor.execute(""" 18 | INSERT INTO Regions (name, code, capital) 19 | VALUES 20 | (%(name)s, %(code)s, %(capital)s);""", 21 | {'name': NCCENR, 22 | 'capital': CHEFLIEU, 23 | 'code': REGION}) 24 | connection.commit() 25 | cursor.close() 26 | file.close() 27 | 28 | file = open("depts.txt") 29 | cursor = connection.cursor() 30 | # Drop headers 31 | file.readline() 32 | for line in file.xreadlines(): 33 | line = string.strip(line) 34 | # http://www.insee.fr/fr/nom_def_met/nomenclatures/cog/doc_fldepart.asp for 35 | # explanations on the field names. 36 | (REGION, DEP, CHEFLIEU, TNCC, NCC, NCCENR) = string.split(line, "\t") 37 | cursor.execute(""" 38 | INSERT INTO Departments (name, code, region, capital) 39 | VALUES 40 | (%(name)s, %(code)s, %(region)s, %(capital)s);""", 41 | {'name': NCCENR, 42 | 'region': REGION, 43 | 'capital': CHEFLIEU, 44 | 'code': DEP}) 45 | connection.commit() 46 | cursor.close() 47 | file.close() 48 | 49 | file = open("comsimp.txt") 50 | cursor = connection.cursor() 51 | # Drop headers 52 | file.readline() 53 | for line in file.xreadlines(): 54 | line = string.strip(line) 55 | # http://www.insee.fr/fr/nom_def_met/nomenclatures/cog/doc_fcomsimp.asp for 56 | # explanations on the field names. 57 | (CDC, CHEFLIEU, REG, DEP, COM, AR, CT, TNCC, ARTMAJ, 58 | NCC, ARTMIN, NCCENR) = string.split(line, "\t") 59 | cursor.execute(""" 60 | INSERT INTO Towns (name, department, code) 61 | VALUES 62 | (%(name)s, %(department)s, %(code)s);""", 63 | {'name': NCCENR, 64 | 'department': DEP, 'code': COM}) 65 | connection.commit() 66 | cursor.close() 67 | connection.close() 68 | file.close() 69 | -------------------------------------------------------------------------------- /iso-3166/README: -------------------------------------------------------------------------------- 1 | Release Notes 2 | 3 | All countries and subcountries (states) in the world. This package is under the 3-clause BSD license. 4 | Change Log 5 | 6 | First release. Thanks to David Fetter for extracting this. 7 | -------------------------------------------------------------------------------- /pagila-0.10.1/README: -------------------------------------------------------------------------------- 1 | Pagila 2 | ====== 3 | 4 | Pagila is a port of the Sakila example database available for MySQL, which was 5 | originally developed by Mike Hillyer of the MySQL AB documentation team. It 6 | is intended to provide a standard schema that can be used for examples in 7 | books, tutorials, articles, samples, etc. 8 | 9 | All the tables, data, views, and functions have been ported; some of the changes made were: 10 | 11 | * Changed char(1) true/false fields to true boolean fields 12 | * The last_update columns were set with triggers to update them 13 | * Added foreign keys 14 | * Removed 'DEFAULT 0' on foreign keys since it's pointless with real FK's 15 | * Used PostgreSQL built-in fulltext searching for fulltext index. Removed the need for the 16 | film_text table. 17 | * The rewards_report function was ported to a simple SRF 18 | 19 | The schema and data for the Sakila database were made available under the BSD license 20 | which can be found at http://www.opensource.org/licenses/bsd-license.php. The pagila 21 | database is made available under this license as well. 22 | 23 | 24 | FULLTEXT SEARCH 25 | --------------- 26 | 27 | In older versions of pagila, the fulltext search capabilities were split into a 28 | seperate file, so they could be loaded into only databases that support fulltext. 29 | Starting in PostgreSQL 8.3, fulltext functionality is built in, so now these 30 | parts of the schema exist in the main schema file. 31 | 32 | Example usage: 33 | 34 | SELECT * FROM film WHERE fulltext @@ to_tsquery('fate&india'); 35 | 36 | 37 | PARTITIONED TABLES 38 | ------------------ 39 | 40 | The payment table is designed as a partitioned table with a 6 month timespan for the date ranges. 41 | If you want to take full advantage of table partitioning, you need to make sure constraint_exclusion 42 | is turned on in your database. You can do this by setting "constraint_exclusion = on" in your 43 | postgresql.conf, or by issuing the command "ALTER DATABASE pagila SET constraint_exclusion = on" 44 | (substitute pagila for your database name if installing into a database with a different name) 45 | 46 | 47 | INSTALL NOTE 48 | ------------ 49 | 50 | The pagila-data.sql file and the pagila-insert-data.sql both contain the same 51 | data, the former using COPY commands, the latter using INSERT commands, so you 52 | only need to install one of them. Both formats are provided for those who have 53 | trouble using one version or another. 54 | 55 | 56 | ARTICLES 57 | -------------- 58 | 59 | The following articles make use of pagila to showcase various PostgreSQL features: 60 | 61 | * Showcasing REST in PostgreSQL - The PreQuel 62 | http://www.postgresonline.com/journal/index.php?/archives/32-Showcasing-REST-in-PostgreSQL-The-PreQuel.html#extended 63 | 64 | * PostgreSQL 8.3 Features: Enum Datatype 65 | http://people.planetpostgresql.org/xzilla/index.php?/archives/320-PostgreSQL-8.3-Features-Enum-Datatype.html 66 | 67 | * Email Validation with pl/PHP 68 | http://people.planetpostgresql.org/xzilla/index.php?/archives/261-Re-inventing-Gregs-method-to-prevent-re-inventing.html 69 | 70 | * Getting Started with PostgreSQL for Windows 71 | http://www.charltonlopez.com/index.php?option=com_content&task=view&id=56&Itemid=38 72 | 73 | * RATIO_TO_REPORT in PostgreSQL 74 | http://people.planetpostgresql.org/xzilla/index.php?/search/pagila/P3.html 75 | 76 | * The postmaster and postgres Processes 77 | http://www.charltonlopez.com/index.php?option=com_content&task=view&id=57&Itemid=38 78 | 79 | * Building Rails to Legacy Applications :: Take Control of Active Record 80 | http://people.planetpostgresql.org/xzilla/index.php?/archives/220-Building-Rails-to-Legacy-Applications-Take-Control-of-Active-Record.html 81 | 82 | * Building Rails to Legacy Applications :: Masking the Database 83 | http://people.planetpostgresql.org/xzilla/index.php?/archives/213-Building-Rails-to-Legacy-Applications-Masking-the-Database.html 84 | 85 | 86 | VERSION HISTORY 87 | --------------- 88 | 89 | Version 0.10.1 90 | * Add pagila-data-insert.sql file, added articles section 91 | 92 | Version 0.10 93 | * Support for built-in fulltext. Add enum example 94 | 95 | Version 0.9 96 | * Add table partitioning example 97 | 98 | Version 0.8 99 | * First release of pagila 100 | 101 | 102 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | # PostgreSQL Database Samples 2 | 3 | copy of https://www.postgresql.org/ftp/projects/pgFoundry/dbsamples/ 4 | 5 | A collection of sample databases for PostgreSQL. 6 | 7 | * Adventureworks - OLTP database for a fictitious, multinational manufacturing company called Adventure Works Cycles 8 | * Chinook - digital media store 9 | * French Towns - all French towns and regions 10 | * ISO-3166 - All countries and subcountries in the world 11 | * Pagila - Movie rental database with actors, ratings, payments, etc. 12 | * Role Based Access Control - authentication solution 13 | * USDA - food database 14 | * World - Cities, Countries, and what language they speak 15 | 16 | ## Other Resources 17 | 18 | - http://www.databaseanswers.org/data_models/ 19 | -------------------------------------------------------------------------------- /role-based-access-control/rbac.sql: -------------------------------------------------------------------------------- 1 | /* 2 | * Create Tables 3 | */ 4 | drop table rbac_permissions, rbac_rolepermissions, rbac_roles, rbac_userroles; 5 | 6 | create table if not exists rbac_permissions ( 7 | id serial primary key, 8 | lft integer not null, 9 | rght integer not null, 10 | title text not null, 11 | description text not null 12 | ); 13 | create index on rbac_permissions (lft); 14 | create index on rbac_permissions (rght); 15 | create index on rbac_permissions (title); 16 | 17 | create table if not exists rbac_rolepermissions ( 18 | role_id integer not null, 19 | permission_id integer not null, 20 | assignment_date timestamptz not null, 21 | primary key (role_id, permission_id) 22 | ); 23 | 24 | create table if not exists rbac_roles ( 25 | id serial primary key, 26 | lft integer not null, 27 | rght integer not null, 28 | title varchar not null, 29 | description text not null 30 | ); 31 | create index on rbac_roles (lft); 32 | create index on rbac_roles (rght); 33 | create index on rbac_roles (title); 34 | 35 | create table if not exists rbac_userroles ( 36 | user_id integer not null, 37 | role_id integer not null, 38 | assignment_date timestamptz not null, 39 | primary key (user_id, role_id) 40 | ); 41 | 42 | /* 43 | * Insert Initial Table Data 44 | */ 45 | insert into rbac_permissions (id, lft, rght, title, description) 46 | values (1, 0, 1, 'root', 'root'); 47 | 48 | insert into rbac_rolepermissions (role_id, permission_id, assignment_date) 49 | values (1, 1, current_timestamp); 50 | 51 | insert into rbac_roles (id, lft, rght, title, description) 52 | values (1, 0, 1, 'root', 'root'); 53 | 54 | insert into rbac_userroles (user_id, Role_id, assignment_date) 55 | values (1, 1, current_timestamp); 56 | -------------------------------------------------------------------------------- /role-based-access-control/readme.md: -------------------------------------------------------------------------------- 1 | # Role Based Access Control 2 | 3 | An implementation of [NIST level 2 RBAC](http://csrc.nist.gov/groups/SNS/rbac/) 4 | Hierarchical RBAC 5 | 6 | Work in progress, contributions welcome 7 | -------------------------------------------------------------------------------- /role-based-access-control/sandhu-ferraiolo-kuhn-00.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morenoh149/postgresDBSamples/2bdc9539762092912655e1b82b7433d3151389dc/role-based-access-control/sandhu-ferraiolo-kuhn-00.pdf -------------------------------------------------------------------------------- /usda-r18-1.0/README: -------------------------------------------------------------------------------- 1 | USDA Food Database 2 | ================== 3 | 4 | The USDA Food Database is published by the US Department of Agriculture. 5 | 6 | Citation: 7 | 8 | U.S. Department of Agriculture, Agricultural Research Service. 2005. USDA Nutrient Database for Standard Reference, Release 18. Nutrient Data Laboratory Home Page, http://www.ars.usda.gov/ba/bhnrc/ndl 9 | 10 | USDA food composition data is in the public domain and there is no copyright. 11 | They would appreciate it if you would list them as the source of the data 12 | and when possible they would like to see the product which uses the data 13 | or be notified of its use. 14 | 15 | INSTALLATION 16 | ------------ 17 | 18 | createdb usda 19 | psql -f usda.sql usda 20 | 21 | -------------------------------------------------------------------------------- /usda-r18-1.0/usda.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morenoh149/postgresDBSamples/2bdc9539762092912655e1b82b7433d3151389dc/usda-r18-1.0/usda.sql -------------------------------------------------------------------------------- /worldDB-1.0/README: -------------------------------------------------------------------------------- 1 | World 2 | ===== 3 | 4 | World is a port of the example database available for MySQL on the mysql.com 5 | website. 6 | 7 | It is a simple 1:1 port and no attempt has been made to redesign the schema to 8 | better suit PostgreSQL. 9 | 10 | It is useful for comparison purposes and for learning how to execute simple 11 | queries and create simple tables, but is not particularly useful for exercising 12 | the advanced features of PostgreSQL or benchmarking. 13 | 14 | -------------------------------------------------------------------------------- /worldDB-1.0/world.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morenoh149/postgresDBSamples/2bdc9539762092912655e1b82b7433d3151389dc/worldDB-1.0/world.sql --------------------------------------------------------------------------------