Skip to main content

LINQ To SQL Samples - INSERT/UPDATE/DELETE


Insert - Simple

This sample uses the Add method to add a new Customer to the Customers Table object. The call to SubmitChanges persists this new Customer to the database.

Public Sub LinqToSqlInsert01()
    Dim q = From c In db.Customers _
            Where c.Region = "WA" _
            Select c

    Console.WriteLine("*** BEFORE ***")
    ObjectDumper.Write(q)


    Console.WriteLine()
    Console.WriteLine("*** INSERT ***")
    Dim newCustomer = New Customer With {.CustomerID = "MCSFT", .CompanyName = "Microsoft", .ContactName = "John Doe", .ContactTitle = "Sales Manager", .Address = "1 Microsoft Way", .City = "Redmond", .Region = "WA", .PostalCode = "98052", .Country = "USA", .Phone = "(425) 555-1234", .Fax = Nothing}
    db.Customers.Add(newCustomer)
    db.SubmitChanges()


    Console.WriteLine()
    Console.WriteLine("*** AFTER ***")
    ObjectDumper.Write(q)

    Cleanup56()  ' Restore previous database state
End Sub


Result:
*** BEFORE ***
CustomerID=LAZYK        CompanyName=Lazy K Kountry Store        ContactName=John Steel  ContactTitle=Marketing Manager  Address=12 Orchestra Terrace    City=Walla Walla        Region=WA       PostalCode=99362        Country=USA     Phone=(509) 555-7969    Fax=(509) 555-6221      Orders=...      CustomerCustomerDemos=...
CustomerID=TRAIH        CompanyName=Trail's Head Gourmet Provisioners   ContactName=Helvetius Nagy      ContactTitle=Sales Associate    Address=722 DaVinci Blvd.       City=Kirkland   Region=WA       PostalCode=98034        Country=USA     Phone=(206) 555-8257    Fax=(206) 555-2174      Orders=...      CustomerCustomerDemos=...
CustomerID=WHITC        CompanyName=White Clover Markets        ContactName=Karl Jablonski      ContactTitle=Owner      Address=305 - 14th Ave. S. Suite 3B     City=Seattle    Region=WA       PostalCode=98128        Country=USA     Phone=(206) 555-4112    Fax=(206) 555-4115      Orders=...      CustomerCustomerDemos=...

*** INSERT ***

*** AFTER ***
CustomerID=LAZYK        CompanyName=Lazy K Kountry Store        ContactName=John Steel  ContactTitle=Marketing Manager  Address=12 Orchestra Terrace    City=Walla Walla        Region=WA       PostalCode=99362        Country=USA     Phone=(509) 555-7969    Fax=(509) 555-6221      Orders=...      CustomerCustomerDemos=...
CustomerID=MCSFT        CompanyName=Microsoft   ContactName=John Doe    ContactTitle=Sales Manager      Address=1 Microsoft Way         City=Redmond    Region=WA       PostalCode=98052        Country=USA     Phone=(425) 555-1234    Fax=null        Orders=...      CustomerCustomerDemos=...
CustomerID=TRAIH        CompanyName=Trail's Head Gourmet Provisioners   ContactName=Helvetius Nagy      ContactTitle=Sales Associate    Address=722 DaVinci Blvd.       City=Kirkland   Region=WA       PostalCode=98034        Country=USA     Phone=(206) 555-8257    Fax=(206) 555-2174      Orders=...      CustomerCustomerDemos=...
CustomerID=WHITC        CompanyName=White Clover Markets        ContactName=Karl Jablonski      ContactTitle=Owner      Address=305 - 14th Ave. S. Suite 3B     City=Seattle    Region=WA       PostalCode=98128        Country=USA     Phone=(206) 555-4112    Fax=(206) 555-4115      Orders=...      CustomerCustomerDemos=...


Insert - 1-to-Many

This sample uses the Add method to add a new Category to the Categories table object, and a new Product to the Products Table object with a foreign key relationship to the new Category. The call to SubmitChanges persists these new objects and their relationships to the database.

Public Sub LinqToSqlInsert02()

    Dim db2 = New NorthwindDataContext(My.Settings.NORTHWINDConnectionString1)

    Dim ds = New DataLoadOptions()

    ds.LoadWith(Of Category)(Function(p) p.Products)
    db2.LoadOptions = ds

    Dim q = From c In db2.Categories _
            Where c.CategoryName = "Widgets" _
            Select c


    Console.WriteLine("*** BEFORE ***")
    ObjectDumper.Write(q, 1)


    Console.WriteLine()
    Console.WriteLine("*** INSERT ***")
    Dim newCategory = New Category With _
                        {.CategoryName = "Widgets", _
                         .Description = "Widgets are the customer-facing analogues " & _
                                                   "to sprockets and cogs."}

    Dim newProduct = New Product With {.ProductName = "Blue Widget", _
                                       .UnitPrice = 34.56#, _
                                       .Category = newCategory}
    db2.Categories.Add(newCategory)
    db2.SubmitChanges()


    Console.WriteLine()
    Console.WriteLine("*** AFTER ***")
    ObjectDumper.Write(q, 1)

    Cleanup65()  'Restore previous database state
End Sub


Result:
  *** BEFORE ***
  
  *** INSERT ***
  
  *** AFTER ***
  CategoryID=20   CategoryName=Widgets    Description=Widgets are the customer-facing analogues to sprockets and cogs.    Picture=...     Products=...
    Products: ProductID=78  ProductName=Blue Widget         SupplierID=null         CategoryID=20   QuantityPerUnit=null    UnitPrice=34.56         UnitsInStock=null       UnitsOnOrder=null       ReorderLevel=null       Discontinued=False      Order_Details=...       Category={ }    Supplier={ }


Insert - Many-to-Many

This sample uses the Add method to add a new Employee to the Employees table object, a new Territory to the Territories table object, and a new EmployeeTerritory to the EmployeeTerritories table object with foreign key relationships to the new Employee and Territory. The call to SubmitChanges persists these new objects and their relationships to the database.

Public Sub LinqToSqlInsert03()

    Dim db2 = New NorthwindDataContext(My.Settings.NORTHWINDConnectionString1)

    Dim ds = New DataLoadOptions()
    ds.LoadWith(Of Employee)(Function(p) p.EmployeeTerritories)
    ds.LoadWith(Of EmployeeTerritory)(Function(p) p.Territory)

    db2.LoadOptions = ds
    Dim q = From e In db.Employees Where e.FirstName = "Nancy"

    Console.WriteLine("*** BEFORE ***")
    ObjectDumper.Write(q, 1)


    Console.WriteLine()
    Console.WriteLine("*** INSERT ***")
    Dim newEmployee = New Employee With {.FirstName = "Kira", .LastName = "Smith"}
    Dim newTerritory = New Territory With {.TerritoryID = "12345", _
                                           .TerritoryDescription = "Anytown", _
                                           .Region = db.Regions.First()}

    Dim newEmployeeTerritory = New EmployeeTerritory With _
                                {.Employee = newEmployee, .Territory = newTerritory}
    db.Employees.Add(newEmployee)
    db.Territories.Add(newTerritory)
    db.EmployeeTerritories.Add(newEmployeeTerritory)
    db.SubmitChanges()

    Console.WriteLine()
    Console.WriteLine("*** AFTER ***")
    ObjectDumper.Write(q, 2)

    Cleanup166()  ' Restore previous database state
End Sub


