<?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>Kevin E. Kline &#187; Tool Time</title>
	<atom:link href="http://kevinekline.com/category/tool-time/feed/" rel="self" type="application/rss+xml" />
	<link>http://kevinekline.com</link>
	<description>Kevin E. Kline&#039;s Blog</description>
	<lastBuildDate>Mon, 09 Jan 2012 23:47:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>New on SQLMag Tool Time Blog &#8211; Update to FineBuild</title>
		<link>http://kevinekline.com/2012/01/09/new-on-sqlmag-tool-time-blog-update-to-finebuild/</link>
		<comments>http://kevinekline.com/2012/01/09/new-on-sqlmag-tool-time-blog-update-to-finebuild/#comments</comments>
		<pubDate>Mon, 09 Jan 2012 23:47:34 +0000</pubDate>
		<dc:creator>kevin</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQLMag]]></category>
		<category><![CDATA[SQLServerPedia Syndication]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Tool Time]]></category>
		<category><![CDATA[CodePlex]]></category>
		<category><![CDATA[DBA]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Tools & Scripts]]></category>

		<guid isPermaLink="false">http://kevinekline.com/?p=1868</guid>
		<description><![CDATA[Read about the latest update to FineBuild for SQL Server, a tool with speeds installation and configuration of SQL Server and associated utilities and programs.]]></description>
			<content:encoded><![CDATA[<p>Recall back in January 2011 that I profiled the cool tool,<a title="FineBuld for SQL Server on SQLMag.com" href="http://www.sqlmag.com/article/sql-server/sql-server-finebuild"> FineBuild for SQL Server</a>, which helps you configure and quickly deploy installations of SQL Server.  Not only does FineBuild help you install a new SQL Server using the settings and configuration options you desire, it goes a few steps further by ensuring that any additional programs, tools, and utilities are also installed.</p>
<p>Ed Vassie, the creator of FineBuild, has revised and improved the tools since I last wrote about it.  Ed has naturally added a number of bug fixes and documentation improvements. Several new features&#8230; <a title="Update to FineBuild" href="http://www.sqlmag.com/blog/tool-time-blog-16/tool-time-with-kevin-kline/check-updates-tool-time-favorite-finebuild-141853">[READ MORE]</a></p>
]]></content:encoded>
			<wfw:commentRss>http://kevinekline.com/2012/01/09/new-on-sqlmag-tool-time-blog-update-to-finebuild/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Everybody Needs a Test Harness</title>
		<link>http://kevinekline.com/2011/10/31/everybody-needs-a-test-harness/</link>
		<comments>http://kevinekline.com/2011/10/31/everybody-needs-a-test-harness/#comments</comments>
		<pubDate>Mon, 31 Oct 2011 14:39:42 +0000</pubDate>
		<dc:creator>kevin</dc:creator>
				<category><![CDATA[Databases]]></category>
		<category><![CDATA[On-Line Resources]]></category>
		<category><![CDATA[Performance]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQLMag]]></category>
		<category><![CDATA[SQLServerPedia Syndication]]></category>
		<category><![CDATA[TCD blog post]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Tool Time]]></category>
		<category><![CDATA[Transact-SQL Programming]]></category>
		<category><![CDATA[DBA]]></category>
		<category><![CDATA[Developer]]></category>
		<category><![CDATA[SQL Server 2008 R2]]></category>
		<category><![CDATA[Tools & Scripts]]></category>
		<category><![CDATA[Troubleshooting]]></category>

		<guid isPermaLink="false">http://kevinekline.com/?p=1831</guid>
		<description><![CDATA[Here's a handy little block of T-SQL code to improve code stability.]]></description>
			<content:encoded><![CDATA[<p>When you&#8217;re developing new Transact-SQL code or modifying some existing code, do you just launch directly into programming?</p>
<p>I know that I did just that, for years.  It wasn&#8217;t until I was trying to performance tune some existing code that I realized I hadn&#8217;t actually taken caching of data and execution plans into account.  So all those modified stored procedures that I was so proud of might not actually be faster than the first generation of procedures because I hadn&#8217;t checked to ensure that I was testing cached programs against uncached programs (and, by extension, the data used by those programs).  That&#8217;s easy enough to fix with a <em>test harness.</em>  Test harness were originally an actual, physical harness used by engineers to clamp down parts of an electrical or mechanical device they were prototyping.  Ours is no different.  It locks down all of the assumptions about our code (like my early, false assumption that I didn&#8217;t need to clear the caches) and adds a metric or two for good measure &#8211; literally &#8211; so we can better measure what&#8217;s happening in that code.</p>
<p>Here&#8217;s what my test harness looks like:</p>
<pre style="padding-left: 30px;">/* Transact-SQL test harness by Kevin Kline, http://KevinEKline.com, Twitter at kekline */</pre>
<pre style="padding-left: 30px;">/* Flush dirty pages from the buffer to the database files. */</pre>
<pre style="padding-left: 30px;">CHECKPOINT;</pre>
<pre style="padding-left: 30px;">/* Flush the data cache and procedure cache, respectively. For DEV environments only! */</pre>
<pre style="padding-left: 30px;">DBCC DROPCLEANBUFFERS;</pre>
<pre style="padding-left: 30px;">DBCC FREEPROCCACHE;</pre>
<pre style="padding-left: 30px;">/* Enable statistics tracking for IO and timings. Remember, SET commands remain enabled during a session until disabled. */</pre>
<pre style="padding-left: 30px;">SET STATISTICS IO ON;</pre>
<pre style="padding-left: 30px;">SET STATISTICS TIME ON;</pre>
<pre style="padding-left: 30px;">-- Whatever SQL code you'd like to process goes below.</pre>
<pre style="padding-left: 30px;">SELECT SalesOrderID</pre>
<pre style="padding-left: 30px;">FROM Sales.SalesOrderHeader H</pre>
<pre style="padding-left: 30px;">WHERE CustomerID = 344</pre>
<pre style="padding-left: 30px;">GO</pre>
<pre style="padding-left: 30px;">SET STATISTICS IO OFF;</pre>
<pre style="padding-left: 30px;">SET STATISTICS TIME OFF;</pre>
<pre style="padding-left: 30px;">/* Textual Execution Plans, if desired.</pre>
<pre style="padding-left: 30px;">SET SHOWPLAN_TEXT ON;</pre>
<pre style="padding-left: 30px;">SET SHOWPLAN_TEXT OFF;</pre>
<pre style="padding-left: 30px;">*/</pre>
<p>&nbsp;</p>
<p>I also like to include the execution plans a lot of the time.  You might wonder why I don&#8217;t save the execution plans for the GUI in SSMS?  Well, I&#8217;m a big advocate of scripting in general because I like to automate activities.  By pulling the execution plans using scripts, I can use SQLCMD to schedule a large number of query executions during the evening and have the results ready for analysis when I come back into the office in the morning.  <em>Workin&#8217; smarter, not harder, Baby!</em></p>
<p>So how does this test harness work for you?  Do you use other elements in yours?  If so, share your experiences here!</p>
<p>Thanks,</p>
<p>-Kevin</p>
<p>-<a title="C'mon. You know you want to." href="http://twitter.com/kekline" target="_blank">Follow me on Twitter</a></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://kevinekline.com/2011/10/31/everybody-needs-a-test-harness/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What I&#8217;m Reading, July 22 2011</title>
		<link>http://kevinekline.com/2011/07/21/what-im-reading-july-22-2011/</link>
		<comments>http://kevinekline.com/2011/07/21/what-im-reading-july-22-2011/#comments</comments>
		<pubDate>Thu, 21 Jul 2011 20:07:41 +0000</pubDate>
		<dc:creator>kevin</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[BigData]]></category>
		<category><![CDATA[Challenges]]></category>
		<category><![CDATA[Cloud]]></category>
		<category><![CDATA[Cool Technologies]]></category>
		<category><![CDATA[Databases]]></category>
		<category><![CDATA[Gov2.0]]></category>
		<category><![CDATA[IO]]></category>
		<category><![CDATA[NoSQL]]></category>
		<category><![CDATA[On-Line Resources]]></category>
		<category><![CDATA[Performance]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQLMag]]></category>
		<category><![CDATA[SQLServerPedia Syndication]]></category>
		<category><![CDATA[TCD blog post]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Tool Time]]></category>
		<category><![CDATA[Trends]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[Web2.0]]></category>

		<guid isPermaLink="false">http://kevinekline.com/?p=1736</guid>
		<description><![CDATA[Kevin shares articles on BigData, Federal government IT and cloud computing, Microsoft research into data analytics and BigData, hashtags in social media, and max degrees of parallelism.]]></description>
			<content:encoded><![CDATA[<p>I read too much, and that, my friends, is an entirely separate topic for a blog post. But I thought I&#8217;d share with you a little more about what I&#8217;m reading because sometimes, if I&#8217;m lucky, it might be something you&#8217;d enjoy too.</p>
<p>So I&#8217;m going to start sharing what I&#8217;m reading at least once per week, partly so that I don&#8217;t firehose too many reading links directly into your brain (where I to do it say once per month) and partly to solidify in my own mind the information that I&#8217;m reviewing. So here are a few good links for the seven days leading up to July 22, 2001:</p>
<ul>
<li><a title="Whitehouse: From Big Data to New Insights" href="http://www.whitehouse.gov/blog/2011/07/18/big-data-new-insights" target="_blank">Microsoft and Whitehouse partnership on BigData</a>: BigData isn&#8217;t a particularly new concept.  But I was intrigued to learn that the National Science Foundation, Microsoft, and 13 other teams were partnering on developing better BigData analytics for lots of government data from activities such as healthcare, economic development, education, transportation, and the power grid.  Cools stuff!  Plus, Microsoft has developed a new tool called <a title="Microsoft Research's Project Daytona" href="http://research.microsoft.com/en-us/projects/azure/daytona.aspx" target="_blank">Project Daytona</a> to better harness the power of the cloud, in general, and Windows Azure, specifically.</li>
<li>While we&#8217;re on the topic of <a title="ComputerWorld: Feds race to the cloud" href="http://www.computerworld.com/s/article/357387/Feds_begin_race_to_the_cloud" target="_blank">Federal IT in the Cloud</a> be sure to read this linked article from <a title="ComputerWorld Magazine" href="http://www.computerworld.com" target="_blank">ComputerWorld</a>.  Say what you will about our government, but putting government IT in the cloud and increasing both its transparency and availability will make a huge difference in how the Federal government will be able to service the public.  We&#8217;re talking as big a difference as corporations experienced between the &#8220;catalog on the web&#8221; experience of the 1990&#8242;s to the Web2.0 experience of today.</li>
<li>If you&#8217;re the social media type, give this article a read discussing the<a title="The Power of Hashtags in Social Media" href="http://searchengineland.com/the-power-of-hashtags-on-twitter-84408" target="_blank"> Power of Hashtags in Social Media</a>.</li>
<li>The Register, of the UK, whose tagline is &#8220;Biting the hand that feeds IT&#8221; has a great article on a <a title="The Register" href="http://www.theregister.co.uk/2011/07/13/mike_stonebraker_versus_facebook/" target="_blank">spat over database technologies between the IT sage Michael Stonebreaker and Google</a>.  It&#8217;s a great read if for no other reason than to prove that databases are worth fighting over.</li>
<li>And if you think Microsoft is still towing the relational database barge without thinking about other technologies, you need to read up on Projects <a title="Microsoft Project Dryad" href="http://research.microsoft.com/en-us/projects/dryad/" target="_blank">Dryad</a> and <a title="Microsoft Project Daytona" href="http://research.microsoft.com/en-us/news/headlines/daytona-071811.aspx" target="_blank">Daytona</a>.</li>
<li>Finally, I&#8217;m still getting lots of questions about when and where to limit SQL Server&#8217;s Max Degrees of Parallelism.  Be sure to read <a title="Microsoft SQL Server MAXDOP" href="http://support.microsoft.com/kb/2023536" target="_blank">Microsoft&#8217;s Recommendations and Guidelines for &#8216;max degree of parallelism&#8217;</a> configuration option here.</li>
</ul>
<p>And just because so many of us in IT are closet or former musicians, there&#8217;s <a title="Gibson Learn and Master Series" href="http://www.ustream.tv/gibson-learn-and-master-live-lessons" target="_blank">Live Guitar Lessons with Steven Krenz</a>, sponsored by my hometown boyz at <a title="Gibson Guitars, in my hometown of Nashville, TN" href="http://www2.gibson.com/Gibson.aspx" target="_blank">Gibson Guitar</a>.</p>
<p>Got a favorite article or tool tip? Let me know!  Enjoy,</p>
<p>-Kev</p>
<p>Follow me on <a title="C'mon. You know you want to!" href="http://twitter.com/kekline" target="_blank">Twitter</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://kevinekline.com/2011/07/21/what-im-reading-july-22-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft Windows Platforms Blog Watch</title>
		<link>http://kevinekline.com/2011/07/20/microsoft-windows-platforms-blog-watch/</link>
		<comments>http://kevinekline.com/2011/07/20/microsoft-windows-platforms-blog-watch/#comments</comments>
		<pubDate>Wed, 20 Jul 2011 14:47:12 +0000</pubDate>
		<dc:creator>rachel</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[Cloud]]></category>
		<category><![CDATA[Cool Technologies]]></category>
		<category><![CDATA[Databases]]></category>
		<category><![CDATA[On-Line Resources]]></category>
		<category><![CDATA[Performance]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQLMag]]></category>
		<category><![CDATA[SQLServerPedia Syndication]]></category>
		<category><![CDATA[TCD blog post]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Tool Time]]></category>
		<category><![CDATA[Best Practices]]></category>
		<category><![CDATA[cloud computing]]></category>
		<category><![CDATA[DBA]]></category>
		<category><![CDATA[Debugging]]></category>
		<category><![CDATA[Developer]]></category>
		<category><![CDATA[SQL Server 2008 R2]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://kevinekline.com/?p=1290</guid>
		<description><![CDATA[Links to great Microsoft blogs and tool resources for networking, performance, and the Windows platform.]]></description>
			<content:encoded><![CDATA[<p><a href="http://KevinEKline.com"><img class="alignright" src="http://2.bp.blogspot.com/_B5-1oeewfB8/S67FJZgM_UI/AAAAAAAAKsU/CvIHTQiKREM/s1600/laurel-and-hardy.jpg" alt="" width="298" height="204" /></a></p>
<p><strong>Remote Desktop Services Component Architecture Poster</strong></p>
<p>Grab your own poster! A <a title="Microsoft RDS Services Poster" href="http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;FamilyID=9bc943b7-07c5-4335-9df9-20e77ed5032e" target="_blank">visual guide to key Remote Desktop Services technologies</a> in Windows Server 2008R2</p>
<p>&nbsp;</p>
<p><strong>Virtually Free</strong></p>
<p>Get the latest <strong><a title="Microsoft Hyper-V" href="http://support.microsoft.com/kb/2264080" target="_blank">update rollup package for the Hyper-V</a></strong> role in Windows Server 2008 R2 and be sure to bookmark the <strong><a title="Microsoft Windows Virtualization Team Blog" href="http://blogs.technet.com/virtualization" target="_blank">Windows Virtualization Team Blog</a></strong>.  Be sure to check out blog <strong><a title="More virtual goodness from Microsoft" href="http://blogs.technet.com/virtualworld" target="_blank">World Simplified is a Virtual World</a></strong>. And doncha evah neglect application virtualization, such as the goodness at the<strong> <a title="Microsoft App-V Team Blog" href="http://blogs.technet.com/appv" target="_blank">App-V Product Team Blog</a></strong>.</p>
<p>&nbsp;</p>
<p><strong>Let&#8217;s Optimize Some Desktops (Assuming You Have Gone Full Cloud Yet)<br />
</strong></p>
<p>Check out <a title="microsoft Desktop Optimization Pack" href="http://blogs.technet.com/mdop">The Official Microsoft Desktop Optimization Pack (MDOP) Blog</a> where you can get cool tools like the Diagnostics and Recovery Toolset (<a title="Microsoft Diagnostics and Recovery Toolset" href="http://blogs.technet.com/b/mdop/archive/2011/04/04/diagnostics-and-recovery-toolset-dart-7-beta-released.aspx" target="_blank">DART</a>), currently in its v7 beta release.</p>
<p>&nbsp;</p>
<p><strong><a href="http://www.facebook.com/kekline"><img class="alignleft" src="http://3.bp.blogspot.com/-7RLcOYR_dmI/TagbsV2eiBI/AAAAAAAAAB8/J7-80luLEZk/s1600/Laurel-Hardy.jpg" alt="" width="300" height="220" /></a>We Can Always Perform a Little Better</strong></p>
<p>Have you checked out the <a title="Microsoft Performance Team Blog" href="http://blogs.technet.com/askperf" target="_blank">Ask the Performance Team blog</a> yet.  You should!  Then there&#8217;s the<a title="Microsoft Enterprise Networking Team Blog" href="http://blogs.technet.com/networking" target="_blank"> Microsoft Enterprise Networking Team blog</a>.  And if you&#8217;re looking for help with the Windows Server Core, be sure to check out the <a title="Microsoft Enterprise Platforms Support: Windows Server Core Team" href="http://blogs.technet.com/askcore" target="_blank">Ask the Core Team blog</a>.  Excellent stuff!</p>
<p>As the <a title="Kevin's Monthly Tool Time Column in SQL Server Magazine" href="http://www.sqlmag.com/blogcontent/tool-time-blog-16" target="_blank">Tool Time columnist at SQL Server Magazine</a>, I&#8217;m always on the lookout for great free tools that get on-going support from their creators.  One common experience is finding a nice debugging tool, only to discover that there&#8217;s <em>no information on how to interpret the debugger result sets</em>!  (<a title="An Old but Still Popular Blog Entry on SQLIOSIM" href="http://sqlblog.com/blogs/kevin_kline/archive/2007/06/28/understanding-sqliosim-output.aspx" target="_blank">SQLIOSim </a>anyone?)  That&#8217;s why I love the <a title="Microsoft Windows Advanced Debugging and Troubleshooting Blog" href="http://blogs.msdn.com/b/ntdebugging/" target="_blank">Microsoft Advanced Windows Debugging and Troubleshooting blog</a>.  Another must-have on your Favorites list.</p>
<p>&nbsp;</p>
<p>Enjoy!</p>
<p>-Kev</p>
<p>Follow me on <a title="C'mon. You know you want to!" href="http://twitter.com/kekline" target="_blank">Twitter</a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://kevinekline.com/2011/07/20/microsoft-windows-platforms-blog-watch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Is There Such a Thing as Easy ETL?</title>
		<link>http://kevinekline.com/2011/06/30/is-there-such-a-thing-as-easy-etl/</link>
		<comments>http://kevinekline.com/2011/06/30/is-there-such-a-thing-as-easy-etl/#comments</comments>
		<pubDate>Thu, 30 Jun 2011 05:06:43 +0000</pubDate>
		<dc:creator>kevin</dc:creator>
				<category><![CDATA[Cool Technologies]]></category>
		<category><![CDATA[On-Line Resources]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Tool Time]]></category>
		<category><![CDATA[Data.Gov]]></category>
		<category><![CDATA[ETL]]></category>
		<category><![CDATA[OData]]></category>
		<category><![CDATA[Open Data]]></category>
		<category><![CDATA[SQL Server 2008 R2]]></category>
		<category><![CDATA[SQLMag]]></category>
		<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://kevinekline.com/?p=1701</guid>
		<description><![CDATA[As soon as your data loading process involves some difficult or sophisticated cleansing or transformations, it gets really, really hard.  I've found a cool, free tool - expressor studio - that shields your data integration application, with its associated business and transformation rules, from changes that might occur to underlying target or source files.]]></description>
			<content:encoded><![CDATA[<p>E.T.L. That&#8217;s <em>Extract &#8211; Transform &#8211; Load</em>.  That doesn&#8217;t sound like a lot of work when all you need to get loaded is a simple Access database or an Excel spreadsheet.  In a situation like that, the process is so simple, all you really need to focus on is the L in ETL.  There&#8217;s not a whole lot of E.T. to process, despite how wonderful that movie is. [pun intended]  But as soon as your data loading process involves some difficult or sophisticated cleansing or transformations, it gets really, really hard.</p>
<p>The other cross-thread that had really caught my interest lately is the <a title="The Open Data Initiative" href="http://www.whitehouse.gov/open" target="_blank">USA federal governments Open Data Initiative</a>.  I think it&#8217;s remarkable that President Obama is the first president to appoint a federal CIO.  (Shouldn&#8217;t that have happened in the past?)  In addition, President Obama instructed the entire executive branch to open up their data (where security isn&#8217;t at risk) and make it readily available to the public.  And the US government collects mountains of interesting and valuable data for its own uses, but figuring out how or who to share it with was always an afterthought.  While I was a contractor for NASA, for example, I worked on some incredibly interesting projects which yielded amazing and commercially valuable information.  It was all public domain.  But unless you knew it was there, you couldn&#8217;t get to it. Making use of all of that data always intrigued me.</p>
<p>Now, with ODI, it&#8217;s all being put on the internet at an ever-increasing rate at <a title="Data from the US Federal Government" href="http://data.gov" target="_blank">Data.gov</a>.  However, all of this data, while open and available, is not standardized.  Some data sets might be a CSV file, while others might be something like a spreadsheet.  That means you&#8217;ll need to extract, transform, and load that data if you want to synthesize more valuable data sets.</p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p>For those reasons, I&#8217;ve been researching tools to help make this process easier.  (I also wanted to research SSIS and ETL tools for my <a title="free SQL Server tools every month" href="http://www.sqlmag.com/blogcontent/tool-time-blog-16" target="_blank">Tool Time column</a> in <a title="SQL Server Magazine" href="http://www.sqlmag.com" target="_blank">SQL Server Magazine</a>.)  Now, I&#8217;ve been following <a title="Expressor Software" href="http://www.expressor-software.com/" target="_blank">expressor software</a> for quite some time and really like their unique approach.  (I actually ran into the expressor software team at a <a title="PASS Summitt 2011" href="http://www.sqlpass.org/summit/2011/" target="_blank">PASS Summit</a> one or two years ago and asked for a demo of their software.  And I really liked what I saw.)  Rather than the workflow approach used by SSIS, expressor software uses a data mapping approach combined with reusable business rules.  Their mapping approach is fundamentally different from the traditional point-to-point, source-to-target mappings paradigm.  Basically, you can define a semantic type representative of your business data, create a business rule(s) to apply to the data, and then implement a &#8220;canonical&#8221; mapping which connects data sources and targets to that same semantic type.  And it&#8217;s free!</p>
<p>&nbsp;</p>
<h2><strong>Abstraction is Awesome</strong></h2>
<p>What&#8217;s cool about that?  Don&#8217;t forget that &#8220;semantic&#8221; means &#8220;meaning&#8221;.  So a semantic type is an abstraction of the meaning of the data.  The net result is that expressor shields your data integration application, with its associated business and transformation rules, from changes that might occur to underlying target or source files with different field names and data type representations have to be processed.  <em> </em></p>
<p>For example, let’s assume that you need to process invoices from different vendors in slightly different formats.  If you use a traditional ETL tool like SSIS, any changes in the source and/or target formats will require you to modify your data mappings and transformation rules, because the mappings are tied directly to the metadata structure of the invoice file format(s). expressor, on the other hand, lets you define a common “invoice” semantic type, build all your downstream data processing off that type and map one or multiple invoice file schemas to the type.</p>
<p>This approach greatly simplifies the mapping process and provides for more flexible data integration applications that can be more easily adapted to changes in the source and target data sources.</p>
<div id="attachment_1704" class="wp-caption aligncenter" style="width: 310px"><a href="http://go.expressor-software.com/studio-download.html?campaignID=70140000000MgQm"><img class="size-full wp-image-1704" title="Expressor Offer" src="http://kevinekline.com/wp-content/uploads/2011/06/Expressor-Offer1.png" alt="" width="300" height="250" /></a><p class="wp-caption-text">expressor Studio Desktop</p></div>
<p>&nbsp;</p>
<p>&nbsp;</p>
<h2>Benefits Abound</h2>
<p>Since the semantic types in expressor are captured as reusable artifacts, you can also reuse them again in new data flows within your project(s).  You can even share them across your entire organization.  As I tinkered with the expressor Studio tool, I hit on a few other benefits with this approach:</p>
<ul>
<li>Handles data type conversions automatically without having to write data transformation rules for these conversions</li>
<li>Builds new semantic types from existing types and reuses types in existing and new applications</li>
<li>Creates multiple, reusable business rules against a single type and applies them repeatedly as needed</li>
<li>Easily implements data quality rules and constraints</li>
</ul>
<h2></h2>
<h2>In an Ideal World&#8230;</h2>
<p>In an ideal world, I&#8217;d figure out some brilliant way to make money from bringing together all kinds of that government data that I used to work with.  Other folks are doing it at the <a title="The Windows Azure Data Market" href="https://datamarket.azure.com/" target="_blank">Windows Azure Data Market</a>.  But in the meanwhile, I&#8217;m also looking forward to tinkering with this data to build better demos.  Along the way, I&#8217;m going to use the <a title="Expressor Software" href="http://www.expressorstudio.com/" target="_blank">expressor Studio</a> desktop ETL tool (Did I mention that it&#8217;s free!) as well as tell you about my experiences as I try to build out some Data.gov data sets.</p>
<p>Those of you who know me, know that I look a good discussion and cooperative, constructive team work.  So I encourage your feedback and suggestions, as I work through these data integration challenges and share my experiences.  I&#8217;m looking forward to sharing with you my insights on what the expressor data integration software can do with this challenge and what some of its features and capabilities are.  In upcoming releases, I&#8217;ll let you know what I find intriguing and worth mentioning.</p>
<p>Check out their website, <a href="http://www.expressor-software.com/">www.expressor-software.com</a>, to learn more about their company and products.</p>
<p>Enjoy,</p>
<p>-Kev</p>
<p>Follow me on <a title="Tweet Tweet" href="http://twitter.com/kekline" target="_blank">Twitter</a></p>
]]></content:encoded>
			<wfw:commentRss>http://kevinekline.com/2011/06/30/is-there-such-a-thing-as-easy-etl/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>From SQLMag Tool Time Column: SSMS Plug-in News</title>
		<link>http://kevinekline.com/2011/05/12/from-sqlmag-tool-time-column-ssms-plug-in-news/</link>
		<comments>http://kevinekline.com/2011/05/12/from-sqlmag-tool-time-column-ssms-plug-in-news/#comments</comments>
		<pubDate>Thu, 12 May 2011 19:07:15 +0000</pubDate>
		<dc:creator>rachel</dc:creator>
				<category><![CDATA[Databases]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQLMag]]></category>
		<category><![CDATA[SQLServerPedia Syndication]]></category>
		<category><![CDATA[Tool Time]]></category>
		<category><![CDATA[DBA]]></category>
		<category><![CDATA[Denali]]></category>
		<category><![CDATA[Developer]]></category>
		<category><![CDATA[SQL Server 2008 R2]]></category>

		<guid isPermaLink="false">http://kevinekline.com/?p=1619</guid>
		<description><![CDATA[I first wrote about Mladen Prajdic's excellent tool in my Tool Time column at SQL Server Magazine ]]></description>
			<content:encoded><![CDATA[<p>I first wrote about Mladen Prajdic&#8217;s excellent tool in my Tool Time column at SQL Server Magazine <a title="SQLMAG Tool Time Blog" href="http://www.sqlmag.com/article/sql-server-2005/ssms-tools-pack-6-tools-that-help-you-do-more-with-ssms" target="_blank">HERE</a>.    The tool is a nice plug-in to SSMS and definitely worth having.  If you’ve never installed it or have only installed an older version, but sure to pick up the newest release.  Here’s Mladen’s press release complete with hyperlink for the tool:<br />
<a href="http://weblogs.sqlteam.com/mladenp/archive/2010/12/28/ssms-tools-pack-1-9-4-is-out-now-with.aspx">SSMS Tools Pack 1.9.4 is out! Now with SQL Server 2011 (Denali) CTP1 support.<br />
</a></p>
<p>As Mladen says:</p>
<p><em>&#8230;this release adds support for SQL Server 2011 (Denali) CTP1 and fixes a few bugs. Because of the new SSMS shell in SQL 2011 CTP1 the SSMS Tools Pack 1.9.4 doesn&#8217;t have regions and debug sections functionality for now. The fixed bugs are: A bug that prevented to create insert statements for a database A bug that didn&#8217;t script commas as decimal points correctly for non US settings&#8230;. </em></p>
<p>Enjoy!</p>
<p>-Kev</p>
<div><a title="C'mon. You know you want to!" href="http://twitter.com/kekline" target="_blank">Twitter at kekline</a></div>
<div>More content at <a href="../">http://KevinEKline.com</a></div>
]]></content:encoded>
			<wfw:commentRss>http://kevinekline.com/2011/05/12/from-sqlmag-tool-time-column-ssms-plug-in-news/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL Server Migration Roll-Up</title>
		<link>http://kevinekline.com/2011/05/02/sql-server-migration-roll-up/</link>
		<comments>http://kevinekline.com/2011/05/02/sql-server-migration-roll-up/#comments</comments>
		<pubDate>Mon, 02 May 2011 15:39:55 +0000</pubDate>
		<dc:creator>rachel</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[Challenges]]></category>
		<category><![CDATA[Databases]]></category>
		<category><![CDATA[On-Line Resources]]></category>
		<category><![CDATA[Performance]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQLMag]]></category>
		<category><![CDATA[SQLServerPedia Syndication]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Tool Time]]></category>
		<category><![CDATA[Transact-SQL Programming]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[cloud computing]]></category>
		<category><![CDATA[DBA]]></category>
		<category><![CDATA[Developer]]></category>
		<category><![CDATA[MS-Access]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[SQL Azure]]></category>
		<category><![CDATA[SQL Server 2008 R2]]></category>
		<category><![CDATA[Sybase]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Tools & Scripts]]></category>

		<guid isPermaLink="false">http://kevinekline.com/?p=1287</guid>
		<description><![CDATA[Here are a hand full of cool database migration tools and white papers worth mentioning for SQL Server, Oracle, MySQL, and Sybase.]]></description>
			<content:encoded><![CDATA[<p>There are so many great tools out there for data professionals using Microsoft SQL Server.  I really like to see all of these great tools made free to the public.  On the other hand, I&#8217;m bummed that the tools are cast about in a very decentralized fashion. If you haven&#8217;t done migrations before, you might want to start with <a title="SQL Server Migration White Papers" href="http://www.microsoft.com/downloads/en/details.aspx?displaylang=en&amp;FamilyID=c7933d3e-b7b9-43a6-ade3-f8e37c8cb046#tm" target="_blank">these good white papers first</a>.</p>
<p>Here are a hand full of cool <em>migration</em> tools worth mentioning:</p>
<p><a title="Migrate from MySQL to SQL Server" href="http://blogs.technet.com/b/dataplatforminsider/archive/2010/08/12/microsoft-announces-sql-server-migration-assistant-for-mysql.aspx" target="_blank">Microsoft SQL Server Migration Assistant (SSMA) for MySQL</a>: Migrate from MySQL to <strong>SQL Azure </strong>or <strong>SQL Server</strong> with ease.  Plus, here are a few related Knowledge Base (KB) articles:</p>
<p style="padding-left: 30px;">Azure SQL Service: Database Migration To Sql Azure<br />
<a href="http://support.microsoft.com/kb/2212855/en-US">http://support.microsoft.com/kb/2212855/en-US</a></p>
<p>Azure SQL Service: Database Migration To Sql Azure<br />
<a href="http://support.microsoft.com/kb/2212990/en-US">http://support.microsoft.com/kb/2212990/en-US</a></p>
<p>Azure SQL Service: Developing Applications For Sql Azure<br />
<a href="http://support.microsoft.com/kb/2213496/en-US">http://support.microsoft.com/kb/2213496/en-US</a></p>
<p><a title="Migrate from Sybase to SQL Server" href="http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;familyid=f39d6150-e611-46e1-84c5-0808010711c8" target="_blank">SQL Server Migration Assistant (SSMA) for Sybase</a>: Migrate from Sybase ASE to SQL Server 2005, SQL Server 2008 and SQL Server 2008 R2.</p>
<p><a title="Migrate from MS-Access" href="http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;familyid=5abe098d-c7e1-46c6-994a-09a2856eef0b" target="_blank">SQL Server Migration Assistant (SSMA) for Microsoft Access</a>: Migrate from Access to SQL Server 2005, SQL Server 2008, SQL Server 2008 R2 and SQL Azure.</p>
<p><a title="Migrate from Oracle to SQL Server" href="http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;familyid=9dfb1773-5594-44a9-869f-a891629f80a5" target="_blank">SQL Server Migration Assistant (SSMA) for Oracle</a>:  Migrate from Oracle to SQL Server 2005, SQL Server 2008 or SQL Server  2008 R2.  I&#8217;m thinking about installing it on my SQL Servers even  without even needing to migrate existing Oracle databases to SQL Server.  Why?  Well as an old Oracle hand, I came to really enjoy quite a few Oracle PL/SQL system packages (kind&#8217;a like a SQL Server system stored procedure, but often more powerful).  As it turns out SSMA-Oracle includes stored procedures, extended stored procedures, and CLR  routines that reproduce the functionality in most all of the cool and powerful Oracle  packages like <strong>DBMS_PIPES.</strong> It&#8217;d be nice to have those on my SQL Servers just because I know them and like them.<strong><br />
</strong></p>
<p><a title="PHP for SQL Server Drivers" href="http://blogs.technet.com/b/dataplatforminsider/archive/2010/08/05/microsoft-drivers-for-php-for-sql-server-2-0-released.aspx" target="_blank">Microsoft Drivers for PHP for SQL Server 2.0</a>: Microsoft Drivers for PHP for SQL Server &#8211; and PHP is good.<a title="Microsoft Services" href="http://blogs.technet.com/b/dataplatforminsider/archive/2010/08/10/microsoft-services-launches-new-offerings-for-mission-critical-customers.aspx" target="_blank"></a></p>
<p><a title="Microsoft Services" href="http://blogs.technet.com/b/dataplatforminsider/archive/2010/08/10/microsoft-services-launches-new-offerings-for-mission-critical-customers.aspx" target="_blank">Microsoft Services  for Mission Critical Customers</a>: Many enterprise customers running mission critical applications on SQL Server have asked for more &#8211; more service and support for their environments. This is an add-on that costs extra, but it&#8217;s worth it for those running the systems that keep the company in business.<br />
If you&#8217;ve tried any of these tools out, I&#8217;m keen to hear your experiences.  Did they work well for you?  Did they work, though poorly?  Did they fail utterly?  Inquiring minds want to know.</p>
<p>&nbsp;</p>
<div><span style="font-family: 'Times New Roman';">~~~</span></div>
<div>
<p><span style="font-family: 'Times New Roman';">Enjoy!</span></p>
<p><span style="font-family: 'Times New Roman';">-Kev</span></p>
<div><span style="font-family: 'Times New Roman';"> <a title="C'mon. You know you want to!" href="http://twitter.com/kekline" target="_blank">Twitter at kekline</a></span></div>
</div>
<div><span style="font-family: 'Times New Roman';"> More content at <a href="../">http://KevinEKline.com</a> </span></div>
]]></content:encoded>
			<wfw:commentRss>http://kevinekline.com/2011/05/02/sql-server-migration-roll-up/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New on SQLMag.Com: Update to SP_WHOISACTIVE</title>
		<link>http://kevinekline.com/2011/04/21/new-on-sqlmag-com-update-to-sp_whoisactive/</link>
		<comments>http://kevinekline.com/2011/04/21/new-on-sqlmag-com-update-to-sp_whoisactive/#comments</comments>
		<pubDate>Thu, 21 Apr 2011 14:11:45 +0000</pubDate>
		<dc:creator>kevin</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQLServerPedia Syndication]]></category>
		<category><![CDATA[Tool Time]]></category>
		<category><![CDATA[DBA]]></category>
		<category><![CDATA[Internals]]></category>
		<category><![CDATA[Monitoring]]></category>
		<category><![CDATA[SQL Server 2008 R2]]></category>
		<category><![CDATA[SQLMag]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Tools & Scripts]]></category>

		<guid isPermaLink="false">http://kevinekline.com/?p=1631</guid>
		<description><![CDATA[I profiled Adam Machanic's excellent stored procedure, SP_WHOISACTIVE, back in August of 2010]]></description>
			<content:encoded><![CDATA[<p>I profiled Adam Machanic&#8217;s (<a href="http://sqlblog.com/blogs/adam_machanic/default.aspx" target="_blank">blog</a> | <a href="http://twitter.com/AdamMachanic" target="_blank">twitter</a>) excellent stored procedure, SP_WHOISACTIVE, back in August of 2010 in my monthly SQLMag column, Tool Time.  Adam has been diligent about maintaining the tool and adding new features. Read the details on my <a title="Tool Time - Free Independent SQL Server Tools" href="http//www.sqlmag.com/blogs/tool-time/entryid/76341/new-release-of-sp_whoisactive" target="_blank">SQLMag Tool Time column</a>.</p>
<div>
<p>Enjoy!</p>
<p>-Kev</p>
<div><span style="font-family: 'Times New Roman';"> <a title="C'mon. You know you want to!" href="http://twitter.com/kekline" target="_blank">Twitter at kekline</a></span></div>
</div>
<div><span style="font-family: 'Times New Roman';"> <a href="../"><br />
</a> </span></div>
]]></content:encoded>
			<wfw:commentRss>http://kevinekline.com/2011/04/21/new-on-sqlmag-com-update-to-sp_whoisactive/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wednesday Quest: Power GUI Integration</title>
		<link>http://kevinekline.com/2011/03/16/wednesday-quest-power-gui-integration/</link>
		<comments>http://kevinekline.com/2011/03/16/wednesday-quest-power-gui-integration/#comments</comments>
		<pubDate>Wed, 16 Mar 2011 13:32:19 +0000</pubDate>
		<dc:creator>rachel</dc:creator>
				<category><![CDATA[Cool Technologies]]></category>
		<category><![CDATA[Opinion]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Tool Time]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[Quest Software]]></category>
		<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://kevinekline.com/?p=1404</guid>
		<description><![CDATA[Excellent tools for PowerShell scripting]]></description>
			<content:encoded><![CDATA[<p>Two tools that I really like are PowerGUI, a tool to take all the hard work out of PowerShell scripting, available in both free and<a title="I only remembered the link for the paid one off the top of my head, but it's out there!" href="http://www.quest.com/powerguipro/" target="_blank"> paid versions from Quest Software</a>.  You can also get <a title="It's powerful. But be careful, it's gooey." href="http://powerguivsx.codeplex.com/" target="_blank">PowerGUI extensions for Visual Studio</a> for free from CodePlex.</p>
<p>Another tool I really like is PowerWF.  PowerWF is a really cool visual workflow builder that creates PowerShell scripts for you.  Turns out that it integrates with PowerGUI!</p>
<p>This video shows 2 different ways that PowerWF Workflows can be run from within Quest Software&#8217;s PowerGUI tool.</p>
<p><a href="http://www.youtube.com/watch?v=8Qi1sA0rQes">Watch the Video </a>- <a href="http://powerwf.com/downloads/">Download PowerWF</a></p>
<p>Enjoy!</p>
<p><span style="font-family: 'Times New Roman';">-Kev</span></p>
<div><span style="font-family: 'Times New Roman';"> <a title="C'mon. You know you want to!" href="http://twitter.com/kekline" target="_blank">Twitter at kekline</a></span></div>
<div><span style="font-family: 'Times New Roman';"> <a href="../"><br />
</a> </span></div>
]]></content:encoded>
			<wfw:commentRss>http://kevinekline.com/2011/03/16/wednesday-quest-power-gui-integration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wednesday Quest: Exciting New Community for Users of Toad for SQL Server</title>
		<link>http://kevinekline.com/2011/03/09/wednesday-quest-exciting-new-community-for-users-of-toad-for-sql-server/</link>
		<comments>http://kevinekline.com/2011/03/09/wednesday-quest-exciting-new-community-for-users-of-toad-for-sql-server/#comments</comments>
		<pubDate>Wed, 09 Mar 2011 13:29:12 +0000</pubDate>
		<dc:creator>kevin</dc:creator>
				<category><![CDATA[Cool Technologies]]></category>
		<category><![CDATA[Databases]]></category>
		<category><![CDATA[On-Line Resources]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Tool Time]]></category>
		<category><![CDATA[DBA]]></category>
		<category><![CDATA[Developer]]></category>
		<category><![CDATA[Quest Software]]></category>
		<category><![CDATA[Toad]]></category>
		<category><![CDATA[Training]]></category>
		<category><![CDATA[Transact-SQL Programming]]></category>

		<guid isPermaLink="false">http://kevinekline.com/?p=450</guid>
		<description><![CDATA[There's a great, new community dedicated to all the users of Toad for SQL Server...]]></description>
			<content:encoded><![CDATA[<h1><span style="font-family: Arial; color: #1d7005;">Join the Toad for SQL Server Community!</span></h1>
<p>I was just bragging about how <a title="Kevin says &quot;blah blah blah TOAD blah blah blah SQL SERVER&quot;" href="http://kevinekline.com/2010/06/14/toad-just-keeps-getting-better/" target="_blank">Toad for SQL Server keeps getting better</a>.  In that post, I also pointed out a lot of great resources you can put to work immediately on improving your skills with this great tool.  (Incidentally, there&#8217;s a freeware version without all of the features, but it&#8217;s still quite useful.  And you can always use the beta product, if you want <em>all </em>of the features and many new features that are undergoing community testing.)</p>
<div id="attachment_591" class="wp-caption alignleft" style="width: 310px"><a href="http://kevinekline.com/wp-content/uploads/2010/06/toad-01.jpg"><img class="size-medium wp-image-591  " title="toad 01" src="http://kevinekline.com/wp-content/uploads/2010/06/toad-01-300x291.jpg" alt="Toad, He Rocks" width="300" height="291" /></a><p class="wp-caption-text">Ain&#39;t he handsome?</p></div>
<p>One of the reasons that Toad is so good is that it&#8217;s always been a community-driven product.  Back when I used Oracle every day, TOAD was an acronym = Total Oracle Application Development.  It didn&#8217;t take long for Toad to rise above the acronym transform into the eponymous term denoting &#8220;kick-butt database tool&#8221; just a few years before Toad began to go cross-platform.  Now that Toad is solidly cross-platform with versions for DB2, MySQL, and Cloud to boot, it&#8217;s worth pointing out that Toad got to be what it is today entirely from community feedback.  Back in the day, when I worked in Quest&#8217;s R&amp;D team, the developers literally kept a checklist of cool suggestions from the community and worked against that to develop new features.  My point isn&#8217;t to fully describe the inner workings of the Toad dev team, rather I wanted to highlight how incredibly important community feedback is to this tool and the developers behind it.</p>
<p>To further that point, <a title="Ribbet!" href="http://toadforsqlserver.com/index.jspa" target="_blank">there&#8217;s a new community for all users of Toad for SQL Server</a>.  Here, you can:</p>
<ul>
<li> get solutions and ask questions</li>
<li>watch training and &#8220;tips &amp; tricks&#8221; videos</li>
<li>share your knowledge and experience</li>
<li>get the latest information on new Toad for   SQL Server features and enhancements</li>
<li>download the latest releases</li>
<li>get expert tips and techniques</li>
<li>plus, directly communicate with the developers</li>
</ul>
<p>Look around, make yourself at home!</p>
<p>Enjoy,</p>
<p>-Kev</p>
<p><a title="C'mon. You know you want to!" href="http://twitter.com/kekline" target="_blank">Follow me on Twitter</a></p>
<input id="gwProxy" type="hidden" />
<input id="jsProxy" onclick="jsCall();" type="hidden" />
<input id="gwProxy" type="hidden" />
<input id="jsProxy" onclick="jsCall();" type="hidden" />
]]></content:encoded>
			<wfw:commentRss>http://kevinekline.com/2011/03/09/wednesday-quest-exciting-new-community-for-users-of-toad-for-sql-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced
Database Caching 1/38 queries in 0.037 seconds using disk: basic
Object Caching 895/988 objects using disk: basic

Served from: kevinekline.com @ 2012-02-05 11:06:10 -->
