<?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>Henderson Consulting &#187; SQL Azure</title>
	<atom:link href="http://www.mohenderson.com/category/sql-azure/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mohenderson.com</link>
	<description>Thoughts on data &#38; programming by Michael Henderson</description>
	<lastBuildDate>Fri, 13 Jan 2012 03:05:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
		<item>
		<title>Knee Deep in Azure Table Storage</title>
		<link>http://www.mohenderson.com/2011/12/05/knee-deep-in-azure-table-storage/</link>
		<comments>http://www.mohenderson.com/2011/12/05/knee-deep-in-azure-table-storage/#comments</comments>
		<pubDate>Tue, 06 Dec 2011 02:29:29 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Data Integration]]></category>
		<category><![CDATA[Personal Musings]]></category>
		<category><![CDATA[SQL Azure]]></category>
		<category><![CDATA[Azure Table Storage]]></category>
		<category><![CDATA[Cloud Computing]]></category>
		<category><![CDATA[MongoDB]]></category>

		<guid isPermaLink="false">http://www.mohenderson.com/?p=299</guid>
		<description><![CDATA[I have been trying to work up a demo using SSIS and Azure Table Storage. I keep getting distracted with other minutia of Azure that is interesting, but I have not been able to contain it in a blog post. &#8230; <a href="http://www.mohenderson.com/2011/12/05/knee-deep-in-azure-table-storage/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I have been trying to work up a demo using SSIS and Azure Table Storage. I keep getting distracted with other minutia of Azure that is interesting, but I have not been able to contain it in a blog post.</p>
<p>Just the same, Azure table storage is quite an interesting animal. Not a relational store like SQL Azure. Not really a NoSQL alternative like Mongo DB (read steep learning curve). I am hoping to have something more substantive to share soon because once the get it down, I can see a whole new world of data storage and revival opening up.</p>
<p>Another upcoming topic: fun with HTML5/ASP MVC/Razor.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mohenderson.com/2011/12/05/knee-deep-in-azure-table-storage/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using Windows Azure Marketplace Data with SSIS</title>
		<link>http://www.mohenderson.com/2011/11/05/using-windows-azure-marketplace-data-with-ssis/</link>
		<comments>http://www.mohenderson.com/2011/11/05/using-windows-azure-marketplace-data-with-ssis/#comments</comments>
		<pubDate>Sat, 05 Nov 2011 18:49:52 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Business Intelligence]]></category>
		<category><![CDATA[Data Integration]]></category>
		<category><![CDATA[Service Oriented Architecture]]></category>
		<category><![CDATA[SQL Azure]]></category>
		<category><![CDATA[SSIS]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Cloud Computing]]></category>
		<category><![CDATA[OData]]></category>
		<category><![CDATA[SOA]]></category>

		<guid isPermaLink="false">http://www.mohenderson.com/?p=236</guid>
		<description><![CDATA[In this blog post I will describe using Microsoft Windows Azure Marketplace Data and SSIS. The Azure Marketplace allows one to buy and sell Software-as-a-Service applications and datasets. Most of the services are available for a subscription fee, but there &#8230; <a href="http://www.mohenderson.com/2011/11/05/using-windows-azure-marketplace-data-with-ssis/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>In this blog post I will describe using <a title="Windows Azure Marketplace" href="https://datamarket.azure.com/" target="_blank">Microsoft Windows Azure Marketplace Data</a> and SSIS. The Azure Marketplace allows one to buy and sell Software-as-a-Service applications and datasets. Most of the services are available for a subscription fee, but there are also several offered for free.</p>
<p>For the purposes of this demonstration I will use data from the <a title="Practice Fusion Data" href="http://www.practicefusion.com/pages/emr-research-center.html" target="_blank">Practice Fusion Medical Research Data</a>, which is available for free. This data is available for research purposes and contains HIPPA compliant de-identified data. I have a personal interest in Autism and want to direct some after-work energy seeking out and analyzing Autism data. Unfortunately what I extracted from the sample dataset thus far does not have any Autism related data. Just the same it has been a good exercise in doing ETL with data services.</p>
<p><strong>Add variables</strong></p>
<p><strong><img class="ngg-singlepic ngg-none" style="border: 1px solid black;" src="http://www.mohenderson.com/wp-content/gallery/azure_marketplace_data_with_ssis/variables.png" alt="Variables" width="643" height="156" /><br />
</strong></p>
<p>Add three variables to your package. One is for the account key and one for the User ID, which can found in the My Account section. The third variable is the service root. This can be found in the details section of the service one is subscribing to.</p>
<p><strong>Add Data Flow &amp; Script Component</strong></p>
<p>Add a Data Flow to a package. Inside the Data Flow, add a Script Component and select Script Component Type of Source.</p>
<p><img class="ngg-singlepic ngg-none" style="border: 1px solid black;" src="http://www.mohenderson.com/wp-content/gallery/azure_marketplace_data_with_ssis/addscriptcomponent.png" alt="Add Script Component" width="453" height="210" /></p>
<p>Add the appropriate columns you want to extract from the service.</p>
<p><img class="ngg-singlepic ngg-none" style="border: 1px solid black;" src="http://www.mohenderson.com/wp-content/gallery/azure_marketplace_data_with_ssis/addcolumns.png" alt="Add Columns" width="441" height="155" /></p>
<p>Add a service reference and use the Service Root URL.</p>
<p><img class="ngg-singlepic ngg-none" style="border: 1px solid black;" src="http://www.mohenderson.com/wp-content/gallery/azure_marketplace_data_with_ssis/addservicereference.png" alt="Add service reference." width="632" height="509" /></p>
<p><strong>Consume the Data with Managed Code.</strong></p>
<p>At this point the data can be queried with a Linq expression and output rows generated. For more information see the MSDN documentation on creating application with Azure Marketplace Data.</p>
<div class="codesnip-container" >
<div class="csharp codesnip" style="font-family:monospace;"><span class="kw1">using</span> <span class="co3">System</span><span class="sy0">;</span><br />
<span class="kw1">using</span> <span class="co3">System.Collections</span><span class="sy0">;</span><br />
<span class="kw1">using</span> <span class="co3">System.Data</span><span class="sy0">;</span><br />
<span class="kw1">using</span> <span class="co3">System.Linq</span><span class="sy0">;</span><br />
<span class="kw1">using</span> <span class="co3">System.Net</span><span class="sy0">;</span><br />
<span class="kw1">using</span> <span class="co3">Microsoft.SqlServer.Dts.Pipeline.Wrapper</span><span class="sy0">;</span><br />
<span class="kw1">using</span> <span class="co3">Microsoft.SqlServer.Dts.Runtime.Wrapper</span><span class="sy0">;</span></p>
<p><span class="kw1">using</span> <span class="co3">SC_c0e4421be5a54826af3fe68d3227f2be.PracticeFusion</span><span class="sy0">;</span></p>
<p>
<span class="br0">&#91;</span>Microsoft.<span class="me1">SqlServer</span>.<span class="me1">Dts</span>.<span class="me1">Pipeline</span>.<span class="me1">SSISScriptComponentEntryPointAttribute</span><span class="br0">&#93;</span><br />
<span class="kw1">public</span> <span class="kw4">class</span> ScriptMain <span class="sy0">:</span> UserComponent<br />
<span class="br0">&#123;</span><br />
&nbsp; &nbsp; <span class="kw1">public</span> <span class="kw1">override</span> <span class="kw1">void</span> CreateNewOutputRows<span class="br0">&#40;</span><span class="br0">&#41;</span><br />
&nbsp; &nbsp; <span class="br0">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; var serviceUri <span class="sy0">=</span> <a href="http://www.google.com/search?q=new+msdn.microsoft.com"><span class="kw3">new</span></a> Uri<span class="br0">&#40;</span>Variables.<span class="me1">ServiceRootUrl</span><span class="br0">&#41;</span><span class="sy0">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; var context <span class="sy0">=</span> <a href="http://www.google.com/search?q=new+msdn.microsoft.com"><span class="kw3">new</span></a> PracticeFusionMedicalResearchDataContainer<span class="br0">&#40;</span>serviceUri<span class="br0">&#41;</span><span class="sy0">;</span></p>
<p>&nbsp; &nbsp; &nbsp; &nbsp; context.<span class="me1">Credentials</span> <span class="sy0">=</span> <a href="http://www.google.com/search?q=new+msdn.microsoft.com"><span class="kw3">new</span></a> NetworkCredential<span class="br0">&#40;</span>Variables.<span class="me1">UserID</span>, Variables.<span class="me1">Key</span><span class="br0">&#41;</span><span class="sy0">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; var diagnosis <span class="sy0">=</span> context.<span class="me1">SyncDiagnosis</span>.<span class="me1">ToList</span><span class="br0">&#40;</span><span class="br0">&#41;</span><span class="sy0">;</span></p>
<p>&nbsp; &nbsp; &nbsp; &nbsp; <span class="kw1">foreach</span> <span class="br0">&#40;</span>SyncDiagnosis d <span class="kw1">in</span> diagnosis<span class="br0">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="br0">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; OutputDiagnosisBuffer.<span class="me1">AddRow</span><span class="br0">&#40;</span><span class="br0">&#41;</span><span class="sy0">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; OutputDiagnosisBuffer.<span class="me1">DiagnosisGuid</span> <span class="sy0">=</span> d.<span class="me1">DiagnosisGuid</span><span class="sy0">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; OutputDiagnosisBuffer.<span class="me1">PatientGuid</span> <span class="sy0">=</span> d.<span class="me1">PatientGuid</span><span class="sy0">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; OutputDiagnosisBuffer.<span class="me1">ICD9Code</span> <span class="sy0">=</span> d.<span class="me1">ICD9Code</span><span class="sy0">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; OutputDiagnosisBuffer.<span class="me1">DiagnosisDescription</span> <span class="sy0">=</span> d.<span class="me1">DiagnosisDescription</span><span class="sy0">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; OutputDiagnosisBuffer.<span class="me1">StartYear</span> <span class="sy0">=</span> <span class="br0">&#40;</span><span class="kw4">int</span><span class="br0">&#41;</span><span class="br0">&#40;</span>d.<span class="me1">StartYear</span> <span class="sy0">&gt;</span> 0 <span class="sy0">?</span> d.<span class="me1">StartYear</span> <span class="sy0">:</span> 0<span class="br0">&#41;</span><span class="sy0">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; OutputDiagnosisBuffer.<span class="me1">StopYear</span> <span class="sy0">=</span> <span class="br0">&#40;</span><span class="kw4">int</span><span class="br0">&#41;</span><span class="br0">&#40;</span>d.<span class="me1">StopYear</span> <span class="sy0">&gt;</span> 0 <span class="sy0">?</span> d.<span class="me1">StopYear</span> <span class="sy0">:</span> 0<span class="br0">&#41;</span><span class="sy0">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; OutputDiagnosisBuffer.<span class="me1">Acute</span> <span class="sy0">=</span> d.<span class="me1">Acute</span> <span class="sy0">==</span> <span class="kw1">true</span> <span class="sy0">?</span> <span class="kw1">true</span> <span class="sy0">:</span> false<span class="sy0">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="br0">&#125;</span><br />
&nbsp; &nbsp; <span class="br0">&#125;</span><br />
<span class="br0">&#125;</span></div>
</div>
<p>In this blog post I demonstrated how to consume data made available using the Window Azure Marketplace. I see this as useful where one would like to extract external data for the Business intelligence needs.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mohenderson.com/2011/11/05/using-windows-azure-marketplace-data-with-ssis/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Checking in on New Year&#8217;s Resolutions</title>
		<link>http://www.mohenderson.com/2011/01/30/checking-in-on-new-years-resolutions/</link>
		<comments>http://www.mohenderson.com/2011/01/30/checking-in-on-new-years-resolutions/#comments</comments>
		<pubDate>Sun, 30 Jan 2011 14:44:44 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Personal Musings]]></category>
		<category><![CDATA[SQL Azure]]></category>

		<guid isPermaLink="false">http://www.mohenderson.com/?p=84</guid>
		<description><![CDATA[At the end of January how am I doing with my resolutions? Personal Development A good start. I am reading a book called Mindfulness in Plain English, and joined a local group to help get me started. I may have &#8230; <a href="http://www.mohenderson.com/2011/01/30/checking-in-on-new-years-resolutions/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>At the end of January how am I doing with my resolutions?</p>
<p><strong>Personal Development</strong></p>
<p>A good start. I am reading a book called <a title="Mindfulness in Plain English" href="http://www.amazon.com/Mindfulness-Plain-English-Expanded-ebook/dp/B003XF1LKW/ref=sr_1_1?ie=UTF8&amp;m=AG56TWVU5XWC2&amp;s=digital-text&amp;qid=1296392385&amp;sr=1-1" target="_blank">Mindfulness in Plain English,</a> and joined a <a title="Local Meditation Group" href="http://www.tcmmg.org/" target="_blank">local group</a> to help get me started. I may have tapped into some kind of meme. After deciding to explore meditation, I heard a panelist on the podcast <a title="Geek Speak" href="http://geekspeak.org/" target="_blank">Geek Speak</a> remark that he too had resolved to meditate. Then I learned about a new <a title="Meditation Study" href="http://well.blogs.nytimes.com/2011/01/28/how-meditation-may-change-the-brain/?partner=rss&amp;emc=rss" target="_blank">medical study</a> that shows meditation can encourage growth and change in the brain.</p>
<p><strong>Geek Resolutions For 2011</strong></p>
<ul>
<li>After reaching level one in Project Euler I am taking a short break.</li>
<li>Iron Python: I&#8217;ve downloaded some things from the <a title="Iron Python" href="http://ironpython.net/">official site</a>, but mostly reading  rather than coding at this point.</li>
<li>SSIS: I am continuing to read and develop best practices in SSIS.</li>
<li>My Azure resolution is the focus at this point. The Code Project announced a <a title="Programming Contest" href="http://www.codeproject.com/Competitions/460/Azure-DataMarkets-Competition.aspx" target="_blank">programming contest</a> and I mean to prepare an entry.</li>
<li>The phone app I hope will dovetail with what I am planning for the programming contest.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.mohenderson.com/2011/01/30/checking-in-on-new-years-resolutions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Year&#8217;s Resolution: More Blogging?</title>
		<link>http://www.mohenderson.com/2011/01/01/new-year-resolution-more-blogging/</link>
		<comments>http://www.mohenderson.com/2011/01/01/new-year-resolution-more-blogging/#comments</comments>
		<pubDate>Sat, 01 Jan 2011 21:59:04 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Functional Programming]]></category>
		<category><![CDATA[Personal Musings]]></category>
		<category><![CDATA[SQL Azure]]></category>
		<category><![CDATA[SSIS]]></category>

		<guid isPermaLink="false">http://www.mohenderson.com/?p=77</guid>
		<description><![CDATA[It&#8217;s a new year and among my potential resolutions is to blog more. This space has taken a back seat to Twitter and Facebook, which is fine because I enjoyed limiting my input to 140 characters. Now I am feeling &#8230; <a href="http://www.mohenderson.com/2011/01/01/new-year-resolution-more-blogging/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s a new year and among my potential resolutions is to blog more. This space has taken a back seat to Twitter and Facebook, which is fine because I enjoyed limiting my input to 140 characters. Now I am feeling motivated to do something more expansive, say two paragraphs.</p>
<p>Geek Resolutions For 2011 (in no particular order or level of commitment)</p>
<ul>
<li>Get to level level 2 in <a title="Project Euler Main Page" href="http://projecteuler.net/" target="_blank">Project Euler</a>. I have been making my way through the Project Euler problems using F#. I would like to keep it going in 2011</li>
<li>Learn <a title="Iron Python" href="http://ironpython.net/" target="_blank">Iron Python</a>. Learning F# has got me interesting in some of the other .Net languages.</li>
<li>Keep up to date with <a title="SSIS Tech Net Page" href="http://technet.microsoft.com/en-us/library/ms141026.aspx" target="_blank">SSIS</a>. At my workplace I am the subject matter expert for all things SSIS. The next version of SQL Server appears to have some significant changes and I need to keep up.</li>
<li>Write an <a title="MS Azure Site" href="http://www.microsoft.com/windowsazure/windowsazure/" target="_blank">Azure</a> application and publish it. I am quite interested in the Azure space and I aim to have a real project launched in Azure.</li>
<li>Write a Windows 7 Phone application and publish it. It would probably be sexier to do an iPhone/iPad or Android app, but the <a title="Express Edition Downloads" href="http://www.microsoft.com/express/Downloads/#2010-Visual-Phone">Visual Studio Express</a> edition for Windows 7 Phone is free, so that&#8217;s a good place to start.</li>
</ul>
<p>Personal Growth Resolutions</p>
<ul>
<li>Meditation: I been feeling the need to clear up the clutter in my brain and this seems like a good place to start.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.mohenderson.com/2011/01/01/new-year-resolution-more-blogging/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Everything in its right place.</title>
		<link>http://www.mohenderson.com/2009/09/07/everything-in-its-right-place/</link>
		<comments>http://www.mohenderson.com/2009/09/07/everything-in-its-right-place/#comments</comments>
		<pubDate>Tue, 08 Sep 2009 01:15:12 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Data Integration]]></category>
		<category><![CDATA[Service Oriented Architecture]]></category>
		<category><![CDATA[SQL Azure]]></category>
		<category><![CDATA[Coud Computing]]></category>

		<guid isPermaLink="false">http://www.mohenderson.com/?p=69</guid>
		<description><![CDATA[Watched a presentation on what&#8217;s in it for the DBA (http://bit.ly/Xpmt5) in SQL Azure. The big take away for me is SQL Azure manages data file, and file group optimization under the covers. Whether it has to be this way &#8230; <a href="http://www.mohenderson.com/2009/09/07/everything-in-its-right-place/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Watched a presentation on what&#8217;s in it for the DBA (<a href="http://bit.ly/Xpmt5">http://bit.ly/Xpmt5</a>) in SQL Azure. The big take away for me is SQL Azure manages data file, and file group optimization under the covers. Whether it has to be this way because the nature of the service architecture, or because MS wants to in more control, I like the idea right now. I like not having to evaluate and optimize what object goes in what file group, or whether I need to add another data file or inflate existing ones.</p>
<p>Trying to fit together pieces like network architecture, legacy database design, and growth patterns into the right place can be pretty daunting. Doing it right and seeing the improved performance is satisfying. Not getting it right has a long tail.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mohenderson.com/2009/09/07/everything-in-its-right-place/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Newer data types not supported in SQL Azure.</title>
		<link>http://www.mohenderson.com/2009/09/06/newer-data-types-not-supported-in-sql-azure/</link>
		<comments>http://www.mohenderson.com/2009/09/06/newer-data-types-not-supported-in-sql-azure/#comments</comments>
		<pubDate>Sun, 06 Sep 2009 13:21:54 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Data Integration]]></category>
		<category><![CDATA[Service Oriented Architecture]]></category>
		<category><![CDATA[SQL Azure]]></category>
		<category><![CDATA[Cloud Computing]]></category>
		<category><![CDATA[SQL Azure CTP]]></category>

		<guid isPermaLink="false">http://www.mohenderson.com/2009/09/06/newer-data-types-not-supported-in-sql-azure/</guid>
		<description><![CDATA[Some of the newer data types introduced in SQL 2008 are not supported in the SQL Azure CTP (http://bit.ly/ti7mZ). More specifically hierarchyid and spacial data types. For me that&#8217;s not a big deal because I have only tinkered with these &#8230; <a href="http://www.mohenderson.com/2009/09/06/newer-data-types-not-supported-in-sql-azure/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Some of the newer data types introduced in SQL 2008 are not supported in the SQL Azure CTP (<a href="http://bit.ly/ti7mZ">http://bit.ly/ti7mZ</a>). More specifically hierarchyid and spacial data types.</p>
<p>For me that&#8217;s not a big deal because I have only tinkered with these data types, and am not working on any production applications that use them. </p>
<p>I understand adding support for spatial data types is on the way, but the SQL Azure team will prioritize this feature on the basis of demand.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mohenderson.com/2009/09/06/newer-data-types-not-supported-in-sql-azure/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting my head in the SQL Azure Cloud.</title>
		<link>http://www.mohenderson.com/2009/09/04/getting-my-head-in-the-sql-azure-cloud/</link>
		<comments>http://www.mohenderson.com/2009/09/04/getting-my-head-in-the-sql-azure-cloud/#comments</comments>
		<pubDate>Sat, 05 Sep 2009 02:00:00 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Data Integration]]></category>
		<category><![CDATA[Service Oriented Architecture]]></category>
		<category><![CDATA[SQL Azure]]></category>
		<category><![CDATA[Cloud Computing]]></category>

		<guid isPermaLink="false">http://www.mohenderson.com/?p=61</guid>
		<description><![CDATA[Last night I got an email invitation to participate in the CTP release of SQL Azure. I have no idea how exclusive this is or is not, but it was nice just the same. A short while ago I filled &#8230; <a href="http://www.mohenderson.com/2009/09/04/getting-my-head-in-the-sql-azure-cloud/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Last night I got an email invitation to participate in the CTP release of SQL Azure. I have no idea how exclusive this is or is not, but it was nice just the same. </p>
<p>A short while ago I filled out a form requesting an invitation. At one point I had to gave a brief description as to why I should be included. I wrote a couple of sentences describing my intentions and submitted. The last night the invitation arrived.</p>
<p>I filled out some more information regarding my account and created my first database. It was a little quirky, but I did manage to make a connection to the Azure database from SSMS.</p>
<p>I have been neglecting this blog for a while, but I plan to post a little more frequently as I take a deeper dive into Azure.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mohenderson.com/2009/09/04/getting-my-head-in-the-sql-azure-cloud/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

