========================================
SQL Server Interface Sample
========================================

This sample CEP application demonstrates reading data from a SQL Server table
and inserting events into another SQL Server table. The input table is
Sales.SalesOrderDetail from the AdventureWorks2008 sample database, with ~121K
rows. Each record in the table is treated as a point event payload. The sample
uses DateTime.Now as the event's StartTime. . The AdventureWorks2008 database
can be downloaded from
http://msftdbprodsamples.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=18407

The sample query computes the total UnitPrice of each sales order and places it
in the TotalSales field of the output, as a contrived example. The emphasis in
this sample is more on adapter development for SQL Server, so that you can you
can plug in historical time-series data from SQL Server for analysis using
suitable CEP LINQ queries.
