<?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</title>
	<atom:link href="http://www.bimonkey.com/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>Thu, 03 May 2012 01:27:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>Insert an Image into a SQL Server table</title>
		<link>http://www.bimonkey.com/2012/05/insert-an-image-into-a-sql-server-table/</link>
		<comments>http://www.bimonkey.com/2012/05/insert-an-image-into-a-sql-server-table/#comments</comments>
		<pubDate>Thu, 03 May 2012 01:27:49 +0000</pubDate>
		<dc:creator>BI Monkey</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[T-SQL]]></category>

		<guid isPermaLink="false">http://www.bimonkey.com/?p=1523</guid>
		<description><![CDATA[Need to store an image into a SQL Server table? Easy. First make sure you have a varbinary(max) column to store it. Then do something along these lines: UPDATE YourTable SET ImageColumn= ( SELECT * FROM OPENROWSET (BULK &#8216;C:\Temp\arms4.jpg&#8217;, SINGLE_BLOB) AS a) WHERE FilterColumn = &#8216;Filter Value&#8217;]]></description>
			<content:encoded><![CDATA[<p>Need to store an image into a SQL Server table? Easy. First make sure you have a <strong>varbinary(max)</strong> column to store it. Then do something along these lines:</p>
<blockquote><p><span style="color: #ff00ff;">UPDATE</span> <span style="color: #339966;">YourTable</span></p>
<p><span style="color: #0000ff;">SET</span> <span style="color: #339966;">ImageColumn</span>= ( <span style="color: #0000ff;">SELECT</span> * <span style="color: #0000ff;">FROM OPENROWSET</span> (<span style="color: #0000ff;">BULK</span><span style="color: #ff0000;"> &#8216;C:\Temp\arms4.jpg&#8217;</span>, <span style="color: #0000ff;">SINGLE</span>_BLOB) <span style="color: #0000ff;">AS</span> <span style="color: #339966;">a</span>)</p>
<p><span style="color: #0000ff;">WHERE</span> <span style="color: #339966;">FilterColumn</span> = <span style="color: #ff0000;">&#8216;Filter Value&#8217;</span></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.bimonkey.com/2012/05/insert-an-image-into-a-sql-server-table/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Build your own SQL 2012 Demo Machine &#8211; Part 7 &#8211; Performance Tweaks</title>
		<link>http://www.bimonkey.com/2012/04/build-your-own-sql-2012-demo-machine-part-7-performance-tweaks/</link>
		<comments>http://www.bimonkey.com/2012/04/build-your-own-sql-2012-demo-machine-part-7-performance-tweaks/#comments</comments>
		<pubDate>Thu, 26 Apr 2012 11:19:59 +0000</pubDate>
		<dc:creator>BI Monkey</dc:creator>
				<category><![CDATA[Microsoft BI]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Demo Machine]]></category>

		<guid isPermaLink="false">http://www.bimonkey.com/?p=1399</guid>
		<description><![CDATA[Step 8: Tweak Windows Server 2008R2 In the final  (optional) part we&#8217;ll apply some performance tweaks from BlackViper, just to lighten the VM and make it run a bit more smoothly. TAKE A BACKUP NOW! You can break your VM doing this so snapshot, backup &#8211; whatever you prefer &#8211; but do it. Now. Disable [...]]]></description>
			<content:encoded><![CDATA[<h2>Step 8: Tweak Windows Server 2008R2</h2>
<p>In the final  (optional) part we&#8217;ll apply some performance tweaks from <a title="BlackViper's Windows Server 2008R2 Service Configurations" href="http://www.blackviper.com/service-configurations/black-vipers-windows-server-2008-r2-service-configurations/">BlackViper</a>, just to lighten the VM and make it run a bit more smoothly.</p>
<p>TAKE A BACKUP NOW! You can break your VM doing this so snapshot, backup &#8211; whatever you prefer &#8211; but do it. Now.</p>
<p>Disable the following services:</p>
<ul>
<li>Diagnostic Policy Service</li>
<li>Diagnostic Policy Host</li>
<li>Diagnostic System Host</li>
<li>IP Helper</li>
<li>Power</li>
<li>Print Spooler</li>
<li>Problem Reports and Solutions Control Panel Support</li>
<li>Remote Procedure Call (RPC) Locator</li>
<li>Remote Registry</li>
<li>Smart Card</li>
<li>Smart Card Removal Policy</li>
<li>Windows Font Cache Service</li>
<li>Windows Remote Management (WS-Management)</li>
</ul>
<p>Then Restart your machine. You are now done and can start adding content to your Demo machine and exploring SQL2012 features!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bimonkey.com/2012/04/build-your-own-sql-2012-demo-machine-part-7-performance-tweaks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Build your own SQL 2012 Demo Machine &#8211; Part 6 &#8211; Office Components</title>
		<link>http://www.bimonkey.com/2012/04/build-your-own-sql-2012-demo-machine-part-6-office-components/</link>
		<comments>http://www.bimonkey.com/2012/04/build-your-own-sql-2012-demo-machine-part-6-office-components/#comments</comments>
		<pubDate>Thu, 26 Apr 2012 11:19:46 +0000</pubDate>
		<dc:creator>BI Monkey</dc:creator>
				<category><![CDATA[Microsoft BI]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Demo Machine]]></category>

		<guid isPermaLink="false">http://www.bimonkey.com/?p=1380</guid>
		<description><![CDATA[Step 7: Install Office Components The final part is to install Office &#8211; specifically Excel &#8211; and the key Add-Ins that you will need for demo purposes. Important:  We want to install 64-bit Office to leverage PowerPivot in Excel properly. So don&#8217;t use the default Setup option, but navigate to the x64 folder on the [...]]]></description>
			<content:encoded><![CDATA[<h2>Step 7: Install Office Components</h2>
<p>The final part is to install Office &#8211; specifically Excel &#8211; and the key Add-Ins that you will need for demo purposes.</p>
<p>Important:  We want to install 64-bit Office to leverage PowerPivot in Excel properly. So don&#8217;t use the default Setup option, but navigate to the x64 folder on the installation media and run that version of setup.</p>
<p>1. Run 64 Bit Office setup and get the Product Key screen:</p>
<div id="attachment_1382" class="wp-caption alignnone" style="width: 628px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_600.png"><img class="size-full wp-image-1382 " title="Fig 7.1: Product Key" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_600.png" alt="Fig 7.1: Product Key" width="618" height="349" /></a><p class="wp-caption-text">Fig 7.1: Product Key</p></div>
<p>2. Enter your key</p>
<p>3. Click Continue for the Licence Terms dialog. Accept the licence terms</p>
<p>4. Click Continue. This will bring you to the Installation Type screen:</p>
<div id="attachment_1383" class="wp-caption alignnone" style="width: 625px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_601.png"><img class="size-full wp-image-1383 " title="Fig 7.2: Installation Type" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_601.png" alt="Fig 7.2: Installation Type" width="615" height="386" /></a><p class="wp-caption-text">Fig 7.2: Installation Type</p></div>
<p>We only want certain components so choose &#8220;Customize&#8221;, which gives the Installation Options dialog:</p>
<div id="attachment_1386" class="wp-caption alignnone" style="width: 626px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_6021.png"><img class="size-full wp-image-1386 " title="Fig 7.3: Installation Options" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_6021.png" alt="Fig 7.3: Installation Options" width="616" height="501" /></a><p class="wp-caption-text">Fig 7.3: Installation Options</p></div>
<p>5. Follow the settings shown above to remove the following components:</p>
<ul>
<li>Access</li>
<li>InfoPath</li>
<li>OneNote</li>
<li>Outlook</li>
<li>Publisher</li>
<li>Word</li>
</ul>
<p>You can be flexible with the above &#8211; for example I&#8217;ve left in PowerPoint as it&#8217;s often easier to demo the slide decks from within the VM during demos &#8211; but the lighter the install the better. Enter User Information if you want.</p>
<p><strong>Important Check</strong>: If you see an additional tab in the dialog in Fig 6.3 called &#8220;Platform&#8221; you are installing 32-bit &#8211; cancel and start again, installing the 64 bit version as described at the start.</p>
<p>6. Once configured, click &#8220;Install Now&#8221;. It&#8217;s time for another progress bar and a meal, this one takes a while:</p>
<div id="attachment_1389" class="wp-caption alignnone" style="width: 627px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_603.png"><img class="size-full wp-image-1389 " title="Fig 7.4: Installation Progress" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_603.png" alt="Fig 7.4: Installation Progress" width="617" height="392" /></a><p class="wp-caption-text">Fig 7.4: Installation Progress</p></div>
<p>Eventually you will get the completion screen:</p>
<div id="attachment_1390" class="wp-caption alignnone" style="width: 626px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_604.png"><img class="size-full wp-image-1390 " title="Fig 7.5: Completion" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_604.png" alt="Fig 7.5: Completion" width="616" height="500" /></a><p class="wp-caption-text">Fig 7.5: Completion</p></div>
<p>7. Click close.</p>
<p>8. Restart the VM, run Windows Update, Install any updates and Restart again for good measure.</p>
<p>9. Install the PowerPivot add-in. Run the x64 Installer:</p>
<div id="attachment_1393" class="wp-caption alignnone" style="width: 515px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_605.png"><img class="size-full wp-image-1393 " title="Fig 7.6: PowerPivot Excel AddIn Installer" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_605.png" alt="Fig 7.6: PowerPivot Excel AddIn Installer" width="505" height="380" /></a><p class="wp-caption-text">Fig 7.6: PowerPivot Excel AddIn Installer</p></div>
<p>10. Click Next for the Licence Terms screen. Accept the licence terms.</p>
<p>12. Click Next then enter your details on the Registration Information screen</p>
<p>13. Click Next for the confirmation screen</p>
<p>14. Click Install. Enjoy the progress bar:</p>
<div id="attachment_1394" class="wp-caption alignnone" style="width: 515px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_606.png"><img class="size-full wp-image-1394 " title="Fig 7.7: PowerPivot Excel AddIn Installer" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_606.png" alt="Fig 7.7: PowerPivot Excel AddIn Installer" width="505" height="381" /></a><p class="wp-caption-text">Fig 7.7: PowerPivot Excel AddIn Installer</p></div>
<p>15. Once complete, click Finish.</p>
<p>16. Install the Data Mining Add In:</p>
<div id="attachment_1395" class="wp-caption alignnone" style="width: 514px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_607.png"><img class="size-full wp-image-1395 " title="Fig 7.8: Data Mining for Excel AddIn" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_607.png" alt="Fig 7.8: Data Mining for Excel AddIn" width="504" height="381" /></a><p class="wp-caption-text">Fig 7.8: Data Mining for Excel AddIn</p></div>
<p>18. Click Next for the Licence terms screen. Accept the licence terms.</p>
<p>19. Click next to get to the Feature Selection:</p>
<div id="attachment_1396" class="wp-caption alignnone" style="width: 514px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_608.png"><img class="size-full wp-image-1396 " title="Fig 7.9: Data Mining for Excel AddIn Feature Selection" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_608.png" alt="Fig 7.9: Data Mining for Excel AddIn Feature Selection" width="504" height="398" /></a><p class="wp-caption-text">Fig 7.9: Data Mining for Excel AddIn Feature Selection</p></div>
<p>In a change from the default, select the Data Mining Client for Excel.</p>
<p>20. Click Next for the COnfirmation Screen.</p>
<p>21. Click Install at the next screen.</p>
<p>22. Click Finish once completed.</p>
<p>And that&#8217;s it! You have a complete demo machine. Optionally you can do some further tweaks for performance or just get stuck in. If you haven&#8217;t been religiously taking snapshots, now is a very good time to take one and baseline your VM.</p>
<p>Optionally, you can now move on to <a title="Build your own SQL 2012 Demo Machine - Part 7 - Performance Tweaks" href="http://www.bimonkey.com/?p=1399">Part 7 &#8211; Performance Tweaks</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bimonkey.com/2012/04/build-your-own-sql-2012-demo-machine-part-6-office-components/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Build your own SQL 2012 Demo Machine &#8211; Part 5 &#8211; SharePoint &amp; PowerPivot</title>
		<link>http://www.bimonkey.com/2012/04/build-your-own-sql-2012-demo-machine-part-5-sharepoint-powerpivot/</link>
		<comments>http://www.bimonkey.com/2012/04/build-your-own-sql-2012-demo-machine-part-5-sharepoint-powerpivot/#comments</comments>
		<pubDate>Thu, 26 Apr 2012 11:19:18 +0000</pubDate>
		<dc:creator>BI Monkey</dc:creator>
				<category><![CDATA[Microsoft BI]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Demo Machine]]></category>

		<guid isPermaLink="false">http://www.bimonkey.com/?p=1342</guid>
		<description><![CDATA[Step 6: Install SharePoint and PowerPivot for SharePoint So, now for another couple of meaty installs. First of all, SharePoint. Note this must be Enterprise Edition otherwise the PowerPivot components won&#8217;t work. 1. First up we need to run the PreRequisiteInstaller that can be found in the root of the Installation Media directory: This uses [...]]]></description>
			<content:encoded><![CDATA[<h2>Step 6: Install SharePoint and PowerPivot for SharePoint</h2>
<p>So, now for another couple of meaty installs. First of all, SharePoint. Note this must be Enterprise Edition otherwise the PowerPivot components won&#8217;t work.</p>
<p>1. First up we need to run the PreRequisiteInstaller that can be found in the root of the Installation Media directory:</p>
<div id="attachment_1344" class="wp-caption alignnone" style="width: 699px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_500.png"><img class="size-full wp-image-1344 " title="Fig 6.1: Prerequisite Installer" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_500.png" alt="Fig 6.1: Prerequisite Installer" width="689" height="72" /></a><p class="wp-caption-text">Fig 6.1: Prerequisite Installer</p></div>
<p>This uses an Internet connection so make sure yours is up and running before proceeding. Double-click to get it running. It will present you with the SharePoint 2010 Products Preparation Tool dialog.</p>
<div id="attachment_1345" class="wp-caption alignnone" style="width: 692px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_501.png"><img class="size-full wp-image-1345 " title="Fig 6.2: SharePoint 2010 Products Preparation tool" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_501.png" alt="Fig 6.2: SharePoint 2010 Products Preparation tool" width="682" height="510" /></a><p class="wp-caption-text">Fig 6.2: SharePoint 2010 Products Preparation tool</p></div>
<p>2. Click Next, Accent the license terms on the next screen and click Next, then enjoy the progress bar:</p>
<div id="attachment_1346" class="wp-caption alignnone" style="width: 690px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_502.png"><img class="size-full wp-image-1346 " title="Fig 6.3: SharePoint Products Preparation Tool" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_502.png" alt="Fig 6.3: SharePoint Products Preparation Tool" width="680" height="298" /></a><p class="wp-caption-text">Fig 6.3: SharePoint Products Preparation Tool</p></div>
<p>This is another &#8220;cup of tea&#8221; step, so off you go. When done, you will be presented with this dialog:</p>
<div id="attachment_1349" class="wp-caption alignnone" style="width: 688px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_503.png"><img class="size-full wp-image-1349 " title="Fig 6.4: SharePoint 2010 Products Preparation tool" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_503.png" alt="Fig 6.4: SharePoint 2010 Products Preparation tool" width="678" height="509" /></a><p class="wp-caption-text">Fig 6.4: SharePoint 2010 Products Preparation tool</p></div>
<p>3. Click Finish.</p>
<p>4. Run Windows Update, install whatever it finds and then restart before we get on to installing SharePoint.</p>
<p>5. First up in installing SharePoint is entering your product key:</p>
<div id="attachment_1351" class="wp-caption alignnone" style="width: 626px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_504.png"><img class="size-full wp-image-1351 " title="Fig 6.5: SharePoint Product Key" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_504.png" alt="Fig 6.5: SharePoint Product Key" width="616" height="337" /></a><p class="wp-caption-text">Fig 6.5: SharePoint Product Key</p></div>
<p>6. Enter your key and click continue. At the next screen accept the licence terms and click continue. The next screen is the File Location screen:</p>
<div id="attachment_1352" class="wp-caption alignnone" style="width: 626px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_505.png"><img class="size-full wp-image-1352 " title="Fig 6.6: File Locations" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_505.png" alt="Fig 6.6: File Locations" width="616" height="501" /></a><p class="wp-caption-text">Fig 6.6: File Locations</p></div>
<p>7. Accept the defaults and click &#8220;Install Now&#8221;. Enjoy the progress bar &#8211; go and make a light meal or something, this one takes a while.</p>
<div id="attachment_1354" class="wp-caption alignnone" style="width: 625px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_506.png"><img class="size-full wp-image-1354 " title="Fig 6.7: Install Progress" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_506.png" alt="Fig 6.7: Install Progress" width="615" height="349" /></a><p class="wp-caption-text">Fig 6.7: Install Progress</p></div>
<p>When it&#8217;s complete, you&#8217;ll get the option to run the configuration wizard:</p>
<div id="attachment_1356" class="wp-caption alignnone" style="width: 625px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_507.png"><img class="size-full wp-image-1356  " title="Fig 6.8: SharePoint Configuration Wizard" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_507.png" alt="Fig 6.8: SharePoint Configuration Wizard" width="615" height="500" /></a><p class="wp-caption-text">Fig 6.8: SharePoint Configuration Wizard</p></div>
<p>8. <strong>Very Important</strong>: <strong>Uncheck this option</strong> and click &#8220;Close&#8221;. Restart the VM.</p>
<p>9. Next we are going to install Service Pack 1. Copy it locally on to your VM and run it (if you are doing this using Oracle VirtualBox, do this via the Shared Folders feature).</p>
<div id="attachment_1358" class="wp-caption alignnone" style="width: 778px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_508.png"><img class="size-full wp-image-1358 " title="Fig 6.9: SharePoint 2010 Service Pack 1" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_508.png" alt="Fig 6.9: SharePoint 2010 Service Pack 1" width="768" height="476" /></a><p class="wp-caption-text">Fig 6.9: SharePoint 2010 Service Pack 1</p></div>
<p>10. Accept the licence terms and click Continue. Watch the various progress bars:</p>
<div id="attachment_1360" class="wp-caption alignnone" style="width: 515px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_509.png"><img class="size-full wp-image-1360 " title="Fig 6.10: SharePoint 2010 Service Pack 1" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_509.png" alt="Fig 6.10: SharePoint 2010 Service Pack 1" width="505" height="165" /></a><p class="wp-caption-text">Fig 6.10: SharePoint 2010 Service Pack 1</p></div>
<p>11. Once complete, click OK and restart the VM.</p>
<p>Now it&#8217;s time to install SQL Server for the 3rd and final time! Note the source of all of below is from <a title="Install PowerPivot for SharePoint" href="http://msdn.microsoft.com/en-us/library/ee210708.aspx">this MSDN Article</a>.</p>
<p>12. Run though setup to install a new stand-alone installation as show in part 4 right up until we get to the <strong>Setup Role</strong> dialog.</p>
<div id="attachment_1362" class="wp-caption alignnone" style="width: 828px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_510.png"><img class="size-full wp-image-1362 " title="Fig 6.11: Setup Role" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_510.png" alt="Fig 6.11: Setup Role" width="818" height="389" /></a><p class="wp-caption-text">Fig 6.11: Setup Role</p></div>
<p>13. Here we choose to install &#8220;SQL Server PowerPivot for SharePoint&#8221; &#8211; and we also Check the &#8220;Add SQL Server Database Relational Engine Services to this installation&#8221;.</p>
<p>14. Click Next to get the Feature Selection dialog:</p>
<div id="attachment_1363" class="wp-caption alignnone" style="width: 830px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_511.png"><img class="size-full wp-image-1363 " title="Fig 6.12: Feature Selection" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_511.png" alt="Fig 6.12: Feature Selection" width="820" height="616" /></a><p class="wp-caption-text">Fig 6.12: Feature Selection</p></div>
<p>15. You have no options here so just click Next.</p>
<p>16. Click Next at Installation rules and move on to the Instance Configuration screen:</p>
<div id="attachment_1366" class="wp-caption alignnone" style="width: 829px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_512.png"><img class="size-full wp-image-1366 " title="Fig 6.13: Instance Configuration" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_512.png" alt="Fig 6.13: Instance Configuration" width="819" height="616" /></a><p class="wp-caption-text">Fig 6.13: Instance Configuration</p></div>
<p>An Instance called POWERPIVOT is suggested &#8211; nothing else needs to be done</p>
<p>17.  Click Next for the Disk Space requirements screen</p>
<p>18. Click Next and get to the Server Configuration dialog:</p>
<div id="attachment_1367" class="wp-caption alignnone" style="width: 829px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_513.png"><img class=" wp-image-1367 " title="Fig 6.14: Server Configuration" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_513.png" alt="Fig 6.14: Server Configuration" width="819" height="339" /></a><p class="wp-caption-text">Fig 6.14: Server Configuration</p></div>
<p>19. As in previous Installs we need to set the Account Name and Password of the SSAS instance to that of Administrator.</p>
<p>20. Click Next. Repeat the steps for installation as for the first instance:</p>
<ul>
<li>Database Engine Configuration &#8211; Add Current User as SQL Administrator</li>
<li>Analysis Services Configuration &#8211; Add Current User as SSAS Administrator</li>
<li>Click Next at Error Reporting</li>
<li>Click Next at Installation Configuration Rules</li>
<li>Click Install at Ready to Install</li>
<li>Go make another cup of tea.</li>
<li>When it&#8217;s complete &#8211; click Complete!</li>
</ul>
<p>Once it&#8217;s complete, it&#8217;s time to configure SharePoint.</p>
<p>21. Close the SQL Server Installation window.</p>
<p>22. Open the PowerPivot Configuration Tool from Start Menu &gt; All Programs &gt; SQL Server 2012 &gt; Configuration Tools:</p>
<div id="attachment_1371" class="wp-caption alignnone" style="width: 419px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_514.png"><img class="size-full wp-image-1371 " title="Fig 6.15: PowerPivot Configuration Tool" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_514.png" alt="Fig 6.15: PowerPivot Configuration Tool" width="409" height="458" /></a><p class="wp-caption-text">Fig 6.15: PowerPivot Configuration Tool</p></div>
<p>This launches the tool:</p>
<div id="attachment_1372" class="wp-caption alignnone" style="width: 668px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_515.png"><img class="size-full wp-image-1372 " title="Fig 6.16: PowerPivot Configuration Tool" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_515.png" alt="Fig 6.16: PowerPivot Configuration Tool" width="658" height="271" /></a><p class="wp-caption-text">Fig 6.16: PowerPivot Configuration Tool</p></div>
<p>23. As it&#8217;s the first run, there&#8217;s only one option &#8211; click OK. <strong>Expand the window to full size</strong> &#8211; sometimes it appears blank as if it&#8217;s hung, but all is OK once expanded. Here we have the full screen of the tool:</p>
<div id="attachment_1374" class="wp-caption alignnone" style="width: 1035px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_516.png"><img class="size-full wp-image-1374 " title="Fig 6.17: PowerPivot Configuration Tool" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_516.png" alt="Fig 6.17: PowerPivot Configuration Tool" width="1025" height="718" /></a><p class="wp-caption-text">Fig 6.17: PowerPivot Configuration Tool</p></div>
<p>24. Enter the Account Password and decide on a Passphrase &#8211; this is only needed for adding servers to the farm, which doesn&#8217;t matter in this case. Note down the port number for the SharePoint Central Administration Port &#8211; it&#8217;s randomly generated so won&#8217;t be the same for each install.</p>
<p>25. Click &#8220;Register SQL Server Analysis Services (PowerPivot) on Local Server&#8221; on the left hand side:</p>
<div id="attachment_1375" class="wp-caption alignnone" style="width: 1038px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_517.png"><img class="size-full wp-image-1375 " title="Fig 6.18: PowerPivot Configuration Tool" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_517.png" alt="Fig 6.18: PowerPivot Configuration Tool" width="1028" height="387" /></a><p class="wp-caption-text">Fig 6.18: PowerPivot Configuration Tool</p></div>
<p>26. Enter the Administrator Account password in the text box on the right.</p>
<p>27. Click Validate, and if everything passes click Run. You will see the following warning:</p>
<div id="attachment_1376" class="wp-caption alignnone" style="width: 411px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_518.png"><img class="size-full wp-image-1376 " title="Fig 6.19: PowerPivot Configuration Tool" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_518.png" alt="Fig 6.19: PowerPivot Configuration Tool" width="401" height="152" /></a><p class="wp-caption-text">Fig 6.19: PowerPivot Configuration Tool</p></div>
<p>This is fine.</p>
<p>28. Click Yes. Then wander off for another cup of tea. You will eventually get this:</p>
<div id="attachment_1378" class="wp-caption alignnone" style="width: 427px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_519.png"><img class="size-full wp-image-1378 " title="Fig 6.20: PowerPivot Configuration Tool" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_519.png" alt="Fig 6.20: PowerPivot Configuration Tool" width="417" height="144" /></a><p class="wp-caption-text">Fig 6.20: PowerPivot Configuration Tool</p></div>
<p>29. Click OK, and then Exit on the Main  PowerPivot configuration tool menu.</p>
<p>30. Restart so we can move on to the final part &#8211; enabling the components in SharePoint (<a title="Install Reporting Services SharePoint Mode as a Single Server Farm" href="http://msdn.microsoft.com/en-us/library/gg492276%28v=SQL.110%29.aspx">as per this MSDN article</a>)</p>
<p>First we need to Install and Start the Reporting Services SharePoint service, which we do by running a handful of Powershell commands.</p>
<p>31. From the Start button, choose All Programs &gt; Microsoft SharePoint 2010 Products and right click on SharePoint2010 Management Shell and Run as Administrator:</p>
<div id="attachment_1404" class="wp-caption alignnone" style="width: 415px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_520.png"><img class="size-full wp-image-1404 " title="Fig 6.21: SharePoint 2010 Management Shell" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_520.png" alt="Fig 6.21: SharePoint 2010 Management Shell" width="405" height="501" /></a><p class="wp-caption-text">Fig 6.21: SharePoint 2010 Management Shell</p></div>
<p>This will bring up the shell, which is a PowerShell command prompt:</p>
<div id="attachment_1405" class="wp-caption alignnone" style="width: 676px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_521.png"><img class="size-full wp-image-1405 " title="Fig 6.22: SharePoint 2010 Management Shell" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_521.png" alt="Fig 6.22: SharePoint 2010 Management Shell" width="666" height="129" /></a><p class="wp-caption-text">Fig 6.22: SharePoint 2010 Management Shell</p></div>
<p>32. From the prompt run the following  commands:</p>
<ul>
<li>
<pre>Install-SPRSService</pre>
</li>
<li>
<pre>Install-SPRSServiceProxy</pre>
</li>
<li>
<div>
<div id="CodeSnippetContainerCode_df44f529-203c-42ad-95af-b729405426b9" dir="ltr">
<div>
<pre>get-spserviceinstance -all |where {$_.TypeName -like "SQL Server Reporting*"} | Start-SPServiceInstance</pre>
</div>
</div>
</div>
</li>
</ul>
<p>You won&#8217;t get much feedback from running those commands:</p>
<div id="attachment_1407" class="wp-caption alignnone" style="width: 679px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_522.png"><img class="size-full wp-image-1407 " title="Fig 6.23: SharePoint 2010 Management Shell" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_522.png" alt="Fig 6.23: SharePoint 2010 Management Shell" width="669" height="194" /></a><p class="wp-caption-text">Fig 6.23: SharePoint 2010 Management Shell</p></div>
<p>But don&#8217;t worry &#8211; stuff has happened.</p>
<p>Now, we need to create the Reporting Services Application in SharePoint.</p>
<p>33. From the Start button, choose All Programs &gt; Microsoft SharePoint 2010 Products and click on SharePoint Central Administration:</p>
<div id="attachment_1408" class="wp-caption alignnone" style="width: 416px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_523.png"><img class="size-full wp-image-1408 " title="Fig 6.24: SharePoint 2010 Central Administration" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_523.png" alt="Fig 6.24: SharePoint 2010 Central Administration" width="406" height="501" /></a><p class="wp-caption-text">Fig 6.24: SharePoint 2010 Central Administration</p></div>
<p>It will take a little while to start up, so don&#8217;t panic if it just looks like it&#8217;s taking forever to load. If it throws an error just hit F5 to refresh &#8211; the services take a while to start up first time round. Eventually you will see this:</p>
<div id="attachment_1410" class="wp-caption alignnone" style="width: 738px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_524.png"><img class="size-full wp-image-1410 " title="Fig 6.25: SharePoint 2010 Central Administration" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_524.png" alt="Fig 6.25: SharePoint 2010 Central Administration" width="728" height="290" /></a><p class="wp-caption-text">Fig 6.25: SharePoint 2010 Central Administration</p></div>
<p>When we get to the page, first note that there is a warning about some critical issues &#8211; ignore these &#8211; as this is a Demo machine the issues raised don&#8217;t actually matter.</p>
<p>34. Under the &#8220;Application Management&#8221; group, click &#8220;Manage Service Applications&#8221;:</p>
<div id="attachment_1413" class="wp-caption alignnone" style="width: 319px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_5251.png"><img class="size-full wp-image-1413 " title="Fig 6.26: Create New Application" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_5251.png" alt="Fig 6.26: Create New Application" width="309" height="405" /></a><p class="wp-caption-text">Fig 6.26: Create New Application</p></div>
<p>35. In the Ribbon, click New and in the dropdown choose &#8220;SQL Server Reporting Services Service Application.&#8221;. This will bring up the &#8220;Create SQL Server Reporting Services Application&#8221; dialog:</p>
<div id="attachment_1415" class="wp-caption alignnone" style="width: 798px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_526.png"><img class="size-full wp-image-1415 " title="Fig 6.27: Create SQL Server Reporting Services Application" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_526.png" alt="Fig 6.27: Create SQL Server Reporting Services Application" width="788" height="413" /></a><p class="wp-caption-text">Fig 6.27: Create SQL Server Reporting Services Application</p></div>
<p>36. As shown above enter a Name for the Service Application. In the Application Pool Section choose &#8220;Create new application pool&#8221; (the default) and give it the same name as the Service Application. Scroll down to the next part of the dialog:</p>
<div id="attachment_1416" class="wp-caption alignnone" style="width: 797px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_527.png"><img class="size-full wp-image-1416 " title="Fig 6.28: Create SQL Server Reporting Services Application" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_527.png" alt="Fig 6.28: Create SQL Server Reporting Services Application" width="787" height="627" /></a><p class="wp-caption-text">Fig 6.28: Create SQL Server Reporting Services Application</p></div>
<p>37. Leave the Database server &amp; name as default, and leave Windows authentication selected. In the &#8220;Web Application Association&#8221; check the only available box. Then click OK and watch it spin:</p>
<div id="attachment_1418" class="wp-caption alignnone" style="width: 799px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_528.png"><img class="size-full wp-image-1418 " title="Fig 6.29: Create SQL Server Reporting Services Application" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_528.png" alt="Fig 6.29: Create SQL Server Reporting Services Application" width="789" height="244" /></a><p class="wp-caption-text">Fig 6.29: Create SQL Server Reporting Services Application</p></div>
<p>You will ultimately see this:</p>
<div id="attachment_1419" class="wp-caption alignnone" style="width: 797px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_529.png"><img class="size-full wp-image-1419 " title="Fig 6.30: Create SQL Server Reporting Services Application" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_529.png" alt="Fig 6.30: Create SQL Server Reporting Services Application" width="787" height="159" /></a><p class="wp-caption-text">Fig 6.30: Create SQL Server Reporting Services Application</p></div>
<p>If you want to Provision Subscriptions and Alerts, read this: http://msdn.microsoft.com/en-us/library/hh231725.aspx. I&#8217;m not doing it in this example, so just click OK to close the dialog.</p>
<p>The below section added <span style="color: #ff0000;">02 May 2012</span></p>
<p>38. Now for enabling Report Builder components and other goodies on your SharePoint site. This section is an extension of <a title="Add Report Server Content Types to a Library (Reporting Services in SharePoint Integrated Mode)" href="http://msdn.microsoft.com/en-us/library/bb326289.aspx">this MSDN article</a>. Go to the home page of your SharePoint page (not central admin) which should be found by browsing to http://localhost/ &#8211; or http://{your machine name}/. It may take a while to load but you should see this:</p>
<div id="attachment_1512" class="wp-caption alignnone" style="width: 590px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_530.png"><img class="size-full wp-image-1512" title="Fig 6.31: Your SharePoint BI Home Page" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_530.png" alt="Fig 6.31: Your SharePoint BI Home Page" width="580" height="523" /></a><p class="wp-caption-text">Fig 6.31: Your SharePoint BI Home Page</p></div>
<p>39. Click on the Shared Documents link in the left hand side navigation pane:</p>
<div id="attachment_1513" class="wp-caption alignnone" style="width: 823px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_531.png"><img class="size-full wp-image-1513" title="Fig 6.32: Your SharePoint BI site Shared Documents Page" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_531.png" alt="Fig 6.32: Your SharePoint BI site Shared Documents Page" width="813" height="246" /></a><p class="wp-caption-text">Fig 6.32: Your SharePoint BI site Shared Documents Page</p></div>
<p>40. Click on the Library Tab in the Ribbon:</p>
<div id="attachment_1514" class="wp-caption alignnone" style="width: 1030px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_532.png"><img class="size-full wp-image-1514" title="Fig 6.33: Shared Documents Library" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_532.png" alt="Fig 6.33: Shared Documents Library" width="1020" height="207" /></a><p class="wp-caption-text">Fig 6.33: Shared Documents Library</p></div>
<p>41. Click on the Library Settings button at the far right of the ribbon.</p>
<div id="attachment_1515" class="wp-caption alignnone" style="width: 455px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_533.png"><img class="size-full wp-image-1515" title="Fig 6.34: Library Settings" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_533.png" alt="Fig 6.34: Library Settings" width="445" height="463" /></a><p class="wp-caption-text">Fig 6.34: Library Settings</p></div>
<p>42. Under General settings, click on Advanced Settings.</p>
<div id="attachment_1516" class="wp-caption alignnone" style="width: 1012px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_534.png"><img class="size-full wp-image-1516" title="Fig 6.35: Library Settings - Advanced" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_534.png" alt="Fig 6.35: Library Settings - Advanced" width="1002" height="240" /></a><p class="wp-caption-text">Fig 6.35: Library Settings - Advanced</p></div>
<p>43. At the top change the option under &#8220;Content Types&#8221; for &#8220;Allow management of content types&#8221; to Yes.</p>
<p>44. Scroll to the bottom and click OK. You&#8217;ll return to the Library Settings:</p>
<div id="attachment_1518" class="wp-caption alignnone" style="width: 496px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_535.png"><img class="size-full wp-image-1518" title="Fig 6.36: Library Settings" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_535.png" alt="Fig 6.36: Library Settings" width="486" height="645" /></a><p class="wp-caption-text">Fig 6.36: Library Settings</p></div>
<p>45. At the bottom you will see an option under Content Types to &#8220;Add from existing site content types&#8221;. Click it.</p>
<p>46. You will be presented with the Content Types to add. Select everything under &#8220;SQL Server Reporting Services Content Types&#8221; and &#8220;Business Intelligence&#8221;.</p>
<div id="attachment_1519" class="wp-caption alignnone" style="width: 843px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_536.png"><img class="size-full wp-image-1519" title="Fig 6.37: SQL Server Reporting Services Content Types" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_536.png" alt="Fig 6.37: SQL Server Reporting Services Content Types" width="833" height="226" /></a><p class="wp-caption-text">Fig 6.37: SQL Server Reporting Services Content Types</p></div>
<div id="attachment_1520" class="wp-caption alignnone" style="width: 847px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_537.png"><img class="size-full wp-image-1520" title="Fig 6.38: Business Intelligence Content Types" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_537.png" alt="Fig 6.38: Business Intelligence Content Types" width="837" height="224" /></a><p class="wp-caption-text">Fig 6.38: Business Intelligence Content Types</p></div>
<p>47. Click OK. Now when you try to add a Document you can add Data Sources, and launch Report Builder by choosing a Report Builder Report document type.</p>
<p>48. Now, we can move on to <a title="Build your own SQL 2012 Demo Machine - Part 6 - Office Components" href="http://www.bimonkey.com/?p=1380">Build your own SQL 2012 Demo Machine &#8211; Part 6 &#8211; Office Components</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bimonkey.com/2012/04/build-your-own-sql-2012-demo-machine-part-5-sharepoint-powerpivot/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Build your own SQL 2012 Demo Machine &#8211; Part 4 &#8211; Installing SQL Server twice</title>
		<link>http://www.bimonkey.com/2012/04/build-your-own-sql-2012-demo-machine-part-4-installing-sql-server-twice/</link>
		<comments>http://www.bimonkey.com/2012/04/build-your-own-sql-2012-demo-machine-part-4-installing-sql-server-twice/#comments</comments>
		<pubDate>Thu, 26 Apr 2012 11:18:38 +0000</pubDate>
		<dc:creator>BI Monkey</dc:creator>
				<category><![CDATA[Data Quality Services]]></category>
		<category><![CDATA[Microsoft BI]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Demo Machine]]></category>

		<guid isPermaLink="false">http://www.bimonkey.com/?p=1294</guid>
		<description><![CDATA[Step 5: Install SQL Server 2012 twice We&#8217;ll have to run through this three times to install the different instances required, but two warm up ones are required before we get to SharePoint and PowerPivot for SharePoint. First of all we need to install everything for the default instance. 1. Run setup, choose installation and [...]]]></description>
			<content:encoded><![CDATA[<h2>Step 5: Install SQL Server 2012 twice</h2>
<p>We&#8217;ll have to run through this three times to install the different instances required, but two warm up ones are required before we get to SharePoint and PowerPivot for SharePoint. First of all we need to install everything for the default instance.</p>
<p>1. Run setup, choose installation and select New SQL Server stand alone installation.</p>
<div id="attachment_1295" class="wp-caption alignnone" style="width: 808px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_100.png"><img class="size-full wp-image-1295 " title="Fig 5.1: New SQL Server Installation" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_100.png" alt="Fig 5.1: New SQL Server Installation" width="798" height="346" /></a><p class="wp-caption-text">Fig 5.1: New SQL Server Installation</p></div>
<p>2. This will run through Setup Support Rules, after which you should see this:</p>
<div id="attachment_1296" class="wp-caption alignnone" style="width: 829px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_101.png"><img class="size-full wp-image-1296 " title="Fig 5.2: Setup Support Rules" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_101.png" alt="Fig 5.2: Setup Support Rules" width="819" height="615" /></a><p class="wp-caption-text">Fig 5.2: Setup Support Rules</p></div>
<p>3. Click on OK. Next you get the Product Key screen:</p>
<div id="attachment_1298" class="wp-caption alignnone" style="width: 866px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_102.png"><img class="size-full wp-image-1298 " title="Fig 5.3: Product Key Screen" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_102.png" alt="Fig 5.3: Product Key Screen" width="856" height="327" /></a><p class="wp-caption-text">Fig 5.3: Product Key Screen</p></div>
<p>4. Enter your Product Key (or choose Evaluation if appropriate) and click Next. The License Terms dialog comes up:</p>
<div id="attachment_1299" class="wp-caption alignnone" style="width: 546px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_103.png"><img class="size-full wp-image-1299 " title="Fig 5.4: License Terms" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_103.png" alt="Fig 5.4: License Terms" width="536" height="222" /></a><p class="wp-caption-text">Fig 5.4: License Terms</p></div>
<p>5. Accept the license terms, and Feature usage if you want to share. Then click Next. Some chugging will occur and you will then get the Setup Support Rules dialog pop up with a couple of warnings:</p>
<div id="attachment_1301" class="wp-caption alignnone" style="width: 829px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_104.png"><img class="size-full wp-image-1301 " title="Fig 5.5: Setup Support Rules Warnings" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_104.png" alt="Fig 5.5: Setup Support Rules Warnings" width="819" height="615" /></a><p class="wp-caption-text">Fig 5.5: Setup Support Rules Warnings</p></div>
<p>These warnings are</p>
<ul>
<li>It doesn&#8217;t like the fact you are installing SQL on a Domain Controller &#8211; nothing we can do about that</li>
<li>It doesn&#8217;t like the fact Windows Firewall is on &#8211; as we don&#8217;t plan remote access, we don&#8217;t care</li>
</ul>
<p>6. Click Next. Here we choose what we are going to install.</p>
<div id="attachment_1302" class="wp-caption alignnone" style="width: 828px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_105.png"><img class="size-full wp-image-1302 " title="Fig 5.6: Setup Role" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_105.png" alt="Fig 5.6: Setup Role" width="818" height="366" /></a><p class="wp-caption-text">Fig 5.6: Setup Role</p></div>
<p>7. Choose a SQL Server Feature Installation and click Next. This brings up the Feature Selection.</p>
<div id="attachment_1320" class="wp-caption alignnone" style="width: 858px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_1061.png"><img class="size-full wp-image-1320 " title="Fig 5.7: Feature Selection" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_1061.png" alt="Fig 5.7: Feature Selection" width="848" height="724" /></a><p class="wp-caption-text">Fig 5.7: Feature Selection</p></div>
<p>Click on select all, leaving the feature directory paths untouched.</p>
<p>8. Click Next. This will lead to the Installation Rules dialog</p>
<div id="attachment_1304" class="wp-caption alignnone" style="width: 829px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_107.png"><img class="size-full wp-image-1304 " title="Fig 5.8: Installation Rules" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_107.png" alt="Fig 5.8: Installation Rules" width="819" height="245" /></a><p class="wp-caption-text">Fig 5.8: Installation Rules</p></div>
<p>Everything should have passed.</p>
<p>9. Click Next. This brings us to Instance Configuration:</p>
<div id="attachment_1321" class="wp-caption alignnone" style="width: 832px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_1081.png"><img class="size-full wp-image-1321 " title="Fig 5.9: Instance Configuration" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_1081.png" alt="Fig 5.9: Instance Configuration" width="822" height="617" /></a><p class="wp-caption-text">Fig 5.9: Instance Configuration</p></div>
<p>We are going to install the Default instance, and leave all settings as is.</p>
<p>10. Click Next to bring up the Disk Space requirements dialog.</p>
<div id="attachment_1307" class="wp-caption alignnone" style="width: 829px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_1091.png"><img class="size-full wp-image-1307 " title="Fig 5.10: Disk Space Requirements" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_1091.png" alt="Fig 5.10: Disk Space Requirements" width="819" height="258" /></a><p class="wp-caption-text">Fig 5.10: Disk Space Requirements</p></div>
<p>Everything should be OK.</p>
<p>11. Click Next. The Server Configuration dialog comes up:</p>
<div id="attachment_1322" class="wp-caption alignnone" style="width: 830px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_1102.png"><img class="size-full wp-image-1322 " title="Fig 5.11: Server Configuration" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_1102.png" alt="Fig 5.11: Server Configuration" width="820" height="616" /></a><p class="wp-caption-text">Fig 5.11: Server Configuration</p></div>
<p>This will advise (if you try and move on) that the SSAS Account is invalid.</p>
<p>12. Click the dropdown in Account Name to browse for a new user.</p>
<div id="attachment_1311" class="wp-caption alignnone" style="width: 471px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_1111.png"><img class="size-full wp-image-1311 " title="Fig 5.12: Select User" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_1111.png" alt="Fig 5.12: Select User" width="461" height="247" /></a><p class="wp-caption-text">Fig 5.12: Select User</p></div>
<p>Type &#8220;admin&#8221; and click the &#8220;Check Names&#8221; button. This should validate the name and change it to &#8220;Administrator&#8221;. Then click OK. Enter the password in the dialog from Fig 5.11.</p>
<p>13. Click Next &#8211; we won&#8217;t be changing the default collation.</p>
<div id="attachment_1323" class="wp-caption alignnone" style="width: 829px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_1122.png"><img class="size-full wp-image-1323 " title="Fig 5.13: Database Engine Configuration" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_1122.png" alt="Fig 5.13: Database Engine Configuration" width="819" height="615" /></a><p class="wp-caption-text">Fig 5.13: Database Engine Configuration</p></div>
<p>We will only be using Windows Authentication mode, so leave that as per the default. Click the &#8220;Add Current User&#8221; button to make the Administrator the SQL Administrator. Change the Data Directories if you want to customise them &#8211; though there isn&#8217;t much need for a demo box &#8211; and leave Filestream turned off.</p>
<p>14. Click Next to bring up the Analysis Services configuration dialog.</p>
<div id="attachment_1324" class="wp-caption alignnone" style="width: 829px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_1131.png"><img class="size-full wp-image-1324 " title="Fig 5.14: Analysis Services Configuration" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_1131.png" alt="Fig 5.14: Analysis Services Configuration" width="819" height="614" /></a><p class="wp-caption-text">Fig 5.14: Analysis Services Configuration</p></div>
<p>We are going to install Multidimensional SSAS (i.e. old school OLAP). As before, click Add Current user to make the Administrator the SSAS Administrator. Configure the Data Directories if you want.</p>
<p>15. Click Next to get to Reporting Services configuration.</p>
<div id="attachment_1325" class="wp-caption alignnone" style="width: 829px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_1141.png"><img class="size-full wp-image-1325 " title="Fig 5.15: Reporting Services Configuration" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_1141.png" alt="Fig 5.15: Reporting Services Configuration" width="819" height="614" /></a><p class="wp-caption-text">Fig 5.15: Reporting Services Configuration</p></div>
<p>Here we will make a change to Reporting Services Native Mode, and switch it to Install Only.</p>
<p>16. Click Next for Error Reporting.</p>
<div id="attachment_1326" class="wp-caption alignnone" style="width: 832px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_1151.png"><img class="size-full wp-image-1326 " title="Fig 5.16: Error Reporting" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_1151.png" alt="Fig 5.16: Error Reporting" width="822" height="448" /></a><p class="wp-caption-text">Fig 5.16: Error Reporting</p></div>
<p>17. Click Next for the installation configuration rules. Expand by clicking on &#8220;Show Details&#8221;.</p>
<div id="attachment_1327" class="wp-caption alignnone" style="width: 830px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_116.png"><img class="size-full wp-image-1327 " title="Fig 5.17: Instance Configuration Rules" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_116.png" alt="Fig 5.17: Instance Configuration Rules" width="820" height="616" /></a><p class="wp-caption-text">Fig 5.17: Instance Configuration Rules</p></div>
<p>Everything should have passed.</p>
<p>18. Click Next to get to the Installation Confirmation screen</p>
<div id="attachment_1328" class="wp-caption alignnone" style="width: 829px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_117.png"><img class="size-full wp-image-1328 " title="Fig 5.18: Ready to Install" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_117.png" alt="Fig 5.18: Ready to Install" width="819" height="615" /></a><p class="wp-caption-text">Fig 5.18: Ready to Install</p></div>
<p>And we&#8217;re good to go!</p>
<p>19. Click Install and watch the Installation Progress Bar. At this point I&#8217;d advise doing something else &#8211; this can take an hour or two.</p>
<div id="attachment_1331" class="wp-caption alignnone" style="width: 828px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_118.png"><img class="size-full wp-image-1331 " title="Fig 5.19: Installation Complete" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_118.png" alt="Fig 5.19: Installation Complete" width="818" height="613" /></a><p class="wp-caption-text">Fig 5.19: Installation Complete</p></div>
<p>And, all going to plan, everything is done.</p>
<p>20. Click OK, Close the Setup dialog, then reboot the machine. If necessary install updates and restart again.</p>
<p>21. Now, for our 2nd Install of SQL Server &#8211; this time to get in the Tabular Mode Analysis Server. Run Setup again, and repeat all of the steps above (on the way you will go through the Product Updates check, just go through this and click Next) until you get to the Installation Type Screen:</p>
<div id="attachment_1333" class="wp-caption alignnone" style="width: 832px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_119.png"><img class="size-full wp-image-1333 " title="Fig 5.20: Installation Type" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_119.png" alt="Fig 5.20: Installation Type" width="822" height="616" /></a><p class="wp-caption-text">Fig 5.20: Installation Type</p></div>
<p>Here we are performing a new installation.</p>
<p>22. Click Next, Enter your product key again, accept licence terms, and then perform a SQL Server Feature installation (as in Fig 5.6).</p>
<p>23. Click Next to get to Feature Selection.</p>
<div id="attachment_1334" class="wp-caption alignnone" style="width: 831px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_120.png"><img class="size-full wp-image-1334 " title="Fig 5.21: Feature Selection" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_120.png" alt="Fig 5.21: Feature Selection" width="821" height="614" /></a><p class="wp-caption-text">Fig 5.21: Feature Selection</p></div>
<p>Check Analysis Services <strong>only</strong>.</p>
<p>24. Click Next. You&#8217;ll pass on to Instance Configuration:</p>
<div id="attachment_1336" class="wp-caption alignnone" style="width: 830px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_121.png"><img class="size-full wp-image-1336 " title="Fig 5.22: Instance Configuration" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_121.png" alt="Fig 5.22: Instance Configuration" width="820" height="469" /></a><p class="wp-caption-text">Fig 5.22: Instance Configuration</p></div>
<p>Now we Install a Named Instance. I&#8217;ve opted to call it TABULAR. Call it anything you like <span style="text-decoration: underline;">except</span> POWERPIVOT &#8211; that Instance will get created later for SharePoint integration. Then, click Next to get to Disk Space Requirements.</p>
<p>25. Click Next again to Server Configuration:</p>
<div id="attachment_1337" class="wp-caption alignnone" style="width: 830px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_122.png"><img class="size-full wp-image-1337 " title="Fig 5.23: Server Configuration" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_122.png" alt="Fig 5.23: Server Configuration" width="820" height="278" /></a><p class="wp-caption-text">Fig 5.23: Server Configuration</p></div>
<p>As in Figures 5.11 &amp; 5.12 we need to set the Service Account to Administrator and enter the password.</p>
<p>26. Click Next to get to Analysis Services configuration:</p>
<div id="attachment_1338" class="wp-caption alignnone" style="width: 829px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_123.png"><img class="size-full wp-image-1338 " title="Fig 5.24: Analysis Services Configuration" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_123.png" alt="Fig 5.24: Analysis Services Configuration" width="819" height="303" /></a><p class="wp-caption-text">Fig 5.24: Analysis Services Configuration</p></div>
<p>This time we are installing the Server in <strong>Tabular Mode, </strong>so change the default Server Configuration.  As before, make the Administrator the SSAS Administrator by clicking the &#8220;Add Current User&#8221; button.</p>
<p>27. Click Next. Run through all subsequent screens until you get to the Ready to Install dialog, then click Install, and go make another cup of tea. When Installation is complete, restart and get ready for the SharePoint install.</p>
<p><strong>Configuring Data Quality Services</strong><span style="color: #ff0000;"> (This section was added on 01 May)</span></p>
<p>28: Next we need to configure Data Quality Services by doing the <a title="Install Data Quality Services - Post Installation Tasks" href="http://msdn.microsoft.com/en-us/library/gg492277.aspx#PostInstallationTasks">Post Installation tasks</a>. As per <a title="Run DQSInstaller.exe to Complete Data Quality Server Installation" href="http://msdn.microsoft.com/en-us/library/hh231682.aspx">the MSDN Article</a>, locate DQSInstaller.exe under Start &gt; All Programs &gt; Microsoft SQL Server 2012 &gt; Data Quality Services &gt; Data Quality Server Installer:</p>
<div id="attachment_1502" class="wp-caption alignnone" style="width: 412px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_430.png"><img class="size-full wp-image-1502" title="Fig 5.25: Data Quality Server Installer" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_430.png" alt="Fig 5.25: Data Quality Server Installer" width="402" height="404" /></a><p class="wp-caption-text">Fig 5.25: Data Quality Server Installer</p></div>
<p>29: Click it to start execution. You will be presented with a command Prompt window asking for a Database Master Key.</p>
<div id="attachment_1503" class="wp-caption alignnone" style="width: 679px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_431.png"><img class="size-full wp-image-1503" title="Fig 5.26: Data Quality Server Installer - Database Master Key" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_431.png" alt="Fig 5.26: Data Quality Server Installer - Database Master Key" width="669" height="332" /></a><p class="wp-caption-text">Fig 5.26: Data Quality Server Installer - Database Master Key</p></div>
<p>30. Enter a suitable password (note it down!) and hit enter. Re-enter it to confirm and hit enter again. The process will run for a while. Until you get the completion message in the command prompt:</p>
<div id="attachment_1504" class="wp-caption alignnone" style="width: 678px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_432.png"><img class="size-full wp-image-1504" title="Fig 5.27: Data Quality Server Installer - Completion" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_432.png" alt="Fig 5.27: Data Quality Server Installer - Completion" width="668" height="330" /></a><p class="wp-caption-text">Fig 5.27: Data Quality Server Installer - Completion</p></div>
<p>31. Hit enter. The command window will close.</p>
<p>32. Launch SQL Server Management Studio and connect to the default Instance of SQL Server. Locate your Administrator Role under Security:</p>
<div id="attachment_1505" class="wp-caption alignnone" style="width: 361px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_433.png"><img class="size-full wp-image-1505" title="Fig 5.28: Server Security for Default Instance" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_433.png" alt="Fig 5.28: Server Security for Default Instance" width="351" height="401" /></a><p class="wp-caption-text">Fig 5.28: Server Security for Default Instance</p></div>
<p>33. Double click to launch  the Login Properties.</p>
<div id="attachment_1506" class="wp-caption alignnone" style="width: 714px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_434.png"><img class="size-full wp-image-1506" title="Fig 5.29: Login Properties" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_434.png" alt="Fig 5.29: Login Properties" width="704" height="633" /></a><p class="wp-caption-text">Fig 5.29: Login Properties</p></div>
<p>34. As indicated above, select the &#8220;User Mapping&#8221; tab.</p>
<p>35. Map the DQS_MAIN database</p>
<p>36: Check the dqs_administrator role.</p>
<p>37: Click OK, then close SQL Server Management Studio. <strong>Data Quality Services is now configured.</strong></p>
<p>38. Move on to <a title="Build your own SQL 2012 Demo Machine - Part 5 - SharePoint &amp; PowerPivot" href="http://www.bimonkey.com/?p=1342">Build your own SQL 2012 Demo Machine &#8211; Part 5 &#8211; SharePoint &amp; PowerPivot</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bimonkey.com/2012/04/build-your-own-sql-2012-demo-machine-part-4-installing-sql-server-twice/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Build your own SQL 2012 Demo Machine &#8211; Part 3 &#8211; Installing and Configuring Windows Server 2008R2</title>
		<link>http://www.bimonkey.com/2012/04/build-your-own-sql-2012-demo-machine-part-3-installing-and-configuring-windows-server-2008r2/</link>
		<comments>http://www.bimonkey.com/2012/04/build-your-own-sql-2012-demo-machine-part-3-installing-and-configuring-windows-server-2008r2/#comments</comments>
		<pubDate>Thu, 26 Apr 2012 11:18:16 +0000</pubDate>
		<dc:creator>BI Monkey</dc:creator>
				<category><![CDATA[Microsoft BI]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Demo Machine]]></category>

		<guid isPermaLink="false">http://www.bimonkey.com/?p=1237</guid>
		<description><![CDATA[Step 4: Install Windows Server 2008R2 If you are following from Step 2, Windows Server 2008R2 should be installing, and you just need to wait for thsi first dialog to appear. 1: Set your locale options The only thing I&#8217;ve changed from default is to change my time and currency to Australia, as that&#8217;s where [...]]]></description>
			<content:encoded><![CDATA[<h2>Step 4: Install Windows Server 2008R2</h2>
<p>If you are following from Step 2, Windows Server 2008R2 should be installing, and you just need to wait for thsi first dialog to appear.</p>
<p>1: Set your locale options</p>
<div class="wp-caption alignnone" style="width: 630px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_15.png"><img title="Fig 4.1: Set your locale preferences" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_15.png" alt="Fig 4.1: Set your locale preferences" width="620" height="459" /></a><p class="wp-caption-text">Fig 4.1: Set your locale preferences</p></div>
<p>The only thing I&#8217;ve changed from default is to change my time and currency to Australia, as that&#8217;s where I am. Then I clicked Next.</p>
<p>2: Install &#8211; go on &#8211; click it!</p>
<div class="wp-caption alignnone" style="width: 629px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_16.png"><img class=" " title="Fig 4.2: Install Now" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_16.png" alt="Fig 4.2: Install Now" width="619" height="459" /></a><p class="wp-caption-text">Fig 4.2: Install Now</p></div>
<p>&nbsp;</p>
<p>3: Choose the version to Install. We want <strong>Enterprise (Full Installation)</strong>:</p>
<div class="wp-caption alignnone" style="width: 650px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_17.png"><img title="Fig 4.3: Choose Install Version" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_17.png" alt="Fig 4.3: Choose Install Version" width="640" height="477" /></a><p class="wp-caption-text">Fig 4.3: Choose Install Version</p></div>
<p>Click Next, then on the next screen accept the licensing terms.</p>
<p>4: Do a Custom Installation:</p>
<div class="wp-caption alignnone" style="width: 644px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_18.png"><img title="Fig 4.4: Choose Installation Type" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_18.png" alt="Fig 4.4: Choose Installation Type" width="634" height="478" /></a><p class="wp-caption-text">Fig 4.4: Choose Installation Type</p></div>
<p>I&#8217;ve no idea why there isn&#8217;t simply a &#8220;New Install&#8221; option.</p>
<p>5: Specify Install location &#8211; use the fixed disk we created earlier</p>
<div class="wp-caption alignnone" style="width: 646px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_19.png"><img title="Fig 4.5: Choose Install Location" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_19.png" alt="Fig 4.5: Choose Install Location" width="636" height="478" /></a><p class="wp-caption-text">Fig 4.5: Choose Install Location</p></div>
<p>Click Next and go have a break. This bit takes a while. Eventually&#8230;</p>
<p>6: Set the Administrator password:</p>
<div class="wp-caption alignnone" style="width: 518px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_20.png"><img title="Fig 4.6: Change the Administrator Password" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_20.png" alt="Fig 4.6: Change the Administrator Password" width="508" height="237" /></a><p class="wp-caption-text">Fig 4.6: Change the Administrator Password</p></div>
<div class="wp-caption alignnone" style="width: 354px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_21.png"><img title="Fig 4.7: Change the Administrator Password" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_21.png" alt="Fig 4.7: Change the Administrator Password" width="344" height="467" /></a><p class="wp-caption-text">Fig 4.7: Change the Administrator Password</p></div>
<div class="wp-caption alignnone" style="width: 333px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_22.png"><img title="Fig 4.8: Change the Administrator Password" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_22.png" alt="Fig 4.8: Change the Administrator Password" width="323" height="215" /></a><p class="wp-caption-text">Fig 4.8: Change the Administrator Password</p></div>
<p>7: The Server will now log you in and you can start configuring. At this point I start recommending taking snapshots of the VM &#8211; save points in case you need to roll back and restart from a certain point. From the Oracle VirtualBox manager, click on the snapshot button to view available snapshots:</p>
<div id="attachment_1244" class="wp-caption alignnone" style="width: 793px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_23.png"><img class="size-full wp-image-1244 " title="Fig 4.9: View available snapshots" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_23.png" alt="Fig 4.9: View available snapshots" width="783" height="113" /></a><p class="wp-caption-text">Fig 4.9: View available snapshots</p></div>
<p>8. Click on the photo icon to take a snapshot</p>
<div id="attachment_1245" class="wp-caption alignnone" style="width: 793px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_24.png"><img class="size-full wp-image-1245  " title="Fig 4.10: Take a snapshot" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_24.png" alt="Fig 4.10: Take a snapshot" width="783" height="184" /></a><p class="wp-caption-text">Fig 4.10: Take a snapshot</p></div>
<p>Name it</p>
<p>9. Click OK. From now on any further activity will be building on this snapshot.</p>
<div id="attachment_1246" class="wp-caption alignnone" style="width: 325px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_25.png"><img class="size-full wp-image-1246 " title="Fig 4.11: Name the snapshot" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_25.png" alt="Fig 4.11: Name the snapshot" width="315" height="278" /></a><p class="wp-caption-text">Fig 4.11: Name the snapshot</p></div>
<p>&nbsp;</p>
<p>10: Back to configuring Windows. There&#8217;s a bundle of things to do, so we&#8217;ll do them in batches. From the Initial Configuration screen, we need to activate Windows and Automatic Updates:</p>
<div id="attachment_1248" class="wp-caption alignnone" style="width: 811px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_26.png"><img class="size-full wp-image-1248 " title="Fig 4.12: Initial Configuration Tasks" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_26.png" alt="Fig 4.12: Initial Configuration Tasks" width="801" height="450" /></a><p class="wp-caption-text">Fig 4.12: Initial Configuration Tasks</p></div>
<p>Activation is straightforward &#8211; just click on the link and enter your product key.</p>
<p>For Updates, just turn on automatic updates. It&#8217;ll go through a check and install a bunch of updates. This can be a bit slow and painful but will lead to a more stable build. You may get a few prompts, just OK everything you want in the build, and there inevitably will be restarts involved. It will prompt for the installation of <strong>Internet Explorer 9</strong> &#8211; OK this &#8211; it is supported for PowerView and SSRS. Once you have downloaded, installed and restarted enough times that Windows Update goes silent, we can move on to the next stage.</p>
<p>11: Turn your server into a <strong>Domain Controller</strong>. This is required for SharePoint 2010&#8242;s BI features. These steps are as per <a title="Build a Windows Server 2008 R2 Domain Controller " href="http://d3planet.com/rtfb/2009/11/09/build-a-windows-server-2008-r2-domain-controller/" target="_blank">this guide</a> from Clement DeLarge, but repeated for your benefit below.</p>
<p>12. From the Server Manager click &#8220;Roles&#8221; then &#8220;Add Roles&#8221;</p>
<div id="attachment_1256" class="wp-caption alignnone" style="width: 812px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_27.png"><img class="size-full wp-image-1256 " title="Fig 4.13: Add a Server Role" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_27.png" alt="Fig 4.13: Add a Server Role" width="802" height="307" /></a><p class="wp-caption-text">Fig 4.13: Add a Server Role</p></div>
<p>A &#8220;Before You Begin&#8221; dialog will pop up, just click next as there&#8217;s no actions here.</p>
<p>13. Next choose to add the &#8220;Active Directory Domain Services&#8221; Role:</p>
<div id="attachment_1257" class="wp-caption alignnone" style="width: 789px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_28.png"><img class="size-full wp-image-1257 " title="Fig 4.14: Add the Active Directory Domain Services Role" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_28.png" alt="Fig 4.14: Add the Active Directory Domain Services Role" width="779" height="296" /></a><p class="wp-caption-text">Fig 4.14: Add the Active Directory Domain Services Role</p></div>
<p>This will launch a prompt to add the required .Net Framework 3.5.1 Required features (this is also needed by SharePoint and SQL on their own) -</p>
<p>14. Click on the &#8220;Add Required Features&#8221; button.</p>
<div id="attachment_1258" class="wp-caption alignnone" style="width: 632px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_29.png"><img class="size-full wp-image-1258 " title="Fig 4.15 Add Required Feature .Net Framework 3.5.1" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_29.png" alt="Fig 4.15 Add Required Feature .Net Framework 3.5.1" width="622" height="270" /></a><p class="wp-caption-text">Fig 4.15 Add Required Feature .Net Framework 3.5.1</p></div>
<p>This window will then close and you&#8217;ll be back to the screen shown in Fig 4.14 but with the checkbox for Active Directory Domain Services (AD DS) now checked.</p>
<p>15. Click Next. This brings you to the AD DS overview screen. Read it if you want</p>
<p>16. Click Next. This is the installation confirmation screen.</p>
<div id="attachment_1260" class="wp-caption alignnone" style="width: 788px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_31.png"><img class="size-full wp-image-1260 " title="Fig 4.16: Installation Confirmation Screen" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_31.png" alt="Fig 4.16: Installation Confirmation Screen" width="778" height="559" /></a><p class="wp-caption-text">Fig 4.16: Installation Confirmation Screen</p></div>
<p>17. Choose Install, and the installation process will run through. Once completed you will get an option to close where the Install button was in the above screenshot.</p>
<p>18.Click it. This will then return you to the Server Manager, which will indicate an issue with AD DS.</p>
<div id="attachment_1261" class="wp-caption alignnone" style="width: 804px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_32.png"><img class="size-full wp-image-1261 " title="Fig 4.17: Active Directory Domain Services Warning" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_32.png" alt="Fig 4.17: Active Directory Domain Services Warning" width="794" height="293" /></a><p class="wp-caption-text">Fig 4.17: Active Directory Domain Services Warning</p></div>
<p>19. Click the warning. It will lead you to the summary screen which warns you you are not yet running AD DS and you need to run a Wizard.</p>
<div id="attachment_1263" class="wp-caption alignnone" style="width: 807px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_33.png"><img class="size-full wp-image-1263 " title="Fig 4.18: Active Directory Domain Services Warning" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_33.png" alt="Fig 4.18: Active Directory Domain Services Warning" width="797" height="273" /></a><p class="wp-caption-text">Fig 4.18: Active Directory Domain Services Warning</p></div>
<p>20. Click the link to launch the wizard.</p>
<div id="attachment_1265" class="wp-caption alignnone" style="width: 513px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_34.png"><img class="size-full wp-image-1265 " title="Fig 4.19: Active Directory Domain Services Installation Wizard" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_34.png" alt="Fig 4.19: Active Directory Domain Services Installation Wizard" width="503" height="476" /></a><p class="wp-caption-text">Fig 4.19: Active Directory Domain Services Installation Wizard</p></div>
<p>21. Click Next. A warning screen comes up about compatibility with other OSes which we can ignore as this is a standalone machine. Click next to choose the .Deployment Configuration.</p>
<div id="attachment_1266" class="wp-caption alignnone" style="width: 513px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_35.png"><img class="size-full wp-image-1266 " title="Fig 4.20: AD DS Deployment Configuration" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_35.png" alt="Fig 4.20: AD DS Deployment Configuration" width="503" height="477" /></a><p class="wp-caption-text">Fig 4.20: AD DS Deployment Configuration</p></div>
<p>22. This is a new, standalone machine so choose &#8220;Create a new domain in a new forest&#8221;</p>
<p>23. Click next. This will lead you to to name your new forest.</p>
<div id="attachment_1268" class="wp-caption alignnone" style="width: 510px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_361.png"><img class="size-full wp-image-1268 " title="Fig 4.21: Name the Forest Root Domain" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_361.png" alt="Fig 4.21: Name the Forest Root Domain" width="500" height="216" /></a><p class="wp-caption-text">Fig 4.21: Name the Forest Root Domain</p></div>
<p>I&#8217;ve been fairly unimaginative here and just called it SQL2012.net (it needs to be something.something). Feel free to call it whatever you like, then</p>
<p>24. Click Next. It will then run through some checks to make sure the name is OK.</p>
<p>The next dialog is to select the Forest Functional Level.</p>
<div id="attachment_1269" class="wp-caption alignnone" style="width: 512px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_37.png"><img class="size-full wp-image-1269 " title="Fig 4.22: Select the Forest Functional Level" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_37.png" alt="Fig 4.22: Select the Forest Functional Level" width="502" height="380" /></a><p class="wp-caption-text">Fig 4.22: Select the Forest Functional Level</p></div>
<p>25. Once again, as this is a Standalone machine we can not worry about backward compatibility and select &#8220;Windows Server 2008R2&#8243;</p>
<p>26. Click Next. Again it will run through some checks then bring you to the next dialog, &#8220;Additional Domain Controller Options&#8221;.</p>
<div id="attachment_1270" class="wp-caption alignnone" style="width: 511px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_38.png"><img class="size-full wp-image-1270 " title="Fig 4.23: Additional Domain Controller Options" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_38.png" alt="Fig 4.23: Additional Domain Controller Options" width="501" height="189" /></a><p class="wp-caption-text">Fig 4.23: Additional Domain Controller Options</p></div>
<p>Leave the DNS Server checkbox ticked and</p>
<p>27. Click Next. You may now see a warning about Static IP Assignment.</p>
<div id="attachment_1271" class="wp-caption alignnone" style="width: 568px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_39.png"><img class="size-full wp-image-1271 " title="Fig 4.24: Static IP warning" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_39.png" alt="Fig 4.24: Static IP warning" width="558" height="291" /></a><p class="wp-caption-text">Fig 4.24: Static IP warning</p></div>
<p>28. Choose No &#8211; It only really matters on a real Domain Controller, but static IP&#8217;s will help avoid any networking confusion down the line.The dialog will close.</p>
<p>29. Go to the Control Panel, and choose Network and Internet, then Network and Sharing Center, and finally Change Adapter Settings, which will lead you to a display of available adapters (there should be only one):</p>
<div id="attachment_1282" class="wp-caption alignnone" style="width: 473px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_39a.png"><img class="size-full wp-image-1282 " title="Fig 4.25: Network Adapters" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_39a.png" alt="Fig 4.25: Network Adapters" width="463" height="173" /></a><p class="wp-caption-text">Fig 4.25: Network Adapters</p></div>
<p>Right click and choose properties to get the following dialog:</p>
<div id="attachment_1283" class="wp-caption alignnone" style="width: 375px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_39b.png"><img class="size-full wp-image-1283 " title="Fig 4.26: Network Adapter Properties" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_39b.png" alt="Fig 4.26: Network Adapter Properties" width="365" height="427" /></a><p class="wp-caption-text">Fig 4.26: Network Adapter Properties</p></div>
<p>30. In the above dialog, uncheck &#8220;Internet Protocol Version 6 (TCP/IPv6).</p>
<p>31. As indicated above, select &#8220;Internet Protocol Version 4 (TCP/IPv4)&#8221; and click the Properties button to get a dialog like this:</p>
<div id="attachment_1285" class="wp-caption alignnone" style="width: 412px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_39c.png"><img class="size-full wp-image-1285 " title="Fig 4.27: IPv4 Properties" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_39c.png" alt="Fig 4.27: IPv4 Properties" width="402" height="450" /></a><p class="wp-caption-text">Fig 4.27: IPv4 Properties</p></div>
<p><strong>DO NOT COPY THESE NUMBERS</strong>. They are machine specific and can be found by the following:</p>
<p>32. Run the command prompt and enter the command ipconfig /all. Find the active Ethernet adapter:</p>
<div id="attachment_1286" class="wp-caption alignnone" style="width: 676px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_39d.png"><img class="size-full wp-image-1286 " title="Fig 4.28: Guest Ethernet Adapter IP properties" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_39d.png" alt="Fig 4.28: Guest Ethernet Adapter IP properties" width="666" height="331" /></a><p class="wp-caption-text">Fig 4.28: Guest Ethernet Adapter IP properties</p></div>
<p>Not taking my word as gospel , you then enter the following based on the default gateway as AAA.BBB.CCC.DDD:</p>
<p>IP Address = AAA.BBB.CCC.(DDD+20)</p>
<p>Subnet Mask: 255.255.255.0</p>
<p>Default Gateway: AAA.BBB.CCC.DDD</p>
<p>DNS Servers are a little trickier. I found that I needed to set them to the DNS servers of the host.</p>
<p>33. So I had to run ipconfig on the host and use those DNS servers addresses:</p>
<div id="attachment_1292" class="wp-caption alignnone" style="width: 541px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_39e.png"><img class="size-full wp-image-1292 " title="Fig 4.29: Host IP Configuration" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_39e.png" alt="Fig 4.29: Host IP Configuration" width="531" height="249" /></a><p class="wp-caption-text">Fig 4.29: Host IP Configuration</p></div>
<p>I then filled the Preferred DNS Server and the Alternate DNS Server with the numbers in the yellow boxes. Note that whenever your machine changes network, you will need to change these numbers. And sometimes, on corporate networks, you just won&#8217;t be able to get a working internet connection. VirtualBox is a bit flaky in this regard, it appears.</p>
<p>If none of this works, switch back to the default &#8220;Obtain Automatically&#8221; options&#8230; and phone a friend. No, another friend&#8230; I don&#8217;t do networks and would never have worked this out without the help of a colleague.</p>
<p>34. Click OK on the dialog in Fig 4.27, and Close on the dialog in Fig 4.26.</p>
<p>Return to the dialog in Fig 4.23 and click Next.</p>
<p>It will run through some checks again, then throw up this warning:</p>
<div id="attachment_1272" class="wp-caption alignnone" style="width: 422px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_40.png"><img class="size-full wp-image-1272 " title="Fig 4.30: Parent Zone Warning" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_40.png" alt="Fig 4.30: Parent Zone Warning" width="412" height="227" /></a><p class="wp-caption-text">Fig 4.30: Parent Zone Warning</p></div>
<p>35. Click Yes to continue, there us no Parent Zone for us to worry about. The next dialog specifies default storage paths.</p>
<div id="attachment_1273" class="wp-caption alignnone" style="width: 509px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_41.png"><img class="size-full wp-image-1273 " title="Fig 4.31: Storage Paths" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_41.png" alt="Fig 4.31: Storage Paths" width="499" height="353" /></a><p class="wp-caption-text">Fig 4.31: Storage Paths</p></div>
<p>36. Leave these untouched and click Next. You now need to set a Restore Mode password.</p>
<div id="attachment_1274" class="wp-caption alignnone" style="width: 509px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_42.png"><img class="size-full wp-image-1274 " title="Fig 4.32: Restore Mode Administrator Password" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_42.png" alt="Fig 4.32: Restore Mode Administrator Password" width="499" height="282" /></a><p class="wp-caption-text">Fig 4.32: Restore Mode Administrator Password</p></div>
<p>37. I just reused my Administrator password as this isn&#8217;t a production machine. Finally you get to a summary screen. Review your settings.</p>
<div id="attachment_1275" class="wp-caption alignnone" style="width: 511px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_43.png"><img class="size-full wp-image-1275 " title="Fig 4.33: AD DS Summary Screen" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_43.png" alt="Fig 4.33: AD DS Summary Screen" width="501" height="392" /></a><p class="wp-caption-text">Fig 4.33: AD DS Summary Screen</p></div>
<p>38. Click Next and the configuration process begins. Once it&#8217;s completed you&#8217;ll see this screen:</p>
<div id="attachment_1277" class="wp-caption alignnone" style="width: 511px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_44.png"><img class="size-full wp-image-1277 " title="Fig 4.34: AD DS Wizard Finish screen" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_44.png" alt="Fig 4.34: AD DS Wizard Finish screen" width="501" height="290" /></a><p class="wp-caption-text">Fig 4.34: AD DS Wizard Finish screen</p></div>
<p>39. Restart, install any new updates and restart again if required.</p>
<p>Some browser tweaking needs to be done &#8211; we need to disable Internet Explorer Enhanced Security Configuration so we can actually use the browser, and install Silverlight so PowerView will work.</p>
<p>40. From Server Manager, locate the Security Information section and find the link to configure IE ESC:</p>
<div id="attachment_1279" class="wp-caption alignnone" style="width: 808px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_45.png"><img class="size-full wp-image-1279 " title="Fig 4.35: Configure Internet Explorer Enhanced Security Configuration" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_45.png" alt="Fig 4.35: Configure Internet Explorer Enhanced Security Configuration" width="798" height="343" /></a><p class="wp-caption-text">Fig 4.35: Configure Internet Explorer Enhanced Security Configuration</p></div>
<p>41. Click it and this dialog pops up:</p>
<div id="attachment_1280" class="wp-caption alignnone" style="width: 431px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_46.png"><img class="size-full wp-image-1280 " title="Fig 4.36: Configure Internet Explorer Enhanced Security Configuration" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_46.png" alt="Fig 4.36: Configure Internet Explorer Enhanced Security Configuration" width="421" height="441" /></a><p class="wp-caption-text">Fig 4.36: Configure Internet Explorer Enhanced Security Configuration</p></div>
<p>42. Turn IE ESC off for Administrators and Users and click OK.</p>
<p>43. Next, Install Silverlight. Open up IE and go here: <a title="Get Silverlight" href="http://www.microsoft.com/getsilverlight/Get-Started/Install/Default.aspx">http://www.microsoft.com/getsilverlight/Get-Started/Install/Default.aspx</a>. Click the big install button and follow instructions to install it.</p>
<p>44. Finally, run Windows Update, download and install any updates found and restart. Then our OS setup is complete and we are ready for the first 2 installations of SQL Server!</p>
<p>45. <a title="Build your own SQL 2012 Demo Machine - Part 4 - Installing SQL Server twice" href="http://www.bimonkey.com/?p=1294" target="_blank">Move on to Build your own SQL 2012 Demo Machine &#8211; Part 4 &#8211; Installing SQL Server twice</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bimonkey.com/2012/04/build-your-own-sql-2012-demo-machine-part-3-installing-and-configuring-windows-server-2008r2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Build your own SQL 2012 Demo Machine &#8211; Part 2 &#8211; Setting up your Virtual Machine</title>
		<link>http://www.bimonkey.com/2012/04/build-your-own-sql-2012-demo-machine-part-2-setting-up-your-virtual-machine/</link>
		<comments>http://www.bimonkey.com/2012/04/build-your-own-sql-2012-demo-machine-part-2-setting-up-your-virtual-machine/#comments</comments>
		<pubDate>Thu, 26 Apr 2012 11:17:37 +0000</pubDate>
		<dc:creator>BI Monkey</dc:creator>
				<category><![CDATA[Microsoft BI]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Demo Machine]]></category>

		<guid isPermaLink="false">http://www.bimonkey.com/?p=1239</guid>
		<description><![CDATA[Step 3: Build your base VM First thing is to set up the Virtual Machine itself. If you haven&#8217;t, go install Oracle VM VirtualBox now, and start it up. 1: Set your Default Machine location Folder. From the File menu, select Preferences and enter the correct path in the Default Machine Folder dialog: This will [...]]]></description>
			<content:encoded><![CDATA[<h2>Step 3: Build your base VM</h2>
<p>First thing is to set up the Virtual Machine itself. If you haven&#8217;t, go install Oracle VM VirtualBox now, and start it up.</p>
<p>1: Set your Default Machine location Folder. From the File menu, select Preferences and enter the correct path in the <strong>Default Machine Folder</strong> dialog:</p>
<div class="wp-caption alignnone" style="width: 488px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_0.png"><img title="Fig 3.1: Set your default machine location folders" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_0.png" alt="Fig 3.1: Set your default machine location folders" width="478" height="185" /></a><p class="wp-caption-text">Fig 3.1: Set your default machine location folders</p></div>
<p>This will help prevent the mistake I&#8217;ve made a few times of accidentally building a VM where there is no room <img src='http://www.bimonkey.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> <strong><br />
</strong></p>
<p>2: Create a new VM by clicking on the &#8220;New&#8221; button on the control ribbon:</p>
<div class="wp-caption alignnone" style="width: 259px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/03/build_a_SQL2012_demo_VM_os_1.png"><img title="Fig 3.2: Create a new VM" src="http://www.bimonkey.com/wp-content/uploads/2012/03/build_a_SQL2012_demo_VM_os_1.png" alt="Fig 3.2: Create a new VM" width="249" height="118" /></a><p class="wp-caption-text">Fig 3.2: Create a new VM</p></div>
<p>3: Click next on the wizard page that appears.</p>
<p>4: Name your VM, Choose the Operating System &#8220;Microsoft Windows&#8221; and version &#8220;Windows 2008 (64 Bit)&#8221;, and click next.</p>
<div class="wp-caption alignnone" style="width: 610px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/03/build_a_SQL2012_demo_VM_os_21.png"><img title="Fig 3.3: Choose the VM Guest Operating System" src="http://www.bimonkey.com/wp-content/uploads/2012/03/build_a_SQL2012_demo_VM_os_21.png" alt="Fig 3.3: Choose the VM Guest Operating System" width="600" height="307" /></a><p class="wp-caption-text">Fig 3.3: Choose the VM Guest Operating System</p></div>
<p>5: Give it plenty of memory &#8211; at least 4GB, then click Next.</p>
<p>Anything less that 4GB probably won&#8217;t work. Below I&#8217;ve allocated about 6GB, leaving 2GB for the host OS, which should be enough. Just don&#8217;t expect to be able to do much multitasking while using this demo machine.</p>
<div class="wp-caption alignnone" style="width: 602px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/03/build_a_SQL2012_demo_VM_os_3.png"><img title="Fig 3.4: Configure the VM's RAM allocation" src="http://www.bimonkey.com/wp-content/uploads/2012/03/build_a_SQL2012_demo_VM_os_3.png" alt="Fig 3.4: Configure the VM's RAM allocation" width="592" height="210" /></a><p class="wp-caption-text">Fig 3.4: Configure the VM&#39;s RAM allocation</p></div>
<p>6: Create a new Virtual Hard Disk for your VM to live on. Leave the default options of Start-Up Disk checked, and the Create New Hard Disk radio button selected.</p>
<div class="wp-caption alignnone" style="width: 601px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/03/build_a_SQL2012_demo_VM_os_4.png"><img title="Fig 3.5: Create a Virtual Hard Disk" src="http://www.bimonkey.com/wp-content/uploads/2012/03/build_a_SQL2012_demo_VM_os_4.png" alt="Fig 3.5: Create a Virtual Hard Disk" width="591" height="283" /></a><p class="wp-caption-text">Fig 3.5: Create a Virtual Hard Disk</p></div>
<p>7: Select the format of the Virtual Disk as VHD, then click Next.</p>
<p>I&#8217;ve selected VHD as it makes it more portable. You can use the default VDI if you never plan on using any other virtualisation software.</p>
<div class="wp-caption alignnone" style="width: 643px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/03/build_a_SQL2012_demo_VM_os_5.png"><img title="Fig 3.6: Select the Virtual Hard Disk Format" src="http://www.bimonkey.com/wp-content/uploads/2012/03/build_a_SQL2012_demo_VM_os_5.png" alt="Fig 3.6: Select the Virtual Hard Disk Format" width="633" height="307" /></a><p class="wp-caption-text">Fig 3.6: Select the Virtual Hard Disk Format</p></div>
<p>8: Select the storage type &#8220;Fixed Size&#8221; then click next. I&#8217;ve selected Fixed size for performance reasons, however how much difference this will really make I&#8217;m not sure.</p>
<div class="wp-caption alignnone" style="width: 656px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/03/build_a_SQL2012_demo_VM_os_6.png"><img title="Fig 3.7: Select Disk Storage Details" src="http://www.bimonkey.com/wp-content/uploads/2012/03/build_a_SQL2012_demo_VM_os_6.png" alt="Fig 3.7: Select Disk Storage Details" width="646" height="249" /></a><p class="wp-caption-text">Fig 3.7: Select Disk Storage Details</p></div>
<p>9: Set the disk size to 80GB &amp; check that your VM is being created on your secondary / external drive, then click Next.</p>
<p>For those stretched for space, you <em>may</em> scrape through with 40GB &#8211; but if you run out of space during the installs you are stuffed and will have to start again as resisizing VHD&#8217;s seems to be a difficult task. 60GB is adequate &#8211; 80GB is comfortable, and as I have a 1TB external drive, I can spare the space! As you cannot easily go back and resize the disk, so if you choose the default 20GB by mistake now, you will likely end up having to start over when you run out of space. Yes, I have made this mistake. Twice.</p>
<div class="wp-caption alignnone" style="width: 651px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/03/build_a_SQL2012_demo_VM_os_7.png"><img title="Fig 3.8: Set the Disks size and confirm its Location" src="http://www.bimonkey.com/wp-content/uploads/2012/03/build_a_SQL2012_demo_VM_os_7.png" alt="Fig 3.8: Set the Disks size and confirm its Location" width="641" height="294" /></a><p class="wp-caption-text">Fig 3.8: Set the Disks size and confirm its Location</p></div>
<p>10: Create the disk.</p>
<p>Review the summary and if you&#8217;ve done everything correctly, click Create to create the disk.</p>
<div class="wp-caption alignnone" style="width: 657px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/03/build_a_SQL2012_demo_VM_os_8.png"><img title="Fig 3.9: Review the Summary then Create the Disk" src="http://www.bimonkey.com/wp-content/uploads/2012/03/build_a_SQL2012_demo_VM_os_8.png" alt="Fig 3.9: Review the Summary then Create the Disk" width="647" height="203" /></a><p class="wp-caption-text">Fig 3.9: Review the Summary then Create the Disk</p></div>
<p>11: Watch the progress bar as the disk creates. Note this can take quite a long time &#8211; mine took about 2.5 hours to build.</p>
<div class="wp-caption alignnone" style="width: 687px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/03/build_a_SQL2012_demo_VM_os_9.png"><img title="Fig 3.10: The Disk Creation Progress Bar" src="http://www.bimonkey.com/wp-content/uploads/2012/03/build_a_SQL2012_demo_VM_os_9.png" alt="Fig 3.10: The Disk Creation Progress Bar" width="677" height="151" /></a><p class="wp-caption-text">Fig 3.10: The Disk Creation Progress Bar</p></div>
<p>12: Once this is complete another summary screen will appear with a Create button. Click that and your VM is created, and now we need to configure it with all the right software.</p>
<p>13: So, from the VirtualBox main screen, select the VM you have created and click settings:</p>
<div class="wp-caption alignnone" style="width: 793px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_111.png"><img title="Fig 3.11: Configure the VM" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_111.png" alt="Fig 3.11: Configure the VM" width="783" height="587" /></a><p class="wp-caption-text">Fig 3.11: Configure the VM</p></div>
<p>14: This launches the settings dialog, and under storage we want to add the drives we need to load the software. If you are using physical media, map the CD drive. If you are using .iso files, map them all here now.</p>
<div class="wp-caption alignnone" style="width: 665px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_12.png"><img title="Fig 3.12 Add Installation Media" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_12.png" alt="Fig 3.12 Add Installation Media" width="655" height="275" /></a><p class="wp-caption-text">Fig 3.12 Add Installation Media</p></div>
<p>Clicking the Add CD/ DVD Device button brings up this dialog, in which we click Choose Disk:</p>
<div class="wp-caption alignnone" style="width: 283px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_13.png"><img title="Fig 3.13: Choose Disk" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_13.png" alt="Fig 3.13: Choose Disk" width="273" height="169" /></a><p class="wp-caption-text">Fig 3.13: Choose Disk</p></div>
<p>This opens up the file browser dialog, so map all your iso or DVD drives and you should end up looking like this:</p>
<div class="wp-caption alignnone" style="width: 666px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_14.png"><img title="Fig 3.14: All Drives Mapped" src="http://www.bimonkey.com/wp-content/uploads/2012/04/build_a_SQL2012_demo_VM_os_14.png" alt="Fig 3.14: All Drives Mapped" width="656" height="281" /></a><p class="wp-caption-text">Fig 3.14: All Drives Mapped</p></div>
<p>Click OK to apply the changes, then start the VM. Windows Server 2008R2 should start installing.</p>
<p>15: Move on to <a title="Build your own SQL 2012 Demo - Part 3 - Installing and Configuring Windows Server 2008R2" href="http://www.bimonkey.com/?p=1237">Part 3 &#8211; Installing and Configuring Windows Server 2008R2</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bimonkey.com/2012/04/build-your-own-sql-2012-demo-machine-part-2-setting-up-your-virtual-machine/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Build your own SQL2012 Demo Machine Part 1 &#8211; Preparation &amp; Summary</title>
		<link>http://www.bimonkey.com/2012/04/build-your-own-sql2012-demo-machine-part-1-preparation-summary/</link>
		<comments>http://www.bimonkey.com/2012/04/build-your-own-sql2012-demo-machine-part-1-preparation-summary/#comments</comments>
		<pubDate>Thu, 26 Apr 2012 11:17:16 +0000</pubDate>
		<dc:creator>BI Monkey</dc:creator>
				<category><![CDATA[Microsoft BI]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Demo Machine]]></category>

		<guid isPermaLink="false">http://www.bimonkey.com/?p=1199</guid>
		<description><![CDATA[I&#8217;ve been through many a trauma building all-up demo virtual machines with SQL 2012 Denali and RC0 editions. Now that RTM is here, I&#8217;m going to go through it again. However to save all of you many of those pains, I&#8217;m going to help you out by giving precise, every step of the way instructions. [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been through many a trauma building all-up demo virtual machines with SQL 2012 Denali and RC0 editions. Now that RTM is here, I&#8217;m going to go through it again. However to save all of you many of those pains, I&#8217;m going to help you out by giving precise, every step of the way instructions.</p>
<p>At the end of it all you will have a blank demo server with all features of SQL2012, SharePoint 2010 with Reporting Services, PowerPivot and PowerView, and Office 2010 ready to demo.</p>
<p>Note there&#8217;s some bits I missed out in the first version of the posts which are highlighted in <span style="color: #ff0000;">red</span> and dated.</p>
<h2>Step 1: Get some hardware</h2>
<ul>
<li>Find yourself a machine with a 64 bit operating system and at least 100GB of spare disk space and 8GB of RAM</li>
<li>If this machine has only one internal Hard Drive get an External drive with 100GB of spare disk space</li>
<li>Download all the software</li>
<li>Obtain valid license keys</li>
<li>Follow this guide</li>
</ul>
<p><span style="text-decoration: underline;">Important Hard Drive recommendation</span>: VM&#8217;s run significantly better if they aren&#8217;t sharing a Hard Drive with the Host Operating System, so all installation should be on a secondary drive. If your machine has two internal drives, create the VM on the secondary one. If your machine only has one internal hard drive I strongly recommend getting an external USB drive to create the VM on.</p>
<h2>Step 2: Download all the software you&#8217;ll need</h2>
<p>These are the components you&#8217;ll need. You&#8217;ll need access to an MSDN subscription or the install media for core Microsoft components.</p>
<ul>
<li><a title="Oracle VM VirtualBox" href="https://www.virtualbox.org/wiki/Downloads">Oracle VM VirtualBox</a> &#8211; I used version 4.1.12</li>
<li>Windows Server 2008R2 SP1 Enterprise (I&#8217;ve been informed Server 8 will also work)</li>
<li>SQL Server 2012 Enterprise</li>
<li>SharePoint 2010 Enterprise</li>
<li><a title="Service Pack 1 for Microsoft SharePoint Server 2010 (KB2460045)" href="http://www.microsoft.com/download/en/details.aspx?displaylang=en&amp;id=26623">SharePoint 2010 Service Pack 1</a></li>
<li>Office 2010 Professional  64 Bit Service Pack 1</li>
<li><a title="Excel Data Mining Add In" href="http://www.microsoft.com/download/en/details.aspx?id=29061">Excel Data Mining Add In</a> &#8211; 64 Bit</li>
<li><a title="Excel PowerPivot Add In" href="http://www.microsoft.com/download/en/details.aspx?displaylang=en&amp;id=7609">Excel PowerPivot Add In</a> &#8211; 64 Bit</li>
</ul>
<p>If you are a VMWare or other Virtualisation technology fan, use that instead. Be aware Microsoft&#8217;s own VirtualPC is of no use as it doesn&#8217;t support 64 bit guest OS&#8217;s.</p>
<h2><a title="Build your own SQL 2012 Demo - Part 2 - Setting up your Virtual Machine" href="http://www.bimonkey.com/?p=1239">Step 3: Build your base VM</a></h2>
<p><a title="Build your own SQL 2012 Demo - Part 2 - Setting up your Virtual Machine" href="http://www.bimonkey.com/?p=1239">Click here for the detailed walkthrough.</a></p>
<p>In summary we:</p>
<ul>
<li>Create a VM to host a Windows Server 2008R2 environment</li>
<li>Give it a 80GB fixed disk to install to</li>
<li>Give it at least 4GB RAM</li>
</ul>
<h2><a title="Build your own SQL 2012 Demo Machine - Part 3 - Installing and Configuring Windows Server 2008R2" href="http://www.bimonkey.com/?p=1237">Step 4: Install Windows Server 2008R2</a></h2>
<p><a title="Build your own SQL 2012 Demo Machine - Part 3 - Installing and Configuring Windows Server 2008R2" href="http://www.bimonkey.com/?p=1237">Click here for the detailed walkthrough</a>.</p>
<p>In summary we:</p>
<ul>
<li>Do a Full Installation of Windows Server 2008R2 SP1 &#8211; Enterprise Edition</li>
<li>Make it a Domain Controller (<a title="Build a Windows Server 2008 R2 Domain Controller " href="http://d3planet.com/rtfb/2009/11/09/build-a-windows-server-2008-r2-domain-controller/">guide here</a>)</li>
<li>Turn Off Internet Explorer Enhanced Security Configuration</li>
<li>Install Silverlight (needed for PowerView)</li>
</ul>
<h2><a title="Build your own SQL 2012 Demo Machine - Part 4 - Installing SQL Server twice" href="http://www.bimonkey.com/?p=1294">Step 5: Install SQL Server 2012 twice</a></h2>
<p><a title="Build your own SQL 2012 Demo Machine - Part 4 - Installing SQL Server twice" href="http://www.bimonkey.com/?p=1294">Click here for the detailed walkthrough</a>.</p>
<p>In summary we:</p>
<ul>
<li>Do a Full Feature Install of SQL Server 2012 Enterprise Edition</li>
<li>Do a Second Install of Analysis Services in Tabular Mode</li>
<li>Configure Data Quality Services <span style="color: #ff0000;">(added 01 May 2012)</span></li>
</ul>
<h2><a title="Build your own SQL 2012 Demo Machine - Part 5 - SharePoint &amp; PowerPivot" href="http://www.bimonkey.com/?p=1342">Step 6: Install SharePoint and PowerPivot for SharePoint</a></h2>
<p><a title="Build your own SQL 2012 Demo Machine - Part 5 - SharePoint &amp; PowerPivot" href="http://www.bimonkey.com/?p=1342">Click here for the detailed walkthrough</a>.</p>
<p>In summary we:</p>
<ul>
<li>Run the SharePoint 2010 Prerequisites Installer</li>
<li>Install but do not configure SharePoint 2010</li>
<li>Install SharePoint 2010 Service Pack 1</li>
<li>Install SQL Server again for PowerPivot for SharePoint features</li>
<li>Run the PowerPivot for SharePoint configuration tool</li>
<li>Install and Start the Reporting Services SharePoint Service</li>
<li>Create the Reporting Services SharePoint Application</li>
<li>Enable Report Builder components in SharePoint <span style="color: #ff0000;">(added 02 May 2012)</span></li>
</ul>
<h2><a title="Build your own SQL 2012 Demo Machine - Part 6 - Office Components" href="http://www.bimonkey.com/?p=1380">Step 7: Install Office Components</a></h2>
<p><a title="Build your own SQL 2012 Demo Machine - Part 6 - Office Components" href="http://www.bimonkey.com/?p=1380">Click here for the detailed walkthrough</a>.</p>
<p>In summary we:</p>
<ul>
<li>Install Office 2010 Professional components (notably Excel)</li>
<li>Install the Data Mining for Excel AddIn</li>
<li>Install the PowerPivot for Excel AddIn</li>
</ul>
<h2><a title="Build your own SQL 2012 Demo Machine - Part 7 - Performance Tweaks" href="http://www.bimonkey.com/?p=1399"> Step 8: Tweak Windows Server 2008R2 (optional)</a></h2>
<p><a title="Build your own SQL 2012 Demo Machine - Part 7 - Performance Tweaks" href="http://www.bimonkey.com/?p=1399">Click here for the detailed walkthrough</a>.</p>
<p>In summary we:</p>
<ul>
<li>Disable some unused services for performance reasons</li>
</ul>
<h2>Step 9: Use it!</h2>
<p>This concludes what has been one of my most epic blog posts ever. I hope it helps you on your SQL Server journey <img src='http://www.bimonkey.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.bimonkey.com/2012/04/build-your-own-sql2012-demo-machine-part-1-preparation-summary/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Data Quality Services Performance Best Practices Guide released</title>
		<link>http://www.bimonkey.com/2012/03/data-quality-services-performance-best-practices-guide-released/</link>
		<comments>http://www.bimonkey.com/2012/03/data-quality-services-performance-best-practices-guide-released/#comments</comments>
		<pubDate>Wed, 07 Mar 2012 21:17:17 +0000</pubDate>
		<dc:creator>BI Monkey</dc:creator>
				<category><![CDATA[Data Quality Services]]></category>
		<category><![CDATA[Integration Services]]></category>

		<guid isPermaLink="false">http://www.bimonkey.com/?p=1191</guid>
		<description><![CDATA[Via @mattmasson &#8211; the DQS team have released a Data Quality Services Performance Best Practices Guide. It&#8217;s pretty thorough, and covers most aspects of performance that I&#8217;ve been talking about so far, plus heaps about matching and underlying architecture. A really good resource. However there&#8217;s one table which I think I&#8217;ll let speak for itself, [...]]]></description>
			<content:encoded><![CDATA[<p>Via @mattmasson &#8211; the DQS team have released a <a title="Data Quality Services Performance Best Practices Guide" href="http://www.microsoft.com/download/en/details.aspx?id=29075">Data Quality Services Performance Best Practices Guide</a>. It&#8217;s pretty thorough, and covers most aspects of performance that I&#8217;ve been talking about so far, plus heaps about matching and underlying architecture. A really good resource.</p>
<p>However there&#8217;s one table which I think I&#8217;ll let speak for itself, which is expected performance:</p>
<div id="attachment_1192" class="wp-caption alignnone" style="width: 662px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/03/ssdqs_ssis_performance_5.png"><img class="size-full wp-image-1192" title="DQS Performance" src="http://www.bimonkey.com/wp-content/uploads/2012/03/ssdqs_ssis_performance_5.png" alt="DQS Performance" width="652" height="159" /></a><p class="wp-caption-text">DQS Performance</p></div>
<p>You won&#8217;t be using this in a big DW anytime soon&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bimonkey.com/2012/03/data-quality-services-performance-best-practices-guide-released/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>DQS / SSIS Performance in SQL2012 RC0 &#8211; following some tweaks</title>
		<link>http://www.bimonkey.com/2012/02/dqs-ssis-performance-in-sql2012-rc0-following-some-tweaks/</link>
		<comments>http://www.bimonkey.com/2012/02/dqs-ssis-performance-in-sql2012-rc0-following-some-tweaks/#comments</comments>
		<pubDate>Wed, 29 Feb 2012 09:57:01 +0000</pubDate>
		<dc:creator>BI Monkey</dc:creator>
				<category><![CDATA[Data Quality Services]]></category>
		<category><![CDATA[Integration Services]]></category>

		<guid isPermaLink="false">http://www.bimonkey.com/?p=1176</guid>
		<description><![CDATA[As per the connect I raised around DQS / SSIS performance, the DQS / SSIS performance was pretty sluggish. The DQS team have come back with some more possible tweaks, and this is my test of those. The key suggestions were: Configure the DQS Server to accept bigger chunks of data from SSIS (see the [...]]]></description>
			<content:encoded><![CDATA[<p>As per the <a title="Data Quality Services / DQS Cleansing Component performance too slow" href="https://connect.microsoft.com/SQLServer/feedback/details/713837/data-quality-services-dqs-cleansing-component-performance-too-slow">connect I raised around DQS / SSIS performance</a>, the DQS / SSIS performance was pretty sluggish. The DQS team have come back with some more possible tweaks, and this is my test of those.</p>
<p>The key suggestions were:</p>
<ul>
<li>Configure the DQS Server to accept bigger chunks of data from SSIS (see the connect for details of how to)</li>
<li>Increase the SSIS properties <strong>DefaultBufferMaxRows</strong> and <strong>DefaultBufferSize</strong> so bigger chunks can be sent by SSIS to the DQS server<strong><br />
</strong></li>
</ul>
<p>I revised my original tests slightly, to change from 5 domains to 4 domains so that parallel processing would be counted properly (i.e. when splitting things up it would process the 4 domains in parallel to compare fairly to the single process &#8211; as opposed to doing 4+1, as the maximum parallel tasks my processing will allow is 4).</p>
<p>The tweaks I made was setting the DQS Server Chunk size to 100,000, DefaultBufferMaxRows to 104857600 (10 times the default) and DefaultBufferSize to 100,000 (also 10 times the default). This meant in my sample data set of 10,000 rows everything was passed through in one big chunk.</p>
<p>So to remind of my test approach, I did it 3 ways (to allow for previous performance tweaks mooted by the DQS team):</p>
<ul>
<li>All in one pass (4 domains in a single component)</li>
<li>Separate domains (process each domain in a separate path)</li>
<li>Split data (process the domains in 4 x 2,500k chunks)</li>
</ul>
<h2>The results of testing</h2>
<p>Well&#8230; it helps. But there&#8217;s still a big gap between what can be achieved in the DQS client and what you can get via SSIS. The results are below, comparing the Tuned approach to the Untuned approach, and also the DQS client directly:</p>
<div id="attachment_1183" class="wp-caption alignnone" style="width: 499px"><a href="http://www.bimonkey.com/wp-content/uploads/2012/02/ssdqs_ssis_performance_4.png"><img class="size-full wp-image-1183  " title="DQS Performance with SSIS" src="http://www.bimonkey.com/wp-content/uploads/2012/02/ssdqs_ssis_performance_4.png" alt="DQS Performance with SSIS" width="489" height="283" /></a><p class="wp-caption-text">DQS Performance with SSIS</p></div>
<p>I&#8217;ve deliberately skipped out the actual numbers because I&#8217;m running on a clunky VM, and since I&#8217;ve read that Stephen Few book, I&#8217;ve learned a few things about conveying messages via data visualisation.</p>
<p>So, here&#8217;s the takeaways:</p>
<ul>
<li>The new tuning approaches makes a difference &#8211; it&#8217;s about <strong>3 times faster</strong></li>
<li>The old tuning approaches still make negligible difference</li>
<li>Even tuned, SSIS is <strong>5 times slower</strong> than the client</li>
</ul>
<p>I&#8217;ll be feeding this all into the DQS team&#8230; and see what they come up with next. It would be nice if we can reach a point where performance is comparable with the client.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bimonkey.com/2012/02/dqs-ssis-performance-in-sql2012-rc0-following-some-tweaks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

