<?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>BI Monkey &#187; Excel</title>
	<atom:link href="http://www.bimonkey.com/tag/excel/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.bimonkey.com</link>
	<description>James Beresford on Microsoft BI and Consulting in Sydney, Australia</description>
	<lastBuildDate>Mon, 06 Sep 2010 00:59:17 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.3</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>The Excel Source and Connection Manager &#8211; The basics</title>
		<link>http://www.bimonkey.com/2009/05/the-excel-source-and-connection-manager-the-basics/</link>
		<comments>http://www.bimonkey.com/2009/05/the-excel-source-and-connection-manager-the-basics/#comments</comments>
		<pubDate>Tue, 19 May 2009 10:26:02 +0000</pubDate>
		<dc:creator>BI Monkey</dc:creator>
				<category><![CDATA[Integration Services]]></category>
		<category><![CDATA[Excel]]></category>

		<guid isPermaLink="false">http://www.bimonkey.com/?p=248</guid>
		<description><![CDATA[In this post I will be reviewing the Excel Source and Excel Connection Manager. The sample package and files can be found here for 2008 and here for 2005 and guidelines on use are here.
How do you read data from an Excel Workbook in SSIS?
The answer to that is, it depends on the version of [...]]]></description>
			<content:encoded><![CDATA[<p>In this post I will be reviewing the Excel Source and Excel Connection Manager. The sample package and files can be found <a title="SQL 2008 SSIS Excel Source Samples (Right click, save as)" href="http://www.bimonkey.com/uploads/componentreview/excelsource2008.zip">here for 2008</a> and <a title="SQL 2005 SSIS Excel Source Samples (Right click, save as)" href="http://www.bimonkey.com/uploads/componentreview/excelsource2005.zip">here for 2005</a> and guidelines on use are <a title="Using samples from BI Monkey" href="http://www.bimonkey.com/support/using-ssis-samples-from-this-site/">here</a>.</p>
<div class="wp-caption alignnone" style="width: 188px"><img title="SSIS Excel Source" src="http://www.bimonkey.com/uploads/componentreview/excelsource1.jpg" alt="t2" width="178" height="75" /><p class="wp-caption-text">Fig 1: The SSIS Excel Source</p></div>
<h2>How do you read data from an Excel Workbook in SSIS?</h2>
<p>The answer to that is, it depends on the version of Excel . If it is 2003 or earlier, you can use the the Excel Connection Manager and Excel Source. If it is 2007 or later, you use a specially configured OLE DB Connection Manager, as described in the MSDN article <a title="How to: Connect to an Excel Workbook" href="http://msdn.microsoft.com/en-us/library/cc280527.aspx">How to: Connect to an Excel Workbook.</a> An example of this is in the sample package (Data Flow 4). Though the sample package for this post includes an example of each version of Excel, but I will only be discussing the Excel source for 2003 and earlier from here on.</p>
<h2>Configuring the Excel Connection Manager</h2>
<p>The Excel connection manager is pretty simple to set up &#8211; all it requires is the file path, Excel version, and to know whether it has Column Names in the first row.</p>
<div class="wp-caption alignnone" style="width: 542px"><img title="SSIS Excel Connection Manager" src="http://www.bimonkey.com/uploads/componentreview/excelsource2.jpg" alt="t2" width="532" height="237" /><p class="wp-caption-text">Fig 2: The Excel Connection Manager</p></div>
<p>If you look at the Properties of the Connection Manager once it is set up, you can see a Password field &#8211; this is misleading &#8211; <span style="text-decoration: underline;">you cannot connect to a password protected workbook</span>. So, if you have to connect to a secure workbook you need to look at either other means of extracting that data or alternative security for the workbook.</p>
<h2>Configuring the Excel Source</h2>
<p>The Excel Source is very similar to the OLE DB source. This can initially be confusing as in the Data Access Mode drop-down it talks in terms of Tables, Views and SQL Commands. When it says Table or View, what it means in Excel speak is Sheets and Named Ranges. When it talks in terms of SQL &#8211; it really means it. You can construct SQL statements to pull restricted amounts of, or modified versions of the spreadsheet data. An example is below:</p>
<div class="wp-caption alignnone" style="width: 407px"><img title="Excel SQL in the Excel Source" src="http://www.bimonkey.com/uploads/componentreview/excelsource3.jpg" alt="t2" width="397" height="186" /><p class="wp-caption-text">Fig 3: SQL in the Excel Source</p></div>
<p>Just remember to qualify the Sheet / Range Name with square brackets &#8211; e.g. [Sheet1$]- if hand writing code. Examples of each type of access is available in Data Flows 1 &#8211; 3 in the sample package.</p>
<h2>Summary</h2>
<p>Use the Excel Source and Excel Connection manager when reading from workbooks from Excel 2003 and prior. Be aware the driver behind it can behave unexpectedly at times, and it is worth paying attention to the &#8220;Usage Considerations&#8221; section of the MSDN documentation if you are having unexpected results.</p>
<p>Documentation for the Excel Source can be found here for <a title="SQL 2008 Excel Source Documentation on MSDN" href="http://msdn.microsoft.com/en-us/library/ms141683.aspx" target="_blank">2008</a> and here for <a title="SQL 2005 Excel Source Documentation on MSDN" href="http://msdn.microsoft.com/en-us/library/ms141683(SQL.90).aspx" target="_blank">2005</a>. Similarly Documentation for the Excel Connection Manager can be found here for <a title="SQL 2008 Excel Connection Manager Documentation on MSDN" href="http://msdn.microsoft.com/en-us/library/ms186848.aspx" target="_blank">2008</a> and here for <a title="SQL 2005 Excel Connection Manager Documentation on MSDN" href="http://msdn.microsoft.com/en-us/library/ms139836(SQL.90).aspx" target="_blank">2005</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bimonkey.com/2009/05/the-excel-source-and-connection-manager-the-basics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kilimanjaro, Projects Gemini and Madison Webcast</title>
		<link>http://www.bimonkey.com/2009/05/kilimanjaro-projects-gemini-and-madison-webcast/</link>
		<comments>http://www.bimonkey.com/2009/05/kilimanjaro-projects-gemini-and-madison-webcast/#comments</comments>
		<pubDate>Sat, 09 May 2009 05:06:25 +0000</pubDate>
		<dc:creator>BI Monkey</dc:creator>
				<category><![CDATA[Microsoft BI]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Analysis Services]]></category>
		<category><![CDATA[Excel]]></category>
		<category><![CDATA[Kilimanjaro]]></category>
		<category><![CDATA[Project Gemini]]></category>
		<category><![CDATA[Project Madison]]></category>

		<guid isPermaLink="false">http://www.bimonkey.com/?p=134</guid>
		<description><![CDATA[For those who haven&#8217;t seen much of Project Gemini but have heard the buzz, this TechNet Webcast: An Early look at SQL Server ‘Kilimanjaro’ and project ‘Madison’ &#8211; will give you a good insight. It also has some features on reusable Reporting Services components which look very impressive and info on Project Madison, which provides [...]]]></description>
			<content:encoded><![CDATA[<p>For those who haven&#8217;t seen much of Project Gemini but have heard the buzz, this <span><span>TechNet</span></span> <span><span>Webcast</span></span>: <a title="TechNet Webcast: An Early look at SQL Server ‘Kilimanjaro’ and project ‘Madison’ (Level 100)" href="http://msevents.microsoft.com/CUI/WebCastEventDetails.aspx?EventID=1032413071&amp;EventCategory=5&amp;culture=en-US&amp;CountryCode=US">An Early look at SQL Server ‘Kilimanjaro’ and project ‘Madison’</a> &#8211; will give you a good insight. It also has some features on reusable Reporting Services components which look very impressive and info on Project Madison, which provides scalability features. Registration as usual is a pain, and forget trying to use the site using any browser other than IE &#8211; I wish Microsoft would make their content easier to access.</p>
<p>Anyway, onto the <span><span>webcast</span></span> &#8211; about the 1st quarter of the <span><span>webcast</span></span> is the usual generic <span><span>roadmap</span></span> blurb, but then the presenter gets into the real meat of Gemini &#8211; an Excel based &#8216;in memory&#8217; analysis tool that allows joining between entities without having to know about such things, <span><span>superfast</span></span> analytics &#8211; pivoting, calculation, charts etc. and then being able to publish to <span><span>Sharepoint</span></span>. From an OLAP analysis point of view, the Pivot Tables also has slicers (effctively table wide filters) displayed in the spreadsheet as well, and it would be good if that made it into Pivot Tables generally in the next release of Office. It looks like an incredible tool and very easy to use &#8211; and may be a powerful step towards the realisation of the &#8216;BI for the masses&#8217; vision. The presenter did let slip one weakness though &#8211; much has been made of the 100 million rows of data demo &#8211; but that data still has to be loaded into memory first and will still take significant time. I also suspect that how successful Gemini will be is going to depend on how much it will rely on good data structures being in place in an organisation to support it. The Data Warehouse is going to remain the core part of  any succesful BI delivery.</p>
<p>The next component of interest was the reusable Reporting Services components &#8211; there is the concept of a library of components that can be built &#8211; e.g. standard charts, logos, gauges etc &#8211; and then dropped into any report, either by a developer or a user in Report Builder 2.0.  What really grabbed my attention is that these components are version aware &#8211; i.e. if the library version of the component is updated then if you reopen the report in design mode it will let you know and give you the option to update. Again this points to &#8216;BI for the masses&#8217; as you can have developers create some great components which any user can then drop in to their home grown reports. Plus as any developer knows, there&#8217;s a lot of repetition and any options for code re-use are always appreciated.</p>
<p>Finally, Project Madison was covered &#8211; and seems more about scalability up to multi-terabyte warehouses. It was a bit infrastructure focused for me so most of it passed me by, but clearly Microsoft are stepping up to try and address the market perception that they can&#8217;t scale.</p>
<p>Anyway, this all will be dropped in late 2010 as Kilimanjaro &#8211; an interim release of SQL Server.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bimonkey.com/2009/05/kilimanjaro-projects-gemini-and-madison-webcast/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft&#8217;s secret forecasting tool &#8211; the Office Suite</title>
		<link>http://www.bimonkey.com/2009/04/microsofts-secret-forecasting-tool-the-office-suite/</link>
		<comments>http://www.bimonkey.com/2009/04/microsofts-secret-forecasting-tool-the-office-suite/#comments</comments>
		<pubDate>Thu, 16 Apr 2009 23:51:32 +0000</pubDate>
		<dc:creator>BI Monkey</dc:creator>
				<category><![CDATA[Microsoft BI]]></category>
		<category><![CDATA[Access]]></category>
		<category><![CDATA[Analysis Services]]></category>
		<category><![CDATA[Data Mining]]></category>
		<category><![CDATA[Excel]]></category>
		<category><![CDATA[Office Suite]]></category>
		<category><![CDATA[Project Gemini]]></category>

		<guid isPermaLink="false">http://www.bimonkey.com/?p=98</guid>
		<description><![CDATA[Last night I attended an IAPA presentation on basic forecasting concepts and the tools used, presented by the ever interesting Eugene Dubossarsky (of Presciient, an analytics consultancy).  I will skip over the forecasting content as for the Microsoft BI community, the interesting part is which tool he used for most basic forecasting activities. It was [...]]]></description>
			<content:encoded><![CDATA[<p>Last night I attended an <a title="Institute of Analytics Professionals of Australia" href="http://www.iapa.org.au" target="_blank">IAPA</a> presentation on basic forecasting concepts and the tools used, presented by the ever interesting Eugene Dubossarsky (of <a title="Presciient is an independent consulting company that provides advisory and analytical services to businesses and government agencies" href="http://presciient.com/" target="_blank">Presciient</a>, an analytics consultancy).  I will skip over the forecasting content as for the <a title="Microsoft Business Intelligence" href="http://www.microsoft.com/BI/" target="_blank">Microsoft BI</a> community, the interesting part is which tool he used for most basic forecasting activities. It was <a title="Microsoft Excel" href="http://office.microsoft.com/excel">Excel</a>. Then, when he needed to do more advanced work, he used &#8211;  <a title="Microsoft Excel" href="http://office.microsoft.com/excel">Excel</a>. Only when he needed to do trickier stuff with larger amounts of data did he pull in a more heavyweight tool &#8211; <a title="Microsoft Access" href="http://office.microsoft.com/access">Access</a>.</p>
<p>That&#8217;s right &#8211; the office suite covers the majority of forecaster&#8217;s needs. <a title="SQL Server 2008 Overview, data platform, store data" href="http://www.microsoft.com/SQL/default.mspx">SQL Server</a> and <a title="Analysis Services" href="http://www.microsoft.com/sqlserver/2008/en/us/Analysis-Services.aspx">Analysis Services</a> didn&#8217;t get a look in until the really heavyweight analytics processes began. For his purposes however, Eugene much prefers <a title="The R Project for Statistical Computing" href="http://www.r-project.org/" target="_blank">R</a>, an open source stats program that is free, very powerful and now a serious competitor to <a title="SAS | Business Intelligence Software and Predictive Analytics" href="http://www.sas.com/" target="_blank">SAS </a>- much to their annoyance. Microsoft are rumoured to be talking to the people behind R, and an acquisition would make sense for both sides &#8211; R is not user friendly, which Microsoft could provide help with &#8211; and adding the capabilities of R would allow Microsoft to take a slug at SAS&#8217;s BI market.</p>
<p>So, this shows that most users <strong>still </strong>aren&#8217;t fully aware of, let alone using Excel&#8217;s capabilites &#8211; otherwise they wouldn&#8217;t be paying analytics consultants to to use it for them. Microsoft are always pushing Excel further, so now i&#8217;ll cover two features of Excel that the power users may not be aware of. It&#8217;s easy to forget sometimes that the 2007 Office suite wasn&#8217;t just a new, pretty interface &#8211; it also added huge BI capabilities.</p>
<p><strong>The Data Mining Add-In for Excel</strong> (download for SQL Server <a title="SQL Server 2008 Data Mining Add-In for Excel 2007" href="http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;FamilyID=896a493a-2502-4795-94ae-e00632ba6de7">2008</a> or <a title="SQL Server 2005 Data Mining Add-In for Excel 2007" href="http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;FamilyID=7c76e8df-8674-4c3b-a99b-55b17f3c4c51">2005</a>)</p>
<p>This Add-In allows you to leverage the <a title="Microsoft SQL Server 2008: Data Mining" href="http://www.microsoft.com/sqlserver/2008/en/us/data-mining.aspx" target="_blank">Data Mining</a> capabilities of Analysis Services through Excel. It allows you to use Excel as the front end for creating and working with Data Mining models that exist on your server. However what really makes it interesting for Excel users is that it allows you to perform Data Mining <em>on your spreadsheet data</em>.</p>
<p>There is a Virtual Lab <a title="MSDN Virtual Lab: Using the Microsoft SQL Server 2005 Data Mining Add-Ins for the 2007 Microsoft Office System" href="http://msevents.microsoft.com/CUI/WebCastEventDetails.aspx?culture=en-US&amp;EventID=1032346458&amp;EventCategory=3" target="_blank">here</a> explaining and demonstrating their use.</p>
<p><strong>Project Gemini</strong></p>
<p>This feature is slated for the next release of Excel, and is an in-memory tool for analysing large amounts of data in an OLAP style, but without all the fiddly data modelling normally required. It is a clear slug at other players in the in-Memory market, such as QlikTech. The models created will also be able to be ported back to SSAS with minimum effort as well. For more details read <a title="Project Gemini — Microsoft’s Brilliant OLAP Trojan Horse" href="http://www.olapreport.com/Comment_Gemini.htm">this commentary</a> from the OLAP Report.</p>
<p>Microsoft has one of the most powerful BI Tools in the world in Excel, users just need to be made aware!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bimonkey.com/2009/04/microsofts-secret-forecasting-tool-the-office-suite/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
