<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>SQL Develop</title>
	<atom:link href="http://www.sqldevelop.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.sqldevelop.com</link>
	<description>Niels musings about technology and life</description>
	<lastBuildDate>Mon, 21 Sep 2009 17:43:37 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Stream and Complex Event Processing from a Relational Guy&#8217;s Eye (StreamInsight Series)</title>
		<link>http://www.sqldevelop.com/blog/stream-and-complex-event-processing-from-a-relational-guys-eye/</link>
		<comments>http://www.sqldevelop.com/blog/stream-and-complex-event-processing-from-a-relational-guys-eye/#comments</comments>
		<pubDate>Fri, 18 Sep 2009 21:17:43 +0000</pubDate>
		<dc:creator>nielsb</dc:creator>
				<category><![CDATA[CEP]]></category>
		<category><![CDATA[SQL 2008 R2]]></category>
		<category><![CDATA[Complex event processing]]></category>
		<category><![CDATA[SQL Server 2008 R2]]></category>
		<category><![CDATA[StreamInsight]]></category>

		<guid isPermaLink="false">http://www.sqldevelop.com/?p=187</guid>
		<description><![CDATA[This is the first in (hopefully) a series of blog posts where I will be looking into Microsoft&#8217;s new technology for Complex Event Processing (CEP); StreamInsight (SI). This post is an overview of the problem domain that Microsoft tries to target SI at. As I am a relational database guy at heart, I look at [...]]]></description>
			<content:encoded><![CDATA[<p>This is the first in (hopefully) a series of <a href="http://www.sqldevelop.com/blog/streaminsight-series/">blog posts</a> where I will be looking into Microsoft&#8217;s new technology for <strong>Complex Event Processing</strong> (<strong>CEP</strong>); <strong>StreamInsight</strong> (<strong>SI</strong>). This post is an overview of the problem domain that Microsoft tries to target SI at. As I am a relational database guy at heart, I look at it from a relational guy&#8217;s perspective.</p>
<h2>Relational Database Systems</h2>
<p>The relational database system (<strong>RDBMS</strong>) is the backbone from almost any enterprise application today, and the various RDBMS&#8217;s are highly optimized to deliver the best performance available, for its particular type of applications. The particular type of applications a RDBMS is (mostly) optimized for is an application where updates to the data don&#8217;t happen that frequently (i.e. not like 100,000&#8217;s of updates per second) and queries against the database are queries against (from what can be described as) a snapshot of the database.</p>
<p>The last couple of decades we have seen the emergence of types of applications that has somewhat different requirements and characteristics than a typical RDBMS based application. Examples of these type of applications are OLAP, Data Mining as well as storage and querying new data types such as XML, media and spatial. This has required the RDBMS to add new functionality as well as extending existing functionality.</p>
<h2>Streaming Data</h2>
<p>The last few years there has been yet another type of data intensive applications arriving on the scene, but these applications has somewhat different requirement&#8217;s than &#8220;just&#8221; being able to query &#8220;static&#8221; data. These are types of applications where data can potentially arrive with very high frequency and we may need to run queries against this data continuously and / or from the arriving data derive new types of data (change the schema of the original data) &#8211; which we also may want to run queries against. I am talking about <strong>Stream Data Processing</strong> (<strong>SDP</strong>) and <strong>Complex Event Processing</strong> (<strong>CEP</strong>) applications.</p>
<p>The main differences between a typical RDBMS application and a SDP/CEP application are:</p>
<ul>
<li>The data in a SDP/CEP application can be never ending. I.e. the data continuously arrives.</li>
<li>When we query data in a RDBMS app, we do it against a static snapshot of the data at that particular time.  The data is being evaluated once &#8211; and output once.</li>
<li>Querying against SDP/CEP data however is typically done in a continuous fashion. The data is continuously evaluated and output.</li>
</ul>
<h2>RDBMS vs. SDP/CEP</h2>
<p>We can use RDBMS systems for SDP/CEP applications; we load the incoming data into the database and then we run queries continuously against the stored data. This will work OK, but we will run into some issues with it:</p>
<ul>
<li>By storing the data before we query it, we are adding latency as per Figure 1 below.</li>
<li>We may have to write some convoluted queries in order to be able to querying the data in a continuous manner</li>
</ul>
<p><img class="aligncenter size-medium wp-image-194" title="dbms-stream-porcess" src="http://www.sqldevelop.com/wordpress/wp-content/uploads/2009/09/dbms-stream-porcess1-300x140.png" alt="dbms-stream-porcess" width="300" height="140" /></p>
<p><strong>Figure 1:</strong> RDBMS Handling Stream Data</p>
<p>So, even if we can use RBMS&#8217;s for SDP/CEP type applications it is fairly obvious that this may not be the best approach. Hence the rise of another type of management systems for SDP/CEP applications: the Data Stream Management Systems (DSMS).</p>
<p>The DSMS systems work under the premises that we have some sort of server (running in memory), which serves up application(s) that handles the incoming data. The incoming data is fed to the application(s) by the use of input adapters. In the application(s) there are continuous queries running over the data from the input adapters. The results of the queries are then being fed to output adapters which serve up the data to applications that need the data. Figure 2 tries to illustrate a DSMS system.</p>
<p><img class="aligncenter size-medium wp-image-195" title="stream-engine-process" src="http://www.sqldevelop.com/wordpress/wp-content/uploads/2009/09/stream-engine-process-300x154.png" alt="stream-engine-process" width="300" height="154" /></p>
<p><strong>Figure 2:</strong> General Overview of DSMS</p>
<p>Dependent on the DSMS system the language of the query may vary. Quite a few systems are using languages that are fairly similar to SQL, whereas SI is using LINQ. As we can see from Figure 2, the main part of the DSMS runs in a low latency environment, and it is only if we need any sort of look-up data loaded from a RDBMS that we may run into high latency issues.</p>
<h2>Complex Event Processing</h2>
<p>So what is the difference between processing the streaming data and doing CEP? In CEP we look at the individual events, try to correlate them and look at the impact on a macro-level. A typical example of this (quite a few DSMS systems, are using this as an example) is where we collect sensor signals from cars, let&#8217;s say each car sends out a signal every 30:th second. This signal contains information about position, speed, road, lane in the road etc. When analyzing these event signals we say that a car-crash has happened if any given car has during 4 consecutive signals the same position and 0 speed. We have analyzed the individual events and from them derived a new event: a Complex Event.</p>
<p>This was a very rudimentary explanation. To get a fuller (and much better and in-depth) explanation have a look at a series of <a href="http://www.thecepblog.com/what-is-complex-event-processing/">blog posts</a> by <a href="http://www.thecepblog.com">Tim Bass</a>.</p>
<h2>Finally</h2>
<p>This was the first post in my series. In the next post, I will look into the architecture of StreamInsight.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sqldevelop.com/blog/stream-and-complex-event-processing-from-a-relational-guys-eye/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>StreamInsight Series</title>
		<link>http://www.sqldevelop.com/blog/streaminsight-series/</link>
		<comments>http://www.sqldevelop.com/blog/streaminsight-series/#comments</comments>
		<pubDate>Fri, 18 Sep 2009 21:17:04 +0000</pubDate>
		<dc:creator>nielsb</dc:creator>
				<category><![CDATA[CEP]]></category>
		<category><![CDATA[SQL 2008 R2]]></category>
		<category><![CDATA[Complex event processing]]></category>
		<category><![CDATA[StreamInsight]]></category>

		<guid isPermaLink="false">http://www.sqldevelop.com/?p=202</guid>
		<description><![CDATA[Over the next few weeks/months I am planning to do a series of blog-posts about Microsoft&#8217;s entry into the Stream Data and Complex Event Processing domain; StreamInsight.
I will update this page with links as I do publish the individual posts.

Stream and Complex Event Processing from a Relational Guy&#8217;s Eye (published September 18, 2009)

]]></description>
			<content:encoded><![CDATA[<p>Over the next few weeks/months I am planning to do a series of blog-posts about Microsoft&#8217;s entry into the Stream Data and <strong>Complex Event Processing</strong> domain; <strong>StreamInsight</strong>.</p>
<p>I will update this page with links as I do publish the individual posts.</p>
<ul>
<li><a href="http://www.sqldevelop.com/blog/stream-and-complex-event-processing-from-a-relational-guys-eye/">Stream and Complex Event Processing from a Relational Guy&#8217;s Eye</a> (published September 18, 2009)</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.sqldevelop.com/blog/streaminsight-series/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Resources for CEP and StreamInsight</title>
		<link>http://www.sqldevelop.com/blog/resources-for-cep-and-streaminsight/</link>
		<comments>http://www.sqldevelop.com/blog/resources-for-cep-and-streaminsight/#comments</comments>
		<pubDate>Sat, 05 Sep 2009 12:35:19 +0000</pubDate>
		<dc:creator>nielsb</dc:creator>
				<category><![CDATA[CEP]]></category>
		<category><![CDATA[SQL 2008 R2]]></category>
		<category><![CDATA[Complex event processing]]></category>
		<category><![CDATA[SQL Server 2008 R2]]></category>
		<category><![CDATA[StreamInsight]]></category>

		<guid isPermaLink="false">http://www.sqldevelop.com/?p=182</guid>
		<description><![CDATA[Yesterday I finished a class down here in South Africa &#8211; you guys rocked!!!! Now I am sitting on the balcony, looking out over Indian Ocean, with a glass of wine (hey, it after 17:00 somewhere in the world &#8211; right), waiting for the cab to come and take me to the airport and my [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday I finished a class down here in South Africa &#8211; you guys rocked!!!! Now I am sitting on the balcony, looking out over Indian Ocean, with a glass of wine (hey, it after 17:00 somewhere in the world &#8211; right), waiting for the cab to come and take me to the airport and my flight to England <img src='http://www.sqldevelop.com/wordpress/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> .</p>
<p>Anyway, I thought I&#8217;d make a short post about various resources (mostly blogs), that cover Complex Event Processing and StreamInsight. So, without further ado, resources for CEP and StreamInsight:</p>
<p><strong>Blogs:</strong></p>
<ul>
<li><a href="http://blogs.msdn.com/streaminsight/">http://blogs.msdn.com/streaminsight/</a> &#8211; from the horses mouth, the blog by the StreamInsight team at MS.</li>
<li> <a href="http://geekswithblogs.net/cyoung">http://geekswithblogs.net/cyoung</a> &#8211; MVP, talks about BizTalk and CEP</li>
<li> <a href="http://tibcoblogs.com/cep/">http://tibcoblogs.com/cep/</a> &#8211; TIBCO blog about CEP in general and some stuff related to what TIBCO is doing</li>
<li> <a href="http://www.edmblog.com/weblog/">http://www.edmblog.com/weblog/</a> &#8211; blog about CEP, Business Rules, Predictive Analytics etc.</li>
<li> <a href="http://epthinking.blogspot.com/">http://epthinking.blogspot.com/</a> &#8211; <strong>THE</strong> blog about CEP, if you were to read only one blogabout CEP, this is it!</li>
<li><a href="http://magmasystems.blogspot.com/">http://magmasystems.blogspot.com/</a> &#8211; blog by the technical lead for CEP at a Wall Street bank.</li>
<li><a href="http://rulecore.com/CEPblog/">http://rulecore.com/CEPblog/</a> &#8211; useful information about CEP , blog not updated that often (hey, who am I to talk)</li>
<li><a href="http://weblogs.asp.net/sweinstein">http://weblogs.asp.net/sweinstein</a> &#8211; blog by Scott, working for a company in New Your building neat financial applications (and other stuff)</li>
<li><a href="http://mdavey.wordpress.com/">http://mdavey.wordpress.com/</a> &#8211; from a guy at an investment bank, doing development</li>
</ul>
<p><strong>Forums:</strong></p>
<ul>
<li><a href="http://social.msdn.microsoft.com/Forums/en-US/streaminsight">http://social.msdn.microsoft.com/Forums/en-US/streaminsight</a> &#8211; forum for MS StreamInsight</li>
</ul>
<p>Have a lok and see if you find it useful. If you have other sites you visit for this kind of information, please let me know and I will include it here.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sqldevelop.com/blog/resources-for-cep-and-streaminsight/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Deployment of Assemblies to SQLCLR</title>
		<link>http://www.sqldevelop.com/blog/deployment-of-assemblies-to-sqlclr/</link>
		<comments>http://www.sqldevelop.com/blog/deployment-of-assemblies-to-sqlclr/#comments</comments>
		<pubDate>Sat, 29 Aug 2009 20:19:22 +0000</pubDate>
		<dc:creator>nielsb</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQLCLR]]></category>
		<category><![CDATA[Assemblies]]></category>
		<category><![CDATA[CLR]]></category>

		<guid isPermaLink="false">http://www.sqldevelop.com/?p=167</guid>
		<description><![CDATA[Today, after having arrived in Durban (South Africa), to do a gig here this coming week, I was going to start a serie of blog-posts about Complex Event Processing (CEP) and Microsoft StreamInsight.
However, as some of you may know, I am fairly interested in SQLCLR (the hosting of CLR inside SQL Server), and it happens [...]]]></description>
			<content:encoded><![CDATA[<p>Today, after having arrived in Durban (South Africa), to do a gig here this coming week, I was going to start a serie of blog-posts about Complex Event Processing (CEP) and Microsoft StreamInsight.</p>
<p>However, as some of you may know, I am fairly interested in SQLCLR (the hosting of CLR inside SQL Server), and it happens from time to time that I try to help out with questions that arises on the forums and newsgroups.</p>
<p>One of the questions that pops up from time to time has to do with how to deploy assemblies which have references to other assemblies when using the Visual Studio &#8220;SQL Server Project&#8221; project data type.</p>
<p>So I decided to write a small post about it, so that I &#8211; in the future &#8211; just can point to that post instead of having to repeat it every time.</p>
<p>If you are interested, the post is <a href="http://www.sqldevelop.com/visual-studio-and-deployment-of-sqlclr-assemblies/">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sqldevelop.com/blog/deployment-of-assemblies-to-sqlclr/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>StreamInsight and SQL Server</title>
		<link>http://www.sqldevelop.com/blog/streaminsight-and-sql-server/</link>
		<comments>http://www.sqldevelop.com/blog/streaminsight-and-sql-server/#comments</comments>
		<pubDate>Wed, 26 Aug 2009 20:04:52 +0000</pubDate>
		<dc:creator>nielsb</dc:creator>
				<category><![CDATA[CEP]]></category>
		<category><![CDATA[SQL 2008 R2]]></category>
		<category><![CDATA[Complex event processing]]></category>
		<category><![CDATA[SQL Server 2008 R2]]></category>

		<guid isPermaLink="false">http://www.sqldevelop.com/?p=156</guid>
		<description><![CDATA[There has been some disussions recently about StreamInsight and how it fits into SQL Server; especially as it was said that StreamInsight is a SQL Server 2008 R2 technology.
Well, as it stands at the moment, (the operative words here are &#8220;at the moment&#8221;), is that right now, the CTP of StreamInsight has no dependencies what [...]]]></description>
			<content:encoded><![CDATA[<p>There has been some disussions recently about <a href="http://www.microsoft.com/sqlserver/2008/en/us/R2-complex-event.aspx">StreamInsight</a> and how it fits into SQL Server; especially as it was said that StreamInsight is a SQL Server 2008 R2 technology.</p>
<p>Well, as it stands at the moment, (the operative words here are &#8220;at the moment&#8221;), is that right now, the CTP of StreamInsight has no dependencies what so ever on SQL Server. Now &#8211; some of you that has installed StreamInsight may say; &#8220;Niels what are you saying, in the installation instructions it says you should install SQL Server CE&#8221;. Well, yes &#8211; that is true; it says &#8220;you should&#8221;, but that is a bit like when your mum said you should stay away from loose men / women &#8211; you did not pay much attention, did you?!.</p>
<p>The truth is, you are not dependent on SQL Server CE or SQL Server 2008 R2. You can live a happy and fulfilling life and run StreamInsight without any trace of SQL Server 2008 R2 or SQL Server CE what so ever. At the moment, the only reason you would need SQL Server CE, is if you wanted to persist StreamInsight metadata in order to (more or less) automatically re-load it later (this is for another blog-post).</p>
<p>As I aid in the beginning, this is as it stands at the moment &#8211; what will happen in the future, no one knows (at least no one outside of Microsoft). So there you have it, if you want to test StreamInsight, but are allergic to SQL Server, for one reason or another, do not worry &#8211; go ahead, you can still use it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sqldevelop.com/blog/streaminsight-and-sql-server/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>StreamInsight and Notification Services</title>
		<link>http://www.sqldevelop.com/blog/streaminsight-and-notification-services/</link>
		<comments>http://www.sqldevelop.com/blog/streaminsight-and-notification-services/#comments</comments>
		<pubDate>Sun, 23 Aug 2009 19:36:32 +0000</pubDate>
		<dc:creator>nielsb</dc:creator>
				<category><![CDATA[SQL 2008]]></category>
		<category><![CDATA[CEP]]></category>
		<category><![CDATA[Complex event processing]]></category>
		<category><![CDATA[SQL Server 2008 R2]]></category>

		<guid isPermaLink="false">http://www.sqldevelop.com/?p=151</guid>
		<description><![CDATA[If you are an &#8220;old-hand&#8221; (the emphasis is on old), you may remember how Microsoft introduced a service called Notification Services (NS) at around the same time frame as SQL Server 2000. I do definitely remember,  because me and a cohert (at hat time) of mine &#8211; Bob B &#8211; wrote a class about [...]]]></description>
			<content:encoded><![CDATA[<p>If you are an &#8220;old-hand&#8221; (the emphasis is on old), you may remember how Microsoft introduced a service called Notification Services (NS) at around the same time frame as SQL Server 2000. I do definitely remember,  because me and a cohert (at hat time) of mine &#8211; <a href="http://sqlskills.com/BLOGS/BOBB/">Bob B</a> &#8211; wrote a class about NS. Now, when  StreamInsight (SI) has been introduced, some people are saying that SI is the replacement of NS.</p>
<p>Actually, even though NS and SI may have some simiarities (both are dealing with events in one way or another), they are definitely not the same, and it would be totally wrong to compare them. In NS, you store events in the database and then compare and match them to subscriptions also stored in the database.</p>
<p>SI is completely different; here you query and process the incomnig data in real-time, way before it hits the database. You definitely have the ability to use the database for storage, but you are not dependent upon it.</p>
<p>This &#8211; I think &#8211; is something that needs to be communicated to the industry. If this is not understood, we may end up in a scenario where StreamInsight is rejected ut of hand, due to the wrong impression that it is dependent upon a database &#8211; which is not true. So please, NS was (is) great, but do not think it is the same as <span style="text-decoration: line-through;">Notification Services</span> SI!</p>
<p><strong>Update 1:</strong> Jamie pointed out how I in the last sentence  had said that NS is not the same as Notification Services, that should obviously be that NS is not the same as StreamInsight &#8211; thanks Jamie</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sqldevelop.com/blog/streaminsight-and-notification-services/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>StreamInsight Stuff</title>
		<link>http://www.sqldevelop.com/blog/streaminsight-stuff/</link>
		<comments>http://www.sqldevelop.com/blog/streaminsight-stuff/#comments</comments>
		<pubDate>Sat, 22 Aug 2009 23:05:26 +0000</pubDate>
		<dc:creator>nielsb</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[CEP]]></category>
		<category><![CDATA[Complex event processing]]></category>
		<category><![CDATA[SQL 2008 R2]]></category>

		<guid isPermaLink="false">http://www.sqldevelop.com/?p=134</guid>
		<description><![CDATA[As you probably know, Microsoft&#8217;s implementation of Complex Event Processing (CEP) &#8211; called StreamInsight was released as a Community Technology Preview (CTP) a couple of days ago. The release was CTP2 (I have no idea when and if CTP1 was released). Anyway, I have a love for anything message based &#8211; and CEP is definitely [...]]]></description>
			<content:encoded><![CDATA[<p>As you probably know, Microsoft&#8217;s implementation of <strong>Complex Event Processing</strong> (<strong>CEP</strong>) &#8211; called <strong>StreamInsight </strong>was released as a Community Technology Preview (CTP) a couple of days ago. The release was CTP2 (I have no idea when and if CTP1 was released). Anyway, I have a love for anything message based &#8211; and CEP is definitely message based, so I was obviously over this as a &#8220;rash&#8221;.</p>
<p>The last few days I have been <span style="text-decoration: line-through;">playing around with</span> researching this, and trying to come to grips with what it is all about. Part of the release are some samples and some help files in the shape of a chm file. It is definitely a lot to get your head around, and I will post more in the coming weeks.  However, here is a heads up if you cannot get some of the samples to work;</p>
<p>When I started with <strong>StreamInsigh</strong>t I opened up the samples, and actually read the <em>README.txt</em> files, as well as part of the chm help document (I cannot be a developer, reading the help &#8230;). I tried first the <strong>ObjectModel</strong> sample app. It compiled OK (cool, let&#8217;s ship), and when I tried to run it I actually got some output to the console. At first glance it looked OK, but looking at the output a bit more closely I saw I had some exceptions there, looking something like this:<br />
<code><br />
Query Exception: Microsoft.ComplexEventProcessing.Engine.OperatorExecutionExcep<br />
tion: The adapter 'sensorInput' of type 'CepSamples.InputAdapters.TextFileInterv<br />
alInput', query 'TrafficSensorQuery', failed to start. ---&gt; System.FormatExcepti<br />
on: String was not recognized as a valid DateTime.<br />
at System.DateTimeParse.Parse(String s, DateTimeFormatInfo dtfi, DateTimeStyl<br />
es styles)<br />
at System.Convert.ToDateTime(String value, IFormatProvider provider)<br />
at CepSamples.InputAdapters.TextFileIntervalInput.CreateEventFromLine(String<br />
line) in C:\Program Files\Microsoft StreamInsight CTP2\docs_samples\Samples\Inpu<br />
tAdapters\TextFileInputAdapter\TextFileIntervalInput.cs:line 247<br />
</code></p>
<p>I looked into the <em>TextFileIntervalInput. cs</em> file at around the line number mentioned above, and saw some code looking like this:<br />
<code><br />
// set Start time<br />
evt.StartTime = Convert.ToDateTime(split[0], CultureInfo.CurrentCulture);<br />
evt.EndTime = Convert.ToDateTime(split[1], CultureInfo.CurrentCulture);<br />
</code></p>
<p>I then looked at the input data file for this sample, <em>TrafficSensor.csv</em>, and saw that it had some date data formatted according to &#8220;<em>en-US</em>&#8221; culture. However, I am running under &#8220;<em>en-UK</em>&#8221; culture. So when the <em>Convert.ToDateTime</em> code runs it will fail, because it cannot convert to my culture.</p>
<p>I fixed that by using <em>DateTime.TryParse</em> instead (I will leave it up to you &#8211; my two readers &#8211; to figure out the syntax), and that sorted that problem. I then had the same issue with a second input adapter file: <em>TextFileEdgeInput.cs</em>, and fixed it in the same way. <strong>Note,</strong> you may get the eception in the <em>TextFileEdgeInput.cs</em> exception before the exception in <em>TextFileIntervalInput.cs</em>.</p>
<p>So, if you run under non-US culture this is an issue you can run into, but it looks it is just for the <strong>ObjectModel</strong> sample. The other samples seem to run OK.</p>
<p>I am really intrigued by <strong>StreamInsight</strong> and will drill down deeper into it, and also try to blog my findings along the way. If you are interested in this, please leave a comment.</p>
<p>Oh, and if you want it from the &#8220;horses mouth&#8221;, the <strong>StreamInsight</strong> team at Microsoft has a blog <a href="http://blogs.msdn.com/streaminsight/">here</a>. There is also a support forum <a href="http://social.msdn.microsoft.com/Forums/en-US/streaminsight/threads">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sqldevelop.com/blog/streaminsight-stuff/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Hello World</title>
		<link>http://www.sqldevelop.com/blog/hello-world/</link>
		<comments>http://www.sqldevelop.com/blog/hello-world/#comments</comments>
		<pubDate>Sat, 22 Aug 2009 14:42:28 +0000</pubDate>
		<dc:creator>nielsb</dc:creator>
				<category><![CDATA[SQL Develop]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[SQL Server]]></category>

		<guid isPermaLink="false">http://www.sqldevelop.com/?p=129</guid>
		<description><![CDATA[A couple of days ago, I wrote a blogpost about me changing to a self-hosted blog. I also wrote that there might be more announcements regarding this move. So I guess it is time to do that announcement now;
I have started a new venture; SQL Develop, where I and others will do database and .NET [...]]]></description>
			<content:encoded><![CDATA[<p>A couple of days ago, I wrote a blogpost about me changing to a <a href="http://www.sqldevelop.com/blog/new-home-for-my-blog/">self-hosted blog</a>. I also wrote that there might be more announcements regarding this move. So I guess it is time to do that announcement now;</p>
<p>I have started a new venture; <a href="http://www.sqldevelop.com/"><strong>SQL Develop</strong></a>, where I and others will do database and .NET development, consulting and mentoring. This does not mean however that I will stop doing work for DevelopMentor, nothing changes in my relation to DM.</p>
<p>I am extremely excited about this new venture, and stay tuned for more announcements!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sqldevelop.com/blog/hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Home for My Blog</title>
		<link>http://www.sqldevelop.com/blog/new-home-for-my-blog/</link>
		<comments>http://www.sqldevelop.com/blog/new-home-for-my-blog/#comments</comments>
		<pubDate>Fri, 14 Aug 2009 08:23:24 +0000</pubDate>
		<dc:creator>nielsb</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[SQL Develop]]></category>

		<guid isPermaLink="false">http://blog.sqldevelop.com/?p=91</guid>
		<description><![CDATA[For various reasons I am moving the hosting of my blog from being hosted by WordPress.com to a selfhosted blog, at http://blog.sqldevelop.com (I am still using WordPress as my blog engine though). sqldevelop.com is  a newly registered domain, and you can expect to see more announcements regarding that shortly. At the moment if you try [...]]]></description>
			<content:encoded><![CDATA[<p>For various reasons I am moving the hosting of my blog from being hosted by WordPress.com to a selfhosted blog, at <a href="http://blog.sqldevelop.com">http://blog.sqldevelop.com</a> (I am still using WordPress as my blog engine though). sqldevelop.com is  a newly registered domain, and you can expect to see more announcements regarding that shortly. At the moment if you try to browse to <a href="www.sqldevelop.com">www.sqldevelop.com</a>, you will be redirected to <a href="http://blog.sqldevelop.com">blog.sqldevelop.com</a></p>
<p>So for the few of you that are following this blog, can you please change your feed-settings to<a href="http://feeds.feedburner.com/sqldevelop"> http://feeds.feedburner.com/sqldevelop</a>, and all should be OK.</p>
<p>Update: changed the feed URL</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sqldevelop.com/blog/new-home-for-my-blog/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>SQL Server 2008 R2 August CTP</title>
		<link>http://www.sqldevelop.com/blog/sql-server-2008-r2-august-ctp/</link>
		<comments>http://www.sqldevelop.com/blog/sql-server-2008-r2-august-ctp/#comments</comments>
		<pubDate>Tue, 11 Aug 2009 15:52:58 +0000</pubDate>
		<dc:creator>nielsb</dc:creator>
				<category><![CDATA[SQL 2008 R2]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[CEP]]></category>
		<category><![CDATA[Complex event processing]]></category>

		<guid isPermaLink="false">http://nielsb.wordpress.com/?p=78</guid>
		<description><![CDATA[Yesterday I downloaded and installed the August CTP of SQL Server 2008 R2, and today I played around with it for a while. So, what are my impressions&#8230;
Well, from a perspective of being a relational dev and internals guy, my immediate response is &#8230; &#8220;yawn &#8211; where is the beef&#8221;. I.e, it is not much [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday I downloaded and installed the August CTP of SQL Server 2008 R2, and today I played around with it for a while. So, what are my impressions&#8230;</p>
<p>Well, from a perspective of being a relational dev and internals guy, my immediate response is &#8230; &#8220;yawn &#8211; where is the beef&#8221;. I.e, it is not much there, and I doubt we will see much more in coming releases. However, if I were a BI / reporting guy I&#8217;d be over the moon, and definitely look forward to future CTP&#8217;s! Even if I were a (wait for it &#8230;) DBA I would be fairly interested.</p>
<p>I will let you decide for yourself what is interestimg for you, but one thing that is not in the CTP at the moment but is promised (and keeps me interested) is <a href="http://www.microsoft.com/sqlserver/2008/en/us/R2-complex-event.aspx">StreamInsight</a> (based on Complex Event Processing). This will be part of SQL Servr 2008 R2. Coming from the financial industry and dealing with message based applications (that&#8217;s why I love SQL Server Service Broker), this is something I am really interested in. So, even if you are a T-SQL / internals guy, do not despair &#8211; there may be something for us as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sqldevelop.com/blog/sql-server-2008-r2-august-ctp/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