Result:
*** BEFORE ***
EmployeeID=1    LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
  Photo: ...
  Orders: OrderID=10258   CustomerID=ERNSH        EmployeeID=1    OrderDate=7/17/1996     RequiredDate=8/14/1996  ShippedDate=7/23/1996   ShipVia=1       Freight=140.5100        ShipName=Ernst Handel   ShipAddress=Kirchgasse 6        ShipCity=Graz   ShipRegion=null         ShipPostalCode=8010     ShipCountry=Austria     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10270   CustomerID=WARTH        EmployeeID=1    OrderDate=8/1/1996      RequiredDate=8/29/1996  ShippedDate=8/2/1996    ShipVia=1       Freight=136.5400        ShipName=Wartian Herkku         ShipAddress=Torikatu 38         ShipCity=Oulu   ShipRegion=null         ShipPostalCode=90110    ShipCountry=Finland     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10275   CustomerID=MAGAA        EmployeeID=1    OrderDate=8/7/1996      RequiredDate=9/4/1996   ShippedDate=8/9/1996    ShipVia=1       Freight=26.9300         ShipName=Magazzini Alimentari Riuniti   ShipAddress=Via Ludovico il Moro 22     ShipCity=Bergamo        ShipRegion=null         ShipPostalCode=24100    ShipCountry=Italy       Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10285   CustomerID=QUICK        EmployeeID=1    OrderDate=8/20/1996     RequiredDate=9/17/1996  ShippedDate=8/26/1996   ShipVia=2       Freight=76.8300         ShipName=QUICK-Stop     ShipAddress=Taucherstraße 10    ShipCity=Cunewalde      ShipRegion=null         ShipPostalCode=01307    ShipCountry=Germany     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10292   CustomerID=TRADH        EmployeeID=1    OrderDate=8/28/1996     RequiredDate=9/25/1996  ShippedDate=9/2/1996    ShipVia=2       Freight=1.3500  ShipName=Tradiçao Hipermercados         ShipAddress=Av. Inês de Castro, 414     ShipCity=Sao Paulo      ShipRegion=SP   ShipPostalCode=05634-030        ShipCountry=Brazil      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10293   CustomerID=TORTU        EmployeeID=1    OrderDate=8/29/1996     RequiredDate=9/26/1996  ShippedDate=9/11/1996   ShipVia=3       Freight=21.1800         ShipName=Tortuga Restaurante    ShipAddress=Avda. Azteca 123    ShipCity=México D.F.    ShipRegion=null         ShipPostalCode=05033    ShipCountry=Mexico      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10304   CustomerID=TORTU        EmployeeID=1    OrderDate=9/12/1996     RequiredDate=10/10/1996         ShippedDate=9/17/1996   ShipVia=2       Freight=63.7900         ShipName=Tortuga Restaurante    ShipAddress=Avda. Azteca 123    ShipCity=México D.F.    ShipRegion=null         ShipPostalCode=05033    ShipCountry=Mexico      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10306   CustomerID=ROMEY        EmployeeID=1    OrderDate=9/16/1996     RequiredDate=10/14/1996         ShippedDate=9/23/1996   ShipVia=3       Freight=7.5600  ShipName=Romero y tomillo       ShipAddress=Gran Vía, 1         ShipCity=Madrid         ShipRegion=null         ShipPostalCode=28001    ShipCountry=Spain       Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10311   CustomerID=DUMON        EmployeeID=1    OrderDate=9/20/1996     RequiredDate=10/4/1996  ShippedDate=9/26/1996   ShipVia=3       Freight=24.6900         ShipName=Du monde entier        ShipAddress=67, rue des Cinquante Otages        ShipCity=Nantes         ShipRegion=null         ShipPostalCode=44000    ShipCountry=France      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10314   CustomerID=RATTC        EmployeeID=1    OrderDate=9/25/1996     RequiredDate=10/23/1996         ShippedDate=10/4/1996   ShipVia=2       Freight=74.1600         ShipName=Rattlesnake Canyon Grocery     ShipAddress=2817 Milton Dr.     ShipCity=Albuquerque    ShipRegion=NM   ShipPostalCode=87110    ShipCountry=USA         Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10316   CustomerID=RATTC        EmployeeID=1    OrderDate=9/27/1996     RequiredDate=10/25/1996         ShippedDate=10/8/1996   ShipVia=3       Freight=150.1500        ShipName=Rattlesnake Canyon Grocery     ShipAddress=2817 Milton Dr.     ShipCity=Albuquerque    ShipRegion=NM   ShipPostalCode=87110    ShipCountry=USA         Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10325   CustomerID=KOENE        EmployeeID=1    OrderDate=10/9/1996     RequiredDate=10/23/1996         ShippedDate=10/14/1996  ShipVia=3       Freight=64.8600         ShipName=Königlich Essen        ShipAddress=Maubelstr. 90       ShipCity=Brandenburg    ShipRegion=null         ShipPostalCode=14776    ShipCountry=Germany     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10340   CustomerID=BONAP        EmployeeID=1    OrderDate=10/29/1996    RequiredDate=11/26/1996         ShippedDate=11/8/1996   ShipVia=3       Freight=166.3100        ShipName=Bon app'       ShipAddress=12, rue des Bouchers        ShipCity=Marseille      ShipRegion=null         ShipPostalCode=13008    ShipCountry=France      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10351   CustomerID=ERNSH        EmployeeID=1    OrderDate=11/11/1996    RequiredDate=12/9/1996  ShippedDate=11/20/1996  ShipVia=1       Freight=162.3300        ShipName=Ernst Handel   ShipAddress=Kirchgasse 6        ShipCity=Graz   ShipRegion=null         ShipPostalCode=8010     ShipCountry=Austria     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10357   CustomerID=LILAS        EmployeeID=1    OrderDate=11/19/1996    RequiredDate=12/17/1996         ShippedDate=12/2/1996   ShipVia=3       Freight=34.8800         ShipName=LILA-Supermercado      ShipAddress=Carrera 52 con Ave. Bolívar #65-98 Llano Largo      ShipCity=Barquisimeto   ShipRegion=Lara         ShipPostalCode=3508     ShipCountry=Venezuela   Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10361   CustomerID=QUICK        EmployeeID=1    OrderDate=11/22/1996    RequiredDate=12/20/1996         ShippedDate=12/3/1996   ShipVia=2       Freight=183.1700        ShipName=QUICK-Stop     ShipAddress=Taucherstraße 10    ShipCity=Cunewalde      ShipRegion=null         ShipPostalCode=01307    ShipCountry=Germany     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10364   CustomerID=EASTC        EmployeeID=1    OrderDate=11/26/1996    RequiredDate=1/7/1997   ShippedDate=12/4/1996   ShipVia=1       Freight=71.9700         ShipName=Eastern Connection     ShipAddress=35 King George      ShipCity=London         ShipRegion=null         ShipPostalCode=WX3 6FW  ShipCountry=UK  Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10371   CustomerID=LAMAI        EmployeeID=1    OrderDate=12/3/1996     RequiredDate=12/31/1996         ShippedDate=12/24/1996  ShipVia=1       Freight=0.4500  ShipName=La maison d'Asie       ShipAddress=1 rue Alsace-Lorraine       ShipCity=Toulouse       ShipRegion=null         ShipPostalCode=31000    ShipCountry=France      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10374   CustomerID=WOLZA        EmployeeID=1    OrderDate=12/5/1996     RequiredDate=1/2/1997   ShippedDate=12/9/1996   ShipVia=3       Freight=3.9400  ShipName=Wolski Zajazd  ShipAddress=ul. Filtrowa 68     ShipCity=Warszawa       ShipRegion=null         ShipPostalCode=01-012   ShipCountry=Poland      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10376   CustomerID=MEREP        EmployeeID=1    OrderDate=12/9/1996     RequiredDate=1/6/1997   ShippedDate=12/13/1996  ShipVia=2       Freight=20.3900         ShipName=Mère Paillarde         ShipAddress=43 rue St. Laurent  ShipCity=Montréal       ShipRegion=Québec       ShipPostalCode=H1J 1C3  ShipCountry=Canada      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10377   CustomerID=SEVES        EmployeeID=1    OrderDate=12/9/1996     RequiredDate=1/6/1997   ShippedDate=12/13/1996  ShipVia=3       Freight=22.2100         ShipName=Seven Seas Imports     ShipAddress=90 Wadhurst Rd.     ShipCity=London         ShipRegion=null         ShipPostalCode=OX15 4NB         ShipCountry=UK  Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10385   CustomerID=SPLIR        EmployeeID=1    OrderDate=12/17/1996    RequiredDate=1/14/1997  ShippedDate=12/23/1996  ShipVia=2       Freight=30.9600         ShipName=Split Rail Beer & Ale  ShipAddress=P.O. Box 555        ShipCity=Lander         ShipRegion=WY   ShipPostalCode=82520    ShipCountry=USA         Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10387   CustomerID=SANTG        EmployeeID=1    OrderDate=12/18/1996    RequiredDate=1/15/1997  ShippedDate=12/20/1996  ShipVia=2       Freight=93.6300         ShipName=Santé Gourmet  ShipAddress=Erling Skakkes gate 78      ShipCity=Stavern        ShipRegion=null         ShipPostalCode=4110     ShipCountry=Norway      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10393   CustomerID=SAVEA        EmployeeID=1    OrderDate=12/25/1996    RequiredDate=1/22/1997  ShippedDate=1/3/1997    ShipVia=3       Freight=126.5600        ShipName=Save-a-lot Markets     ShipAddress=187 Suffolk Ln.     ShipCity=Boise  ShipRegion=ID   ShipPostalCode=83720    ShipCountry=USA         Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10394   CustomerID=HUNGC        EmployeeID=1    OrderDate=12/25/1996    RequiredDate=1/22/1997  ShippedDate=1/3/1997    ShipVia=3       Freight=30.3400         ShipName=Hungry Coyote Import Store     ShipAddress=City Center Plaza 516 Main St.      ShipCity=Elgin  ShipRegion=OR   ShipPostalCode=97827    ShipCountry=USA         Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10396   CustomerID=FRANK        EmployeeID=1    OrderDate=12/27/1996    RequiredDate=1/10/1997  ShippedDate=1/6/1997    ShipVia=3       Freight=135.3500        ShipName=Frankenversand         ShipAddress=Berliner Platz 43   ShipCity=München        ShipRegion=null         ShipPostalCode=80805    ShipCountry=Germany     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10400   CustomerID=EASTC        EmployeeID=1    OrderDate=1/1/1997      RequiredDate=1/29/1997  ShippedDate=1/16/1997   ShipVia=3       Freight=83.9300         ShipName=Eastern Connection     ShipAddress=35 King George      ShipCity=London         ShipRegion=null         ShipPostalCode=WX3 6FW  ShipCountry=UK  Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10401   CustomerID=RATTC        EmployeeID=1    OrderDate=1/1/1997      RequiredDate=1/29/1997  ShippedDate=1/10/1997   ShipVia=1       Freight=12.5100         ShipName=Rattlesnake Canyon Grocery     ShipAddress=2817 Milton Dr.     ShipCity=Albuquerque    ShipRegion=NM   ShipPostalCode=87110    ShipCountry=USA         Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10405   CustomerID=LINOD        EmployeeID=1    OrderDate=1/6/1997      RequiredDate=2/3/1997   ShippedDate=1/22/1997   ShipVia=1       Freight=34.8200         ShipName=LINO-Delicateses       ShipAddress=Ave. 5 de Mayo Porlamar     ShipCity=I. de Margarita        ShipRegion=Nueva Esparta        ShipPostalCode=4980     ShipCountry=Venezuela   Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10453   CustomerID=AROUT        EmployeeID=1    OrderDate=2/21/1997     RequiredDate=3/21/1997  ShippedDate=2/26/1997   ShipVia=2       Freight=25.3600         ShipName=Around the Horn        ShipAddress=Brook Farm Stratford St. Mary       ShipCity=Colchester     ShipRegion=Essex        ShipPostalCode=CO7 6JX  ShipCountry=UK  Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10461   CustomerID=LILAS        EmployeeID=1    OrderDate=2/28/1997     RequiredDate=3/28/1997  ShippedDate=3/5/1997    ShipVia=3       Freight=148.6100        ShipName=LILA-Supermercado      ShipAddress=Carrera 52 con Ave. Bolívar #65-98 Llano Largo      ShipCity=Barquisimeto   ShipRegion=Lara         ShipPostalCode=3508     ShipCountry=Venezuela   Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10465   CustomerID=VAFFE        EmployeeID=1    OrderDate=3/5/1997      RequiredDate=4/2/1997   ShippedDate=3/14/1997   ShipVia=3       Freight=145.0400        ShipName=Vaffeljernet   ShipAddress=Smagsloget 45       ShipCity=Århus  ShipRegion=null         ShipPostalCode=8200     ShipCountry=Denmark     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10469   CustomerID=WHITC        EmployeeID=1    OrderDate=3/10/1997     RequiredDate=4/7/1997   ShippedDate=3/14/1997   ShipVia=1       Freight=60.1800         ShipName=White Clover Markets   ShipAddress=1029 - 12th Ave. S.         ShipCity=Seattle        ShipRegion=WA   ShipPostalCode=98124    ShipCountry=USA         Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10473   CustomerID=ISLAT        EmployeeID=1    OrderDate=3/13/1997     RequiredDate=3/27/1997  ShippedDate=3/21/1997   ShipVia=3       Freight=16.3700         ShipName=Island Trading         ShipAddress=Garden House Crowther Way   ShipCity=Cowes  ShipRegion=Isle of Wight        ShipPostalCode=PO31 7PJ         ShipCountry=UK  Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10482   CustomerID=LAZYK        EmployeeID=1    OrderDate=3/21/1997     RequiredDate=4/18/1997  ShippedDate=4/10/1997   ShipVia=3       Freight=7.4800  ShipName=Lazy K Kountry Store   ShipAddress=12 Orchestra Terrace        ShipCity=Walla Walla    ShipRegion=WA   ShipPostalCode=99362    ShipCountry=USA         Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10486   CustomerID=HILAA        EmployeeID=1    OrderDate=3/26/1997     RequiredDate=4/23/1997  ShippedDate=4/2/1997    ShipVia=2       Freight=30.5300         ShipName=HILARION-Abastos       ShipAddress=Carrera 22 con Ave. Carlos Soublette #8-35  ShipCity=San Cristóbal  ShipRegion=Táchira      ShipPostalCode=5022     ShipCountry=Venezuela   Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10508   CustomerID=OTTIK        EmployeeID=1    OrderDate=4/16/1997     RequiredDate=5/14/1997  ShippedDate=5/13/1997   ShipVia=2       Freight=4.9900  ShipName=Ottilies Käseladen     ShipAddress=Mehrheimerstr. 369  ShipCity=Köln   ShipRegion=null         ShipPostalCode=50739    ShipCountry=Germany     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10524   CustomerID=BERGS        EmployeeID=1    OrderDate=5/1/1997      RequiredDate=5/29/1997  ShippedDate=5/7/1997    ShipVia=2       Freight=244.7900        ShipName=Berglunds snabbköp     ShipAddress=Berguvsvägen  8     ShipCity=Luleå  ShipRegion=null         ShipPostalCode=S-958 22         ShipCountry=Sweden      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10525   CustomerID=BONAP        EmployeeID=1    OrderDate=5/2/1997      RequiredDate=5/30/1997  ShippedDate=5/23/1997   ShipVia=2       Freight=11.0600         ShipName=Bon app'       ShipAddress=12, rue des Bouchers        ShipCity=Marseille      ShipRegion=null         ShipPostalCode=13008    ShipCountry=France      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10537   CustomerID=RICSU        EmployeeID=1    OrderDate=5/14/1997     RequiredDate=5/28/1997  ShippedDate=5/19/1997   ShipVia=1       Freight=78.8500         ShipName=Richter Supermarkt     ShipAddress=Starenweg 5         ShipCity=Genève         ShipRegion=null         ShipPostalCode=1204     ShipCountry=Switzerland         Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10542   CustomerID=KOENE        EmployeeID=1    OrderDate=5/20/1997     RequiredDate=6/17/1997  ShippedDate=5/26/1997   ShipVia=3       Freight=10.9500         ShipName=Königlich Essen        ShipAddress=Maubelstr. 90       ShipCity=Brandenburg    ShipRegion=null         ShipPostalCode=14776    ShipCountry=Germany     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10546   CustomerID=VICTE        EmployeeID=1    OrderDate=5/23/1997     RequiredDate=6/20/1997  ShippedDate=5/27/1997   ShipVia=3       Freight=194.7200        ShipName=Victuailles en stock   ShipAddress=2, rue du Commerce  ShipCity=Lyon   ShipRegion=null         ShipPostalCode=69004    ShipCountry=France      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10558   CustomerID=AROUT        EmployeeID=1    OrderDate=6/4/1997      RequiredDate=7/2/1997   ShippedDate=6/10/1997   ShipVia=2       Freight=72.9700         ShipName=Around the Horn        ShipAddress=Brook Farm Stratford St. Mary       ShipCity=Colchester     ShipRegion=Essex        ShipPostalCode=CO7 6JX  ShipCountry=UK  Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10562   CustomerID=REGGC        EmployeeID=1    OrderDate=6/9/1997      RequiredDate=7/7/1997   ShippedDate=6/12/1997   ShipVia=1       Freight=22.9500         ShipName=Reggiani Caseifici     ShipAddress=Strada Provinciale 124      ShipCity=Reggio Emilia  ShipRegion=null         ShipPostalCode=42100    ShipCountry=Italy       Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10567   CustomerID=HUNGO        EmployeeID=1    OrderDate=6/12/1997     RequiredDate=7/10/1997  ShippedDate=6/17/1997   ShipVia=1       Freight=33.9700         ShipName=Hungry Owl All-Night Grocers   ShipAddress=8 Johnstown Road    ShipCity=Cork   ShipRegion=Co. Cork     ShipPostalCode=null     ShipCountry=Ireland     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10579   CustomerID=LETSS        EmployeeID=1    OrderDate=6/25/1997     RequiredDate=7/23/1997  ShippedDate=7/4/1997    ShipVia=2       Freight=13.7300         ShipName=Let's Stop N Shop      ShipAddress=87 Polk St. Suite 5         ShipCity=San Francisco  ShipRegion=CA   ShipPostalCode=94117    ShipCountry=USA         Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10587   CustomerID=QUEDE        EmployeeID=1    OrderDate=7/2/1997      RequiredDate=7/30/1997  ShippedDate=7/9/1997    ShipVia=1       Freight=62.5200         ShipName=Que Delícia    ShipAddress=Rua da Panificadora, 12     ShipCity=Rio de Janeiro         ShipRegion=RJ   ShipPostalCode=02389-673        ShipCountry=Brazil      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10591   CustomerID=VAFFE        EmployeeID=1    OrderDate=7/7/1997      RequiredDate=7/21/1997  ShippedDate=7/16/1997   ShipVia=1       Freight=55.9200         ShipName=Vaffeljernet   ShipAddress=Smagsloget 45       ShipCity=Århus  ShipRegion=null         ShipPostalCode=8200     ShipCountry=Denmark     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10598   CustomerID=RATTC        EmployeeID=1    OrderDate=7/14/1997     RequiredDate=8/11/1997  ShippedDate=7/18/1997   ShipVia=3       Freight=44.4200         ShipName=Rattlesnake Canyon Grocery     ShipAddress=2817 Milton Dr.     ShipCity=Albuquerque    ShipRegion=NM   ShipPostalCode=87110    ShipCountry=USA         Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10604   CustomerID=FURIB        EmployeeID=1    OrderDate=7/18/1997     RequiredDate=8/15/1997  ShippedDate=7/29/1997   ShipVia=1       Freight=7.4600  ShipName=Furia Bacalhau e Frutos do Mar         ShipAddress=Jardim das rosas n. 32      ShipCity=Lisboa         ShipRegion=null         ShipPostalCode=1675     ShipCountry=Portugal    Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10605   CustomerID=MEREP        EmployeeID=1    OrderDate=7/21/1997     RequiredDate=8/18/1997  ShippedDate=7/29/1997   ShipVia=2       Freight=379.1300        ShipName=Mère Paillarde         ShipAddress=43 rue St. Laurent  ShipCity=Montréal       ShipRegion=Québec       ShipPostalCode=H1J 1C3  ShipCountry=Canada      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10612   CustomerID=SAVEA        EmployeeID=1    OrderDate=7/28/1997     RequiredDate=8/25/1997  ShippedDate=8/1/1997    ShipVia=2       Freight=544.0800        ShipName=Save-a-lot Markets     ShipAddress=187 Suffolk Ln.     ShipCity=Boise  ShipRegion=ID   ShipPostalCode=83720    ShipCountry=USA         Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10616   CustomerID=GREAL        EmployeeID=1    OrderDate=7/31/1997     RequiredDate=8/28/1997  ShippedDate=8/5/1997    ShipVia=2       Freight=116.5300        ShipName=Great Lakes Food Market        ShipAddress=2732 Baker Blvd.    ShipCity=Eugene         ShipRegion=OR   ShipPostalCode=97403    ShipCountry=USA         Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10618   CustomerID=MEREP        EmployeeID=1    OrderDate=8/1/1997      RequiredDate=9/12/1997  ShippedDate=8/8/1997    ShipVia=1       Freight=154.6800        ShipName=Mère Paillarde         ShipAddress=43 rue St. Laurent  ShipCity=Montréal       ShipRegion=Québec       ShipPostalCode=H1J 1C3  ShipCountry=Canada      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10626   CustomerID=BERGS        EmployeeID=1    OrderDate=8/11/1997     RequiredDate=9/8/1997   ShippedDate=8/20/1997   ShipVia=2       Freight=138.6900        ShipName=Berglunds snabbköp     ShipAddress=Berguvsvägen  8     ShipCity=Luleå  ShipRegion=null         ShipPostalCode=S-958 22         ShipCountry=Sweden      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10630   CustomerID=KOENE        EmployeeID=1    OrderDate=8/13/1997     RequiredDate=9/10/1997  ShippedDate=8/19/1997   ShipVia=2       Freight=32.3500         ShipName=Königlich Essen        ShipAddress=Maubelstr. 90       ShipCity=Brandenburg    ShipRegion=null         ShipPostalCode=14776    ShipCountry=Germany     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10653   CustomerID=FRANK        EmployeeID=1    OrderDate=9/2/1997      RequiredDate=9/30/1997  ShippedDate=9/19/1997   ShipVia=1       Freight=93.2500         ShipName=Frankenversand         ShipAddress=Berliner Platz 43   ShipCity=München        ShipRegion=null         ShipPostalCode=80805    ShipCountry=Germany     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10655   CustomerID=REGGC        EmployeeID=1    OrderDate=9/3/1997      RequiredDate=10/1/1997  ShippedDate=9/11/1997   ShipVia=2       Freight=4.4100  ShipName=Reggiani Caseifici     ShipAddress=Strada Provinciale 124      ShipCity=Reggio Emilia  ShipRegion=null         ShipPostalCode=42100    ShipCountry=Italy       Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10664   CustomerID=FURIB        EmployeeID=1    OrderDate=9/10/1997     RequiredDate=10/8/1997  ShippedDate=9/19/1997   ShipVia=3       Freight=1.2700  ShipName=Furia Bacalhau e Frutos do Mar         ShipAddress=Jardim das rosas n. 32      ShipCity=Lisboa         ShipRegion=null         ShipPostalCode=1675     ShipCountry=Portugal    Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10665   CustomerID=LONEP        EmployeeID=1    OrderDate=9/11/1997     RequiredDate=10/9/1997  ShippedDate=9/17/1997   ShipVia=2       Freight=26.3100         ShipName=Lonesome Pine Restaurant       ShipAddress=89 Chiaroscuro Rd.  ShipCity=Portland       ShipRegion=OR   ShipPostalCode=97219    ShipCountry=USA         Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10668   CustomerID=WANDK        EmployeeID=1    OrderDate=9/15/1997     RequiredDate=10/13/1997         ShippedDate=9/23/1997   ShipVia=2       Freight=47.2200         ShipName=Die Wandernde Kuh      ShipAddress=Adenauerallee 900   ShipCity=Stuttgart      ShipRegion=null         ShipPostalCode=70563    ShipCountry=Germany     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10671   CustomerID=FRANR        EmployeeID=1    OrderDate=9/17/1997     RequiredDate=10/15/1997         ShippedDate=9/24/1997   ShipVia=1       Freight=30.3400         ShipName=France restauration    ShipAddress=54, rue Royale      ShipCity=Nantes         ShipRegion=null         ShipPostalCode=44000    ShipCountry=France      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10677   CustomerID=ANTON        EmployeeID=1    OrderDate=9/22/1997     RequiredDate=10/20/1997         ShippedDate=9/26/1997   ShipVia=3       Freight=4.0300  ShipName=Antonio Moreno Taquería        ShipAddress=Mataderos  2312     ShipCity=México D.F.    ShipRegion=null         ShipPostalCode=05023    ShipCountry=Mexico      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10680   CustomerID=OLDWO        EmployeeID=1    OrderDate=9/24/1997     RequiredDate=10/22/1997         ShippedDate=9/26/1997   ShipVia=1       Freight=26.6100         ShipName=Old World Delicatessen         ShipAddress=2743 Bering St.     ShipCity=Anchorage      ShipRegion=AK   ShipPostalCode=99508    ShipCountry=USA         Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10689   CustomerID=BERGS        EmployeeID=1    OrderDate=10/1/1997     RequiredDate=10/29/1997         ShippedDate=10/7/1997   ShipVia=2       Freight=13.4200         ShipName=Berglunds snabbköp     ShipAddress=Berguvsvägen  8     ShipCity=Luleå  ShipRegion=null         ShipPostalCode=S-958 22         ShipCountry=Sweden      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10690   CustomerID=HANAR        EmployeeID=1    OrderDate=10/2/1997     RequiredDate=10/30/1997         ShippedDate=10/3/1997   ShipVia=1       Freight=15.8000         ShipName=Hanari Carnes  ShipAddress=Rua do Paço, 67     ShipCity=Rio de Janeiro         ShipRegion=RJ   ShipPostalCode=05454-876        ShipCountry=Brazil      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10709   CustomerID=GOURL        EmployeeID=1    OrderDate=10/17/1997    RequiredDate=11/14/1997         ShippedDate=11/20/1997  ShipVia=3       Freight=210.8000        ShipName=Gourmet Lanchonetes    ShipAddress=Av. Brasil, 442     ShipCity=Campinas       ShipRegion=SP   ShipPostalCode=04876-786        ShipCountry=Brazil      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10710   CustomerID=FRANS        EmployeeID=1    OrderDate=10/20/1997    RequiredDate=11/17/1997         ShippedDate=10/23/1997  ShipVia=1       Freight=4.9800  ShipName=Franchi S.p.A.         ShipAddress=Via Monte Bianco 34         ShipCity=Torino         ShipRegion=null         ShipPostalCode=10100    ShipCountry=Italy       Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10713   CustomerID=SAVEA        EmployeeID=1    OrderDate=10/22/1997    RequiredDate=11/19/1997         ShippedDate=10/24/1997  ShipVia=1       Freight=167.0500        ShipName=Save-a-lot Markets     ShipAddress=187 Suffolk Ln.     ShipCity=Boise  ShipRegion=ID   ShipPostalCode=83720    ShipCountry=USA         Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10717   CustomerID=FRANK        EmployeeID=1    OrderDate=10/24/1997    RequiredDate=11/21/1997         ShippedDate=10/29/1997  ShipVia=2       Freight=59.2500         ShipName=Frankenversand         ShipAddress=Berliner Platz 43   ShipCity=München        ShipRegion=null         ShipPostalCode=80805    ShipCountry=Germany     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10718   CustomerID=KOENE        EmployeeID=1    OrderDate=10/27/1997    RequiredDate=11/24/1997         ShippedDate=10/29/1997  ShipVia=3       Freight=170.8800        ShipName=Königlich Essen        ShipAddress=Maubelstr. 90       ShipCity=Brandenburg    ShipRegion=null         ShipPostalCode=14776    ShipCountry=Germany     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10733   CustomerID=BERGS        EmployeeID=1    OrderDate=11/7/1997     RequiredDate=12/5/1997  ShippedDate=11/10/1997  ShipVia=3       Freight=110.1100        ShipName=Berglunds snabbköp     ShipAddress=Berguvsvägen  8     ShipCity=Luleå  ShipRegion=null         ShipPostalCode=S-958 22         ShipCountry=Sweden      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10743   CustomerID=AROUT        EmployeeID=1    OrderDate=11/17/1997    RequiredDate=12/15/1997         ShippedDate=11/21/1997  ShipVia=2       Freight=23.7200         ShipName=Around the Horn        ShipAddress=Brook Farm Stratford St. Mary       ShipCity=Colchester     ShipRegion=Essex        ShipPostalCode=CO7 6JX  ShipCountry=UK  Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10746   CustomerID=CHOPS        EmployeeID=1    OrderDate=11/19/1997    RequiredDate=12/17/1997         ShippedDate=11/21/1997  ShipVia=3       Freight=31.4300         ShipName=Chop-suey Chinese      ShipAddress=Hauptstr. 31        ShipCity=Bern   ShipRegion=null         ShipPostalCode=3012     ShipCountry=Switzerland         Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10773   CustomerID=ERNSH        EmployeeID=1    OrderDate=12/11/1997    RequiredDate=1/8/1998   ShippedDate=12/16/1997  ShipVia=3       Freight=96.4300         ShipName=Ernst Handel   ShipAddress=Kirchgasse 6        ShipCity=Graz   ShipRegion=null         ShipPostalCode=8010     ShipCountry=Austria     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10776   CustomerID=ERNSH        EmployeeID=1    OrderDate=12/15/1997    RequiredDate=1/12/1998  ShippedDate=12/18/1997  ShipVia=3       Freight=351.5300        ShipName=Ernst Handel   ShipAddress=Kirchgasse 6        ShipCity=Graz   ShipRegion=null         ShipPostalCode=8010     ShipCountry=Austria     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10785   CustomerID=GROSR        EmployeeID=1    OrderDate=12/18/1997    RequiredDate=1/15/1998  ShippedDate=12/24/1997  ShipVia=3       Freight=1.5100  ShipName=GROSELLA-Restaurante   ShipAddress=5ª Ave. Los Palos Grandes   ShipCity=Caracas        ShipRegion=DF   ShipPostalCode=1081     ShipCountry=Venezuela   Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10788   CustomerID=QUICK        EmployeeID=1    OrderDate=12/22/1997    RequiredDate=1/19/1998  ShippedDate=1/19/1998   ShipVia=2       Freight=42.7000         ShipName=QUICK-Stop     ShipAddress=Taucherstraße 10    ShipCity=Cunewalde      ShipRegion=null         ShipPostalCode=01307    ShipCountry=Germany     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10789   CustomerID=FOLIG        EmployeeID=1    OrderDate=12/22/1997    RequiredDate=1/19/1998  ShippedDate=12/31/1997  ShipVia=2       Freight=100.6000        ShipName=Folies gourmandes      ShipAddress=184, chaussée de Tournai    ShipCity=Lille  ShipRegion=null         ShipPostalCode=59000    ShipCountry=France      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10792   CustomerID=WOLZA        EmployeeID=1    OrderDate=12/23/1997    RequiredDate=1/20/1998  ShippedDate=12/31/1997  ShipVia=3       Freight=23.7900         ShipName=Wolski Zajazd  ShipAddress=ul. Filtrowa 68     ShipCity=Warszawa       ShipRegion=null         ShipPostalCode=01-012   ShipCountry=Poland      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10800   CustomerID=SEVES        EmployeeID=1    OrderDate=12/26/1997    RequiredDate=1/23/1998  ShippedDate=1/5/1998    ShipVia=3       Freight=137.4400        ShipName=Seven Seas Imports     ShipAddress=90 Wadhurst Rd.     ShipCity=London         ShipRegion=null         ShipPostalCode=OX15 4NB         ShipCountry=UK  Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10813   CustomerID=RICAR        EmployeeID=1    OrderDate=1/5/1998      RequiredDate=2/2/1998   ShippedDate=1/9/1998    ShipVia=1       Freight=47.3800         ShipName=Ricardo Adocicados     ShipAddress=Av. Copacabana, 267         ShipCity=Rio de Janeiro         ShipRegion=RJ   ShipPostalCode=02389-890        ShipCountry=Brazil      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10821   CustomerID=SPLIR        EmployeeID=1    OrderDate=1/8/1998      RequiredDate=2/5/1998   ShippedDate=1/15/1998   ShipVia=1       Freight=36.6800         ShipName=Split Rail Beer & Ale  ShipAddress=P.O. Box 555        ShipCity=Lander         ShipRegion=WY   ShipPostalCode=82520    ShipCountry=USA         Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10825   CustomerID=DRACD        EmployeeID=1    OrderDate=1/9/1998      RequiredDate=2/6/1998   ShippedDate=1/14/1998   ShipVia=1       Freight=79.2500         ShipName=Drachenblut Delikatessen       ShipAddress=Walserweg 21        ShipCity=Aachen         ShipRegion=null         ShipPostalCode=52066    ShipCountry=Germany     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10827   CustomerID=BONAP        EmployeeID=1    OrderDate=1/12/1998     RequiredDate=1/26/1998  ShippedDate=2/6/1998    ShipVia=2       Freight=63.5400         ShipName=Bon app'       ShipAddress=12, rue des Bouchers        ShipCity=Marseille      ShipRegion=null         ShipPostalCode=13008    ShipCountry=France      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10834   CustomerID=TRADH        EmployeeID=1    OrderDate=1/15/1998     RequiredDate=2/12/1998  ShippedDate=1/19/1998   ShipVia=3       Freight=29.7800         ShipName=Tradiçao Hipermercados         ShipAddress=Av. Inês de Castro, 414     ShipCity=Sao Paulo      ShipRegion=SP   ShipPostalCode=05634-030        ShipCountry=Brazil      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10835   CustomerID=ALFKI        EmployeeID=1    OrderDate=1/15/1998     RequiredDate=2/12/1998  ShippedDate=1/21/1998   ShipVia=3       Freight=69.5300         ShipName=Alfred's Futterkiste   ShipAddress=Obere Str. 57       ShipCity=Berlin         ShipRegion=null         ShipPostalCode=12209    ShipCountry=Germany     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10842   CustomerID=TORTU        EmployeeID=1    OrderDate=1/20/1998     RequiredDate=2/17/1998  ShippedDate=1/29/1998   ShipVia=3       Freight=54.4200         ShipName=Tortuga Restaurante    ShipAddress=Avda. Azteca 123    ShipCity=México D.F.    ShipRegion=null         ShipPostalCode=05033    ShipCountry=Mexico      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10850   CustomerID=VICTE        EmployeeID=1    OrderDate=1/23/1998     RequiredDate=3/6/1998   ShippedDate=1/30/1998   ShipVia=1       Freight=49.1900         ShipName=Victuailles en stock   ShipAddress=2, rue du Commerce  ShipCity=Lyon   ShipRegion=null         ShipPostalCode=69004    ShipCountry=France      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10859   CustomerID=FRANK        EmployeeID=1    OrderDate=1/29/1998     RequiredDate=2/26/1998  ShippedDate=2/2/1998    ShipVia=2       Freight=76.1000         ShipName=Frankenversand         ShipAddress=Berliner Platz 43   ShipCity=München        ShipRegion=null         ShipPostalCode=80805    ShipCountry=Germany     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10877   CustomerID=RICAR        EmployeeID=1    OrderDate=2/9/1998      RequiredDate=3/9/1998   ShippedDate=2/19/1998   ShipVia=1       Freight=38.0600         ShipName=Ricardo Adocicados     ShipAddress=Av. Copacabana, 267         ShipCity=Rio de Janeiro         ShipRegion=RJ   ShipPostalCode=02389-890        ShipCountry=Brazil      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10886   CustomerID=HANAR        EmployeeID=1    OrderDate=2/13/1998     RequiredDate=3/13/1998  ShippedDate=3/2/1998    ShipVia=1       Freight=4.9900  ShipName=Hanari Carnes  ShipAddress=Rua do Paço, 67     ShipCity=Rio de Janeiro         ShipRegion=RJ   ShipPostalCode=05454-876        ShipCountry=Brazil      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10888   CustomerID=GODOS        EmployeeID=1    OrderDate=2/16/1998     RequiredDate=3/16/1998  ShippedDate=2/23/1998   ShipVia=2       Freight=51.8700         ShipName=Godos Cocina Típica    ShipAddress=C/ Romero, 33       ShipCity=Sevilla        ShipRegion=null         ShipPostalCode=41101    ShipCountry=Spain       Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10894   CustomerID=SAVEA        EmployeeID=1    OrderDate=2/18/1998     RequiredDate=3/18/1998  ShippedDate=2/20/1998   ShipVia=1       Freight=116.1300        ShipName=Save-a-lot Markets     ShipAddress=187 Suffolk Ln.     ShipCity=Boise  ShipRegion=ID   ShipPostalCode=83720    ShipCountry=USA         Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10900   CustomerID=WELLI        EmployeeID=1    OrderDate=2/20/1998     RequiredDate=3/20/1998  ShippedDate=3/4/1998    ShipVia=2       Freight=1.6600  ShipName=Wellington Importadora         ShipAddress=Rua do Mercado, 12  ShipCity=Resende        ShipRegion=SP   ShipPostalCode=08737-363        ShipCountry=Brazil      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10902   CustomerID=FOLKO        EmployeeID=1    OrderDate=2/23/1998     RequiredDate=3/23/1998  ShippedDate=3/3/1998    ShipVia=1       Freight=44.1500         ShipName=Folk och fä HB         ShipAddress=Åkergatan 24        ShipCity=Bräcke         ShipRegion=null         ShipPostalCode=S-844 67         ShipCountry=Sweden      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10909   CustomerID=SANTG        EmployeeID=1    OrderDate=2/26/1998     RequiredDate=3/26/1998  ShippedDate=3/10/1998   ShipVia=2       Freight=53.0500         ShipName=Santé Gourmet  ShipAddress=Erling Skakkes gate 78      ShipCity=Stavern        ShipRegion=null         ShipPostalCode=4110     ShipCountry=Norway      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10910   CustomerID=WILMK        EmployeeID=1    OrderDate=2/26/1998     RequiredDate=3/26/1998  ShippedDate=3/4/1998    ShipVia=3       Freight=38.1100         ShipName=Wilman Kala    ShipAddress=Keskuskatu 45       ShipCity=Helsinki       ShipRegion=null         ShipPostalCode=21240    ShipCountry=Finland     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10916   CustomerID=RANCH        EmployeeID=1    OrderDate=2/27/1998     RequiredDate=3/27/1998  ShippedDate=3/9/1998    ShipVia=2       Freight=63.7700         ShipName=Rancho grande  ShipAddress=Av. del Libertador 900      ShipCity=Buenos Aires   ShipRegion=null         ShipPostalCode=1010     ShipCountry=Argentina   Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10921   CustomerID=VAFFE        EmployeeID=1    OrderDate=3/3/1998      RequiredDate=4/14/1998  ShippedDate=3/9/1998    ShipVia=1       Freight=176.4800        ShipName=Vaffeljernet   ShipAddress=Smagsloget 45       ShipCity=Århus  ShipRegion=null         ShipPostalCode=8200     ShipCountry=Denmark     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10928   CustomerID=GALED        EmployeeID=1    OrderDate=3/5/1998      RequiredDate=4/2/1998   ShippedDate=3/18/1998   ShipVia=1       Freight=1.3600  ShipName=Galería del gastronómo         ShipAddress=Rambla de Cataluña, 23      ShipCity=Barcelona      ShipRegion=null         ShipPostalCode=8022     ShipCountry=Spain       Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10946   CustomerID=VAFFE        EmployeeID=1    OrderDate=3/12/1998     RequiredDate=4/9/1998   ShippedDate=3/19/1998   ShipVia=2       Freight=27.2000         ShipName=Vaffeljernet   ShipAddress=Smagsloget 45       ShipCity=Århus  ShipRegion=null         ShipPostalCode=8200     ShipCountry=Denmark     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10950   CustomerID=MAGAA        EmployeeID=1    OrderDate=3/16/1998     RequiredDate=4/13/1998  ShippedDate=3/23/1998   ShipVia=2       Freight=2.5000  ShipName=Magazzini Alimentari Riuniti   ShipAddress=Via Ludovico il Moro 22     ShipCity=Bergamo        ShipRegion=null         ShipPostalCode=24100    ShipCountry=Italy       Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10952   CustomerID=ALFKI        EmployeeID=1    OrderDate=3/16/1998     RequiredDate=4/27/1998  ShippedDate=3/24/1998   ShipVia=1       Freight=40.4200         ShipName=Alfred's Futterkiste   ShipAddress=Obere Str. 57       ShipCity=Berlin         ShipRegion=null         ShipPostalCode=12209    ShipCountry=Germany     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10968   CustomerID=ERNSH        EmployeeID=1    OrderDate=3/23/1998     RequiredDate=4/20/1998  ShippedDate=4/1/1998    ShipVia=3       Freight=74.6000         ShipName=Ernst Handel   ShipAddress=Kirchgasse 6        ShipCity=Graz   ShipRegion=null         ShipPostalCode=8010     ShipCountry=Austria     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10969   CustomerID=COMMI        EmployeeID=1    OrderDate=3/23/1998     RequiredDate=4/20/1998  ShippedDate=3/30/1998   ShipVia=2       Freight=0.2100  ShipName=Comércio Mineiro       ShipAddress=Av. dos Lusíadas, 23        ShipCity=Sao Paulo      ShipRegion=SP   ShipPostalCode=05432-043        ShipCountry=Brazil      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10975   CustomerID=BOTTM        EmployeeID=1    OrderDate=3/25/1998     RequiredDate=4/22/1998  ShippedDate=3/27/1998   ShipVia=3       Freight=32.2700         ShipName=Bottom-Dollar Markets  ShipAddress=23 Tsawassen Blvd.  ShipCity=Tsawassen      ShipRegion=BC   ShipPostalCode=T2F 8M4  ShipCountry=Canada      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10976   CustomerID=HILAA        EmployeeID=1    OrderDate=3/25/1998     RequiredDate=5/6/1998   ShippedDate=4/3/1998    ShipVia=1       Freight=37.9700         ShipName=HILARION-Abastos       ShipAddress=Carrera 22 con Ave. Carlos Soublette #8-35  ShipCity=San Cristóbal  ShipRegion=Táchira      ShipPostalCode=5022     ShipCountry=Venezuela   Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10981   CustomerID=HANAR        EmployeeID=1    OrderDate=3/27/1998     RequiredDate=4/24/1998  ShippedDate=4/2/1998    ShipVia=2       Freight=193.3700        ShipName=Hanari Carnes  ShipAddress=Rua do Paço, 67     ShipCity=Rio de Janeiro         ShipRegion=RJ   ShipPostalCode=05454-876        ShipCountry=Brazil      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10984   CustomerID=SAVEA        EmployeeID=1    OrderDate=3/30/1998     RequiredDate=4/27/1998  ShippedDate=4/3/1998    ShipVia=3       Freight=211.2200        ShipName=Save-a-lot Markets     ShipAddress=187 Suffolk Ln.     ShipCity=Boise  ShipRegion=ID   ShipPostalCode=83720    ShipCountry=USA         Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10991   CustomerID=QUICK        EmployeeID=1    OrderDate=4/1/1998      RequiredDate=4/29/1998  ShippedDate=4/7/1998    ShipVia=1       Freight=38.5100         ShipName=QUICK-Stop     ShipAddress=Taucherstraße 10    ShipCity=Cunewalde      ShipRegion=null         ShipPostalCode=01307    ShipCountry=Germany     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10992   CustomerID=THEBI        EmployeeID=1    OrderDate=4/1/1998      RequiredDate=4/29/1998  ShippedDate=4/3/1998    ShipVia=3       Freight=4.2700  ShipName=The Big Cheese         ShipAddress=89 Jefferson Way Suite 2    ShipCity=Portland       ShipRegion=OR   ShipPostalCode=97201    ShipCountry=USA         Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=10995   CustomerID=PERIC        EmployeeID=1    OrderDate=4/2/1998      RequiredDate=4/30/1998  ShippedDate=4/6/1998    ShipVia=3       Freight=46.0000         ShipName=Pericles Comidas clásicas      ShipAddress=Calle Dr. Jorge Cash 321    ShipCity=México D.F.    ShipRegion=null         ShipPostalCode=05033    ShipCountry=Mexico      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=11012   CustomerID=FRANK        EmployeeID=1    OrderDate=4/9/1998      RequiredDate=4/23/1998  ShippedDate=4/17/1998   ShipVia=3       Freight=242.9500        ShipName=Frankenversand         ShipAddress=Berliner Platz 43   ShipCity=München        ShipRegion=null         ShipPostalCode=80805    ShipCountry=Germany     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=11023   CustomerID=BSBEV        EmployeeID=1    OrderDate=4/14/1998     RequiredDate=4/28/1998  ShippedDate=4/24/1998   ShipVia=2       Freight=123.8300        ShipName=B's Beverages  ShipAddress=Fauntleroy Circus   ShipCity=London         ShipRegion=null         ShipPostalCode=EC2 5NT  ShipCountry=UK  Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=11027   CustomerID=BOTTM        EmployeeID=1    OrderDate=4/16/1998     RequiredDate=5/14/1998  ShippedDate=4/20/1998   ShipVia=1       Freight=52.5200         ShipName=Bottom-Dollar Markets  ShipAddress=23 Tsawassen Blvd.  ShipCity=Tsawassen      ShipRegion=BC   ShipPostalCode=T2F 8M4  ShipCountry=Canada      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=11038   CustomerID=SUPRD        EmployeeID=1    OrderDate=4/21/1998     RequiredDate=5/19/1998  ShippedDate=4/30/1998   ShipVia=2       Freight=29.5900         ShipName=Suprêmes délices       ShipAddress=Boulevard Tirou, 255        ShipCity=Charleroi      ShipRegion=null         ShipPostalCode=B-6000   ShipCountry=Belgium     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=11039   CustomerID=LINOD        EmployeeID=1    OrderDate=4/21/1998     RequiredDate=5/19/1998  ShippedDate=null        ShipVia=2       Freight=65.0000         ShipName=LINO-Delicateses       ShipAddress=Ave. 5 de Mayo Porlamar     ShipCity=I. de Margarita        ShipRegion=Nueva Esparta        ShipPostalCode=4980     ShipCountry=Venezuela   Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=11064   CustomerID=SAVEA        EmployeeID=1    OrderDate=5/1/1998      RequiredDate=5/29/1998  ShippedDate=5/4/1998    ShipVia=1       Freight=30.0900         ShipName=Save-a-lot Markets     ShipAddress=187 Suffolk Ln.     ShipCity=Boise  ShipRegion=ID   ShipPostalCode=83720    ShipCountry=USA         Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=11067   CustomerID=DRACD        EmployeeID=1    OrderDate=5/4/1998      RequiredDate=5/18/1998  ShippedDate=5/6/1998    ShipVia=2       Freight=7.9800  ShipName=Drachenblut Delikatessen       ShipAddress=Walserweg 21        ShipCity=Aachen         ShipRegion=null         ShipPostalCode=52066    ShipCountry=Germany     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=11069   CustomerID=TORTU        EmployeeID=1    OrderDate=5/4/1998      RequiredDate=6/1/1998   ShippedDate=5/6/1998    ShipVia=2       Freight=15.6700         ShipName=Tortuga Restaurante    ShipAddress=Avda. Azteca 123    ShipCity=México D.F.    ShipRegion=null         ShipPostalCode=05033    ShipCountry=Mexico      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=11071   CustomerID=LILAS        EmployeeID=1    OrderDate=5/5/1998      RequiredDate=6/2/1998   ShippedDate=null        ShipVia=1       Freight=0.9300  ShipName=LILA-Supermercado      ShipAddress=Carrera 52 con Ave. Bolívar #65-98 Llano Largo      ShipCity=Barquisimeto   ShipRegion=Lara         ShipPostalCode=3508     ShipCountry=Venezuela   Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  Orders: OrderID=11077   CustomerID=RATTC        EmployeeID=1    OrderDate=5/6/1998      RequiredDate=6/3/1998   ShippedDate=null        ShipVia=2       Freight=8.5300  ShipName=Rattlesnake Canyon Grocery     ShipAddress=2817 Milton Dr.     ShipCity=Albuquerque    ShipRegion=NM   ShipPostalCode=87110    ShipCountry=USA         Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
  EmployeeTerritories: EmployeeID=1       TerritoryID=06897       Territory={ }   Employee={ }
  EmployeeTerritories: EmployeeID=1       TerritoryID=19713       Territory={ }   Employee={ }
  Employee: EmployeeID=2  LastName=Fuller         FirstName=Andrew        Title=Vice President, Sales     TitleOfCourtesy=Dr.     BirthDate=2/19/1952     HireDate=8/14/1992      Address=908 W. Capital Way      City=Tacoma     Region=WA       PostalCode=98401        Country=USA     HomePhone=(206) 555-9482        Extension=3457  Photo=...       Notes=Andrew received his BTS commercial in 1974 and a Ph.D. in international marketing from the University of Dallas in 1981.  He is fluent in French and Italian and reads German.  He joined the company as a sales representative, was promoted to sales manager in January 1992 and to vice president of sales in March 1993.  Andrew is a member of the Sales Management Roundtable, the Seattle Chamber of Commerce, and the Pacific Rim Importers Association.  ReportsTo=null  PhotoPath=http://accweb/emmployees/fuller.bmp   Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }

*** INSERT ***

*** AFTER ***
EmployeeID=1    LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
  Photo: ...
  Orders: OrderID=10258   CustomerID=ERNSH        EmployeeID=1    OrderDate=7/17/1996     RequiredDate=8/14/1996  ShippedDate=7/23/1996   ShipVia=1       Freight=140.5100        ShipName=Ernst Handel   ShipAddress=Kirchgasse 6        ShipCity=Graz   ShipRegion=null         ShipPostalCode=8010     ShipCountry=Austria     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10258    ProductID=2     UnitPrice=15.2000       Quantity=50     Discount=0.2    Order={ }       Product={ }
    Order_Details: OrderID=10258    ProductID=5     UnitPrice=17.0000       Quantity=65     Discount=0.2    Order={ }       Product={ }
    Order_Details: OrderID=10258    ProductID=32    UnitPrice=25.6000       Quantity=6      Discount=0.2    Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=ERNSH      CompanyName=Ernst Handel        ContactName=Roland Mendel       ContactTitle=Sales Manager      Address=Kirchgasse 6    City=Graz       Region=null     PostalCode=8010         Country=Austria         Phone=7675-3425         Fax=7675-3426   Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=1    CompanyName=Speedy Express      Phone=(503) 555-9831    Orders=...
  Orders: OrderID=10270   CustomerID=WARTH        EmployeeID=1    OrderDate=8/1/1996      RequiredDate=8/29/1996  ShippedDate=8/2/1996    ShipVia=1       Freight=136.5400        ShipName=Wartian Herkku         ShipAddress=Torikatu 38         ShipCity=Oulu   ShipRegion=null         ShipPostalCode=90110    ShipCountry=Finland     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10270    ProductID=36    UnitPrice=15.2000       Quantity=30     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10270    ProductID=43    UnitPrice=36.8000       Quantity=25     Discount=0      Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=WARTH      CompanyName=Wartian Herkku      ContactName=Pirkko Koskitalo    ContactTitle=Accounting Manager         Address=Torikatu 38     City=Oulu       Region=null     PostalCode=90110        Country=Finland         Phone=981-443655        Fax=981-443655  Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=1    CompanyName=Speedy Express      Phone=(503) 555-9831    Orders=...
  Orders: OrderID=10275   CustomerID=MAGAA        EmployeeID=1    OrderDate=8/7/1996      RequiredDate=9/4/1996   ShippedDate=8/9/1996    ShipVia=1       Freight=26.9300         ShipName=Magazzini Alimentari Riuniti   ShipAddress=Via Ludovico il Moro 22     ShipCity=Bergamo        ShipRegion=null         ShipPostalCode=24100    ShipCountry=Italy       Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10275    ProductID=24    UnitPrice=3.6000        Quantity=12     Discount=0.05   Order={ }       Product={ }
    Order_Details: OrderID=10275    ProductID=59    UnitPrice=44.0000       Quantity=6      Discount=0.05   Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=MAGAA      CompanyName=Magazzini Alimentari Riuniti        ContactName=Giovanni Rovelli    ContactTitle=Marketing Manager  Address=Via Ludovico il Moro 22         City=Bergamo    Region=null     PostalCode=24100        Country=Italy   Phone=035-640230        Fax=035-640231  Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=1    CompanyName=Speedy Express      Phone=(503) 555-9831    Orders=...
  Orders: OrderID=10285   CustomerID=QUICK        EmployeeID=1    OrderDate=8/20/1996     RequiredDate=9/17/1996  ShippedDate=8/26/1996   ShipVia=2       Freight=76.8300         ShipName=QUICK-Stop     ShipAddress=Taucherstraße 10    ShipCity=Cunewalde      ShipRegion=null         ShipPostalCode=01307    ShipCountry=Germany     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10285    ProductID=1     UnitPrice=14.4000       Quantity=45     Discount=0.2    Order={ }       Product={ }
    Order_Details: OrderID=10285    ProductID=40    UnitPrice=14.7000       Quantity=40     Discount=0.2    Order={ }       Product={ }
    Order_Details: OrderID=10285    ProductID=53    UnitPrice=26.2000       Quantity=36     Discount=0.2    Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=QUICK      CompanyName=QUICK-Stop  ContactName=Horst Kloss         ContactTitle=Accounting Manager         Address=Taucherstraße 10        City=Cunewalde  Region=null     PostalCode=01307        Country=Germany         Phone=0372-035188       Fax=null        Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=2    CompanyName=United Package      Phone=(503) 555-3199    Orders=...
  Orders: OrderID=10292   CustomerID=TRADH        EmployeeID=1    OrderDate=8/28/1996     RequiredDate=9/25/1996  ShippedDate=9/2/1996    ShipVia=2       Freight=1.3500  ShipName=Tradiçao Hipermercados         ShipAddress=Av. Inês de Castro, 414     ShipCity=Sao Paulo      ShipRegion=SP   ShipPostalCode=05634-030        ShipCountry=Brazil      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10292    ProductID=20    UnitPrice=64.8000       Quantity=20     Discount=0      Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=TRADH      CompanyName=Tradição Hipermercados      ContactName=Anabela Domingues   ContactTitle=Sales Representative       Address=Av. Inês de Castro, 414         City=Sao Paulo  Region=SP       PostalCode=05634-030    Country=Brazil  Phone=(11) 555-2167     Fax=(11) 555-2168       Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=2    CompanyName=United Package      Phone=(503) 555-3199    Orders=...
  Orders: OrderID=10293   CustomerID=TORTU        EmployeeID=1    OrderDate=8/29/1996     RequiredDate=9/26/1996  ShippedDate=9/11/1996   ShipVia=3       Freight=21.1800         ShipName=Tortuga Restaurante    ShipAddress=Avda. Azteca 123    ShipCity=México D.F.    ShipRegion=null         ShipPostalCode=05033    ShipCountry=Mexico      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10293    ProductID=18    UnitPrice=50.0000       Quantity=12     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10293    ProductID=24    UnitPrice=3.6000        Quantity=10     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10293    ProductID=63    UnitPrice=35.1000       Quantity=5      Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10293    ProductID=75    UnitPrice=6.2000        Quantity=6      Discount=0      Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=TORTU      CompanyName=Tortuga Restaurante         ContactName=Miguel Angel Paolino        ContactTitle=Owner      Address=Avda. Azteca 123        City=México D.F.        Region=null     PostalCode=05033        Country=Mexico  Phone=(5) 555-2933      Fax=null        Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=3    CompanyName=Federal Shipping    Phone=(503) 555-9931    Orders=...
  Orders: OrderID=10304   CustomerID=TORTU        EmployeeID=1    OrderDate=9/12/1996     RequiredDate=10/10/1996         ShippedDate=9/17/1996   ShipVia=2       Freight=63.7900         ShipName=Tortuga Restaurante    ShipAddress=Avda. Azteca 123    ShipCity=México D.F.    ShipRegion=null         ShipPostalCode=05033    ShipCountry=Mexico      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10304    ProductID=49    UnitPrice=16.0000       Quantity=30     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10304    ProductID=59    UnitPrice=44.0000       Quantity=10     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10304    ProductID=71    UnitPrice=17.2000       Quantity=2      Discount=0      Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=TORTU      CompanyName=Tortuga Restaurante         ContactName=Miguel Angel Paolino        ContactTitle=Owner      Address=Avda. Azteca 123        City=México D.F.        Region=null     PostalCode=05033        Country=Mexico  Phone=(5) 555-2933      Fax=null        Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=2    CompanyName=United Package      Phone=(503) 555-3199    Orders=...
  Orders: OrderID=10306   CustomerID=ROMEY        EmployeeID=1    OrderDate=9/16/1996     RequiredDate=10/14/1996         ShippedDate=9/23/1996   ShipVia=3       Freight=7.5600  ShipName=Romero y tomillo       ShipAddress=Gran Vía, 1         ShipCity=Madrid         ShipRegion=null         ShipPostalCode=28001    ShipCountry=Spain       Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10306    ProductID=30    UnitPrice=20.7000       Quantity=10     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10306    ProductID=53    UnitPrice=26.2000       Quantity=10     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10306    ProductID=54    UnitPrice=5.9000        Quantity=5      Discount=0      Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=ROMEY      CompanyName=Romero y tomillo    ContactName=Alejandra Camino    ContactTitle=Accounting Manager         Address=Gran Vía, 1     City=Madrid     Region=null     PostalCode=28001        Country=Spain   Phone=(91) 745 6200     Fax=(91) 745 6210       Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=3    CompanyName=Federal Shipping    Phone=(503) 555-9931    Orders=...
  Orders: OrderID=10311   CustomerID=DUMON        EmployeeID=1    OrderDate=9/20/1996     RequiredDate=10/4/1996  ShippedDate=9/26/1996   ShipVia=3       Freight=24.6900         ShipName=Du monde entier        ShipAddress=67, rue des Cinquante Otages        ShipCity=Nantes         ShipRegion=null         ShipPostalCode=44000    ShipCountry=France      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10311    ProductID=42    UnitPrice=11.2000       Quantity=6      Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10311    ProductID=69    UnitPrice=28.8000       Quantity=7      Discount=0      Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=DUMON      CompanyName=Du monde entier     ContactName=Janine Labrune      ContactTitle=Owner      Address=67, rue des Cinquante Otages    City=Nantes     Region=null     PostalCode=44000        Country=France  Phone=40.67.88.88       Fax=40.67.89.89         Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=3    CompanyName=Federal Shipping    Phone=(503) 555-9931    Orders=...
  Orders: OrderID=10314   CustomerID=RATTC        EmployeeID=1    OrderDate=9/25/1996     RequiredDate=10/23/1996         ShippedDate=10/4/1996   ShipVia=2       Freight=74.1600         ShipName=Rattlesnake Canyon Grocery     ShipAddress=2817 Milton Dr.     ShipCity=Albuquerque    ShipRegion=NM   ShipPostalCode=87110    ShipCountry=USA         Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10314    ProductID=32    UnitPrice=25.6000       Quantity=40     Discount=0.1    Order={ }       Product={ }
    Order_Details: OrderID=10314    ProductID=58    UnitPrice=10.6000       Quantity=30     Discount=0.1    Order={ }       Product={ }
    Order_Details: OrderID=10314    ProductID=62    UnitPrice=39.4000       Quantity=25     Discount=0.1    Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=RATTC      CompanyName=Rattlesnake Canyon Grocery  ContactName=Paula Wilson        ContactTitle=Assistant Sales Representative     Address=2817 Milton Dr.         City=Albuquerque        Region=NM       PostalCode=87110        Country=USA     Phone=(505) 555-5939    Fax=(505) 555-3620      Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=2    CompanyName=United Package      Phone=(503) 555-3199    Orders=...
  Orders: OrderID=10316   CustomerID=RATTC        EmployeeID=1    OrderDate=9/27/1996     RequiredDate=10/25/1996         ShippedDate=10/8/1996   ShipVia=3       Freight=150.1500        ShipName=Rattlesnake Canyon Grocery     ShipAddress=2817 Milton Dr.     ShipCity=Albuquerque    ShipRegion=NM   ShipPostalCode=87110    ShipCountry=USA         Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10316    ProductID=41    UnitPrice=7.7000        Quantity=10     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10316    ProductID=62    UnitPrice=39.4000       Quantity=70     Discount=0      Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=RATTC      CompanyName=Rattlesnake Canyon Grocery  ContactName=Paula Wilson        ContactTitle=Assistant Sales Representative     Address=2817 Milton Dr.         City=Albuquerque        Region=NM       PostalCode=87110        Country=USA     Phone=(505) 555-5939    Fax=(505) 555-3620      Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=3    CompanyName=Federal Shipping    Phone=(503) 555-9931    Orders=...
  Orders: OrderID=10325   CustomerID=KOENE        EmployeeID=1    OrderDate=10/9/1996     RequiredDate=10/23/1996         ShippedDate=10/14/1996  ShipVia=3       Freight=64.8600         ShipName=Königlich Essen        ShipAddress=Maubelstr. 90       ShipCity=Brandenburg    ShipRegion=null         ShipPostalCode=14776    ShipCountry=Germany     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10325    ProductID=6     UnitPrice=20.0000       Quantity=6      Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10325    ProductID=13    UnitPrice=4.8000        Quantity=12     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10325    ProductID=14    UnitPrice=18.6000       Quantity=9      Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10325    ProductID=31    UnitPrice=10.0000       Quantity=4      Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10325    ProductID=72    UnitPrice=27.8000       Quantity=40     Discount=0      Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=KOENE      CompanyName=Königlich Essen     ContactName=Philip Cramer       ContactTitle=Sales Associate    Address=Maubelstr. 90   City=Brandenburg        Region=null     PostalCode=14776        Country=Germany         Phone=0555-09876        Fax=null        Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=3    CompanyName=Federal Shipping    Phone=(503) 555-9931    Orders=...
  Orders: OrderID=10340   CustomerID=BONAP        EmployeeID=1    OrderDate=10/29/1996    RequiredDate=11/26/1996         ShippedDate=11/8/1996   ShipVia=3       Freight=166.3100        ShipName=Bon app'       ShipAddress=12, rue des Bouchers        ShipCity=Marseille      ShipRegion=null         ShipPostalCode=13008    ShipCountry=France      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10340    ProductID=18    UnitPrice=50.0000       Quantity=20     Discount=0.05   Order={ }       Product={ }
    Order_Details: OrderID=10340    ProductID=41    UnitPrice=7.7000        Quantity=12     Discount=0.05   Order={ }       Product={ }
    Order_Details: OrderID=10340    ProductID=43    UnitPrice=36.8000       Quantity=40     Discount=0.05   Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=BONAP      CompanyName=Bon app'    ContactName=Laurence Lebihan    ContactTitle=Owner      Address=12, rue des Bouchers    City=Marseille  Region=null     PostalCode=13008        Country=France  Phone=91.24.45.40       Fax=91.24.45.41         Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=3    CompanyName=Federal Shipping    Phone=(503) 555-9931    Orders=...
  Orders: OrderID=10351   CustomerID=ERNSH        EmployeeID=1    OrderDate=11/11/1996    RequiredDate=12/9/1996  ShippedDate=11/20/1996  ShipVia=1       Freight=162.3300        ShipName=Ernst Handel   ShipAddress=Kirchgasse 6        ShipCity=Graz   ShipRegion=null         ShipPostalCode=8010     ShipCountry=Austria     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10351    ProductID=38    UnitPrice=210.8000      Quantity=20     Discount=0.05   Order={ }       Product={ }
    Order_Details: OrderID=10351    ProductID=41    UnitPrice=7.7000        Quantity=13     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10351    ProductID=44    UnitPrice=15.5000       Quantity=77     Discount=0.05   Order={ }       Product={ }
    Order_Details: OrderID=10351    ProductID=65    UnitPrice=16.8000       Quantity=10     Discount=0.05   Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=ERNSH      CompanyName=Ernst Handel        ContactName=Roland Mendel       ContactTitle=Sales Manager      Address=Kirchgasse 6    City=Graz       Region=null     PostalCode=8010         Country=Austria         Phone=7675-3425         Fax=7675-3426   Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=1    CompanyName=Speedy Express      Phone=(503) 555-9831    Orders=...
  Orders: OrderID=10357   CustomerID=LILAS        EmployeeID=1    OrderDate=11/19/1996    RequiredDate=12/17/1996         ShippedDate=12/2/1996   ShipVia=3       Freight=34.8800         ShipName=LILA-Supermercado      ShipAddress=Carrera 52 con Ave. Bolívar #65-98 Llano Largo      ShipCity=Barquisimeto   ShipRegion=Lara         ShipPostalCode=3508     ShipCountry=Venezuela   Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10357    ProductID=10    UnitPrice=24.8000       Quantity=30     Discount=0.2    Order={ }       Product={ }
    Order_Details: OrderID=10357    ProductID=26    UnitPrice=24.9000       Quantity=16     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10357    ProductID=60    UnitPrice=27.2000       Quantity=8      Discount=0.2    Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=LILAS      CompanyName=LILA-Supermercado   ContactName=Carlos González     ContactTitle=Accounting Manager         Address=Carrera 52 con Ave. Bolívar #65-98 Llano Largo  City=Barquisimeto       Region=Lara     PostalCode=3508         Country=Venezuela       Phone=(9) 331-6954      Fax=(9) 331-7256        Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=3    CompanyName=Federal Shipping    Phone=(503) 555-9931    Orders=...
  Orders: OrderID=10361   CustomerID=QUICK        EmployeeID=1    OrderDate=11/22/1996    RequiredDate=12/20/1996         ShippedDate=12/3/1996   ShipVia=2       Freight=183.1700        ShipName=QUICK-Stop     ShipAddress=Taucherstraße 10    ShipCity=Cunewalde      ShipRegion=null         ShipPostalCode=01307    ShipCountry=Germany     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10361    ProductID=39    UnitPrice=14.4000       Quantity=54     Discount=0.1    Order={ }       Product={ }
    Order_Details: OrderID=10361    ProductID=60    UnitPrice=27.2000       Quantity=55     Discount=0.1    Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=QUICK      CompanyName=QUICK-Stop  ContactName=Horst Kloss         ContactTitle=Accounting Manager         Address=Taucherstraße 10        City=Cunewalde  Region=null     PostalCode=01307        Country=Germany         Phone=0372-035188       Fax=null        Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=2    CompanyName=United Package      Phone=(503) 555-3199    Orders=...
  Orders: OrderID=10364   CustomerID=EASTC        EmployeeID=1    OrderDate=11/26/1996    RequiredDate=1/7/1997   ShippedDate=12/4/1996   ShipVia=1       Freight=71.9700         ShipName=Eastern Connection     ShipAddress=35 King George      ShipCity=London         ShipRegion=null         ShipPostalCode=WX3 6FW  ShipCountry=UK  Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10364    ProductID=69    UnitPrice=28.8000       Quantity=30     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10364    ProductID=71    UnitPrice=17.2000       Quantity=5      Discount=0      Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=EASTC      CompanyName=Eastern Connection  ContactName=Ann Devon   ContactTitle=Sales Agent        Address=35 King George  City=London     Region=null     PostalCode=WX3 6FW      Country=UK      Phone=(171) 555-0297    Fax=(171) 555-3373      Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=1    CompanyName=Speedy Express      Phone=(503) 555-9831    Orders=...
  Orders: OrderID=10371   CustomerID=LAMAI        EmployeeID=1    OrderDate=12/3/1996     RequiredDate=12/31/1996         ShippedDate=12/24/1996  ShipVia=1       Freight=0.4500  ShipName=La maison d'Asie       ShipAddress=1 rue Alsace-Lorraine       ShipCity=Toulouse       ShipRegion=null         ShipPostalCode=31000    ShipCountry=France      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10371    ProductID=36    UnitPrice=15.2000       Quantity=6      Discount=0.2    Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=LAMAI      CompanyName=La maison d'Asie    ContactName=Annette Roulet      ContactTitle=Sales Manager      Address=1 rue Alsace-Lorraine   City=Toulouse   Region=null     PostalCode=31000        Country=France  Phone=61.77.61.10       Fax=61.77.61.11         Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=1    CompanyName=Speedy Express      Phone=(503) 555-9831    Orders=...
  Orders: OrderID=10374   CustomerID=WOLZA        EmployeeID=1    OrderDate=12/5/1996     RequiredDate=1/2/1997   ShippedDate=12/9/1996   ShipVia=3       Freight=3.9400  ShipName=Wolski Zajazd  ShipAddress=ul. Filtrowa 68     ShipCity=Warszawa       ShipRegion=null         ShipPostalCode=01-012   ShipCountry=Poland      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10374    ProductID=31    UnitPrice=10.0000       Quantity=30     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10374    ProductID=58    UnitPrice=10.6000       Quantity=15     Discount=0      Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=WOLZA      CompanyName=Wolski  Zajazd      ContactName=Zbyszek Piestrzeniewicz     ContactTitle=Owner      Address=ul. Filtrowa 68         City=Warszawa   Region=null     PostalCode=01-012       Country=Poland  Phone=(26) 642-7012     Fax=(26) 642-7012       Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=3    CompanyName=Federal Shipping    Phone=(503) 555-9931    Orders=...
  Orders: OrderID=10376   CustomerID=MEREP        EmployeeID=1    OrderDate=12/9/1996     RequiredDate=1/6/1997   ShippedDate=12/13/1996  ShipVia=2       Freight=20.3900         ShipName=Mère Paillarde         ShipAddress=43 rue St. Laurent  ShipCity=Montréal       ShipRegion=Québec       ShipPostalCode=H1J 1C3  ShipCountry=Canada      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10376    ProductID=31    UnitPrice=10.0000       Quantity=42     Discount=0.05   Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=MEREP      CompanyName=Mère Paillarde      ContactName=Jean Fresnière      ContactTitle=Marketing Assistant        Address=43 rue St. Laurent      City=Montréal   Region=Québec   PostalCode=H1J 1C3      Country=Canada  Phone=(514) 555-8054    Fax=(514) 555-8055      Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=2    CompanyName=United Package      Phone=(503) 555-3199    Orders=...
  Orders: OrderID=10377   CustomerID=SEVES        EmployeeID=1    OrderDate=12/9/1996     RequiredDate=1/6/1997   ShippedDate=12/13/1996  ShipVia=3       Freight=22.2100         ShipName=Seven Seas Imports     ShipAddress=90 Wadhurst Rd.     ShipCity=London         ShipRegion=null         ShipPostalCode=OX15 4NB         ShipCountry=UK  Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10377    ProductID=28    UnitPrice=36.4000       Quantity=20     Discount=0.15   Order={ }       Product={ }
    Order_Details: OrderID=10377    ProductID=39    UnitPrice=14.4000       Quantity=20     Discount=0.15   Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=SEVES      CompanyName=Seven Seas Imports  ContactName=Hari Kumar  ContactTitle=Sales Manager      Address=90 Wadhurst Rd.         City=London     Region=null     PostalCode=OX15 4NB     Country=UK      Phone=(171) 555-1717    Fax=(171) 555-5646      Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=3    CompanyName=Federal Shipping    Phone=(503) 555-9931    Orders=...
  Orders: OrderID=10385   CustomerID=SPLIR        EmployeeID=1    OrderDate=12/17/1996    RequiredDate=1/14/1997  ShippedDate=12/23/1996  ShipVia=2       Freight=30.9600         ShipName=Split Rail Beer & Ale  ShipAddress=P.O. Box 555        ShipCity=Lander         ShipRegion=WY   ShipPostalCode=82520    ShipCountry=USA         Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10385    ProductID=7     UnitPrice=24.0000       Quantity=10     Discount=0.2    Order={ }       Product={ }
    Order_Details: OrderID=10385    ProductID=60    UnitPrice=27.2000       Quantity=20     Discount=0.2    Order={ }       Product={ }
    Order_Details: OrderID=10385    ProductID=68    UnitPrice=10.0000       Quantity=8      Discount=0.2    Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=SPLIR      CompanyName=Split Rail Beer & Ale       ContactName=Art Braunschweiger  ContactTitle=Sales Manager      Address=P.O. Box 555    City=Lander     Region=WY       PostalCode=82520        Country=USA     Phone=(307) 555-4680    Fax=(307) 555-6525      Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=2    CompanyName=United Package      Phone=(503) 555-3199    Orders=...
  Orders: OrderID=10387   CustomerID=SANTG        EmployeeID=1    OrderDate=12/18/1996    RequiredDate=1/15/1997  ShippedDate=12/20/1996  ShipVia=2       Freight=93.6300         ShipName=Santé Gourmet  ShipAddress=Erling Skakkes gate 78      ShipCity=Stavern        ShipRegion=null         ShipPostalCode=4110     ShipCountry=Norway      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10387    ProductID=24    UnitPrice=3.6000        Quantity=15     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10387    ProductID=28    UnitPrice=36.4000       Quantity=6      Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10387    ProductID=59    UnitPrice=44.0000       Quantity=12     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10387    ProductID=71    UnitPrice=17.2000       Quantity=15     Discount=0      Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=SANTG      CompanyName=Santé Gourmet       ContactName=Jonas Bergulfsen    ContactTitle=Owner      Address=Erling Skakkes gate 78  City=Stavern    Region=null     PostalCode=4110         Country=Norway  Phone=07-98 92 35       Fax=07-98 92 47         Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=2    CompanyName=United Package      Phone=(503) 555-3199    Orders=...
  Orders: OrderID=10393   CustomerID=SAVEA        EmployeeID=1    OrderDate=12/25/1996    RequiredDate=1/22/1997  ShippedDate=1/3/1997    ShipVia=3       Freight=126.5600        ShipName=Save-a-lot Markets     ShipAddress=187 Suffolk Ln.     ShipCity=Boise  ShipRegion=ID   ShipPostalCode=83720    ShipCountry=USA         Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10393    ProductID=2     UnitPrice=15.2000       Quantity=25     Discount=0.25   Order={ }       Product={ }
    Order_Details: OrderID=10393    ProductID=14    UnitPrice=18.6000       Quantity=42     Discount=0.25   Order={ }       Product={ }
    Order_Details: OrderID=10393    ProductID=25    UnitPrice=11.2000       Quantity=7      Discount=0.25   Order={ }       Product={ }
    Order_Details: OrderID=10393    ProductID=26    UnitPrice=24.9000       Quantity=70     Discount=0.25   Order={ }       Product={ }
    Order_Details: OrderID=10393    ProductID=31    UnitPrice=10.0000       Quantity=32     Discount=0      Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=SAVEA      CompanyName=Save-a-lot Markets  ContactName=Jose Pavarotti      ContactTitle=Sales Representative       Address=187 Suffolk Ln.         City=Boise      Region=ID       PostalCode=83720        Country=USA     Phone=(208) 555-8097    Fax=null        Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=3    CompanyName=Federal Shipping    Phone=(503) 555-9931    Orders=...
  Orders: OrderID=10394   CustomerID=HUNGC        EmployeeID=1    OrderDate=12/25/1996    RequiredDate=1/22/1997  ShippedDate=1/3/1997    ShipVia=3       Freight=30.3400         ShipName=Hungry Coyote Import Store     ShipAddress=City Center Plaza 516 Main St.      ShipCity=Elgin  ShipRegion=OR   ShipPostalCode=97827    ShipCountry=USA         Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10394    ProductID=13    UnitPrice=4.8000        Quantity=10     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10394    ProductID=62    UnitPrice=39.4000       Quantity=10     Discount=0      Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=HUNGC      CompanyName=Hungry Coyote Import Store  ContactName=Yoshi Latimer       ContactTitle=Sales Representative       Address=City Center Plaza 516 Main St.  City=Elgin      Region=OR       PostalCode=97827        Country=USA     Phone=(503) 555-6874    Fax=(503) 555-2376      Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=3    CompanyName=Federal Shipping    Phone=(503) 555-9931    Orders=...
  Orders: OrderID=10396   CustomerID=FRANK        EmployeeID=1    OrderDate=12/27/1996    RequiredDate=1/10/1997  ShippedDate=1/6/1997    ShipVia=3       Freight=135.3500        ShipName=Frankenversand         ShipAddress=Berliner Platz 43   ShipCity=München        ShipRegion=null         ShipPostalCode=80805    ShipCountry=Germany     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10396    ProductID=23    UnitPrice=7.2000        Quantity=40     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10396    ProductID=71    UnitPrice=17.2000       Quantity=60     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10396    ProductID=72    UnitPrice=27.8000       Quantity=21     Discount=0      Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=FRANK      CompanyName=Frankenversand      ContactName=Peter Franken       ContactTitle=Marketing Manager  Address=Berliner Platz 43       City=München    Region=null     PostalCode=80805        Country=Germany         Phone=089-0877310       Fax=089-0877451         Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=3    CompanyName=Federal Shipping    Phone=(503) 555-9931    Orders=...
  Orders: OrderID=10400   CustomerID=EASTC        EmployeeID=1    OrderDate=1/1/1997      RequiredDate=1/29/1997  ShippedDate=1/16/1997   ShipVia=3       Freight=83.9300         ShipName=Eastern Connection     ShipAddress=35 King George      ShipCity=London         ShipRegion=null         ShipPostalCode=WX3 6FW  ShipCountry=UK  Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10400    ProductID=29    UnitPrice=99.0000       Quantity=21     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10400    ProductID=35    UnitPrice=14.4000       Quantity=35     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10400    ProductID=49    UnitPrice=16.0000       Quantity=30     Discount=0      Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=EASTC      CompanyName=Eastern Connection  ContactName=Ann Devon   ContactTitle=Sales Agent        Address=35 King George  City=London     Region=null     PostalCode=WX3 6FW      Country=UK      Phone=(171) 555-0297    Fax=(171) 555-3373      Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=3    CompanyName=Federal Shipping    Phone=(503) 555-9931    Orders=...
  Orders: OrderID=10401   CustomerID=RATTC        EmployeeID=1    OrderDate=1/1/1997      RequiredDate=1/29/1997  ShippedDate=1/10/1997   ShipVia=1       Freight=12.5100         ShipName=Rattlesnake Canyon Grocery     ShipAddress=2817 Milton Dr.     ShipCity=Albuquerque    ShipRegion=NM   ShipPostalCode=87110    ShipCountry=USA         Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10401    ProductID=30    UnitPrice=20.7000       Quantity=18     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10401    ProductID=56    UnitPrice=30.4000       Quantity=70     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10401    ProductID=65    UnitPrice=16.8000       Quantity=20     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10401    ProductID=71    UnitPrice=17.2000       Quantity=60     Discount=0      Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=RATTC      CompanyName=Rattlesnake Canyon Grocery  ContactName=Paula Wilson        ContactTitle=Assistant Sales Representative     Address=2817 Milton Dr.         City=Albuquerque        Region=NM       PostalCode=87110        Country=USA     Phone=(505) 555-5939    Fax=(505) 555-3620      Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=1    CompanyName=Speedy Express      Phone=(503) 555-9831    Orders=...
  Orders: OrderID=10405   CustomerID=LINOD        EmployeeID=1    OrderDate=1/6/1997      RequiredDate=2/3/1997   ShippedDate=1/22/1997   ShipVia=1       Freight=34.8200         ShipName=LINO-Delicateses       ShipAddress=Ave. 5 de Mayo Porlamar     ShipCity=I. de Margarita        ShipRegion=Nueva Esparta        ShipPostalCode=4980     ShipCountry=Venezuela   Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10405    ProductID=3     UnitPrice=8.0000        Quantity=50     Discount=0      Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=LINOD      CompanyName=LINO-Delicateses    ContactName=Felipe Izquierdo    ContactTitle=Owner      Address=Ave. 5 de Mayo Porlamar         City=I. de Margarita    Region=Nueva Esparta    PostalCode=4980         Country=Venezuela       Phone=(8) 34-56-12      Fax=(8) 34-93-93        Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=1    CompanyName=Speedy Express      Phone=(503) 555-9831    Orders=...
  Orders: OrderID=10453   CustomerID=AROUT        EmployeeID=1    OrderDate=2/21/1997     RequiredDate=3/21/1997  ShippedDate=2/26/1997   ShipVia=2       Freight=25.3600         ShipName=Around the Horn        ShipAddress=Brook Farm Stratford St. Mary       ShipCity=Colchester     ShipRegion=Essex        ShipPostalCode=CO7 6JX  ShipCountry=UK  Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10453    ProductID=48    UnitPrice=10.2000       Quantity=15     Discount=0.1    Order={ }       Product={ }
    Order_Details: OrderID=10453    ProductID=70    UnitPrice=12.0000       Quantity=25     Discount=0.1    Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=AROUT      CompanyName=Around the Horn     ContactName=Thomas Hardy        ContactTitle=Sales Representative       Address=120 Hanover Sq.         City=London     Region=null     PostalCode=WA1 1DP      Country=UK      Phone=(171) 555-7788    Fax=(171) 555-6750      Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=2    CompanyName=United Package      Phone=(503) 555-3199    Orders=...
  Orders: OrderID=10461   CustomerID=LILAS        EmployeeID=1    OrderDate=2/28/1997     RequiredDate=3/28/1997  ShippedDate=3/5/1997    ShipVia=3       Freight=148.6100        ShipName=LILA-Supermercado      ShipAddress=Carrera 52 con Ave. Bolívar #65-98 Llano Largo      ShipCity=Barquisimeto   ShipRegion=Lara         ShipPostalCode=3508     ShipCountry=Venezuela   Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10461    ProductID=21    UnitPrice=8.0000        Quantity=40     Discount=0.25   Order={ }       Product={ }
    Order_Details: OrderID=10461    ProductID=30    UnitPrice=20.7000       Quantity=28     Discount=0.25   Order={ }       Product={ }
    Order_Details: OrderID=10461    ProductID=55    UnitPrice=19.2000       Quantity=60     Discount=0.25   Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=LILAS      CompanyName=LILA-Supermercado   ContactName=Carlos González     ContactTitle=Accounting Manager         Address=Carrera 52 con Ave. Bolívar #65-98 Llano Largo  City=Barquisimeto       Region=Lara     PostalCode=3508         Country=Venezuela       Phone=(9) 331-6954      Fax=(9) 331-7256        Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=3    CompanyName=Federal Shipping    Phone=(503) 555-9931    Orders=...
  Orders: OrderID=10465   CustomerID=VAFFE        EmployeeID=1    OrderDate=3/5/1997      RequiredDate=4/2/1997   ShippedDate=3/14/1997   ShipVia=3       Freight=145.0400        ShipName=Vaffeljernet   ShipAddress=Smagsloget 45       ShipCity=Århus  ShipRegion=null         ShipPostalCode=8200     ShipCountry=Denmark     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10465    ProductID=24    UnitPrice=3.6000        Quantity=25     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10465    ProductID=29    UnitPrice=99.0000       Quantity=18     Discount=0.1    Order={ }       Product={ }
    Order_Details: OrderID=10465    ProductID=40    UnitPrice=14.7000       Quantity=20     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10465    ProductID=45    UnitPrice=7.6000        Quantity=30     Discount=0.1    Order={ }       Product={ }
    Order_Details: OrderID=10465    ProductID=50    UnitPrice=13.0000       Quantity=25     Discount=0      Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=VAFFE      CompanyName=Vaffeljernet        ContactName=Palle Ibsen         ContactTitle=Sales Manager      Address=Smagsloget 45   City=Århus      Region=null     PostalCode=8200         Country=Denmark         Phone=86 21 32 43       Fax=86 22 33 44         Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=3    CompanyName=Federal Shipping    Phone=(503) 555-9931    Orders=...
  Orders: OrderID=10469   CustomerID=WHITC        EmployeeID=1    OrderDate=3/10/1997     RequiredDate=4/7/1997   ShippedDate=3/14/1997   ShipVia=1       Freight=60.1800         ShipName=White Clover Markets   ShipAddress=1029 - 12th Ave. S.         ShipCity=Seattle        ShipRegion=WA   ShipPostalCode=98124    ShipCountry=USA         Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10469    ProductID=2     UnitPrice=15.2000       Quantity=40     Discount=0.15   Order={ }       Product={ }
    Order_Details: OrderID=10469    ProductID=16    UnitPrice=13.9000       Quantity=35     Discount=0.15   Order={ }       Product={ }
    Order_Details: OrderID=10469    ProductID=44    UnitPrice=15.5000       Quantity=2      Discount=0.15   Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=WHITC      CompanyName=White Clover Markets        ContactName=Karl Jablonski      ContactTitle=Owner      Address=305 - 14th Ave. S. Suite 3B     City=Seattle    Region=WA       PostalCode=98128        Country=USA     Phone=(206) 555-4112    Fax=(206) 555-4115      Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=1    CompanyName=Speedy Express      Phone=(503) 555-9831    Orders=...
  Orders: OrderID=10473   CustomerID=ISLAT        EmployeeID=1    OrderDate=3/13/1997     RequiredDate=3/27/1997  ShippedDate=3/21/1997   ShipVia=3       Freight=16.3700         ShipName=Island Trading         ShipAddress=Garden House Crowther Way   ShipCity=Cowes  ShipRegion=Isle of Wight        ShipPostalCode=PO31 7PJ         ShipCountry=UK  Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10473    ProductID=33    UnitPrice=2.0000        Quantity=12     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10473    ProductID=71    UnitPrice=17.2000       Quantity=12     Discount=0      Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=ISLAT      CompanyName=Island Trading      ContactName=Helen Bennett       ContactTitle=Marketing Manager  Address=Garden House Crowther Way       City=Cowes      Region=Isle of Wight    PostalCode=PO31 7PJ     Country=UK      Phone=(198) 555-8888    Fax=null        Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=3    CompanyName=Federal Shipping    Phone=(503) 555-9931    Orders=...
  Orders: OrderID=10482   CustomerID=LAZYK        EmployeeID=1    OrderDate=3/21/1997     RequiredDate=4/18/1997  ShippedDate=4/10/1997   ShipVia=3       Freight=7.4800  ShipName=Lazy K Kountry Store   ShipAddress=12 Orchestra Terrace        ShipCity=Walla Walla    ShipRegion=WA   ShipPostalCode=99362    ShipCountry=USA         Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10482    ProductID=40    UnitPrice=14.7000       Quantity=10     Discount=0      Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=LAZYK      CompanyName=Lazy K Kountry Store        ContactName=John Steel  ContactTitle=Marketing Manager  Address=12 Orchestra Terrace    City=Walla Walla        Region=WA       PostalCode=99362        Country=USA     Phone=(509) 555-7969    Fax=(509) 555-6221      Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=3    CompanyName=Federal Shipping    Phone=(503) 555-9931    Orders=...
  Orders: OrderID=10486   CustomerID=HILAA        EmployeeID=1    OrderDate=3/26/1997     RequiredDate=4/23/1997  ShippedDate=4/2/1997    ShipVia=2       Freight=30.5300         ShipName=HILARION-Abastos       ShipAddress=Carrera 22 con Ave. Carlos Soublette #8-35  ShipCity=San Cristóbal  ShipRegion=Táchira      ShipPostalCode=5022     ShipCountry=Venezuela   Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10486    ProductID=11    UnitPrice=16.8000       Quantity=5      Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10486    ProductID=51    UnitPrice=42.4000       Quantity=25     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10486    ProductID=74    UnitPrice=8.0000        Quantity=16     Discount=0      Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=HILAA      CompanyName=HILARION-Abastos    ContactName=Carlos Hernández    ContactTitle=Sales Representative       Address=Carrera 22 con Ave. Carlos Soublette #8-35      City=San Cristóbal      Region=Táchira  PostalCode=5022         Country=Venezuela       Phone=(5) 555-1340      Fax=(5) 555-1948        Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=2    CompanyName=United Package      Phone=(503) 555-3199    Orders=...
  Orders: OrderID=10508   CustomerID=OTTIK        EmployeeID=1    OrderDate=4/16/1997     RequiredDate=5/14/1997  ShippedDate=5/13/1997   ShipVia=2       Freight=4.9900  ShipName=Ottilies Käseladen     ShipAddress=Mehrheimerstr. 369  ShipCity=Köln   ShipRegion=null         ShipPostalCode=50739    ShipCountry=Germany     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10508    ProductID=13    UnitPrice=6.0000        Quantity=10     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10508    ProductID=39    UnitPrice=18.0000       Quantity=10     Discount=0      Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=OTTIK      CompanyName=Ottilies Käseladen  ContactName=Henriette Pfalzheim         ContactTitle=Owner      Address=Mehrheimerstr. 369      City=Köln       Region=null     PostalCode=50739        Country=Germany         Phone=0221-0644327      Fax=0221-0765721        Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=2    CompanyName=United Package      Phone=(503) 555-3199    Orders=...
  Orders: OrderID=10524   CustomerID=BERGS        EmployeeID=1    OrderDate=5/1/1997      RequiredDate=5/29/1997  ShippedDate=5/7/1997    ShipVia=2       Freight=244.7900        ShipName=Berglunds snabbköp     ShipAddress=Berguvsvägen  8     ShipCity=Luleå  ShipRegion=null         ShipPostalCode=S-958 22         ShipCountry=Sweden      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10524    ProductID=10    UnitPrice=31.0000       Quantity=2      Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10524    ProductID=30    UnitPrice=25.8900       Quantity=10     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10524    ProductID=43    UnitPrice=46.0000       Quantity=60     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10524    ProductID=54    UnitPrice=7.4500        Quantity=15     Discount=0      Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=BERGS      CompanyName=Berglunds snabbköp  ContactName=Christina Berglund  ContactTitle=Order Administrator        Address=Berguvsvägen  8         City=Luleå      Region=null     PostalCode=S-958 22     Country=Sweden  Phone=0921-12 34 65     Fax=0921-12 34 67       Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=2    CompanyName=United Package      Phone=(503) 555-3199    Orders=...
  Orders: OrderID=10525   CustomerID=BONAP        EmployeeID=1    OrderDate=5/2/1997      RequiredDate=5/30/1997  ShippedDate=5/23/1997   ShipVia=2       Freight=11.0600         ShipName=Bon app'       ShipAddress=12, rue des Bouchers        ShipCity=Marseille      ShipRegion=null         ShipPostalCode=13008    ShipCountry=France      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10525    ProductID=36    UnitPrice=19.0000       Quantity=30     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10525    ProductID=40    UnitPrice=18.4000       Quantity=15     Discount=0.1    Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=BONAP      CompanyName=Bon app'    ContactName=Laurence Lebihan    ContactTitle=Owner      Address=12, rue des Bouchers    City=Marseille  Region=null     PostalCode=13008        Country=France  Phone=91.24.45.40       Fax=91.24.45.41         Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=2    CompanyName=United Package      Phone=(503) 555-3199    Orders=...
  Orders: OrderID=10537   CustomerID=RICSU        EmployeeID=1    OrderDate=5/14/1997     RequiredDate=5/28/1997  ShippedDate=5/19/1997   ShipVia=1       Freight=78.8500         ShipName=Richter Supermarkt     ShipAddress=Starenweg 5         ShipCity=Genève         ShipRegion=null         ShipPostalCode=1204     ShipCountry=Switzerland         Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10537    ProductID=31    UnitPrice=12.5000       Quantity=30     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10537    ProductID=51    UnitPrice=53.0000       Quantity=6      Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10537    ProductID=58    UnitPrice=13.2500       Quantity=20     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10537    ProductID=72    UnitPrice=34.8000       Quantity=21     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10537    ProductID=73    UnitPrice=15.0000       Quantity=9      Discount=0      Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=RICSU      CompanyName=Richter Supermarkt  ContactName=Michael Holz        ContactTitle=Sales Manager      Address=Grenzacherweg 237       City=Genève     Region=null     PostalCode=1203         Country=Switzerland     Phone=0897-034214       Fax=null        Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=1    CompanyName=Speedy Express      Phone=(503) 555-9831    Orders=...
  Orders: OrderID=10542   CustomerID=KOENE        EmployeeID=1    OrderDate=5/20/1997     RequiredDate=6/17/1997  ShippedDate=5/26/1997   ShipVia=3       Freight=10.9500         ShipName=Königlich Essen        ShipAddress=Maubelstr. 90       ShipCity=Brandenburg    ShipRegion=null         ShipPostalCode=14776    ShipCountry=Germany     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10542    ProductID=11    UnitPrice=21.0000       Quantity=15     Discount=0.05   Order={ }       Product={ }
    Order_Details: OrderID=10542    ProductID=54    UnitPrice=7.4500        Quantity=24     Discount=0.05   Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=KOENE      CompanyName=Königlich Essen     ContactName=Philip Cramer       ContactTitle=Sales Associate    Address=Maubelstr. 90   City=Brandenburg        Region=null     PostalCode=14776        Country=Germany         Phone=0555-09876        Fax=null        Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=3    CompanyName=Federal Shipping    Phone=(503) 555-9931    Orders=...
  Orders: OrderID=10546   CustomerID=VICTE        EmployeeID=1    OrderDate=5/23/1997     RequiredDate=6/20/1997  ShippedDate=5/27/1997   ShipVia=3       Freight=194.7200        ShipName=Victuailles en stock   ShipAddress=2, rue du Commerce  ShipCity=Lyon   ShipRegion=null         ShipPostalCode=69004    ShipCountry=France      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10546    ProductID=7     UnitPrice=30.0000       Quantity=10     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10546    ProductID=35    UnitPrice=18.0000       Quantity=30     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10546    ProductID=62    UnitPrice=49.3000       Quantity=40     Discount=0      Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=VICTE      CompanyName=Victuailles en stock        ContactName=Mary Saveley        ContactTitle=Sales Agent        Address=2, rue du Commerce      City=Lyon       Region=null     PostalCode=69004        Country=France  Phone=78.32.54.86       Fax=78.32.54.87         Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=3    CompanyName=Federal Shipping    Phone=(503) 555-9931    Orders=...
  Orders: OrderID=10558   CustomerID=AROUT        EmployeeID=1    OrderDate=6/4/1997      RequiredDate=7/2/1997   ShippedDate=6/10/1997   ShipVia=2       Freight=72.9700         ShipName=Around the Horn        ShipAddress=Brook Farm Stratford St. Mary       ShipCity=Colchester     ShipRegion=Essex        ShipPostalCode=CO7 6JX  ShipCountry=UK  Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10558    ProductID=47    UnitPrice=9.5000        Quantity=25     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10558    ProductID=51    UnitPrice=53.0000       Quantity=20     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10558    ProductID=52    UnitPrice=7.0000        Quantity=30     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10558    ProductID=53    UnitPrice=32.8000       Quantity=18     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10558    ProductID=73    UnitPrice=15.0000       Quantity=3      Discount=0      Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=AROUT      CompanyName=Around the Horn     ContactName=Thomas Hardy        ContactTitle=Sales Representative       Address=120 Hanover Sq.         City=London     Region=null     PostalCode=WA1 1DP      Country=UK      Phone=(171) 555-7788    Fax=(171) 555-6750      Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=2    CompanyName=United Package      Phone=(503) 555-3199    Orders=...
  Orders: OrderID=10562   CustomerID=REGGC        EmployeeID=1    OrderDate=6/9/1997      RequiredDate=7/7/1997   ShippedDate=6/12/1997   ShipVia=1       Freight=22.9500         ShipName=Reggiani Caseifici     ShipAddress=Strada Provinciale 124      ShipCity=Reggio Emilia  ShipRegion=null         ShipPostalCode=42100    ShipCountry=Italy       Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10562    ProductID=33    UnitPrice=2.5000        Quantity=20     Discount=0.1    Order={ }       Product={ }
    Order_Details: OrderID=10562    ProductID=62    UnitPrice=49.3000       Quantity=10     Discount=0.1    Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=REGGC      CompanyName=Reggiani Caseifici  ContactName=Maurizio Moroni     ContactTitle=Sales Associate    Address=Strada Provinciale 124  City=Reggio Emilia      Region=null     PostalCode=42100        Country=Italy   Phone=0522-556721       Fax=0522-556722         Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=1    CompanyName=Speedy Express      Phone=(503) 555-9831    Orders=...
  Orders: OrderID=10567   CustomerID=HUNGO        EmployeeID=1    OrderDate=6/12/1997     RequiredDate=7/10/1997  ShippedDate=6/17/1997   ShipVia=1       Freight=33.9700         ShipName=Hungry Owl All-Night Grocers   ShipAddress=8 Johnstown Road    ShipCity=Cork   ShipRegion=Co. Cork     ShipPostalCode=null     ShipCountry=Ireland     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10567    ProductID=31    UnitPrice=12.5000       Quantity=60     Discount=0.2    Order={ }       Product={ }
    Order_Details: OrderID=10567    ProductID=51    UnitPrice=53.0000       Quantity=3      Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10567    ProductID=59    UnitPrice=55.0000       Quantity=40     Discount=0.2    Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=HUNGO      CompanyName=Hungry Owl All-Night Grocers        ContactName=Patricia McKenna    ContactTitle=Sales Associate    Address=8 Johnstown Road        City=Cork       Region=Co. Cork         PostalCode=null         Country=Ireland         Phone=2967 542  Fax=2967 3333   Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=1    CompanyName=Speedy Express      Phone=(503) 555-9831    Orders=...
  Orders: OrderID=10579   CustomerID=LETSS        EmployeeID=1    OrderDate=6/25/1997     RequiredDate=7/23/1997  ShippedDate=7/4/1997    ShipVia=2       Freight=13.7300         ShipName=Let's Stop N Shop      ShipAddress=87 Polk St. Suite 5         ShipCity=San Francisco  ShipRegion=CA   ShipPostalCode=94117    ShipCountry=USA         Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10579    ProductID=15    UnitPrice=15.5000       Quantity=10     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10579    ProductID=75    UnitPrice=7.7500        Quantity=21     Discount=0      Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=LETSS      CompanyName=Let's Stop N Shop   ContactName=Jaime Yorres        ContactTitle=Owner      Address=87 Polk St. Suite 5     City=San Francisco      Region=CA       PostalCode=94117        Country=USA     Phone=(415) 555-5938    Fax=null        Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=2    CompanyName=United Package      Phone=(503) 555-3199    Orders=...
  Orders: OrderID=10587   CustomerID=QUEDE        EmployeeID=1    OrderDate=7/2/1997      RequiredDate=7/30/1997  ShippedDate=7/9/1997    ShipVia=1       Freight=62.5200         ShipName=Que Delícia    ShipAddress=Rua da Panificadora, 12     ShipCity=Rio de Janeiro         ShipRegion=RJ   ShipPostalCode=02389-673        ShipCountry=Brazil      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10587    ProductID=26    UnitPrice=31.2300       Quantity=6      Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10587    ProductID=35    UnitPrice=18.0000       Quantity=20     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10587    ProductID=77    UnitPrice=13.0000       Quantity=20     Discount=0      Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=QUEDE      CompanyName=Que Delícia         ContactName=Bernardo Batista    ContactTitle=Accounting Manager         Address=Rua da Panificadora, 12         City=Rio de Janeiro     Region=RJ       PostalCode=02389-673    Country=Brazil  Phone=(21) 555-4252     Fax=(21) 555-4545       Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=1    CompanyName=Speedy Express      Phone=(503) 555-9831    Orders=...
  Orders: OrderID=10591   CustomerID=VAFFE        EmployeeID=1    OrderDate=7/7/1997      RequiredDate=7/21/1997  ShippedDate=7/16/1997   ShipVia=1       Freight=55.9200         ShipName=Vaffeljernet   ShipAddress=Smagsloget 45       ShipCity=Århus  ShipRegion=null         ShipPostalCode=8200     ShipCountry=Denmark     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10591    ProductID=3     UnitPrice=10.0000       Quantity=14     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10591    ProductID=7     UnitPrice=30.0000       Quantity=10     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10591    ProductID=54    UnitPrice=7.4500        Quantity=50     Discount=0      Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=VAFFE      CompanyName=Vaffeljernet        ContactName=Palle Ibsen         ContactTitle=Sales Manager      Address=Smagsloget 45   City=Århus      Region=null     PostalCode=8200         Country=Denmark         Phone=86 21 32 43       Fax=86 22 33 44         Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=1    CompanyName=Speedy Express      Phone=(503) 555-9831    Orders=...
  Orders: OrderID=10598   CustomerID=RATTC        EmployeeID=1    OrderDate=7/14/1997     RequiredDate=8/11/1997  ShippedDate=7/18/1997   ShipVia=3       Freight=44.4200         ShipName=Rattlesnake Canyon Grocery     ShipAddress=2817 Milton Dr.     ShipCity=Albuquerque    ShipRegion=NM   ShipPostalCode=87110    ShipCountry=USA         Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10598    ProductID=27    UnitPrice=43.9000       Quantity=50     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10598    ProductID=71    UnitPrice=21.5000       Quantity=9      Discount=0      Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=RATTC      CompanyName=Rattlesnake Canyon Grocery  ContactName=Paula Wilson        ContactTitle=Assistant Sales Representative     Address=2817 Milton Dr.         City=Albuquerque        Region=NM       PostalCode=87110        Country=USA     Phone=(505) 555-5939    Fax=(505) 555-3620      Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=3    CompanyName=Federal Shipping    Phone=(503) 555-9931    Orders=...
  Orders: OrderID=10604   CustomerID=FURIB        EmployeeID=1    OrderDate=7/18/1997     RequiredDate=8/15/1997  ShippedDate=7/29/1997   ShipVia=1       Freight=7.4600  ShipName=Furia Bacalhau e Frutos do Mar         ShipAddress=Jardim das rosas n. 32      ShipCity=Lisboa         ShipRegion=null         ShipPostalCode=1675     ShipCountry=Portugal    Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10604    ProductID=48    UnitPrice=12.7500       Quantity=6      Discount=0.1    Order={ }       Product={ }
    Order_Details: OrderID=10604    ProductID=76    UnitPrice=18.0000       Quantity=10     Discount=0.1    Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=FURIB      CompanyName=Furia Bacalhau e Frutos do Mar      ContactName=Lino Rodriguez      ContactTitle=Sales Manager      Address=Jardim das rosas n. 32  City=Lisboa     Region=null     PostalCode=1675         Country=Portugal        Phone=(1) 354-2534      Fax=(1) 354-2535        Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=1    CompanyName=Speedy Express      Phone=(503) 555-9831    Orders=...
  Orders: OrderID=10605   CustomerID=MEREP        EmployeeID=1    OrderDate=7/21/1997     RequiredDate=8/18/1997  ShippedDate=7/29/1997   ShipVia=2       Freight=379.1300        ShipName=Mère Paillarde         ShipAddress=43 rue St. Laurent  ShipCity=Montréal       ShipRegion=Québec       ShipPostalCode=H1J 1C3  ShipCountry=Canada      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10605    ProductID=16    UnitPrice=17.4500       Quantity=30     Discount=0.05   Order={ }       Product={ }
    Order_Details: OrderID=10605    ProductID=59    UnitPrice=55.0000       Quantity=20     Discount=0.05   Order={ }       Product={ }
    Order_Details: OrderID=10605    ProductID=60    UnitPrice=34.0000       Quantity=70     Discount=0.05   Order={ }       Product={ }
    Order_Details: OrderID=10605    ProductID=71    UnitPrice=21.5000       Quantity=15     Discount=0.05   Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=MEREP      CompanyName=Mère Paillarde      ContactName=Jean Fresnière      ContactTitle=Marketing Assistant        Address=43 rue St. Laurent      City=Montréal   Region=Québec   PostalCode=H1J 1C3      Country=Canada  Phone=(514) 555-8054    Fax=(514) 555-8055      Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=2    CompanyName=United Package      Phone=(503) 555-3199    Orders=...
  Orders: OrderID=10612   CustomerID=SAVEA        EmployeeID=1    OrderDate=7/28/1997     RequiredDate=8/25/1997  ShippedDate=8/1/1997    ShipVia=2       Freight=544.0800        ShipName=Save-a-lot Markets     ShipAddress=187 Suffolk Ln.     ShipCity=Boise  ShipRegion=ID   ShipPostalCode=83720    ShipCountry=USA         Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10612    ProductID=10    UnitPrice=31.0000       Quantity=70     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10612    ProductID=36    UnitPrice=19.0000       Quantity=55     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10612    ProductID=49    UnitPrice=20.0000       Quantity=18     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10612    ProductID=60    UnitPrice=34.0000       Quantity=40     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10612    ProductID=76    UnitPrice=18.0000       Quantity=80     Discount=0      Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=SAVEA      CompanyName=Save-a-lot Markets  ContactName=Jose Pavarotti      ContactTitle=Sales Representative       Address=187 Suffolk Ln.         City=Boise      Region=ID       PostalCode=83720        Country=USA     Phone=(208) 555-8097    Fax=null        Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=2    CompanyName=United Package      Phone=(503) 555-3199    Orders=...
  Orders: OrderID=10616   CustomerID=GREAL        EmployeeID=1    OrderDate=7/31/1997     RequiredDate=8/28/1997  ShippedDate=8/5/1997    ShipVia=2       Freight=116.5300        ShipName=Great Lakes Food Market        ShipAddress=2732 Baker Blvd.    ShipCity=Eugene         ShipRegion=OR   ShipPostalCode=97403    ShipCountry=USA         Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10616    ProductID=38    UnitPrice=263.5000      Quantity=15     Discount=0.05   Order={ }       Product={ }
    Order_Details: OrderID=10616    ProductID=56    UnitPrice=38.0000       Quantity=14     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10616    ProductID=70    UnitPrice=15.0000       Quantity=15     Discount=0.05   Order={ }       Product={ }
    Order_Details: OrderID=10616    ProductID=71    UnitPrice=21.5000       Quantity=15     Discount=0.05   Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=GREAL      CompanyName=Great Lakes Food Market     ContactName=Howard Snyder       ContactTitle=Marketing Manager  Address=2732 Baker Blvd.        City=Eugene     Region=OR       PostalCode=97403        Country=USA     Phone=(503) 555-7555    Fax=null        Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=2    CompanyName=United Package      Phone=(503) 555-3199    Orders=...
  Orders: OrderID=10618   CustomerID=MEREP        EmployeeID=1    OrderDate=8/1/1997      RequiredDate=9/12/1997  ShippedDate=8/8/1997    ShipVia=1       Freight=154.6800        ShipName=Mère Paillarde         ShipAddress=43 rue St. Laurent  ShipCity=Montréal       ShipRegion=Québec       ShipPostalCode=H1J 1C3  ShipCountry=Canada      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10618    ProductID=6     UnitPrice=25.0000       Quantity=70     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10618    ProductID=56    UnitPrice=38.0000       Quantity=20     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10618    ProductID=68    UnitPrice=12.5000       Quantity=15     Discount=0      Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=MEREP      CompanyName=Mère Paillarde      ContactName=Jean Fresnière      ContactTitle=Marketing Assistant        Address=43 rue St. Laurent      City=Montréal   Region=Québec   PostalCode=H1J 1C3      Country=Canada  Phone=(514) 555-8054    Fax=(514) 555-8055      Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=1    CompanyName=Speedy Express      Phone=(503) 555-9831    Orders=...
  Orders: OrderID=10626   CustomerID=BERGS        EmployeeID=1    OrderDate=8/11/1997     RequiredDate=9/8/1997   ShippedDate=8/20/1997   ShipVia=2       Freight=138.6900        ShipName=Berglunds snabbköp     ShipAddress=Berguvsvägen  8     ShipCity=Luleå  ShipRegion=null         ShipPostalCode=S-958 22         ShipCountry=Sweden      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10626    ProductID=53    UnitPrice=32.8000       Quantity=12     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10626    ProductID=60    UnitPrice=34.0000       Quantity=20     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10626    ProductID=71    UnitPrice=21.5000       Quantity=20     Discount=0      Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=BERGS      CompanyName=Berglunds snabbköp  ContactName=Christina Berglund  ContactTitle=Order Administrator        Address=Berguvsvägen  8         City=Luleå      Region=null     PostalCode=S-958 22     Country=Sweden  Phone=0921-12 34 65     Fax=0921-12 34 67       Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=2    CompanyName=United Package      Phone=(503) 555-3199    Orders=...
  Orders: OrderID=10630   CustomerID=KOENE        EmployeeID=1    OrderDate=8/13/1997     RequiredDate=9/10/1997  ShippedDate=8/19/1997   ShipVia=2       Freight=32.3500         ShipName=Königlich Essen        ShipAddress=Maubelstr. 90       ShipCity=Brandenburg    ShipRegion=null         ShipPostalCode=14776    ShipCountry=Germany     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10630    ProductID=55    UnitPrice=24.0000       Quantity=12     Discount=0.05   Order={ }       Product={ }
    Order_Details: OrderID=10630    ProductID=76    UnitPrice=18.0000       Quantity=35     Discount=0      Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=KOENE      CompanyName=Königlich Essen     ContactName=Philip Cramer       ContactTitle=Sales Associate    Address=Maubelstr. 90   City=Brandenburg        Region=null     PostalCode=14776        Country=Germany         Phone=0555-09876        Fax=null        Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=2    CompanyName=United Package      Phone=(503) 555-3199    Orders=...
  Orders: OrderID=10653   CustomerID=FRANK        EmployeeID=1    OrderDate=9/2/1997      RequiredDate=9/30/1997  ShippedDate=9/19/1997   ShipVia=1       Freight=93.2500         ShipName=Frankenversand         ShipAddress=Berliner Platz 43   ShipCity=München        ShipRegion=null         ShipPostalCode=80805    ShipCountry=Germany     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10653    ProductID=16    UnitPrice=17.4500       Quantity=30     Discount=0.1    Order={ }       Product={ }
    Order_Details: OrderID=10653    ProductID=60    UnitPrice=34.0000       Quantity=20     Discount=0.1    Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=FRANK      CompanyName=Frankenversand      ContactName=Peter Franken       ContactTitle=Marketing Manager  Address=Berliner Platz 43       City=München    Region=null     PostalCode=80805        Country=Germany         Phone=089-0877310       Fax=089-0877451         Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=1    CompanyName=Speedy Express      Phone=(503) 555-9831    Orders=...
  Orders: OrderID=10655   CustomerID=REGGC        EmployeeID=1    OrderDate=9/3/1997      RequiredDate=10/1/1997  ShippedDate=9/11/1997   ShipVia=2       Freight=4.4100  ShipName=Reggiani Caseifici     ShipAddress=Strada Provinciale 124      ShipCity=Reggio Emilia  ShipRegion=null         ShipPostalCode=42100    ShipCountry=Italy       Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10655    ProductID=41    UnitPrice=9.6500        Quantity=20     Discount=0.2    Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=REGGC      CompanyName=Reggiani Caseifici  ContactName=Maurizio Moroni     ContactTitle=Sales Associate    Address=Strada Provinciale 124  City=Reggio Emilia      Region=null     PostalCode=42100        Country=Italy   Phone=0522-556721       Fax=0522-556722         Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=2    CompanyName=United Package      Phone=(503) 555-3199    Orders=...
  Orders: OrderID=10664   CustomerID=FURIB        EmployeeID=1    OrderDate=9/10/1997     RequiredDate=10/8/1997  ShippedDate=9/19/1997   ShipVia=3       Freight=1.2700  ShipName=Furia Bacalhau e Frutos do Mar         ShipAddress=Jardim das rosas n. 32      ShipCity=Lisboa         ShipRegion=null         ShipPostalCode=1675     ShipCountry=Portugal    Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10664    ProductID=10    UnitPrice=31.0000       Quantity=24     Discount=0.15   Order={ }       Product={ }
    Order_Details: OrderID=10664    ProductID=56    UnitPrice=38.0000       Quantity=12     Discount=0.15   Order={ }       Product={ }
    Order_Details: OrderID=10664    ProductID=65    UnitPrice=21.0500       Quantity=15     Discount=0.15   Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=FURIB      CompanyName=Furia Bacalhau e Frutos do Mar      ContactName=Lino Rodriguez      ContactTitle=Sales Manager      Address=Jardim das rosas n. 32  City=Lisboa     Region=null     PostalCode=1675         Country=Portugal        Phone=(1) 354-2534      Fax=(1) 354-2535        Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=3    CompanyName=Federal Shipping    Phone=(503) 555-9931    Orders=...
  Orders: OrderID=10665   CustomerID=LONEP        EmployeeID=1    OrderDate=9/11/1997     RequiredDate=10/9/1997  ShippedDate=9/17/1997   ShipVia=2       Freight=26.3100         ShipName=Lonesome Pine Restaurant       ShipAddress=89 Chiaroscuro Rd.  ShipCity=Portland       ShipRegion=OR   ShipPostalCode=97219    ShipCountry=USA         Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10665    ProductID=51    UnitPrice=53.0000       Quantity=20     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10665    ProductID=59    UnitPrice=55.0000       Quantity=1      Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10665    ProductID=76    UnitPrice=18.0000       Quantity=10     Discount=0      Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=LONEP      CompanyName=Lonesome Pine Restaurant    ContactName=Fran Wilson         ContactTitle=Sales Manager      Address=89 Chiaroscuro Rd.      City=Portland   Region=OR       PostalCode=97219        Country=USA     Phone=(503) 555-9573    Fax=(503) 555-9646      Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=2    CompanyName=United Package      Phone=(503) 555-3199    Orders=...
  Orders: OrderID=10668   CustomerID=WANDK        EmployeeID=1    OrderDate=9/15/1997     RequiredDate=10/13/1997         ShippedDate=9/23/1997   ShipVia=2       Freight=47.2200         ShipName=Die Wandernde Kuh      ShipAddress=Adenauerallee 900   ShipCity=Stuttgart      ShipRegion=null         ShipPostalCode=70563    ShipCountry=Germany     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10668    ProductID=31    UnitPrice=12.5000       Quantity=8      Discount=0.1    Order={ }       Product={ }
    Order_Details: OrderID=10668    ProductID=55    UnitPrice=24.0000       Quantity=4      Discount=0.1    Order={ }       Product={ }
    Order_Details: OrderID=10668    ProductID=64    UnitPrice=33.2500       Quantity=15     Discount=0.1    Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=WANDK      CompanyName=Die Wandernde Kuh   ContactName=Rita Müller         ContactTitle=Sales Representative       Address=Adenauerallee 900       City=Stuttgart  Region=null     PostalCode=70563        Country=Germany         Phone=0711-020361       Fax=0711-035428         Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=2    CompanyName=United Package      Phone=(503) 555-3199    Orders=...
  Orders: OrderID=10671   CustomerID=FRANR        EmployeeID=1    OrderDate=9/17/1997     RequiredDate=10/15/1997         ShippedDate=9/24/1997   ShipVia=1       Freight=30.3400         ShipName=France restauration    ShipAddress=54, rue Royale      ShipCity=Nantes         ShipRegion=null         ShipPostalCode=44000    ShipCountry=France      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10671    ProductID=16    UnitPrice=17.4500       Quantity=10     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10671    ProductID=62    UnitPrice=49.3000       Quantity=10     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10671    ProductID=65    UnitPrice=21.0500       Quantity=12     Discount=0      Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=FRANR      CompanyName=France restauration         ContactName=Carine Schmitt      ContactTitle=Marketing Manager  Address=54, rue Royale  City=Nantes     Region=null     PostalCode=44000        Country=France  Phone=40.32.21.21       Fax=40.32.21.20         Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=1    CompanyName=Speedy Express      Phone=(503) 555-9831    Orders=...
  Orders: OrderID=10677   CustomerID=ANTON        EmployeeID=1    OrderDate=9/22/1997     RequiredDate=10/20/1997         ShippedDate=9/26/1997   ShipVia=3       Freight=4.0300  ShipName=Antonio Moreno Taquería        ShipAddress=Mataderos  2312     ShipCity=México D.F.    ShipRegion=null         ShipPostalCode=05023    ShipCountry=Mexico      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10677    ProductID=26    UnitPrice=31.2300       Quantity=30     Discount=0.15   Order={ }       Product={ }
    Order_Details: OrderID=10677    ProductID=33    UnitPrice=2.5000        Quantity=8      Discount=0.15   Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=ANTON      CompanyName=Antonio Moreno Taquería     ContactName=Antonio Moreno      ContactTitle=Owner      Address=Mataderos  2312         City=México D.F.        Region=null     PostalCode=05023        Country=Mexico  Phone=(5) 555-3932      Fax=null        Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=3    CompanyName=Federal Shipping    Phone=(503) 555-9931    Orders=...
  Orders: OrderID=10680   CustomerID=OLDWO        EmployeeID=1    OrderDate=9/24/1997     RequiredDate=10/22/1997         ShippedDate=9/26/1997   ShipVia=1       Freight=26.6100         ShipName=Old World Delicatessen         ShipAddress=2743 Bering St.     ShipCity=Anchorage      ShipRegion=AK   ShipPostalCode=99508    ShipCountry=USA         Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10680    ProductID=16    UnitPrice=17.4500       Quantity=50     Discount=0.25   Order={ }       Product={ }
    Order_Details: OrderID=10680    ProductID=31    UnitPrice=12.5000       Quantity=20     Discount=0.25   Order={ }       Product={ }
    Order_Details: OrderID=10680    ProductID=42    UnitPrice=14.0000       Quantity=40     Discount=0.25   Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=OLDWO      CompanyName=Old World Delicatessen      ContactName=Rene Phillips       ContactTitle=Sales Representative       Address=2743 Bering St.         City=Anchorage  Region=AK       PostalCode=99508        Country=USA     Phone=(907) 555-7584    Fax=(907) 555-2880      Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=1    CompanyName=Speedy Express      Phone=(503) 555-9831    Orders=...
  Orders: OrderID=10689   CustomerID=BERGS        EmployeeID=1    OrderDate=10/1/1997     RequiredDate=10/29/1997         ShippedDate=10/7/1997   ShipVia=2       Freight=13.4200         ShipName=Berglunds snabbköp     ShipAddress=Berguvsvägen  8     ShipCity=Luleå  ShipRegion=null         ShipPostalCode=S-958 22         ShipCountry=Sweden      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10689    ProductID=1     UnitPrice=18.0000       Quantity=35     Discount=0.25   Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=BERGS      CompanyName=Berglunds snabbköp  ContactName=Christina Berglund  ContactTitle=Order Administrator        Address=Berguvsvägen  8         City=Luleå      Region=null     PostalCode=S-958 22     Country=Sweden  Phone=0921-12 34 65     Fax=0921-12 34 67       Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=2    CompanyName=United Package      Phone=(503) 555-3199    Orders=...
  Orders: OrderID=10690   CustomerID=HANAR        EmployeeID=1    OrderDate=10/2/1997     RequiredDate=10/30/1997         ShippedDate=10/3/1997   ShipVia=1       Freight=15.8000         ShipName=Hanari Carnes  ShipAddress=Rua do Paço, 67     ShipCity=Rio de Janeiro         ShipRegion=RJ   ShipPostalCode=05454-876        ShipCountry=Brazil      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10690    ProductID=56    UnitPrice=38.0000       Quantity=20     Discount=0.25   Order={ }       Product={ }
    Order_Details: OrderID=10690    ProductID=77    UnitPrice=13.0000       Quantity=30     Discount=0.25   Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=HANAR      CompanyName=Hanari Carnes       ContactName=Mario Pontes        ContactTitle=Accounting Manager         Address=Rua do Paço, 67         City=Rio de Janeiro     Region=RJ       PostalCode=05454-876    Country=Brazil  Phone=(21) 555-0091     Fax=(21) 555-8765       Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=1    CompanyName=Speedy Express      Phone=(503) 555-9831    Orders=...
  Orders: OrderID=10709   CustomerID=GOURL        EmployeeID=1    OrderDate=10/17/1997    RequiredDate=11/14/1997         ShippedDate=11/20/1997  ShipVia=3       Freight=210.8000        ShipName=Gourmet Lanchonetes    ShipAddress=Av. Brasil, 442     ShipCity=Campinas       ShipRegion=SP   ShipPostalCode=04876-786        ShipCountry=Brazil      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10709    ProductID=8     UnitPrice=40.0000       Quantity=40     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10709    ProductID=51    UnitPrice=53.0000       Quantity=28     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10709    ProductID=60    UnitPrice=34.0000       Quantity=10     Discount=0      Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=GOURL      CompanyName=Gourmet Lanchonetes         ContactName=André Fonseca       ContactTitle=Sales Associate    Address=Av. Brasil, 442         City=Campinas   Region=SP       PostalCode=04876-786    Country=Brazil  Phone=(11) 555-9482     Fax=null        Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=3    CompanyName=Federal Shipping    Phone=(503) 555-9931    Orders=...
  Orders: OrderID=10710   CustomerID=FRANS        EmployeeID=1    OrderDate=10/20/1997    RequiredDate=11/17/1997         ShippedDate=10/23/1997  ShipVia=1       Freight=4.9800  ShipName=Franchi S.p.A.         ShipAddress=Via Monte Bianco 34         ShipCity=Torino         ShipRegion=null         ShipPostalCode=10100    ShipCountry=Italy       Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10710    ProductID=19    UnitPrice=9.2000        Quantity=5      Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10710    ProductID=47    UnitPrice=9.5000        Quantity=5      Discount=0      Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=FRANS      CompanyName=Franchi S.p.A.      ContactName=Paolo Accorti       ContactTitle=Sales Representative       Address=Via Monte Bianco 34     City=Torino     Region=null     PostalCode=10100        Country=Italy   Phone=011-4988260       Fax=011-4988261         Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=1    CompanyName=Speedy Express      Phone=(503) 555-9831    Orders=...
  Orders: OrderID=10713   CustomerID=SAVEA        EmployeeID=1    OrderDate=10/22/1997    RequiredDate=11/19/1997         ShippedDate=10/24/1997  ShipVia=1       Freight=167.0500        ShipName=Save-a-lot Markets     ShipAddress=187 Suffolk Ln.     ShipCity=Boise  ShipRegion=ID   ShipPostalCode=83720    ShipCountry=USA         Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10713    ProductID=10    UnitPrice=31.0000       Quantity=18     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10713    ProductID=26    UnitPrice=31.2300       Quantity=30     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10713    ProductID=45    UnitPrice=9.5000        Quantity=110    Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10713    ProductID=46    UnitPrice=12.0000       Quantity=24     Discount=0      Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=SAVEA      CompanyName=Save-a-lot Markets  ContactName=Jose Pavarotti      ContactTitle=Sales Representative       Address=187 Suffolk Ln.         City=Boise      Region=ID       PostalCode=83720        Country=USA     Phone=(208) 555-8097    Fax=null        Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=1    CompanyName=Speedy Express      Phone=(503) 555-9831    Orders=...
  Orders: OrderID=10717   CustomerID=FRANK        EmployeeID=1    OrderDate=10/24/1997    RequiredDate=11/21/1997         ShippedDate=10/29/1997  ShipVia=2       Freight=59.2500         ShipName=Frankenversand         ShipAddress=Berliner Platz 43   ShipCity=München        ShipRegion=null         ShipPostalCode=80805    ShipCountry=Germany     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10717    ProductID=21    UnitPrice=10.0000       Quantity=32     Discount=0.05   Order={ }       Product={ }
    Order_Details: OrderID=10717    ProductID=54    UnitPrice=7.4500        Quantity=15     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10717    ProductID=69    UnitPrice=36.0000       Quantity=25     Discount=0.05   Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=FRANK      CompanyName=Frankenversand      ContactName=Peter Franken       ContactTitle=Marketing Manager  Address=Berliner Platz 43       City=München    Region=null     PostalCode=80805        Country=Germany         Phone=089-0877310       Fax=089-0877451         Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=2    CompanyName=United Package      Phone=(503) 555-3199    Orders=...
  Orders: OrderID=10718   CustomerID=KOENE        EmployeeID=1    OrderDate=10/27/1997    RequiredDate=11/24/1997         ShippedDate=10/29/1997  ShipVia=3       Freight=170.8800        ShipName=Königlich Essen        ShipAddress=Maubelstr. 90       ShipCity=Brandenburg    ShipRegion=null         ShipPostalCode=14776    ShipCountry=Germany     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10718    ProductID=12    UnitPrice=38.0000       Quantity=36     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10718    ProductID=16    UnitPrice=17.4500       Quantity=20     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10718    ProductID=36    UnitPrice=19.0000       Quantity=40     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10718    ProductID=62    UnitPrice=49.3000       Quantity=20     Discount=0      Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=KOENE      CompanyName=Königlich Essen     ContactName=Philip Cramer       ContactTitle=Sales Associate    Address=Maubelstr. 90   City=Brandenburg        Region=null     PostalCode=14776        Country=Germany         Phone=0555-09876        Fax=null        Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=3    CompanyName=Federal Shipping    Phone=(503) 555-9931    Orders=...
  Orders: OrderID=10733   CustomerID=BERGS        EmployeeID=1    OrderDate=11/7/1997     RequiredDate=12/5/1997  ShippedDate=11/10/1997  ShipVia=3       Freight=110.1100        ShipName=Berglunds snabbköp     ShipAddress=Berguvsvägen  8     ShipCity=Luleå  ShipRegion=null         ShipPostalCode=S-958 22         ShipCountry=Sweden      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10733    ProductID=14    UnitPrice=23.2500       Quantity=16     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10733    ProductID=28    UnitPrice=45.6000       Quantity=20     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10733    ProductID=52    UnitPrice=7.0000        Quantity=25     Discount=0      Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=BERGS      CompanyName=Berglunds snabbköp  ContactName=Christina Berglund  ContactTitle=Order Administrator        Address=Berguvsvägen  8         City=Luleå      Region=null     PostalCode=S-958 22     Country=Sweden  Phone=0921-12 34 65     Fax=0921-12 34 67       Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=3    CompanyName=Federal Shipping    Phone=(503) 555-9931    Orders=...
  Orders: OrderID=10743   CustomerID=AROUT        EmployeeID=1    OrderDate=11/17/1997    RequiredDate=12/15/1997         ShippedDate=11/21/1997  ShipVia=2       Freight=23.7200         ShipName=Around the Horn        ShipAddress=Brook Farm Stratford St. Mary       ShipCity=Colchester     ShipRegion=Essex        ShipPostalCode=CO7 6JX  ShipCountry=UK  Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10743    ProductID=46    UnitPrice=12.0000       Quantity=28     Discount=0.05   Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=AROUT      CompanyName=Around the Horn     ContactName=Thomas Hardy        ContactTitle=Sales Representative       Address=120 Hanover Sq.         City=London     Region=null     PostalCode=WA1 1DP      Country=UK      Phone=(171) 555-7788    Fax=(171) 555-6750      Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=2    CompanyName=United Package      Phone=(503) 555-3199    Orders=...
  Orders: OrderID=10746   CustomerID=CHOPS        EmployeeID=1    OrderDate=11/19/1997    RequiredDate=12/17/1997         ShippedDate=11/21/1997  ShipVia=3       Freight=31.4300         ShipName=Chop-suey Chinese      ShipAddress=Hauptstr. 31        ShipCity=Bern   ShipRegion=null         ShipPostalCode=3012     ShipCountry=Switzerland         Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10746    ProductID=13    UnitPrice=6.0000        Quantity=6      Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10746    ProductID=42    UnitPrice=14.0000       Quantity=28     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10746    ProductID=62    UnitPrice=49.3000       Quantity=9      Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10746    ProductID=69    UnitPrice=36.0000       Quantity=40     Discount=0      Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=CHOPS      CompanyName=Chop-suey Chinese   ContactName=Yang Wang   ContactTitle=Owner      Address=Hauptstr. 29    City=Bern       Region=null     PostalCode=3012         Country=Switzerland     Phone=0452-076545       Fax=null        Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=3    CompanyName=Federal Shipping    Phone=(503) 555-9931    Orders=...
  Orders: OrderID=10773   CustomerID=ERNSH        EmployeeID=1    OrderDate=12/11/1997    RequiredDate=1/8/1998   ShippedDate=12/16/1997  ShipVia=3       Freight=96.4300         ShipName=Ernst Handel   ShipAddress=Kirchgasse 6        ShipCity=Graz   ShipRegion=null         ShipPostalCode=8010     ShipCountry=Austria     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10773    ProductID=17    UnitPrice=39.0000       Quantity=33     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10773    ProductID=31    UnitPrice=12.5000       Quantity=70     Discount=0.2    Order={ }       Product={ }
    Order_Details: OrderID=10773    ProductID=75    UnitPrice=7.7500        Quantity=7      Discount=0.2    Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=ERNSH      CompanyName=Ernst Handel        ContactName=Roland Mendel       ContactTitle=Sales Manager      Address=Kirchgasse 6    City=Graz       Region=null     PostalCode=8010         Country=Austria         Phone=7675-3425         Fax=7675-3426   Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=3    CompanyName=Federal Shipping    Phone=(503) 555-9931    Orders=...
  Orders: OrderID=10776   CustomerID=ERNSH        EmployeeID=1    OrderDate=12/15/1997    RequiredDate=1/12/1998  ShippedDate=12/18/1997  ShipVia=3       Freight=351.5300        ShipName=Ernst Handel   ShipAddress=Kirchgasse 6        ShipCity=Graz   ShipRegion=null         ShipPostalCode=8010     ShipCountry=Austria     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10776    ProductID=31    UnitPrice=12.5000       Quantity=16     Discount=0.05   Order={ }       Product={ }
    Order_Details: OrderID=10776    ProductID=42    UnitPrice=14.0000       Quantity=12     Discount=0.05   Order={ }       Product={ }
    Order_Details: OrderID=10776    ProductID=45    UnitPrice=9.5000        Quantity=27     Discount=0.05   Order={ }       Product={ }
    Order_Details: OrderID=10776    ProductID=51    UnitPrice=53.0000       Quantity=120    Discount=0.05   Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=ERNSH      CompanyName=Ernst Handel        ContactName=Roland Mendel       ContactTitle=Sales Manager      Address=Kirchgasse 6    City=Graz       Region=null     PostalCode=8010         Country=Austria         Phone=7675-3425         Fax=7675-3426   Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=3    CompanyName=Federal Shipping    Phone=(503) 555-9931    Orders=...
  Orders: OrderID=10785   CustomerID=GROSR        EmployeeID=1    OrderDate=12/18/1997    RequiredDate=1/15/1998  ShippedDate=12/24/1997  ShipVia=3       Freight=1.5100  ShipName=GROSELLA-Restaurante   ShipAddress=5ª Ave. Los Palos Grandes   ShipCity=Caracas        ShipRegion=DF   ShipPostalCode=1081     ShipCountry=Venezuela   Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10785    ProductID=10    UnitPrice=31.0000       Quantity=10     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10785    ProductID=75    UnitPrice=7.7500        Quantity=10     Discount=0      Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=GROSR      CompanyName=GROSELLA-Restaurante        ContactName=Manuel Pereira      ContactTitle=Owner      Address=5ª Ave. Los Palos Grandes       City=Caracas    Region=DF       PostalCode=1081         Country=Venezuela       Phone=(2) 283-2951      Fax=(2) 283-3397        Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=3    CompanyName=Federal Shipping    Phone=(503) 555-9931    Orders=...
  Orders: OrderID=10788   CustomerID=QUICK        EmployeeID=1    OrderDate=12/22/1997    RequiredDate=1/19/1998  ShippedDate=1/19/1998   ShipVia=2       Freight=42.7000         ShipName=QUICK-Stop     ShipAddress=Taucherstraße 10    ShipCity=Cunewalde      ShipRegion=null         ShipPostalCode=01307    ShipCountry=Germany     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10788    ProductID=19    UnitPrice=9.2000        Quantity=50     Discount=0.05   Order={ }       Product={ }
    Order_Details: OrderID=10788    ProductID=75    UnitPrice=7.7500        Quantity=40     Discount=0.05   Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=QUICK      CompanyName=QUICK-Stop  ContactName=Horst Kloss         ContactTitle=Accounting Manager         Address=Taucherstraße 10        City=Cunewalde  Region=null     PostalCode=01307        Country=Germany         Phone=0372-035188       Fax=null        Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=2    CompanyName=United Package      Phone=(503) 555-3199    Orders=...
  Orders: OrderID=10789   CustomerID=FOLIG        EmployeeID=1    OrderDate=12/22/1997    RequiredDate=1/19/1998  ShippedDate=12/31/1997  ShipVia=2       Freight=100.6000        ShipName=Folies gourmandes      ShipAddress=184, chaussée de Tournai    ShipCity=Lille  ShipRegion=null         ShipPostalCode=59000    ShipCountry=France      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10789    ProductID=18    UnitPrice=62.5000       Quantity=30     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10789    ProductID=35    UnitPrice=18.0000       Quantity=15     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10789    ProductID=63    UnitPrice=43.9000       Quantity=30     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10789    ProductID=68    UnitPrice=12.5000       Quantity=18     Discount=0      Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=FOLIG      CompanyName=Folies gourmandes   ContactName=Martine Rancé       ContactTitle=Assistant Sales Agent      Address=184, chaussée de Tournai        City=Lille      Region=null     PostalCode=59000        Country=France  Phone=20.16.10.16       Fax=20.16.10.17         Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=2    CompanyName=United Package      Phone=(503) 555-3199    Orders=...
  Orders: OrderID=10792   CustomerID=WOLZA        EmployeeID=1    OrderDate=12/23/1997    RequiredDate=1/20/1998  ShippedDate=12/31/1997  ShipVia=3       Freight=23.7900         ShipName=Wolski Zajazd  ShipAddress=ul. Filtrowa 68     ShipCity=Warszawa       ShipRegion=null         ShipPostalCode=01-012   ShipCountry=Poland      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10792    ProductID=2     UnitPrice=19.0000       Quantity=10     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10792    ProductID=54    UnitPrice=7.4500        Quantity=3      Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10792    ProductID=68    UnitPrice=12.5000       Quantity=15     Discount=0      Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=WOLZA      CompanyName=Wolski  Zajazd      ContactName=Zbyszek Piestrzeniewicz     ContactTitle=Owner      Address=ul. Filtrowa 68         City=Warszawa   Region=null     PostalCode=01-012       Country=Poland  Phone=(26) 642-7012     Fax=(26) 642-7012       Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=3    CompanyName=Federal Shipping    Phone=(503) 555-9931    Orders=...
  Orders: OrderID=10800   CustomerID=SEVES        EmployeeID=1    OrderDate=12/26/1997    RequiredDate=1/23/1998  ShippedDate=1/5/1998    ShipVia=3       Freight=137.4400        ShipName=Seven Seas Imports     ShipAddress=90 Wadhurst Rd.     ShipCity=London         ShipRegion=null         ShipPostalCode=OX15 4NB         ShipCountry=UK  Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10800    ProductID=11    UnitPrice=21.0000       Quantity=50     Discount=0.1    Order={ }       Product={ }
    Order_Details: OrderID=10800    ProductID=51    UnitPrice=53.0000       Quantity=10     Discount=0.1    Order={ }       Product={ }
    Order_Details: OrderID=10800    ProductID=54    UnitPrice=7.4500        Quantity=7      Discount=0.1    Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=SEVES      CompanyName=Seven Seas Imports  ContactName=Hari Kumar  ContactTitle=Sales Manager      Address=90 Wadhurst Rd.         City=London     Region=null     PostalCode=OX15 4NB     Country=UK      Phone=(171) 555-1717    Fax=(171) 555-5646      Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=3    CompanyName=Federal Shipping    Phone=(503) 555-9931    Orders=...
  Orders: OrderID=10813   CustomerID=RICAR        EmployeeID=1    OrderDate=1/5/1998      RequiredDate=2/2/1998   ShippedDate=1/9/1998    ShipVia=1       Freight=47.3800         ShipName=Ricardo Adocicados     ShipAddress=Av. Copacabana, 267         ShipCity=Rio de Janeiro         ShipRegion=RJ   ShipPostalCode=02389-890        ShipCountry=Brazil      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10813    ProductID=2     UnitPrice=19.0000       Quantity=12     Discount=0.2    Order={ }       Product={ }
    Order_Details: OrderID=10813    ProductID=46    UnitPrice=12.0000       Quantity=35     Discount=0      Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=RICAR      CompanyName=Ricardo Adocicados  ContactName=Janete Limeira      ContactTitle=Assistant Sales Agent      Address=Av. Copacabana, 267     City=Rio de Janeiro     Region=RJ       PostalCode=02389-890    Country=Brazil  Phone=(21) 555-3412     Fax=null        Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=1    CompanyName=Speedy Express      Phone=(503) 555-9831    Orders=...
  Orders: OrderID=10821   CustomerID=SPLIR        EmployeeID=1    OrderDate=1/8/1998      RequiredDate=2/5/1998   ShippedDate=1/15/1998   ShipVia=1       Freight=36.6800         ShipName=Split Rail Beer & Ale  ShipAddress=P.O. Box 555        ShipCity=Lander         ShipRegion=WY   ShipPostalCode=82520    ShipCountry=USA         Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10821    ProductID=35    UnitPrice=18.0000       Quantity=20     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10821    ProductID=51    UnitPrice=53.0000       Quantity=6      Discount=0      Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=SPLIR      CompanyName=Split Rail Beer & Ale       ContactName=Art Braunschweiger  ContactTitle=Sales Manager      Address=P.O. Box 555    City=Lander     Region=WY       PostalCode=82520        Country=USA     Phone=(307) 555-4680    Fax=(307) 555-6525      Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=1    CompanyName=Speedy Express      Phone=(503) 555-9831    Orders=...
  Orders: OrderID=10825   CustomerID=DRACD        EmployeeID=1    OrderDate=1/9/1998      RequiredDate=2/6/1998   ShippedDate=1/14/1998   ShipVia=1       Freight=79.2500         ShipName=Drachenblut Delikatessen       ShipAddress=Walserweg 21        ShipCity=Aachen         ShipRegion=null         ShipPostalCode=52066    ShipCountry=Germany     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10825    ProductID=26    UnitPrice=31.2300       Quantity=12     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10825    ProductID=53    UnitPrice=32.8000       Quantity=20     Discount=0      Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=DRACD      CompanyName=Drachenblut Delikatessen    ContactName=Sven Ottlieb        ContactTitle=Order Administrator        Address=Walserweg 21    City=Aachen     Region=null     PostalCode=52066        Country=Germany         Phone=0241-039123       Fax=0241-059428         Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=1    CompanyName=Speedy Express      Phone=(503) 555-9831    Orders=...
  Orders: OrderID=10827   CustomerID=BONAP        EmployeeID=1    OrderDate=1/12/1998     RequiredDate=1/26/1998  ShippedDate=2/6/1998    ShipVia=2       Freight=63.5400         ShipName=Bon app'       ShipAddress=12, rue des Bouchers        ShipCity=Marseille      ShipRegion=null         ShipPostalCode=13008    ShipCountry=France      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10827    ProductID=10    UnitPrice=31.0000       Quantity=15     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10827    ProductID=39    UnitPrice=18.0000       Quantity=21     Discount=0      Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=BONAP      CompanyName=Bon app'    ContactName=Laurence Lebihan    ContactTitle=Owner      Address=12, rue des Bouchers    City=Marseille  Region=null     PostalCode=13008        Country=France  Phone=91.24.45.40       Fax=91.24.45.41         Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=2    CompanyName=United Package      Phone=(503) 555-3199    Orders=...
  Orders: OrderID=10834   CustomerID=TRADH        EmployeeID=1    OrderDate=1/15/1998     RequiredDate=2/12/1998  ShippedDate=1/19/1998   ShipVia=3       Freight=29.7800         ShipName=Tradiçao Hipermercados         ShipAddress=Av. Inês de Castro, 414     ShipCity=Sao Paulo      ShipRegion=SP   ShipPostalCode=05634-030        ShipCountry=Brazil      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10834    ProductID=29    UnitPrice=123.7900      Quantity=8      Discount=0.05   Order={ }       Product={ }
    Order_Details: OrderID=10834    ProductID=30    UnitPrice=25.8900       Quantity=20     Discount=0.05   Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=TRADH      CompanyName=Tradição Hipermercados      ContactName=Anabela Domingues   ContactTitle=Sales Representative       Address=Av. Inês de Castro, 414         City=Sao Paulo  Region=SP       PostalCode=05634-030    Country=Brazil  Phone=(11) 555-2167     Fax=(11) 555-2168       Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=3    CompanyName=Federal Shipping    Phone=(503) 555-9931    Orders=...
  Orders: OrderID=10835   CustomerID=ALFKI        EmployeeID=1    OrderDate=1/15/1998     RequiredDate=2/12/1998  ShippedDate=1/21/1998   ShipVia=3       Freight=69.5300         ShipName=Alfred's Futterkiste   ShipAddress=Obere Str. 57       ShipCity=Berlin         ShipRegion=null         ShipPostalCode=12209    ShipCountry=Germany     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10835    ProductID=59    UnitPrice=55.0000       Quantity=15     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10835    ProductID=77    UnitPrice=13.0000       Quantity=2      Discount=0.2    Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=ALFKI      CompanyName=Alfreds Futterkiste         ContactName=Maria Anders        ContactTitle=Sales Representative       Address=Obere Str. 57   City=Berlin     Region=null     PostalCode=12209        Country=Germany         Phone=030-0074321       Fax=030-0076545         Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=3    CompanyName=Federal Shipping    Phone=(503) 555-9931    Orders=...
  Orders: OrderID=10842   CustomerID=TORTU        EmployeeID=1    OrderDate=1/20/1998     RequiredDate=2/17/1998  ShippedDate=1/29/1998   ShipVia=3       Freight=54.4200         ShipName=Tortuga Restaurante    ShipAddress=Avda. Azteca 123    ShipCity=México D.F.    ShipRegion=null         ShipPostalCode=05033    ShipCountry=Mexico      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10842    ProductID=11    UnitPrice=21.0000       Quantity=15     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10842    ProductID=43    UnitPrice=46.0000       Quantity=5      Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10842    ProductID=68    UnitPrice=12.5000       Quantity=20     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10842    ProductID=70    UnitPrice=15.0000       Quantity=12     Discount=0      Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=TORTU      CompanyName=Tortuga Restaurante         ContactName=Miguel Angel Paolino        ContactTitle=Owner      Address=Avda. Azteca 123        City=México D.F.        Region=null     PostalCode=05033        Country=Mexico  Phone=(5) 555-2933      Fax=null        Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=3    CompanyName=Federal Shipping    Phone=(503) 555-9931    Orders=...
  Orders: OrderID=10850   CustomerID=VICTE        EmployeeID=1    OrderDate=1/23/1998     RequiredDate=3/6/1998   ShippedDate=1/30/1998   ShipVia=1       Freight=49.1900         ShipName=Victuailles en stock   ShipAddress=2, rue du Commerce  ShipCity=Lyon   ShipRegion=null         ShipPostalCode=69004    ShipCountry=France      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10850    ProductID=25    UnitPrice=14.0000       Quantity=20     Discount=0.15   Order={ }       Product={ }
    Order_Details: OrderID=10850    ProductID=33    UnitPrice=2.5000        Quantity=4      Discount=0.15   Order={ }       Product={ }
    Order_Details: OrderID=10850    ProductID=70    UnitPrice=15.0000       Quantity=30     Discount=0.15   Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=VICTE      CompanyName=Victuailles en stock        ContactName=Mary Saveley        ContactTitle=Sales Agent        Address=2, rue du Commerce      City=Lyon       Region=null     PostalCode=69004        Country=France  Phone=78.32.54.86       Fax=78.32.54.87         Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=1    CompanyName=Speedy Express      Phone=(503) 555-9831    Orders=...
  Orders: OrderID=10859   CustomerID=FRANK        EmployeeID=1    OrderDate=1/29/1998     RequiredDate=2/26/1998  ShippedDate=2/2/1998    ShipVia=2       Freight=76.1000         ShipName=Frankenversand         ShipAddress=Berliner Platz 43   ShipCity=München        ShipRegion=null         ShipPostalCode=80805    ShipCountry=Germany     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10859    ProductID=24    UnitPrice=4.5000        Quantity=40     Discount=0.25   Order={ }       Product={ }
    Order_Details: OrderID=10859    ProductID=54    UnitPrice=7.4500        Quantity=35     Discount=0.25   Order={ }       Product={ }
    Order_Details: OrderID=10859    ProductID=64    UnitPrice=33.2500       Quantity=30     Discount=0.25   Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=FRANK      CompanyName=Frankenversand      ContactName=Peter Franken       ContactTitle=Marketing Manager  Address=Berliner Platz 43       City=München    Region=null     PostalCode=80805        Country=Germany         Phone=089-0877310       Fax=089-0877451         Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=2    CompanyName=United Package      Phone=(503) 555-3199    Orders=...
  Orders: OrderID=10877   CustomerID=RICAR        EmployeeID=1    OrderDate=2/9/1998      RequiredDate=3/9/1998   ShippedDate=2/19/1998   ShipVia=1       Freight=38.0600         ShipName=Ricardo Adocicados     ShipAddress=Av. Copacabana, 267         ShipCity=Rio de Janeiro         ShipRegion=RJ   ShipPostalCode=02389-890        ShipCountry=Brazil      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10877    ProductID=16    UnitPrice=17.4500       Quantity=30     Discount=0.25   Order={ }       Product={ }
    Order_Details: OrderID=10877    ProductID=18    UnitPrice=62.5000       Quantity=25     Discount=0      Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=RICAR      CompanyName=Ricardo Adocicados  ContactName=Janete Limeira      ContactTitle=Assistant Sales Agent      Address=Av. Copacabana, 267     City=Rio de Janeiro     Region=RJ       PostalCode=02389-890    Country=Brazil  Phone=(21) 555-3412     Fax=null        Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=1    CompanyName=Speedy Express      Phone=(503) 555-9831    Orders=...
  Orders: OrderID=10886   CustomerID=HANAR        EmployeeID=1    OrderDate=2/13/1998     RequiredDate=3/13/1998  ShippedDate=3/2/1998    ShipVia=1       Freight=4.9900  ShipName=Hanari Carnes  ShipAddress=Rua do Paço, 67     ShipCity=Rio de Janeiro         ShipRegion=RJ   ShipPostalCode=05454-876        ShipCountry=Brazil      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10886    ProductID=10    UnitPrice=31.0000       Quantity=70     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10886    ProductID=31    UnitPrice=12.5000       Quantity=35     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10886    ProductID=77    UnitPrice=13.0000       Quantity=40     Discount=0      Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=HANAR      CompanyName=Hanari Carnes       ContactName=Mario Pontes        ContactTitle=Accounting Manager         Address=Rua do Paço, 67         City=Rio de Janeiro     Region=RJ       PostalCode=05454-876    Country=Brazil  Phone=(21) 555-0091     Fax=(21) 555-8765       Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=1    CompanyName=Speedy Express      Phone=(503) 555-9831    Orders=...
  Orders: OrderID=10888   CustomerID=GODOS        EmployeeID=1    OrderDate=2/16/1998     RequiredDate=3/16/1998  ShippedDate=2/23/1998   ShipVia=2       Freight=51.8700         ShipName=Godos Cocina Típica    ShipAddress=C/ Romero, 33       ShipCity=Sevilla        ShipRegion=null         ShipPostalCode=41101    ShipCountry=Spain       Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10888    ProductID=2     UnitPrice=19.0000       Quantity=20     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10888    ProductID=68    UnitPrice=12.5000       Quantity=18     Discount=0      Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=GODOS      CompanyName=Godos Cocina Típica         ContactName=José Pedro Freyre   ContactTitle=Sales Manager      Address=C/ Romero, 33   City=Sevilla    Region=null     PostalCode=41101        Country=Spain   Phone=(95) 555 82 82    Fax=null        Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=2    CompanyName=United Package      Phone=(503) 555-3199    Orders=...
  Orders: OrderID=10894   CustomerID=SAVEA        EmployeeID=1    OrderDate=2/18/1998     RequiredDate=3/18/1998  ShippedDate=2/20/1998   ShipVia=1       Freight=116.1300        ShipName=Save-a-lot Markets     ShipAddress=187 Suffolk Ln.     ShipCity=Boise  ShipRegion=ID   ShipPostalCode=83720    ShipCountry=USA         Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10894    ProductID=13    UnitPrice=6.0000        Quantity=28     Discount=0.05   Order={ }       Product={ }
    Order_Details: OrderID=10894    ProductID=69    UnitPrice=36.0000       Quantity=50     Discount=0.05   Order={ }       Product={ }
    Order_Details: OrderID=10894    ProductID=75    UnitPrice=7.7500        Quantity=120    Discount=0.05   Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=SAVEA      CompanyName=Save-a-lot Markets  ContactName=Jose Pavarotti      ContactTitle=Sales Representative       Address=187 Suffolk Ln.         City=Boise      Region=ID       PostalCode=83720        Country=USA     Phone=(208) 555-8097    Fax=null        Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=1    CompanyName=Speedy Express      Phone=(503) 555-9831    Orders=...
  Orders: OrderID=10900   CustomerID=WELLI        EmployeeID=1    OrderDate=2/20/1998     RequiredDate=3/20/1998  ShippedDate=3/4/1998    ShipVia=2       Freight=1.6600  ShipName=Wellington Importadora         ShipAddress=Rua do Mercado, 12  ShipCity=Resende        ShipRegion=SP   ShipPostalCode=08737-363        ShipCountry=Brazil      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10900    ProductID=70    UnitPrice=15.0000       Quantity=3      Discount=0.25   Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=WELLI      CompanyName=Wellington Importadora      ContactName=Paula Parente       ContactTitle=Sales Manager      Address=Rua do Mercado, 12      City=Resende    Region=SP       PostalCode=08737-363    Country=Brazil  Phone=(14) 555-8122     Fax=null        Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=2    CompanyName=United Package      Phone=(503) 555-3199    Orders=...
  Orders: OrderID=10902   CustomerID=FOLKO        EmployeeID=1    OrderDate=2/23/1998     RequiredDate=3/23/1998  ShippedDate=3/3/1998    ShipVia=1       Freight=44.1500         ShipName=Folk och fä HB         ShipAddress=Åkergatan 24        ShipCity=Bräcke         ShipRegion=null         ShipPostalCode=S-844 67         ShipCountry=Sweden      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10902    ProductID=55    UnitPrice=24.0000       Quantity=30     Discount=0.15   Order={ }       Product={ }
    Order_Details: OrderID=10902    ProductID=62    UnitPrice=49.3000       Quantity=6      Discount=0.15   Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=FOLKO      CompanyName=Folk och fä HB      ContactName=Maria Larsson       ContactTitle=Owner      Address=Åkergatan 24    City=Bräcke     Region=null     PostalCode=S-844 67     Country=Sweden  Phone=0695-34 67 21     Fax=null        Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=1    CompanyName=Speedy Express      Phone=(503) 555-9831    Orders=...
  Orders: OrderID=10909   CustomerID=SANTG        EmployeeID=1    OrderDate=2/26/1998     RequiredDate=3/26/1998  ShippedDate=3/10/1998   ShipVia=2       Freight=53.0500         ShipName=Santé Gourmet  ShipAddress=Erling Skakkes gate 78      ShipCity=Stavern        ShipRegion=null         ShipPostalCode=4110     ShipCountry=Norway      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10909    ProductID=7     UnitPrice=30.0000       Quantity=12     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10909    ProductID=16    UnitPrice=17.4500       Quantity=15     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10909    ProductID=41    UnitPrice=9.6500        Quantity=5      Discount=0      Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=SANTG      CompanyName=Santé Gourmet       ContactName=Jonas Bergulfsen    ContactTitle=Owner      Address=Erling Skakkes gate 78  City=Stavern    Region=null     PostalCode=4110         Country=Norway  Phone=07-98 92 35       Fax=07-98 92 47         Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=2    CompanyName=United Package      Phone=(503) 555-3199    Orders=...
  Orders: OrderID=10910   CustomerID=WILMK        EmployeeID=1    OrderDate=2/26/1998     RequiredDate=3/26/1998  ShippedDate=3/4/1998    ShipVia=3       Freight=38.1100         ShipName=Wilman Kala    ShipAddress=Keskuskatu 45       ShipCity=Helsinki       ShipRegion=null         ShipPostalCode=21240    ShipCountry=Finland     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10910    ProductID=19    UnitPrice=9.2000        Quantity=12     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10910    ProductID=49    UnitPrice=20.0000       Quantity=10     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10910    ProductID=61    UnitPrice=28.5000       Quantity=5      Discount=0      Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=WILMK      CompanyName=Wilman Kala         ContactName=Matti Karttunen     ContactTitle=Owner/Marketing Assistant  Address=Keskuskatu 45   City=Helsinki   Region=null     PostalCode=21240        Country=Finland         Phone=90-224 8858       Fax=90-224 8858         Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=3    CompanyName=Federal Shipping    Phone=(503) 555-9931    Orders=...
  Orders: OrderID=10916   CustomerID=RANCH        EmployeeID=1    OrderDate=2/27/1998     RequiredDate=3/27/1998  ShippedDate=3/9/1998    ShipVia=2       Freight=63.7700         ShipName=Rancho grande  ShipAddress=Av. del Libertador 900      ShipCity=Buenos Aires   ShipRegion=null         ShipPostalCode=1010     ShipCountry=Argentina   Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10916    ProductID=16    UnitPrice=17.4500       Quantity=6      Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10916    ProductID=32    UnitPrice=32.0000       Quantity=6      Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10916    ProductID=57    UnitPrice=19.5000       Quantity=20     Discount=0      Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=RANCH      CompanyName=Rancho grande       ContactName=Sergio Gutiérrez    ContactTitle=Sales Representative       Address=Av. del Libertador 900  City=Buenos Aires       Region=null     PostalCode=1010         Country=Argentina       Phone=(1) 123-5555      Fax=(1) 123-5556        Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=2    CompanyName=United Package      Phone=(503) 555-3199    Orders=...
  Orders: OrderID=10921   CustomerID=VAFFE        EmployeeID=1    OrderDate=3/3/1998      RequiredDate=4/14/1998  ShippedDate=3/9/1998    ShipVia=1       Freight=176.4800        ShipName=Vaffeljernet   ShipAddress=Smagsloget 45       ShipCity=Århus  ShipRegion=null         ShipPostalCode=8200     ShipCountry=Denmark     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10921    ProductID=35    UnitPrice=18.0000       Quantity=10     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10921    ProductID=63    UnitPrice=43.9000       Quantity=40     Discount=0      Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=VAFFE      CompanyName=Vaffeljernet        ContactName=Palle Ibsen         ContactTitle=Sales Manager      Address=Smagsloget 45   City=Århus      Region=null     PostalCode=8200         Country=Denmark         Phone=86 21 32 43       Fax=86 22 33 44         Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=1    CompanyName=Speedy Express      Phone=(503) 555-9831    Orders=...
  Orders: OrderID=10928   CustomerID=GALED        EmployeeID=1    OrderDate=3/5/1998      RequiredDate=4/2/1998   ShippedDate=3/18/1998   ShipVia=1       Freight=1.3600  ShipName=Galería del gastronómo         ShipAddress=Rambla de Cataluña, 23      ShipCity=Barcelona      ShipRegion=null         ShipPostalCode=8022     ShipCountry=Spain       Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10928    ProductID=47    UnitPrice=9.5000        Quantity=5      Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10928    ProductID=76    UnitPrice=18.0000       Quantity=5      Discount=0      Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=GALED      CompanyName=Galería del gastrónomo      ContactName=Eduardo Saavedra    ContactTitle=Marketing Manager  Address=Rambla de Cataluña, 23  City=Barcelona  Region=null     PostalCode=08022        Country=Spain   Phone=(93) 203 4560     Fax=(93) 203 4561       Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=1    CompanyName=Speedy Express      Phone=(503) 555-9831    Orders=...
  Orders: OrderID=10946   CustomerID=VAFFE        EmployeeID=1    OrderDate=3/12/1998     RequiredDate=4/9/1998   ShippedDate=3/19/1998   ShipVia=2       Freight=27.2000         ShipName=Vaffeljernet   ShipAddress=Smagsloget 45       ShipCity=Århus  ShipRegion=null         ShipPostalCode=8200     ShipCountry=Denmark     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10946    ProductID=10    UnitPrice=31.0000       Quantity=25     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10946    ProductID=24    UnitPrice=4.5000        Quantity=25     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10946    ProductID=77    UnitPrice=13.0000       Quantity=40     Discount=0      Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=VAFFE      CompanyName=Vaffeljernet        ContactName=Palle Ibsen         ContactTitle=Sales Manager      Address=Smagsloget 45   City=Århus      Region=null     PostalCode=8200         Country=Denmark         Phone=86 21 32 43       Fax=86 22 33 44         Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=2    CompanyName=United Package      Phone=(503) 555-3199    Orders=...
  Orders: OrderID=10950   CustomerID=MAGAA        EmployeeID=1    OrderDate=3/16/1998     RequiredDate=4/13/1998  ShippedDate=3/23/1998   ShipVia=2       Freight=2.5000  ShipName=Magazzini Alimentari Riuniti   ShipAddress=Via Ludovico il Moro 22     ShipCity=Bergamo        ShipRegion=null         ShipPostalCode=24100    ShipCountry=Italy       Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10950    ProductID=4     UnitPrice=22.0000       Quantity=5      Discount=0      Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=MAGAA      CompanyName=Magazzini Alimentari Riuniti        ContactName=Giovanni Rovelli    ContactTitle=Marketing Manager  Address=Via Ludovico il Moro 22         City=Bergamo    Region=null     PostalCode=24100        Country=Italy   Phone=035-640230        Fax=035-640231  Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=2    CompanyName=United Package      Phone=(503) 555-3199    Orders=...
  Orders: OrderID=10952   CustomerID=ALFKI        EmployeeID=1    OrderDate=3/16/1998     RequiredDate=4/27/1998  ShippedDate=3/24/1998   ShipVia=1       Freight=40.4200         ShipName=Alfred's Futterkiste   ShipAddress=Obere Str. 57       ShipCity=Berlin         ShipRegion=null         ShipPostalCode=12209    ShipCountry=Germany     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10952    ProductID=6     UnitPrice=25.0000       Quantity=16     Discount=0.05   Order={ }       Product={ }
    Order_Details: OrderID=10952    ProductID=28    UnitPrice=45.6000       Quantity=2      Discount=0      Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=ALFKI      CompanyName=Alfreds Futterkiste         ContactName=Maria Anders        ContactTitle=Sales Representative       Address=Obere Str. 57   City=Berlin     Region=null     PostalCode=12209        Country=Germany         Phone=030-0074321       Fax=030-0076545         Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=1    CompanyName=Speedy Express      Phone=(503) 555-9831    Orders=...
  Orders: OrderID=10968   CustomerID=ERNSH        EmployeeID=1    OrderDate=3/23/1998     RequiredDate=4/20/1998  ShippedDate=4/1/1998    ShipVia=3       Freight=74.6000         ShipName=Ernst Handel   ShipAddress=Kirchgasse 6        ShipCity=Graz   ShipRegion=null         ShipPostalCode=8010     ShipCountry=Austria     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10968    ProductID=12    UnitPrice=38.0000       Quantity=30     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10968    ProductID=24    UnitPrice=4.5000        Quantity=30     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10968    ProductID=64    UnitPrice=33.2500       Quantity=4      Discount=0      Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=ERNSH      CompanyName=Ernst Handel        ContactName=Roland Mendel       ContactTitle=Sales Manager      Address=Kirchgasse 6    City=Graz       Region=null     PostalCode=8010         Country=Austria         Phone=7675-3425         Fax=7675-3426   Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=3    CompanyName=Federal Shipping    Phone=(503) 555-9931    Orders=...
  Orders: OrderID=10969   CustomerID=COMMI        EmployeeID=1    OrderDate=3/23/1998     RequiredDate=4/20/1998  ShippedDate=3/30/1998   ShipVia=2       Freight=0.2100  ShipName=Comércio Mineiro       ShipAddress=Av. dos Lusíadas, 23        ShipCity=Sao Paulo      ShipRegion=SP   ShipPostalCode=05432-043        ShipCountry=Brazil      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10969    ProductID=46    UnitPrice=12.0000       Quantity=9      Discount=0      Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=COMMI      CompanyName=Comércio Mineiro    ContactName=Pedro Afonso        ContactTitle=Sales Associate    Address=Av. dos Lusíadas, 23    City=Sao Paulo  Region=SP       PostalCode=05432-043    Country=Brazil  Phone=(11) 555-7647     Fax=null        Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=2    CompanyName=United Package      Phone=(503) 555-3199    Orders=...
  Orders: OrderID=10975   CustomerID=BOTTM        EmployeeID=1    OrderDate=3/25/1998     RequiredDate=4/22/1998  ShippedDate=3/27/1998   ShipVia=3       Freight=32.2700         ShipName=Bottom-Dollar Markets  ShipAddress=23 Tsawassen Blvd.  ShipCity=Tsawassen      ShipRegion=BC   ShipPostalCode=T2F 8M4  ShipCountry=Canada      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10975    ProductID=8     UnitPrice=40.0000       Quantity=16     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10975    ProductID=75    UnitPrice=7.7500        Quantity=10     Discount=0      Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=BOTTM      CompanyName=Bottom-Dollar Markets       ContactName=Elizabeth Lincoln   ContactTitle=Accounting Manager         Address=23 Tsawassen Blvd.      City=Tsawassen  Region=BC       PostalCode=T2F 8M4      Country=Canada  Phone=(604) 555-4729    Fax=(604) 555-3745      Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=3    CompanyName=Federal Shipping    Phone=(503) 555-9931    Orders=...
  Orders: OrderID=10976   CustomerID=HILAA        EmployeeID=1    OrderDate=3/25/1998     RequiredDate=5/6/1998   ShippedDate=4/3/1998    ShipVia=1       Freight=37.9700         ShipName=HILARION-Abastos       ShipAddress=Carrera 22 con Ave. Carlos Soublette #8-35  ShipCity=San Cristóbal  ShipRegion=Táchira      ShipPostalCode=5022     ShipCountry=Venezuela   Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10976    ProductID=28    UnitPrice=45.6000       Quantity=20     Discount=0      Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=HILAA      CompanyName=HILARION-Abastos    ContactName=Carlos Hernández    ContactTitle=Sales Representative       Address=Carrera 22 con Ave. Carlos Soublette #8-35      City=San Cristóbal      Region=Táchira  PostalCode=5022         Country=Venezuela       Phone=(5) 555-1340      Fax=(5) 555-1948        Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=1    CompanyName=Speedy Express      Phone=(503) 555-9831    Orders=...
  Orders: OrderID=10981   CustomerID=HANAR        EmployeeID=1    OrderDate=3/27/1998     RequiredDate=4/24/1998  ShippedDate=4/2/1998    ShipVia=2       Freight=193.3700        ShipName=Hanari Carnes  ShipAddress=Rua do Paço, 67     ShipCity=Rio de Janeiro         ShipRegion=RJ   ShipPostalCode=05454-876        ShipCountry=Brazil      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10981    ProductID=38    UnitPrice=263.5000      Quantity=60     Discount=0      Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=HANAR      CompanyName=Hanari Carnes       ContactName=Mario Pontes        ContactTitle=Accounting Manager         Address=Rua do Paço, 67         City=Rio de Janeiro     Region=RJ       PostalCode=05454-876    Country=Brazil  Phone=(21) 555-0091     Fax=(21) 555-8765       Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=2    CompanyName=United Package      Phone=(503) 555-3199    Orders=...
  Orders: OrderID=10984   CustomerID=SAVEA        EmployeeID=1    OrderDate=3/30/1998     RequiredDate=4/27/1998  ShippedDate=4/3/1998    ShipVia=3       Freight=211.2200        ShipName=Save-a-lot Markets     ShipAddress=187 Suffolk Ln.     ShipCity=Boise  ShipRegion=ID   ShipPostalCode=83720    ShipCountry=USA         Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10984    ProductID=16    UnitPrice=17.4500       Quantity=55     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10984    ProductID=24    UnitPrice=4.5000        Quantity=20     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10984    ProductID=36    UnitPrice=19.0000       Quantity=40     Discount=0      Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=SAVEA      CompanyName=Save-a-lot Markets  ContactName=Jose Pavarotti      ContactTitle=Sales Representative       Address=187 Suffolk Ln.         City=Boise      Region=ID       PostalCode=83720        Country=USA     Phone=(208) 555-8097    Fax=null        Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=3    CompanyName=Federal Shipping    Phone=(503) 555-9931    Orders=...
  Orders: OrderID=10991   CustomerID=QUICK        EmployeeID=1    OrderDate=4/1/1998      RequiredDate=4/29/1998  ShippedDate=4/7/1998    ShipVia=1       Freight=38.5100         ShipName=QUICK-Stop     ShipAddress=Taucherstraße 10    ShipCity=Cunewalde      ShipRegion=null         ShipPostalCode=01307    ShipCountry=Germany     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10991    ProductID=2     UnitPrice=19.0000       Quantity=50     Discount=0.2    Order={ }       Product={ }
    Order_Details: OrderID=10991    ProductID=70    UnitPrice=15.0000       Quantity=20     Discount=0.2    Order={ }       Product={ }
    Order_Details: OrderID=10991    ProductID=76    UnitPrice=18.0000       Quantity=90     Discount=0.2    Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=QUICK      CompanyName=QUICK-Stop  ContactName=Horst Kloss         ContactTitle=Accounting Manager         Address=Taucherstraße 10        City=Cunewalde  Region=null     PostalCode=01307        Country=Germany         Phone=0372-035188       Fax=null        Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=1    CompanyName=Speedy Express      Phone=(503) 555-9831    Orders=...
  Orders: OrderID=10992   CustomerID=THEBI        EmployeeID=1    OrderDate=4/1/1998      RequiredDate=4/29/1998  ShippedDate=4/3/1998    ShipVia=3       Freight=4.2700  ShipName=The Big Cheese         ShipAddress=89 Jefferson Way Suite 2    ShipCity=Portland       ShipRegion=OR   ShipPostalCode=97201    ShipCountry=USA         Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10992    ProductID=72    UnitPrice=34.8000       Quantity=2      Discount=0      Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=THEBI      CompanyName=The Big Cheese      ContactName=Liz Nixon   ContactTitle=Marketing Manager  Address=89 Jefferson Way Suite 2        City=Portland   Region=OR       PostalCode=97201        Country=USA     Phone=(503) 555-3612    Fax=null        Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=3    CompanyName=Federal Shipping    Phone=(503) 555-9931    Orders=...
  Orders: OrderID=10995   CustomerID=PERIC        EmployeeID=1    OrderDate=4/2/1998      RequiredDate=4/30/1998  ShippedDate=4/6/1998    ShipVia=3       Freight=46.0000         ShipName=Pericles Comidas clásicas      ShipAddress=Calle Dr. Jorge Cash 321    ShipCity=México D.F.    ShipRegion=null         ShipPostalCode=05033    ShipCountry=Mexico      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=10995    ProductID=51    UnitPrice=53.0000       Quantity=20     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=10995    ProductID=60    UnitPrice=34.0000       Quantity=4      Discount=0      Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=PERIC      CompanyName=Pericles Comidas clásicas   ContactName=Guillermo Fernández         ContactTitle=Sales Representative       Address=Calle Dr. Jorge Cash 321        City=México D.F.        Region=null     PostalCode=05033        Country=Mexico  Phone=(5) 552-3745      Fax=(5) 545-3745        Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=3    CompanyName=Federal Shipping    Phone=(503) 555-9931    Orders=...
  Orders: OrderID=11012   CustomerID=FRANK        EmployeeID=1    OrderDate=4/9/1998      RequiredDate=4/23/1998  ShippedDate=4/17/1998   ShipVia=3       Freight=242.9500        ShipName=Frankenversand         ShipAddress=Berliner Platz 43   ShipCity=München        ShipRegion=null         ShipPostalCode=80805    ShipCountry=Germany     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=11012    ProductID=19    UnitPrice=9.2000        Quantity=50     Discount=0.05   Order={ }       Product={ }
    Order_Details: OrderID=11012    ProductID=60    UnitPrice=34.0000       Quantity=36     Discount=0.05   Order={ }       Product={ }
    Order_Details: OrderID=11012    ProductID=71    UnitPrice=21.5000       Quantity=60     Discount=0.05   Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=FRANK      CompanyName=Frankenversand      ContactName=Peter Franken       ContactTitle=Marketing Manager  Address=Berliner Platz 43       City=München    Region=null     PostalCode=80805        Country=Germany         Phone=089-0877310       Fax=089-0877451         Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=3    CompanyName=Federal Shipping    Phone=(503) 555-9931    Orders=...
  Orders: OrderID=11023   CustomerID=BSBEV        EmployeeID=1    OrderDate=4/14/1998     RequiredDate=4/28/1998  ShippedDate=4/24/1998   ShipVia=2       Freight=123.8300        ShipName=B's Beverages  ShipAddress=Fauntleroy Circus   ShipCity=London         ShipRegion=null         ShipPostalCode=EC2 5NT  ShipCountry=UK  Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=11023    ProductID=7     UnitPrice=30.0000       Quantity=4      Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=11023    ProductID=43    UnitPrice=46.0000       Quantity=30     Discount=0      Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=BSBEV      CompanyName=B's Beverages       ContactName=Victoria Ashworth   ContactTitle=Sales Representative       Address=Fauntleroy Circus       City=London     Region=null     PostalCode=EC2 5NT      Country=UK      Phone=(171) 555-1212    Fax=null        Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=2    CompanyName=United Package      Phone=(503) 555-3199    Orders=...
  Orders: OrderID=11027   CustomerID=BOTTM        EmployeeID=1    OrderDate=4/16/1998     RequiredDate=5/14/1998  ShippedDate=4/20/1998   ShipVia=1       Freight=52.5200         ShipName=Bottom-Dollar Markets  ShipAddress=23 Tsawassen Blvd.  ShipCity=Tsawassen      ShipRegion=BC   ShipPostalCode=T2F 8M4  ShipCountry=Canada      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=11027    ProductID=24    UnitPrice=4.5000        Quantity=30     Discount=0.25   Order={ }       Product={ }
    Order_Details: OrderID=11027    ProductID=62    UnitPrice=49.3000       Quantity=21     Discount=0.25   Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=BOTTM      CompanyName=Bottom-Dollar Markets       ContactName=Elizabeth Lincoln   ContactTitle=Accounting Manager         Address=23 Tsawassen Blvd.      City=Tsawassen  Region=BC       PostalCode=T2F 8M4      Country=Canada  Phone=(604) 555-4729    Fax=(604) 555-3745      Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=1    CompanyName=Speedy Express      Phone=(503) 555-9831    Orders=...
  Orders: OrderID=11038   CustomerID=SUPRD        EmployeeID=1    OrderDate=4/21/1998     RequiredDate=5/19/1998  ShippedDate=4/30/1998   ShipVia=2       Freight=29.5900         ShipName=Suprêmes délices       ShipAddress=Boulevard Tirou, 255        ShipCity=Charleroi      ShipRegion=null         ShipPostalCode=B-6000   ShipCountry=Belgium     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=11038    ProductID=40    UnitPrice=18.4000       Quantity=5      Discount=0.2    Order={ }       Product={ }
    Order_Details: OrderID=11038    ProductID=52    UnitPrice=7.0000        Quantity=2      Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=11038    ProductID=71    UnitPrice=21.5000       Quantity=30     Discount=0      Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=SUPRD      CompanyName=Suprêmes délices    ContactName=Pascale Cartrain    ContactTitle=Accounting Manager         Address=Boulevard Tirou, 255    City=Charleroi  Region=null     PostalCode=B-6000       Country=Belgium         Phone=(071) 23 67 22 20         Fax=(071) 23 67 22 21   Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=2    CompanyName=United Package      Phone=(503) 555-3199    Orders=...
  Orders: OrderID=11039   CustomerID=LINOD        EmployeeID=1    OrderDate=4/21/1998     RequiredDate=5/19/1998  ShippedDate=null        ShipVia=2       Freight=65.0000         ShipName=LINO-Delicateses       ShipAddress=Ave. 5 de Mayo Porlamar     ShipCity=I. de Margarita        ShipRegion=Nueva Esparta        ShipPostalCode=4980     ShipCountry=Venezuela   Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=11039    ProductID=28    UnitPrice=45.6000       Quantity=20     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=11039    ProductID=35    UnitPrice=18.0000       Quantity=24     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=11039    ProductID=49    UnitPrice=20.0000       Quantity=60     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=11039    ProductID=57    UnitPrice=19.5000       Quantity=28     Discount=0      Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=LINOD      CompanyName=LINO-Delicateses    ContactName=Felipe Izquierdo    ContactTitle=Owner      Address=Ave. 5 de Mayo Porlamar         City=I. de Margarita    Region=Nueva Esparta    PostalCode=4980         Country=Venezuela       Phone=(8) 34-56-12      Fax=(8) 34-93-93        Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=2    CompanyName=United Package      Phone=(503) 555-3199    Orders=...
  Orders: OrderID=11064   CustomerID=SAVEA        EmployeeID=1    OrderDate=5/1/1998      RequiredDate=5/29/1998  ShippedDate=5/4/1998    ShipVia=1       Freight=30.0900         ShipName=Save-a-lot Markets     ShipAddress=187 Suffolk Ln.     ShipCity=Boise  ShipRegion=ID   ShipPostalCode=83720    ShipCountry=USA         Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=11064    ProductID=17    UnitPrice=39.0000       Quantity=77     Discount=0.1    Order={ }       Product={ }
    Order_Details: OrderID=11064    ProductID=41    UnitPrice=9.6500        Quantity=12     Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=11064    ProductID=53    UnitPrice=32.8000       Quantity=25     Discount=0.1    Order={ }       Product={ }
    Order_Details: OrderID=11064    ProductID=55    UnitPrice=24.0000       Quantity=4      Discount=0.1    Order={ }       Product={ }
    Order_Details: OrderID=11064    ProductID=68    UnitPrice=12.5000       Quantity=55     Discount=0      Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=SAVEA      CompanyName=Save-a-lot Markets  ContactName=Jose Pavarotti      ContactTitle=Sales Representative       Address=187 Suffolk Ln.         City=Boise      Region=ID       PostalCode=83720        Country=USA     Phone=(208) 555-8097    Fax=null        Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=1    CompanyName=Speedy Express      Phone=(503) 555-9831    Orders=...
  Orders: OrderID=11067   CustomerID=DRACD        EmployeeID=1    OrderDate=5/4/1998      RequiredDate=5/18/1998  ShippedDate=5/6/1998    ShipVia=2       Freight=7.9800  ShipName=Drachenblut Delikatessen       ShipAddress=Walserweg 21        ShipCity=Aachen         ShipRegion=null         ShipPostalCode=52066    ShipCountry=Germany     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=11067    ProductID=41    UnitPrice=9.6500        Quantity=9      Discount=0      Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=DRACD      CompanyName=Drachenblut Delikatessen    ContactName=Sven Ottlieb        ContactTitle=Order Administrator        Address=Walserweg 21    City=Aachen     Region=null     PostalCode=52066        Country=Germany         Phone=0241-039123       Fax=0241-059428         Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=2    CompanyName=United Package      Phone=(503) 555-3199    Orders=...
  Orders: OrderID=11069   CustomerID=TORTU        EmployeeID=1    OrderDate=5/4/1998      RequiredDate=6/1/1998   ShippedDate=5/6/1998    ShipVia=2       Freight=15.6700         ShipName=Tortuga Restaurante    ShipAddress=Avda. Azteca 123    ShipCity=México D.F.    ShipRegion=null         ShipPostalCode=05033    ShipCountry=Mexico      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=11069    ProductID=39    UnitPrice=18.0000       Quantity=20     Discount=0      Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=TORTU      CompanyName=Tortuga Restaurante         ContactName=Miguel Angel Paolino        ContactTitle=Owner      Address=Avda. Azteca 123        City=México D.F.        Region=null     PostalCode=05033        Country=Mexico  Phone=(5) 555-2933      Fax=null        Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=2    CompanyName=United Package      Phone=(503) 555-3199    Orders=...
  Orders: OrderID=11071   CustomerID=LILAS        EmployeeID=1    OrderDate=5/5/1998      RequiredDate=6/2/1998   ShippedDate=null        ShipVia=1       Freight=0.9300  ShipName=LILA-Supermercado      ShipAddress=Carrera 52 con Ave. Bolívar #65-98 Llano Largo      ShipCity=Barquisimeto   ShipRegion=Lara         ShipPostalCode=3508     ShipCountry=Venezuela   Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=11071    ProductID=7     UnitPrice=30.0000       Quantity=15     Discount=0.05   Order={ }       Product={ }
    Order_Details: OrderID=11071    ProductID=13    UnitPrice=6.0000        Quantity=10     Discount=0.05   Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=LILAS      CompanyName=LILA-Supermercado   ContactName=Carlos González     ContactTitle=Accounting Manager         Address=Carrera 52 con Ave. Bolívar #65-98 Llano Largo  City=Barquisimeto       Region=Lara     PostalCode=3508         Country=Venezuela       Phone=(9) 331-6954      Fax=(9) 331-7256        Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=1    CompanyName=Speedy Express      Phone=(503) 555-9831    Orders=...
  Orders: OrderID=11077   CustomerID=RATTC        EmployeeID=1    OrderDate=5/6/1998      RequiredDate=6/3/1998   ShippedDate=null        ShipVia=2       Freight=8.5300  ShipName=Rattlesnake Canyon Grocery     ShipAddress=2817 Milton Dr.     ShipCity=Albuquerque    ShipRegion=NM   ShipPostalCode=87110    ShipCountry=USA         Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Order_Details: OrderID=11077    ProductID=2     UnitPrice=19.0000       Quantity=24     Discount=0.2    Order={ }       Product={ }
    Order_Details: OrderID=11077    ProductID=3     UnitPrice=10.0000       Quantity=4      Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=11077    ProductID=4     UnitPrice=22.0000       Quantity=1      Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=11077    ProductID=6     UnitPrice=25.0000       Quantity=1      Discount=0.02   Order={ }       Product={ }
    Order_Details: OrderID=11077    ProductID=7     UnitPrice=30.0000       Quantity=1      Discount=0.05   Order={ }       Product={ }
    Order_Details: OrderID=11077    ProductID=8     UnitPrice=40.0000       Quantity=2      Discount=0.1    Order={ }       Product={ }
    Order_Details: OrderID=11077    ProductID=10    UnitPrice=31.0000       Quantity=1      Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=11077    ProductID=12    UnitPrice=38.0000       Quantity=2      Discount=0.05   Order={ }       Product={ }
    Order_Details: OrderID=11077    ProductID=13    UnitPrice=6.0000        Quantity=4      Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=11077    ProductID=14    UnitPrice=23.2500       Quantity=1      Discount=0.03   Order={ }       Product={ }
    Order_Details: OrderID=11077    ProductID=16    UnitPrice=17.4500       Quantity=2      Discount=0.03   Order={ }       Product={ }
    Order_Details: OrderID=11077    ProductID=20    UnitPrice=81.0000       Quantity=1      Discount=0.04   Order={ }       Product={ }
    Order_Details: OrderID=11077    ProductID=23    UnitPrice=9.0000        Quantity=2      Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=11077    ProductID=32    UnitPrice=32.0000       Quantity=1      Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=11077    ProductID=39    UnitPrice=18.0000       Quantity=2      Discount=0.05   Order={ }       Product={ }
    Order_Details: OrderID=11077    ProductID=41    UnitPrice=9.6500        Quantity=3      Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=11077    ProductID=46    UnitPrice=12.0000       Quantity=3      Discount=0.02   Order={ }       Product={ }
    Order_Details: OrderID=11077    ProductID=52    UnitPrice=7.0000        Quantity=2      Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=11077    ProductID=55    UnitPrice=24.0000       Quantity=2      Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=11077    ProductID=60    UnitPrice=34.0000       Quantity=2      Discount=0.06   Order={ }       Product={ }
    Order_Details: OrderID=11077    ProductID=64    UnitPrice=33.2500       Quantity=2      Discount=0.03   Order={ }       Product={ }
    Order_Details: OrderID=11077    ProductID=66    UnitPrice=17.0000       Quantity=1      Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=11077    ProductID=73    UnitPrice=15.0000       Quantity=2      Discount=0.01   Order={ }       Product={ }
    Order_Details: OrderID=11077    ProductID=75    UnitPrice=7.7500        Quantity=4      Discount=0      Order={ }       Product={ }
    Order_Details: OrderID=11077    ProductID=77    UnitPrice=13.0000       Quantity=2      Discount=0      Order={ }       Product={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Customer: CustomerID=RATTC      CompanyName=Rattlesnake Canyon Grocery  ContactName=Paula Wilson        ContactTitle=Assistant Sales Representative     Address=2817 Milton Dr.         City=Albuquerque        Region=NM       PostalCode=87110        Country=USA     Phone=(505) 555-5939    Fax=(505) 555-3620      Orders=...      CustomerCustomerDemos=...
    Shipper: ShipperID=2    CompanyName=United Package      Phone=(503) 555-3199    Orders=...
  EmployeeTerritories: EmployeeID=1       TerritoryID=06897       Territory={ }   Employee={ }
    Territory: TerritoryID=06897    TerritoryDescription=Wilton                                                     RegionID=1      EmployeeTerritories=...         Region={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
  EmployeeTerritories: EmployeeID=1       TerritoryID=19713       Territory={ }   Employee={ }
    Territory: TerritoryID=19713    TerritoryDescription=Neward                                                     RegionID=1      EmployeeTerritories=...         Region={ }
    Employee: EmployeeID=1  LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
  Employee: EmployeeID=2  LastName=Fuller         FirstName=Andrew        Title=Vice President, Sales     TitleOfCourtesy=Dr.     BirthDate=2/19/1952     HireDate=8/14/1992      Address=908 W. Capital Way      City=Tacoma     Region=WA       PostalCode=98401        Country=USA     HomePhone=(206) 555-9482        Extension=3457  Photo=...       Notes=Andrew received his BTS commercial in 1974 and a Ph.D. in international marketing from the University of Dallas in 1981.  He is fluent in French and Italian and reads German.  He joined the company as a sales representative, was promoted to sales manager in January 1992 and to vice president of sales in March 1993.  Andrew is a member of the Sales Management Roundtable, the Seattle Chamber of Commerce, and the Pacific Rim Importers Association.  ReportsTo=null  PhotoPath=http://accweb/emmployees/fuller.bmp   Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Photo: ...
    Orders: OrderID=10265   CustomerID=BLONP        EmployeeID=2    OrderDate=7/25/1996     RequiredDate=8/22/1996  ShippedDate=8/12/1996   ShipVia=1       Freight=55.2800         ShipName=Blondel père et fils   ShipAddress=24, place Kléber    ShipCity=Strasbourg     ShipRegion=null         ShipPostalCode=67000    ShipCountry=France      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=10277   CustomerID=MORGK        EmployeeID=2    OrderDate=8/9/1996      RequiredDate=9/6/1996   ShippedDate=8/13/1996   ShipVia=3       Freight=125.7700        ShipName=Morgenstern Gesundkost         ShipAddress=Heerstr. 22         ShipCity=Leipzig        ShipRegion=null         ShipPostalCode=04179    ShipCountry=Germany     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=10280   CustomerID=BERGS        EmployeeID=2    OrderDate=8/14/1996     RequiredDate=9/11/1996  ShippedDate=9/12/1996   ShipVia=1       Freight=8.9800  ShipName=Berglunds snabbköp     ShipAddress=Berguvsvägen  8     ShipCity=Luleå  ShipRegion=null         ShipPostalCode=S-958 22         ShipCountry=Sweden      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=10295   CustomerID=VINET        EmployeeID=2    OrderDate=9/2/1996      RequiredDate=9/30/1996  ShippedDate=9/10/1996   ShipVia=2       Freight=1.1500  ShipName=Vins et alcools Chevalier      ShipAddress=59 rue de l'Abbaye  ShipCity=Reims  ShipRegion=null         ShipPostalCode=51100    ShipCountry=France      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=10300   CustomerID=MAGAA        EmployeeID=2    OrderDate=9/9/1996      RequiredDate=10/7/1996  ShippedDate=9/18/1996   ShipVia=2       Freight=17.6800         ShipName=Magazzini Alimentari Riuniti   ShipAddress=Via Ludovico il Moro 22     ShipCity=Bergamo        ShipRegion=null         ShipPostalCode=24100    ShipCountry=Italy       Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=10307   CustomerID=LONEP        EmployeeID=2    OrderDate=9/17/1996     RequiredDate=10/15/1996         ShippedDate=9/25/1996   ShipVia=2       Freight=0.5600  ShipName=Lonesome Pine Restaurant       ShipAddress=89 Chiaroscuro Rd.  ShipCity=Portland       ShipRegion=OR   ShipPostalCode=97219    ShipCountry=USA         Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=10312   CustomerID=WANDK        EmployeeID=2    OrderDate=9/23/1996     RequiredDate=10/21/1996         ShippedDate=10/3/1996   ShipVia=2       Freight=40.2600         ShipName=Die Wandernde Kuh      ShipAddress=Adenauerallee 900   ShipCity=Stuttgart      ShipRegion=null         ShipPostalCode=70563    ShipCountry=Germany     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=10313   CustomerID=QUICK        EmployeeID=2    OrderDate=9/24/1996     RequiredDate=10/22/1996         ShippedDate=10/4/1996   ShipVia=2       Freight=1.9600  ShipName=QUICK-Stop     ShipAddress=Taucherstraße 10    ShipCity=Cunewalde      ShipRegion=null         ShipPostalCode=01307    ShipCountry=Germany     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=10327   CustomerID=FOLKO        EmployeeID=2    OrderDate=10/11/1996    RequiredDate=11/8/1996  ShippedDate=10/14/1996  ShipVia=1       Freight=63.3600         ShipName=Folk och fä HB         ShipAddress=Åkergatan 24        ShipCity=Bräcke         ShipRegion=null         ShipPostalCode=S-844 67         ShipCountry=Sweden      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=10339   CustomerID=MEREP        EmployeeID=2    OrderDate=10/28/1996    RequiredDate=11/25/1996         ShippedDate=11/4/1996   ShipVia=2       Freight=15.6600         ShipName=Mère Paillarde         ShipAddress=43 rue St. Laurent  ShipCity=Montréal       ShipRegion=Québec       ShipPostalCode=H1J 1C3  ShipCountry=Canada      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=10345   CustomerID=QUICK        EmployeeID=2    OrderDate=11/4/1996     RequiredDate=12/2/1996  ShippedDate=11/11/1996  ShipVia=2       Freight=249.0600        ShipName=QUICK-Stop     ShipAddress=Taucherstraße 10    ShipCity=Cunewalde      ShipRegion=null         ShipPostalCode=01307    ShipCountry=Germany     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=10368   CustomerID=ERNSH        EmployeeID=2    OrderDate=11/29/1996    RequiredDate=12/27/1996         ShippedDate=12/2/1996   ShipVia=2       Freight=101.9500        ShipName=Ernst Handel   ShipAddress=Kirchgasse 6        ShipCity=Graz   ShipRegion=null         ShipPostalCode=8010     ShipCountry=Austria     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=10379   CustomerID=QUEDE        EmployeeID=2    OrderDate=12/11/1996    RequiredDate=1/8/1997   ShippedDate=12/13/1996  ShipVia=1       Freight=45.0300         ShipName=Que Delícia    ShipAddress=Rua da Panificadora, 12     ShipCity=Rio de Janeiro         ShipRegion=RJ   ShipPostalCode=02389-673        ShipCountry=Brazil      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=10388   CustomerID=SEVES        EmployeeID=2    OrderDate=12/19/1996    RequiredDate=1/16/1997  ShippedDate=12/20/1996  ShipVia=1       Freight=34.8600         ShipName=Seven Seas Imports     ShipAddress=90 Wadhurst Rd.     ShipCity=London         ShipRegion=null         ShipPostalCode=OX15 4NB         ShipCountry=UK  Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=10392   CustomerID=PICCO        EmployeeID=2    OrderDate=12/24/1996    RequiredDate=1/21/1997  ShippedDate=1/1/1997    ShipVia=3       Freight=122.4600        ShipName=Piccolo und mehr       ShipAddress=Geislweg 14         ShipCity=Salzburg       ShipRegion=null         ShipPostalCode=5020     ShipCountry=Austria     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=10398   CustomerID=SAVEA        EmployeeID=2    OrderDate=12/30/1996    RequiredDate=1/27/1997  ShippedDate=1/9/1997    ShipVia=3       Freight=89.1600         ShipName=Save-a-lot Markets     ShipAddress=187 Suffolk Ln.     ShipCity=Boise  ShipRegion=ID   ShipPostalCode=83720    ShipCountry=USA         Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=10404   CustomerID=MAGAA        EmployeeID=2    OrderDate=1/3/1997      RequiredDate=1/31/1997  ShippedDate=1/8/1997    ShipVia=1       Freight=155.9700        ShipName=Magazzini Alimentari Riuniti   ShipAddress=Via Ludovico il Moro 22     ShipCity=Bergamo        ShipRegion=null         ShipPostalCode=24100    ShipCountry=Italy       Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=10407   CustomerID=OTTIK        EmployeeID=2    OrderDate=1/7/1997      RequiredDate=2/4/1997   ShippedDate=1/30/1997   ShipVia=2       Freight=91.4800         ShipName=Ottilies Käseladen     ShipAddress=Mehrheimerstr. 369  ShipCity=Köln   ShipRegion=null         ShipPostalCode=50739    ShipCountry=Germany     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=10414   CustomerID=FAMIA        EmployeeID=2    OrderDate=1/14/1997     RequiredDate=2/11/1997  ShippedDate=1/17/1997   ShipVia=3       Freight=21.4800         ShipName=Familia Arquibaldo     ShipAddress=Rua Orós, 92        ShipCity=Sao Paulo      ShipRegion=SP   ShipPostalCode=05442-030        ShipCountry=Brazil      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=10422   CustomerID=FRANS        EmployeeID=2    OrderDate=1/22/1997     RequiredDate=2/19/1997  ShippedDate=1/31/1997   ShipVia=1       Freight=3.0200  ShipName=Franchi S.p.A.         ShipAddress=Via Monte Bianco 34         ShipCity=Torino         ShipRegion=null         ShipPostalCode=10100    ShipCountry=Italy       Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=10457   CustomerID=KOENE        EmployeeID=2    OrderDate=2/25/1997     RequiredDate=3/25/1997  ShippedDate=3/3/1997    ShipVia=1       Freight=11.5700         ShipName=Königlich Essen        ShipAddress=Maubelstr. 90       ShipCity=Brandenburg    ShipRegion=null         ShipPostalCode=14776    ShipCountry=Germany     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=10462   CustomerID=CONSH        EmployeeID=2    OrderDate=3/3/1997      RequiredDate=3/31/1997  ShippedDate=3/18/1997   ShipVia=1       Freight=6.1700  ShipName=Consolidated Holdings  ShipAddress=Berkeley Gardens 12  Brewery        ShipCity=London         ShipRegion=null         ShipPostalCode=WX1 6LT  ShipCountry=UK  Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=10471   CustomerID=BSBEV        EmployeeID=2    OrderDate=3/11/1997     RequiredDate=4/8/1997   ShippedDate=3/18/1997   ShipVia=3       Freight=45.5900         ShipName=B's Beverages  ShipAddress=Fauntleroy Circus   ShipCity=London         ShipRegion=null         ShipPostalCode=EC2 5NT  ShipCountry=UK  Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=10478   CustomerID=VICTE        EmployeeID=2    OrderDate=3/18/1997     RequiredDate=4/1/1997   ShippedDate=3/26/1997   ShipVia=3       Freight=4.8100  ShipName=Victuailles en stock   ShipAddress=2, rue du Commerce  ShipCity=Lyon   ShipRegion=null         ShipPostalCode=69004    ShipCountry=France      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=10487   CustomerID=QUEEN        EmployeeID=2    OrderDate=3/26/1997     RequiredDate=4/23/1997  ShippedDate=3/28/1997   ShipVia=2       Freight=71.0700         ShipName=Queen Cozinha  ShipAddress=Alameda dos Canàrios, 891   ShipCity=Sao Paulo      ShipRegion=SP   ShipPostalCode=05487-020        ShipCountry=Brazil      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=10502   CustomerID=PERIC        EmployeeID=2    OrderDate=4/10/1997     RequiredDate=5/8/1997   ShippedDate=4/29/1997   ShipVia=1       Freight=69.3200         ShipName=Pericles Comidas clásicas      ShipAddress=Calle Dr. Jorge Cash 321    ShipCity=México D.F.    ShipRegion=null         ShipPostalCode=05033    ShipCountry=Mexico      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=10515   CustomerID=QUICK        EmployeeID=2    OrderDate=4/23/1997     RequiredDate=5/7/1997   ShippedDate=5/23/1997   ShipVia=1       Freight=204.4700        ShipName=QUICK-Stop     ShipAddress=Taucherstraße 10    ShipCity=Cunewalde      ShipRegion=null         ShipPostalCode=01307    ShipCountry=Germany     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=10516   CustomerID=HUNGO        EmployeeID=2    OrderDate=4/24/1997     RequiredDate=5/22/1997  ShippedDate=5/1/1997    ShipVia=3       Freight=62.7800         ShipName=Hungry Owl All-Night Grocers   ShipAddress=8 Johnstown Road    ShipCity=Cork   ShipRegion=Co. Cork     ShipPostalCode=null     ShipCountry=Ireland     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=10541   CustomerID=HANAR        EmployeeID=2    OrderDate=5/19/1997     RequiredDate=6/16/1997  ShippedDate=5/29/1997   ShipVia=1       Freight=68.6500         ShipName=Hanari Carnes  ShipAddress=Rua do Paço, 67     ShipCity=Rio de Janeiro         ShipRegion=RJ   ShipPostalCode=05454-876        ShipCountry=Brazil      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=10552   CustomerID=HILAA        EmployeeID=2    OrderDate=5/29/1997     RequiredDate=6/26/1997  ShippedDate=6/5/1997    ShipVia=1       Freight=83.2200         ShipName=HILARION-Abastos       ShipAddress=Carrera 22 con Ave. Carlos Soublette #8-35  ShipCity=San Cristóbal  ShipRegion=Táchira      ShipPostalCode=5022     ShipCountry=Venezuela   Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=10553   CustomerID=WARTH        EmployeeID=2    OrderDate=5/30/1997     RequiredDate=6/27/1997  ShippedDate=6/3/1997    ShipVia=2       Freight=149.4900        ShipName=Wartian Herkku         ShipAddress=Torikatu 38         ShipCity=Oulu   ShipRegion=null         ShipPostalCode=90110    ShipCountry=Finland     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=10556   CustomerID=SIMOB        EmployeeID=2    OrderDate=6/3/1997      RequiredDate=7/15/1997  ShippedDate=6/13/1997   ShipVia=1       Freight=9.8000  ShipName=Simons bistro  ShipAddress=Vinbæltet 34        ShipCity=Kobenhavn      ShipRegion=null         ShipPostalCode=1734     ShipCountry=Denmark     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=10561   CustomerID=FOLKO        EmployeeID=2    OrderDate=6/6/1997      RequiredDate=7/4/1997   ShippedDate=6/9/1997    ShipVia=2       Freight=242.2100        ShipName=Folk och fä HB         ShipAddress=Åkergatan 24        ShipCity=Bräcke         ShipRegion=null         ShipPostalCode=S-844 67         ShipCountry=Sweden      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=10563   CustomerID=RICAR        EmployeeID=2    OrderDate=6/10/1997     RequiredDate=7/22/1997  ShippedDate=6/24/1997   ShipVia=2       Freight=60.4300         ShipName=Ricardo Adocicados     ShipAddress=Av. Copacabana, 267         ShipCity=Rio de Janeiro         ShipRegion=RJ   ShipPostalCode=02389-890        ShipCountry=Brazil      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=10583   CustomerID=WARTH        EmployeeID=2    OrderDate=6/30/1997     RequiredDate=7/28/1997  ShippedDate=7/4/1997    ShipVia=2       Freight=7.2800  ShipName=Wartian Herkku         ShipAddress=Torikatu 38         ShipCity=Oulu   ShipRegion=null         ShipPostalCode=90110    ShipCountry=Finland     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=10588   CustomerID=QUICK        EmployeeID=2    OrderDate=7/3/1997      RequiredDate=7/31/1997  ShippedDate=7/10/1997   ShipVia=3       Freight=194.6700        ShipName=QUICK-Stop     ShipAddress=Taucherstraße 10    ShipCity=Cunewalde      ShipRegion=null         ShipPostalCode=01307    ShipCountry=Germany     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=10595   CustomerID=ERNSH        EmployeeID=2    OrderDate=7/10/1997     RequiredDate=8/7/1997   ShippedDate=7/14/1997   ShipVia=1       Freight=96.7800         ShipName=Ernst Handel   ShipAddress=Kirchgasse 6        ShipCity=Graz   ShipRegion=null         ShipPostalCode=8010     ShipCountry=Austria     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=10615   CustomerID=WILMK        EmployeeID=2    OrderDate=7/30/1997     RequiredDate=8/27/1997  ShippedDate=8/6/1997    ShipVia=3       Freight=0.7500  ShipName=Wilman Kala    ShipAddress=Keskuskatu 45       ShipCity=Helsinki       ShipRegion=null         ShipPostalCode=21240    ShipCountry=Finland     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=10620   CustomerID=LAUGB        EmployeeID=2    OrderDate=8/5/1997      RequiredDate=9/2/1997   ShippedDate=8/14/1997   ShipVia=3       Freight=0.9400  ShipName=Laughing Bacchus Wine Cellars  ShipAddress=2319 Elm St.        ShipCity=Vancouver      ShipRegion=BC   ShipPostalCode=V3F 2K1  ShipCountry=Canada      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=10657   CustomerID=SAVEA        EmployeeID=2    OrderDate=9/4/1997      RequiredDate=10/2/1997  ShippedDate=9/15/1997   ShipVia=2       Freight=352.6900        ShipName=Save-a-lot Markets     ShipAddress=187 Suffolk Ln.     ShipCity=Boise  ShipRegion=ID   ShipPostalCode=83720    ShipCountry=USA         Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=10663   CustomerID=BONAP        EmployeeID=2    OrderDate=9/10/1997     RequiredDate=9/24/1997  ShippedDate=10/3/1997   ShipVia=2       Freight=113.1500        ShipName=Bon app'       ShipAddress=12, rue des Bouchers        ShipCity=Marseille      ShipRegion=null         ShipPostalCode=13008    ShipCountry=France      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=10669   CustomerID=SIMOB        EmployeeID=2    OrderDate=9/15/1997     RequiredDate=10/13/1997         ShippedDate=9/22/1997   ShipVia=1       Freight=24.3900         ShipName=Simons bistro  ShipAddress=Vinbæltet 34        ShipCity=Kobenhavn      ShipRegion=null         ShipPostalCode=1734     ShipCountry=Denmark     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=10673   CustomerID=WILMK        EmployeeID=2    OrderDate=9/18/1997     RequiredDate=10/16/1997         ShippedDate=9/19/1997   ShipVia=1       Freight=22.7600         ShipName=Wilman Kala    ShipAddress=Keskuskatu 45       ShipCity=Helsinki       ShipRegion=null         ShipPostalCode=21240    ShipCountry=Finland     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=10676   CustomerID=TORTU        EmployeeID=2    OrderDate=9/22/1997     RequiredDate=10/20/1997         ShippedDate=9/29/1997   ShipVia=2       Freight=2.0100  ShipName=Tortuga Restaurante    ShipAddress=Avda. Azteca 123    ShipCity=México D.F.    ShipRegion=null         ShipPostalCode=05033    ShipCountry=Mexico      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=10683   CustomerID=DUMON        EmployeeID=2    OrderDate=9/26/1997     RequiredDate=10/24/1997         ShippedDate=10/1/1997   ShipVia=1       Freight=4.4000  ShipName=Du monde entier        ShipAddress=67, rue des Cinquante Otages        ShipCity=Nantes         ShipRegion=null         ShipPostalCode=44000    ShipCountry=France      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=10686   CustomerID=PICCO        EmployeeID=2    OrderDate=9/30/1997     RequiredDate=10/28/1997         ShippedDate=10/8/1997   ShipVia=1       Freight=96.5000         ShipName=Piccolo und mehr       ShipAddress=Geislweg 14         ShipCity=Salzburg       ShipRegion=null         ShipPostalCode=5020     ShipCountry=Austria     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=10691   CustomerID=QUICK        EmployeeID=2    OrderDate=10/3/1997     RequiredDate=11/14/1997         ShippedDate=10/22/1997  ShipVia=2       Freight=810.0500        ShipName=QUICK-Stop     ShipAddress=Taucherstraße 10    ShipCity=Cunewalde      ShipRegion=null         ShipPostalCode=01307    ShipCountry=Germany     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=10727   CustomerID=REGGC        EmployeeID=2    OrderDate=11/3/1997     RequiredDate=12/1/1997  ShippedDate=12/5/1997   ShipVia=1       Freight=89.9000         ShipName=Reggiani Caseifici     ShipAddress=Strada Provinciale 124      ShipCity=Reggio Emilia  ShipRegion=null         ShipPostalCode=42100    ShipCountry=Italy       Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=10734   CustomerID=GOURL        EmployeeID=2    OrderDate=11/7/1997     RequiredDate=12/5/1997  ShippedDate=11/12/1997  ShipVia=3       Freight=1.6300  ShipName=Gourmet Lanchonetes    ShipAddress=Av. Brasil, 442     ShipCity=Campinas       ShipRegion=SP   ShipPostalCode=04876-786        ShipCountry=Brazil      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=10737   CustomerID=VINET        EmployeeID=2    OrderDate=11/11/1997    RequiredDate=12/9/1997  ShippedDate=11/18/1997  ShipVia=2       Freight=7.7900  ShipName=Vins et alcools Chevalier      ShipAddress=59 rue de l'Abbaye  ShipCity=Reims  ShipRegion=null         ShipPostalCode=51100    ShipCountry=France      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=10738   CustomerID=SPECD        EmployeeID=2    OrderDate=11/12/1997    RequiredDate=12/10/1997         ShippedDate=11/18/1997  ShipVia=1       Freight=2.9100  ShipName=Spécialités du monde   ShipAddress=25, rue Lauriston   ShipCity=Paris  ShipRegion=null         ShipPostalCode=75016    ShipCountry=France      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=10752   CustomerID=NORTS        EmployeeID=2    OrderDate=11/24/1997    RequiredDate=12/22/1997         ShippedDate=11/28/1997  ShipVia=3       Freight=1.3900  ShipName=North/South    ShipAddress=South House 300 Queensbridge        ShipCity=London         ShipRegion=null         ShipPostalCode=SW7 1RZ  ShipCountry=UK  Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=10780   CustomerID=LILAS        EmployeeID=2    OrderDate=12/16/1997    RequiredDate=12/30/1997         ShippedDate=12/25/1997  ShipVia=1       Freight=42.1300         ShipName=LILA-Supermercado      ShipAddress=Carrera 52 con Ave. Bolívar #65-98 Llano Largo      ShipCity=Barquisimeto   ShipRegion=Lara         ShipPostalCode=3508     ShipCountry=Venezuela   Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=10781   CustomerID=WARTH        EmployeeID=2    OrderDate=12/17/1997    RequiredDate=1/14/1998  ShippedDate=12/19/1997  ShipVia=3       Freight=73.1600         ShipName=Wartian Herkku         ShipAddress=Torikatu 38         ShipCity=Oulu   ShipRegion=null         ShipPostalCode=90110    ShipCountry=Finland     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=10787   CustomerID=LAMAI        EmployeeID=2    OrderDate=12/19/1997    RequiredDate=1/2/1998   ShippedDate=12/26/1997  ShipVia=1       Freight=249.9300        ShipName=La maison d'Asie       ShipAddress=1 rue Alsace-Lorraine       ShipCity=Toulouse       ShipRegion=null         ShipPostalCode=31000    ShipCountry=France      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=10798   CustomerID=ISLAT        EmployeeID=2    OrderDate=12/26/1997    RequiredDate=1/23/1998  ShippedDate=1/5/1998    ShipVia=1       Freight=2.3300  ShipName=Island Trading         ShipAddress=Garden House Crowther Way   ShipCity=Cowes  ShipRegion=Isle of Wight        ShipPostalCode=PO31 7PJ         ShipCountry=UK  Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=10805   CustomerID=THEBI        EmployeeID=2    OrderDate=12/30/1997    RequiredDate=1/27/1998  ShippedDate=1/9/1998    ShipVia=3       Freight=237.3400        ShipName=The Big Cheese         ShipAddress=89 Jefferson Way Suite 2    ShipCity=Portland       ShipRegion=OR   ShipPostalCode=97201    ShipCountry=USA         Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=10808   CustomerID=OLDWO        EmployeeID=2    OrderDate=1/1/1998      RequiredDate=1/29/1998  ShippedDate=1/9/1998    ShipVia=3       Freight=45.5300         ShipName=Old World Delicatessen         ShipAddress=2743 Bering St.     ShipCity=Anchorage      ShipRegion=AK   ShipPostalCode=99508    ShipCountry=USA         Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=10810   CustomerID=LAUGB        EmployeeID=2    OrderDate=1/1/1998      RequiredDate=1/29/1998  ShippedDate=1/7/1998    ShipVia=3       Freight=4.3300  ShipName=Laughing Bacchus Wine Cellars  ShipAddress=2319 Elm St.        ShipCity=Vancouver      ShipRegion=BC   ShipPostalCode=V3F 2K1  ShipCountry=Canada      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=10815   CustomerID=SAVEA        EmployeeID=2    OrderDate=1/5/1998      RequiredDate=2/2/1998   ShippedDate=1/14/1998   ShipVia=3       Freight=14.6200         ShipName=Save-a-lot Markets     ShipAddress=187 Suffolk Ln.     ShipCity=Boise  ShipRegion=ID   ShipPostalCode=83720    ShipCountry=USA         Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=10819   CustomerID=CACTU        EmployeeID=2    OrderDate=1/7/1998      RequiredDate=2/4/1998   ShippedDate=1/16/1998   ShipVia=3       Freight=19.7600         ShipName=Cactus Comidas para llevar     ShipAddress=Cerrito 333         ShipCity=Buenos Aires   ShipRegion=null         ShipPostalCode=1010     ShipCountry=Argentina   Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=10832   CustomerID=LAMAI        EmployeeID=2    OrderDate=1/14/1998     RequiredDate=2/11/1998  ShippedDate=1/19/1998   ShipVia=2       Freight=43.2600         ShipName=La maison d'Asie       ShipAddress=1 rue Alsace-Lorraine       ShipCity=Toulouse       ShipRegion=null         ShipPostalCode=31000    ShipCountry=France      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=10846   CustomerID=SUPRD        EmployeeID=2    OrderDate=1/22/1998     RequiredDate=3/5/1998   ShippedDate=1/23/1998   ShipVia=3       Freight=56.4600         ShipName=Suprêmes délices       ShipAddress=Boulevard Tirou, 255        ShipCity=Charleroi      ShipRegion=null         ShipPostalCode=B-6000   ShipCountry=Belgium     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=10858   CustomerID=LACOR        EmployeeID=2    OrderDate=1/29/1998     RequiredDate=2/26/1998  ShippedDate=2/3/1998    ShipVia=1       Freight=52.5100         ShipName=La corne d'abondance   ShipAddress=67, avenue de l'Europe      ShipCity=Versailles     ShipRegion=null         ShipPostalCode=78000    ShipCountry=France      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=10865   CustomerID=QUICK        EmployeeID=2    OrderDate=2/2/1998      RequiredDate=2/16/1998  ShippedDate=2/12/1998   ShipVia=1       Freight=348.1400        ShipName=QUICK-Stop     ShipAddress=Taucherstraße 10    ShipCity=Cunewalde      ShipRegion=null         ShipPostalCode=01307    ShipCountry=Germany     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=10912   CustomerID=HUNGO        EmployeeID=2    OrderDate=2/26/1998     RequiredDate=3/26/1998  ShippedDate=3/18/1998   ShipVia=2       Freight=580.9100        ShipName=Hungry Owl All-Night Grocers   ShipAddress=8 Johnstown Road    ShipCity=Cork   ShipRegion=Co. Cork     ShipPostalCode=null     ShipCountry=Ireland     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=10915   CustomerID=TORTU        EmployeeID=2    OrderDate=2/27/1998     RequiredDate=3/27/1998  ShippedDate=3/2/1998    ShipVia=2       Freight=3.5100  ShipName=Tortuga Restaurante    ShipAddress=Avda. Azteca 123    ShipCity=México D.F.    ShipRegion=null         ShipPostalCode=05033    ShipCountry=Mexico      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=10919   CustomerID=LINOD        EmployeeID=2    OrderDate=3/2/1998      RequiredDate=3/30/1998  ShippedDate=3/4/1998    ShipVia=2       Freight=19.8000         ShipName=LINO-Delicateses       ShipAddress=Ave. 5 de Mayo Porlamar     ShipCity=I. de Margarita        ShipRegion=Nueva Esparta        ShipPostalCode=4980     ShipCountry=Venezuela   Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=10939   CustomerID=MAGAA        EmployeeID=2    OrderDate=3/10/1998     RequiredDate=4/7/1998   ShippedDate=3/13/1998   ShipVia=2       Freight=76.3300         ShipName=Magazzini Alimentari Riuniti   ShipAddress=Via Ludovico il Moro 22     ShipCity=Bergamo        ShipRegion=null         ShipPostalCode=24100    ShipCountry=Italy       Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=10949   CustomerID=BOTTM        EmployeeID=2    OrderDate=3/13/1998     RequiredDate=4/10/1998  ShippedDate=3/17/1998   ShipVia=3       Freight=74.4400         ShipName=Bottom-Dollar Markets  ShipAddress=23 Tsawassen Blvd.  ShipCity=Tsawassen      ShipRegion=BC   ShipPostalCode=T2F 8M4  ShipCountry=Canada      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=10967   CustomerID=TOMSP        EmployeeID=2    OrderDate=3/23/1998     RequiredDate=4/20/1998  ShippedDate=4/2/1998    ShipVia=2       Freight=62.2200         ShipName=Toms Spezialitäten     ShipAddress=Luisenstr. 48       ShipCity=Münster        ShipRegion=null         ShipPostalCode=44087    ShipCountry=Germany     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=10971   CustomerID=FRANR        EmployeeID=2    OrderDate=3/24/1998     RequiredDate=4/21/1998  ShippedDate=4/2/1998    ShipVia=2       Freight=121.8200        ShipName=France restauration    ShipAddress=54, rue Royale      ShipCity=Nantes         ShipRegion=null         ShipPostalCode=44000    ShipCountry=France      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=10982   CustomerID=BOTTM        EmployeeID=2    OrderDate=3/27/1998     RequiredDate=4/24/1998  ShippedDate=4/8/1998    ShipVia=1       Freight=14.0100         ShipName=Bottom-Dollar Markets  ShipAddress=23 Tsawassen Blvd.  ShipCity=Tsawassen      ShipRegion=BC   ShipPostalCode=T2F 8M4  ShipCountry=Canada      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=10983   CustomerID=SAVEA        EmployeeID=2    OrderDate=3/27/1998     RequiredDate=4/24/1998  ShippedDate=4/6/1998    ShipVia=2       Freight=657.5400        ShipName=Save-a-lot Markets     ShipAddress=187 Suffolk Ln.     ShipCity=Boise  ShipRegion=ID   ShipPostalCode=83720    ShipCountry=USA         Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=10985   CustomerID=HUNGO        EmployeeID=2    OrderDate=3/30/1998     RequiredDate=4/27/1998  ShippedDate=4/2/1998    ShipVia=1       Freight=91.5100         ShipName=Hungry Owl All-Night Grocers   ShipAddress=8 Johnstown Road    ShipCity=Cork   ShipRegion=Co. Cork     ShipPostalCode=null     ShipCountry=Ireland     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=10989   CustomerID=QUEDE        EmployeeID=2    OrderDate=3/31/1998     RequiredDate=4/28/1998  ShippedDate=4/2/1998    ShipVia=1       Freight=34.7600         ShipName=Que Delícia    ShipAddress=Rua da Panificadora, 12     ShipCity=Rio de Janeiro         ShipRegion=RJ   ShipPostalCode=02389-673        ShipCountry=Brazil      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=10990   CustomerID=ERNSH        EmployeeID=2    OrderDate=4/1/1998      RequiredDate=5/13/1998  ShippedDate=4/7/1998    ShipVia=3       Freight=117.6100        ShipName=Ernst Handel   ShipAddress=Kirchgasse 6        ShipCity=Graz   ShipRegion=null         ShipPostalCode=8010     ShipCountry=Austria     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=10994   CustomerID=VAFFE        EmployeeID=2    OrderDate=4/2/1998      RequiredDate=4/16/1998  ShippedDate=4/9/1998    ShipVia=3       Freight=65.5300         ShipName=Vaffeljernet   ShipAddress=Smagsloget 45       ShipCity=Århus  ShipRegion=null         ShipPostalCode=8200     ShipCountry=Denmark     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=11000   CustomerID=RATTC        EmployeeID=2    OrderDate=4/6/1998      RequiredDate=5/4/1998   ShippedDate=4/14/1998   ShipVia=3       Freight=55.1200         ShipName=Rattlesnake Canyon Grocery     ShipAddress=2817 Milton Dr.     ShipCity=Albuquerque    ShipRegion=NM   ShipPostalCode=87110    ShipCountry=USA         Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=11001   CustomerID=FOLKO        EmployeeID=2    OrderDate=4/6/1998      RequiredDate=5/4/1998   ShippedDate=4/14/1998   ShipVia=2       Freight=197.3000        ShipName=Folk och fä HB         ShipAddress=Åkergatan 24        ShipCity=Bräcke         ShipRegion=null         ShipPostalCode=S-844 67         ShipCountry=Sweden      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=11005   CustomerID=WILMK        EmployeeID=2    OrderDate=4/7/1998      RequiredDate=5/5/1998   ShippedDate=4/10/1998   ShipVia=1       Freight=0.7500  ShipName=Wilman Kala    ShipAddress=Keskuskatu 45       ShipCity=Helsinki       ShipRegion=null         ShipPostalCode=21240    ShipCountry=Finland     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=11009   CustomerID=GODOS        EmployeeID=2    OrderDate=4/8/1998      RequiredDate=5/6/1998   ShippedDate=4/10/1998   ShipVia=1       Freight=59.1100         ShipName=Godos Cocina Típica    ShipAddress=C/ Romero, 33       ShipCity=Sevilla        ShipRegion=null         ShipPostalCode=41101    ShipCountry=Spain       Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=11010   CustomerID=REGGC        EmployeeID=2    OrderDate=4/9/1998      RequiredDate=5/7/1998   ShippedDate=4/21/1998   ShipVia=2       Freight=28.7100         ShipName=Reggiani Caseifici     ShipAddress=Strada Provinciale 124      ShipCity=Reggio Emilia  ShipRegion=null         ShipPostalCode=42100    ShipCountry=Italy       Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=11013   CustomerID=ROMEY        EmployeeID=2    OrderDate=4/9/1998      RequiredDate=5/7/1998   ShippedDate=4/10/1998   ShipVia=1       Freight=32.9900         ShipName=Romero y tomillo       ShipAddress=Gran Vía, 1         ShipCity=Madrid         ShipRegion=null         ShipPostalCode=28001    ShipCountry=Spain       Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=11014   CustomerID=LINOD        EmployeeID=2    OrderDate=4/10/1998     RequiredDate=5/8/1998   ShippedDate=4/15/1998   ShipVia=3       Freight=23.6000         ShipName=LINO-Delicateses       ShipAddress=Ave. 5 de Mayo Porlamar     ShipCity=I. de Margarita        ShipRegion=Nueva Esparta        ShipPostalCode=4980     ShipCountry=Venezuela   Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=11015   CustomerID=SANTG        EmployeeID=2    OrderDate=4/10/1998     RequiredDate=4/24/1998  ShippedDate=4/20/1998   ShipVia=2       Freight=4.6200  ShipName=Santé Gourmet  ShipAddress=Erling Skakkes gate 78      ShipCity=Stavern        ShipRegion=null         ShipPostalCode=4110     ShipCountry=Norway      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=11020   CustomerID=OTTIK        EmployeeID=2    OrderDate=4/14/1998     RequiredDate=5/12/1998  ShippedDate=4/16/1998   ShipVia=2       Freight=43.3000         ShipName=Ottilies Käseladen     ShipAddress=Mehrheimerstr. 369  ShipCity=Köln   ShipRegion=null         ShipPostalCode=50739    ShipCountry=Germany     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=11028   CustomerID=KOENE        EmployeeID=2    OrderDate=4/16/1998     RequiredDate=5/14/1998  ShippedDate=4/22/1998   ShipVia=1       Freight=29.5900         ShipName=Königlich Essen        ShipAddress=Maubelstr. 90       ShipCity=Brandenburg    ShipRegion=null         ShipPostalCode=14776    ShipCountry=Germany     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=11032   CustomerID=WHITC        EmployeeID=2    OrderDate=4/17/1998     RequiredDate=5/15/1998  ShippedDate=4/23/1998   ShipVia=3       Freight=606.1900        ShipName=White Clover Markets   ShipAddress=1029 - 12th Ave. S.         ShipCity=Seattle        ShipRegion=WA   ShipPostalCode=98124    ShipCountry=USA         Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=11035   CustomerID=SUPRD        EmployeeID=2    OrderDate=4/20/1998     RequiredDate=5/18/1998  ShippedDate=4/24/1998   ShipVia=2       Freight=0.1700  ShipName=Suprêmes délices       ShipAddress=Boulevard Tirou, 255        ShipCity=Charleroi      ShipRegion=null         ShipPostalCode=B-6000   ShipCountry=Belgium     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=11042   CustomerID=COMMI        EmployeeID=2    OrderDate=4/22/1998     RequiredDate=5/6/1998   ShippedDate=5/1/1998    ShipVia=1       Freight=29.9900         ShipName=Comércio Mineiro       ShipAddress=Av. dos Lusíadas, 23        ShipCity=Sao Paulo      ShipRegion=SP   ShipPostalCode=05432-043        ShipCountry=Brazil      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=11053   CustomerID=PICCO        EmployeeID=2    OrderDate=4/27/1998     RequiredDate=5/25/1998  ShippedDate=4/29/1998   ShipVia=2       Freight=53.0500         ShipName=Piccolo und mehr       ShipAddress=Geislweg 14         ShipCity=Salzburg       ShipRegion=null         ShipPostalCode=5020     ShipCountry=Austria     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=11059   CustomerID=RICAR        EmployeeID=2    OrderDate=4/29/1998     RequiredDate=6/10/1998  ShippedDate=null        ShipVia=2       Freight=85.8000         ShipName=Ricardo Adocicados     ShipAddress=Av. Copacabana, 267         ShipCity=Rio de Janeiro         ShipRegion=RJ   ShipPostalCode=02389-890        ShipCountry=Brazil      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=11060   CustomerID=FRANS        EmployeeID=2    OrderDate=4/30/1998     RequiredDate=5/28/1998  ShippedDate=5/4/1998    ShipVia=2       Freight=10.9800         ShipName=Franchi S.p.A.         ShipAddress=Via Monte Bianco 34         ShipCity=Torino         ShipRegion=null         ShipPostalCode=10100    ShipCountry=Italy       Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=11070   CustomerID=LEHMS        EmployeeID=2    OrderDate=5/5/1998      RequiredDate=6/2/1998   ShippedDate=null        ShipVia=1       Freight=136.0000        ShipName=Lehmanns Marktstand    ShipAddress=Magazinweg 7        ShipCity=Frankfurt a.M.         ShipRegion=null         ShipPostalCode=60528    ShipCountry=Germany     Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    Orders: OrderID=11073   CustomerID=PERIC        EmployeeID=2    OrderDate=5/5/1998      RequiredDate=6/2/1998   ShippedDate=null        ShipVia=2       Freight=24.9500         ShipName=Pericles Comidas clásicas      ShipAddress=Calle Dr. Jorge Cash 321    ShipCity=México D.F.    ShipRegion=null         ShipPostalCode=05033    ShipCountry=Mexico      Order_Details=...       Employee={ }    Customer={ }    Shipper={ }
    EmployeeTerritories: EmployeeID=2       TerritoryID=01581       Territory={ }   Employee={ }
    EmployeeTerritories: EmployeeID=2       TerritoryID=01730       Territory={ }   Employee={ }
    EmployeeTerritories: EmployeeID=2       TerritoryID=01833       Territory={ }   Employee={ }
    EmployeeTerritories: EmployeeID=2       TerritoryID=02116       Territory={ }   Employee={ }
    EmployeeTerritories: EmployeeID=2       TerritoryID=02139       Territory={ }   Employee={ }
    EmployeeTerritories: EmployeeID=2       TerritoryID=02184       Territory={ }   Employee={ }
    EmployeeTerritories: EmployeeID=2       TerritoryID=40222       Territory={ }   Employee={ }
    Employees: EmployeeID=1         LastName=Davolio        FirstName=Nancy         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=12/8/1948     HireDate=5/1/1992       Address=507 - 20th Ave. E.
Apt. 2A     City=Seattle    Region=WA       PostalCode=98122        Country=USA     HomePhone=(206) 555-9857        Extension=5467  Photo=...       Notes=Education includes a BA in psychology from Colorado State University in 1970.  She also completed "The Art of the Cold Call."  Nancy is a member of Toastmasters International.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Employees: EmployeeID=3         LastName=Leverling      FirstName=Janet         Title=Sales Representative      TitleOfCourtesy=Ms.     BirthDate=8/30/1963     HireDate=4/1/1992       Address=722 Moss Bay Blvd.      City=Kirkland   Region=WA       PostalCode=98033        Country=USA     HomePhone=(206) 555-3412        Extension=3355  Photo=...       Notes=Janet has a BS degree in chemistry from Boston College (1984).  She has also completed a certificate program in food retailing management.  Janet was hired as a sales associate in 1991 and promoted to sales representative in February 1992.   ReportsTo=2     PhotoPath=http://accweb/emmployees/leverling.bmp        Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Employees: EmployeeID=4         LastName=Peacock        FirstName=Margaret      Title=Sales Representative      TitleOfCourtesy=Mrs.    BirthDate=9/19/1937     HireDate=5/3/1993       Address=4110 Old Redmond Rd.    City=Redmond    Region=WA       PostalCode=98052        Country=USA     HomePhone=(206) 555-8122        Extension=5176  Photo=...       Notes=Margaret holds a BA in English literature from Concordia College (1958) and an MA from the American Institute of Culinary Arts (1966).  She was assigned to the London office temporarily from July through November 1992.        ReportsTo=2     PhotoPath=http://accweb/emmployees/peacock.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Employees: EmployeeID=5         LastName=Buchanan       FirstName=Steven        Title=Sales Manager     TitleOfCourtesy=Mr.     BirthDate=3/4/1955      HireDate=10/17/1993     Address=14 Garrett Hill         City=London     Region=null     PostalCode=SW1 8JR      Country=UK      HomePhone=(71) 555-4848         Extension=3453  Photo=...       Notes=Steven Buchanan graduated from St. Andrews University, Scotland, with a BSC degree in 1976.  Upon joining the company as a sales representative in 1992, he spent 6 months in an orientation program at the Seattle office and then returned to his permanent post in London.  He was promoted to sales manager in March 1993.  Mr. Buchanan has completed the courses "Successful Telemarketing" and "International Sales Management."  He is fluent in French.  ReportsTo=2     PhotoPath=http://accweb/emmployees/buchanan.bmp         Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }
    Employees: EmployeeID=8         LastName=Callahan       FirstName=Laura         Title=Inside Sales Coordinator  TitleOfCourtesy=Ms.     BirthDate=1/9/1958      HireDate=3/5/1994       Address=4726 - 11th Ave. N.E.   City=Seattle    Region=WA       PostalCode=98105        Country=USA     HomePhone=(206) 555-1189        Extension=2344  Photo=...       Notes=Laura received a BA in psychology from the University of Washington.  She has also completed a course in business French.  She reads and writes French.   ReportsTo=2     PhotoPath=http://accweb/emmployees/davolio.bmp  Orders=...      EmployeeTerritories=...         Employees=...   Employee={ }


Update - Simple

This sample uses SubmitChanges to persist an update made to a retrieved Customer object back to the database.

Public Sub LinqToSqlInsert04()
    Dim q = From c In db.Customers _
        Where c.CustomerID = "ALFKI" _
        Select c

    Console.WriteLine("*** BEFORE ***")
    ObjectDumper.Write(q)


    Console.WriteLine()
    Console.WriteLine("*** UPDATE ***")
    Dim cust As Customer = (From c In db.Customers _
        Where c.CustomerID = "ALFKI" _
        Select c).First()
    cust.ContactTitle = "Vice President"
    db.SubmitChanges()

    Console.WriteLine()
    Console.WriteLine("*** AFTER ***")
    ObjectDumper.Write(q)

    Cleanup59()  ' Restore previous database state
End Sub


Result:
*** BEFORE ***
CustomerID=ALFKI        CompanyName=Alfreds Futterkiste         ContactName=Maria Anders        ContactTitle=Sales Representative       Address=Obere Str. 57   City=Berlin     Region=null     PostalCode=12209        Country=Germany         Phone=030-0074321       Fax=030-0076545         Orders=...      CustomerCustomerDemos=...

*** UPDATE ***

*** AFTER ***
CustomerID=ALFKI CompanyName=Alfreds Futterkiste ContactName=Maria Anders ContactTitle=Vice President Address=Obere Str. 57 City=Berlin Region=null PostalCode=12209 Country=Germany Phone=030-0074321 Fax=030-0076545 Orders=... CustomerCustomerDemos=...


Update - Multiple

This sample uses SubmitChanges to persist updates made to multiple retrieved Product objects back to the database.

Public Sub LinqToSqlInsert05()
    Dim q = From p In db.Products _
        Where CInt(p.CategoryID.Value) = 1 _
        Select p

    Console.WriteLine("*** BEFORE ***")
    ObjectDumper.Write(q)


    Console.WriteLine()
    Console.WriteLine("*** UPDATE ***")
    For Each p In q
        p.UnitPrice += 1.0
    Next
    db.SubmitChanges()


    Console.WriteLine()
    Console.WriteLine("*** AFTER ***")
    ObjectDumper.Write(q)

    Cleanup60()  ' Restore previous database state
End Sub


Result:
*** BEFORE ***
ProductID=1     ProductName=Chai        SupplierID=1    CategoryID=1    QuantityPerUnit=10 boxes x 20 bags      UnitPrice=778.7700      UnitsInStock=39         UnitsOnOrder=0  ReorderLevel=10         Discontinued=False      Order_Details=...       Category={ }    Supplier={ }
ProductID=2     ProductName=Chang       SupplierID=1    CategoryID=1    QuantityPerUnit=24 - 12 oz bottles      UnitPrice=20.0000       UnitsInStock=17         UnitsOnOrder=40         ReorderLevel=25         Discontinued=False      Order_Details=...       Category={ }    Supplier={ }
ProductID=24    ProductName=Guaraná Fantástica  SupplierID=10   CategoryID=1    QuantityPerUnit=12 - 355 ml cans        UnitPrice=5.5000        UnitsInStock=20         UnitsOnOrder=0  ReorderLevel=0  Discontinued=True       Order_Details=...       Category={ }    Supplier={ }
ProductID=34    ProductName=Sasquatch Ale       SupplierID=16   CategoryID=1    QuantityPerUnit=24 - 12 oz bottles      UnitPrice=15.0000       UnitsInStock=111        UnitsOnOrder=0  ReorderLevel=15         Discontinued=False      Order_Details=...       Category={ }    Supplier={ }
ProductID=35    ProductName=Steeleye Stout      SupplierID=16   CategoryID=1    QuantityPerUnit=24 - 12 oz bottles      UnitPrice=19.0000       UnitsInStock=20         UnitsOnOrder=0  ReorderLevel=15         Discontinued=False      Order_Details=...       Category={ }    Supplier={ }
ProductID=38    ProductName=Côte de Blaye       SupplierID=18   CategoryID=1    QuantityPerUnit=12 - 75 cl bottles      UnitPrice=264.5000      UnitsInStock=17         UnitsOnOrder=0  ReorderLevel=15         Discontinued=False      Order_Details=...       Category={ }    Supplier={ }
ProductID=39    ProductName=Chartreuse verte    SupplierID=18   CategoryID=1    QuantityPerUnit=750 cc per bottle       UnitPrice=19.0000       UnitsInStock=69         UnitsOnOrder=0  ReorderLevel=5  Discontinued=False      Order_Details=...       Category={ }    Supplier={ }
ProductID=43    ProductName=Ipoh Coffee         SupplierID=20   CategoryID=1    QuantityPerUnit=16 - 500 g tins         UnitPrice=47.0000       UnitsInStock=17         UnitsOnOrder=10         ReorderLevel=25         Discontinued=False      Order_Details=...       Category={ }    Supplier={ }
ProductID=67    ProductName=Laughing Lumberjack Lager   SupplierID=16   CategoryID=1    QuantityPerUnit=24 - 12 oz bottles      UnitPrice=15.0000       UnitsInStock=52         UnitsOnOrder=0  ReorderLevel=10         Discontinued=False      Order_Details=...       Category={ }    Supplier={ }
ProductID=70    ProductName=Outback Lager       SupplierID=7    CategoryID=1    QuantityPerUnit=24 - 355 ml bottles     UnitPrice=16.0000       UnitsInStock=15         UnitsOnOrder=10         ReorderLevel=30         Discontinued=False      Order_Details=...       Category={ }    Supplier={ }
ProductID=75    ProductName=Rhönbräu Klosterbier        SupplierID=12   CategoryID=1    QuantityPerUnit=24 - 0.5 l bottles      UnitPrice=8.7500        UnitsInStock=125        UnitsOnOrder=0  ReorderLevel=25         Discontinued=False      Order_Details=...       Category={ }    Supplier={ }
ProductID=76    ProductName=Lakkalikööri        SupplierID=23   CategoryID=1    QuantityPerUnit=500 ml  UnitPrice=19.0000       UnitsInStock=57         UnitsOnOrder=0  ReorderLevel=20         Discontinued=False      Order_Details=...       Category={ }    Supplier={ }

*** UPDATE ***

*** AFTER ***
ProductID=1     ProductName=Chai        SupplierID=1    CategoryID=1    QuantityPerUnit=10 boxes x 20 bags      UnitPrice=779.77        UnitsInStock=39         UnitsOnOrder=0  ReorderLevel=10         Discontinued=False      Order_Details=...       Category={ }    Supplier={ }
ProductID=2     ProductName=Chang       SupplierID=1    CategoryID=1    QuantityPerUnit=24 - 12 oz bottles      UnitPrice=21    UnitsInStock=17         UnitsOnOrder=40         ReorderLevel=25         Discontinued=False      Order_Details=...       Category={ }    Supplier={ }
ProductID=24    ProductName=Guaraná Fantástica  SupplierID=10   CategoryID=1    QuantityPerUnit=12 - 355 ml cans        UnitPrice=6.5   UnitsInStock=20         UnitsOnOrder=0  ReorderLevel=0  Discontinued=True       Order_Details=...       Category={ }    Supplier={ }
ProductID=34    ProductName=Sasquatch Ale       SupplierID=16   CategoryID=1    QuantityPerUnit=24 - 12 oz bottles      UnitPrice=16    UnitsInStock=111        UnitsOnOrder=0  ReorderLevel=15         Discontinued=False      Order_Details=...       Category={ }    Supplier={ }
ProductID=35    ProductName=Steeleye Stout      SupplierID=16   CategoryID=1    QuantityPerUnit=24 - 12 oz bottles      UnitPrice=20    UnitsInStock=20         UnitsOnOrder=0  ReorderLevel=15         Discontinued=False      Order_Details=...       Category={ }    Supplier={ }
ProductID=38    ProductName=Côte de Blaye       SupplierID=18   CategoryID=1    QuantityPerUnit=12 - 75 cl bottles      UnitPrice=265.5         UnitsInStock=17         UnitsOnOrder=0  ReorderLevel=15         Discontinued=False      Order_Details=...       Category={ }    Supplier={ }
ProductID=39    ProductName=Chartreuse verte    SupplierID=18   CategoryID=1    QuantityPerUnit=750 cc per bottle       UnitPrice=20    UnitsInStock=69         UnitsOnOrder=0  ReorderLevel=5  Discontinued=False      Order_Details=...       Category={ }    Supplier={ }
ProductID=43    ProductName=Ipoh Coffee         SupplierID=20   CategoryID=1    QuantityPerUnit=16 - 500 g tins         UnitPrice=48    UnitsInStock=17         UnitsOnOrder=10         ReorderLevel=25         Discontinued=False      Order_Details=...       Category={ }    Supplier={ }
ProductID=67    ProductName=Laughing Lumberjack Lager   SupplierID=16   CategoryID=1    QuantityPerUnit=24 - 12 oz bottles      UnitPrice=16    UnitsInStock=52         UnitsOnOrder=0  ReorderLevel=10         Discontinued=False      Order_Details=...       Category={ }    Supplier={ }
ProductID=70    ProductName=Outback Lager       SupplierID=7    CategoryID=1    QuantityPerUnit=24 - 355 ml bottles     UnitPrice=17    UnitsInStock=15         UnitsOnOrder=10         ReorderLevel=30         Discontinued=False      Order_Details=...       Category={ }    Supplier={ }
ProductID=75    ProductName=Rhönbräu Klosterbier        SupplierID=12   CategoryID=1    QuantityPerUnit=24 - 0.5 l bottles      UnitPrice=9.75  UnitsInStock=125        UnitsOnOrder=0  ReorderLevel=25         Discontinued=False      Order_Details=...       Category={ }    Supplier={ }
ProductID=76    ProductName=Lakkalikööri        SupplierID=23   CategoryID=1    QuantityPerUnit=500 ml  UnitPrice=20    UnitsInStock=57         UnitsOnOrder=0  ReorderLevel=20         Discontinued=False      Order_Details=...       Category={ }    Supplier={ }


Delete - Simple

This sample uses the Remove method to delete an OrderDetail from the OrderDetails Table object. The call to SubmitChanges persists this deletion to the database.

Public Sub LinqToSqlInsert06()
    Console.WriteLine("*** BEFORE ***")
    ObjectDumper.Write(From c In db.Order_Details _
        Where c.OrderID = 10255 _
        Select c)


    Console.WriteLine()
    Console.WriteLine("*** DELETE ***")
    Dim order As Order_Detail = (From c In db.Order_Details _
        Where c.OrderID = 10255 AndAlso c.ProductID = 36 _
        Select c).First()
    db.Order_Details.Remove(order)
    db.SubmitChanges()


    Console.WriteLine()
    Console.WriteLine("*** AFTER ***")
    clearDBCache()
    ObjectDumper.Write(From c In db.Order_Details _
        Where c.OrderID = 10255 _
        Select c)

    Cleanup61()  ' Restore previous database state
End Sub


Result:
*** BEFORE ***
OrderID=10255   ProductID=2     UnitPrice=15.2000       Quantity=20     Discount=0      Order={ }       Product={ }
OrderID=10255   ProductID=16    UnitPrice=13.9000       Quantity=35     Discount=0      Order={ }       Product={ }
OrderID=10255   ProductID=36    UnitPrice=15.2000       Quantity=25     Discount=0      Order={ }       Product={ }
OrderID=10255   ProductID=59    UnitPrice=44.0000       Quantity=30     Discount=0      Order={ }       Product={ }

*** DELETE ***

*** AFTER ***
OrderID=10255   ProductID=2     UnitPrice=15.2000       Quantity=20     Discount=0      Order={ }       Product={ }
OrderID=10255   ProductID=16    UnitPrice=13.9000       Quantity=35     Discount=0      Order={ }       Product={ }
OrderID=10255   ProductID=59    UnitPrice=44.0000       Quantity=30     Discount=0      Order={ }       Product={ }


Delete - One-to-Many

This sample uses the Remove method to delete an Order and Order Detail from the Order Details and Orders tables. First deleting Order Details and then deleting from Orders. The call to SubmitChanges persists this deletion to the database.

Public Sub LinqToSqlInsert07()

    Dim orderDetails = _
    From o In db.Order_Details _
    Where o.Order.CustomerID = "WARTH" AndAlso o.Order.EmployeeID = 3 Select o

    Console.WriteLine("*** BEFORE ***")
    ObjectDumper.Write(orderDetails)

    Console.WriteLine()
    Console.WriteLine("*** DELETE ***")
    Dim order = _
    (From o In db.Orders _
    Where o.CustomerID = "WARTH" AndAlso o.EmployeeID = 3 _
    Select o).First()

    For Each od As Order_Detail In orderDetails
        db.Order_Details.Remove(od)
    Next

    db.Orders.Remove(order)
    db.SubmitChanges()

    Console.WriteLine()
    Console.WriteLine("*** AFTER ***")
    ObjectDumper.Write(orderDetails)

    Cleanup62()  ' Restore previous database state

End Sub


Result:
*** BEFORE ***
OrderID=11111   ProductID=12    UnitPrice=30.4000       Quantity=12     Discount=0      Order={ }       Product={ }

*** DELETE ***

*** AFTER ***