<?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>Fraser Dowall</title>
	<atom:link href="http://fraser.dowall.com/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://fraser.dowall.com</link>
	<description>Rants and musings of a B.I. Professional</description>
	<lastBuildDate>Thu, 08 Jul 2010 19:31:07 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>TSQL End of Current Month</title>
		<link>http://fraser.dowall.com/?p=142</link>
		<comments>http://fraser.dowall.com/?p=142#comments</comments>
		<pubDate>Thu, 08 Jul 2010 19:31:07 +0000</pubDate>
		<dc:creator>Fraser</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://fraser.dowall.com/?p=142</guid>
		<description><![CDATA[select dateadd(m, datediff(m, 0, dateadd(m, 1, getdate())), -1)]]></description>
			<content:encoded><![CDATA[<p>select dateadd(m, datediff(m, 0, dateadd(m, 1, getdate())), -1)</p>
]]></content:encoded>
			<wfw:commentRss>http://fraser.dowall.com/?feed=rss2&amp;p=142</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SSRS Running totals (ROW COUNT VERSION)</title>
		<link>http://fraser.dowall.com/?p=140</link>
		<comments>http://fraser.dowall.com/?p=140#comments</comments>
		<pubDate>Tue, 22 Jun 2010 18:00:14 +0000</pubDate>
		<dc:creator>Fraser</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[SSRS]]></category>

		<guid isPermaLink="false">http://fraser.dowall.com/?p=140</guid>
		<description><![CDATA[Running totals are one of those things that are used a lot in reporting, and custom running totals end up being used more than not. In this post we will have a quick code to show row numbers by custom increments, so hidden rows and groups etc, will not effect this. I Modified my standard [...]]]></description>
			<content:encoded><![CDATA[<p>Running totals are one of those things that are used a lot in reporting, and custom running totals end up being used more than not. In this post we will have a quick code to show row numbers by custom increments, so hidden rows and groups etc, will not effect this. I Modified my standard Running Total code to simplify this when rownumber() was failing for me.</p>
<p>Step 1 : report code </p>
<p>public dim RunningTotal as int32 = 1 </p>
<p>public function IncreaseRunningTotal(a as boolean) as boolean<br />
    if a then<br />
	RunningTotal= 1<br />
	return true<br />
 end if<br />
    RunningTotal= RunningTotal+ 1<br />
    return false<br />
end function</p>
<p>Step 2 Increment :</p>
<p>=Code.IncreaseRunningTotal( False)</p>
<p>Step 3: reset</p>
<p>=Code.IncreaseRunningTotal(true)</p>
<p>Step 4 Display</p>
<p>=Code.RunningTotal</p>
<p>SIMPLE! <img src='http://fraser.dowall.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://fraser.dowall.com/?feed=rss2&amp;p=140</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TSQL Date Forumlas</title>
		<link>http://fraser.dowall.com/?p=138</link>
		<comments>http://fraser.dowall.com/?p=138#comments</comments>
		<pubDate>Mon, 14 Jun 2010 20:21:22 +0000</pubDate>
		<dc:creator>Fraser</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[TSQL]]></category>

		<guid isPermaLink="false">http://fraser.dowall.com/?p=138</guid>
		<description><![CDATA[&#8212;-Last Day of Previous Month SELECT DATEADD(s,-1,DATEADD(mm, DATEDIFF(m,0,GETDATE()),0)) LastDay_PreviousMonth &#8212;-Last Day of Current Month SELECT DATEADD(s,-1,DATEADD(mm, DATEDIFF(m,0,GETDATE())+1,0)) LastDay_CurrentMonth &#8212;-Last Day of Next Month SELECT DATEADD(s,-1,DATEADD(mm, DATEDIFF(m,0,GETDATE())+2,0)) LastDay_NextMonth]]></description>
			<content:encoded><![CDATA[<p>&#8212;-Last Day of Previous Month<br />
SELECT DATEADD(s,-1,DATEADD(mm, DATEDIFF(m,0,GETDATE()),0))<br />
LastDay_PreviousMonth<br />
&#8212;-Last Day of Current Month<br />
SELECT DATEADD(s,-1,DATEADD(mm, DATEDIFF(m,0,GETDATE())+1,0))<br />
LastDay_CurrentMonth<br />
&#8212;-Last Day of Next Month<br />
SELECT DATEADD(s,-1,DATEADD(mm, DATEDIFF(m,0,GETDATE())+2,0))<br />
LastDay_NextMonth</p>
]]></content:encoded>
			<wfw:commentRss>http://fraser.dowall.com/?feed=rss2&amp;p=138</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Simple TSQL get the last day of next month time 00:00:00.000</title>
		<link>http://fraser.dowall.com/?p=137</link>
		<comments>http://fraser.dowall.com/?p=137#comments</comments>
		<pubDate>Mon, 14 Jun 2010 20:18:34 +0000</pubDate>
		<dc:creator>Fraser</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[TSQL]]></category>

		<guid isPermaLink="false">http://fraser.dowall.com/?p=137</guid>
		<description><![CDATA[dateadd(m, datediff(m, 0, dateadd(m, 2, @MyDate)), -1);]]></description>
			<content:encoded><![CDATA[<p>dateadd(m, datediff(m, 0, dateadd(m, 2, @MyDate)), -1);</p>
]]></content:encoded>
			<wfw:commentRss>http://fraser.dowall.com/?feed=rss2&amp;p=137</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simple TSQL to get the number of days in the current month</title>
		<link>http://fraser.dowall.com/?p=136</link>
		<comments>http://fraser.dowall.com/?p=136#comments</comments>
		<pubDate>Mon, 14 Jun 2010 20:17:32 +0000</pubDate>
		<dc:creator>Fraser</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://fraser.dowall.com/?p=136</guid>
		<description><![CDATA[SELECT DAY(DATEADD (m, 1, DATEADD (d, 1 &#8211; DAY(GETDATE()), GETDATE())) &#8211; 1)]]></description>
			<content:encoded><![CDATA[<p>SELECT DAY(DATEADD (m, 1, DATEADD (d, 1 &#8211; DAY(GETDATE()), GETDATE())) &#8211; 1)</p>
]]></content:encoded>
			<wfw:commentRss>http://fraser.dowall.com/?feed=rss2&amp;p=136</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL Server 2008 vs. Oracle .. and so it begins….</title>
		<link>http://fraser.dowall.com/?p=124</link>
		<comments>http://fraser.dowall.com/?p=124#comments</comments>
		<pubDate>Tue, 16 Feb 2010 22:56:10 +0000</pubDate>
		<dc:creator>Fraser</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[SQL Server; Microsoft]]></category>

		<guid isPermaLink="false">http://fraser.dowall.com/?p=124</guid>
		<description><![CDATA[&#160; Microsoft has the gloves off and is ready to rumble. It proudly shows 6 compelling reasons to switch to SQL Server from Oracle on their Microsoft in Government site. http://www.microsoft.com/industry/government/products/server/sql2008.mspx#WhySwitch &#160; Has Microsoft really surpassed Oracle? &#160; Well their site claims so..: &#160; SQL Server 2008 Oracle Performance and Scalability 1 1 Business Intelligence [...]]]></description>
			<content:encoded><![CDATA[<p>&#160;</p>
<p><img alt="" src="http://www.microsoft.com/industry/government/products/sql2008_images/hero.png" width="400" height="122" /></p>
<p>Microsoft has the gloves off and is ready to rumble.</p>
<p>It proudly shows 6 compelling reasons to switch to SQL Server from Oracle on their Microsoft in Government site.</p>
<p><a title="http://www.microsoft.com/industry/government/products/server/sql2008.mspx#WhySwitch" href="http://www.microsoft.com/industry/government/products/server/sql2008.mspx#WhySwitch">http://www.microsoft.com/industry/government/products/server/sql2008.mspx#WhySwitch</a></p>
<p>&#160;</p>
<p>Has Microsoft really surpassed Oracle? </p>
<p>&#160;</p>
<p>Well their site claims so..:</p>
<table border="0" cellspacing="0" cellpadding="2" width="408">
<tbody>
<tr>
<td valign="top" width="257">&#160;</td>
<td valign="top" width="107">SQL Server 2008</td>
<td valign="top" width="42">Oracle</td>
</tr>
<tr>
<td valign="top" width="257">
<p align="center">Performance and Scalability</p>
</td>
<td valign="top" width="107">
<p align="center">1</p>
</td>
<td valign="top" width="42">
<p align="center">1</p>
</td>
</tr>
<tr>
<td valign="top" width="257">
<p align="center">Business Intelligence</p>
</td>
<td valign="top" width="107">
<p align="center">1</p>
</td>
<td valign="top" width="42">
<p align="center"></p>
</td>
</tr>
<tr>
<td valign="top" width="257">
<p align="center">Total Cost of Ownership</p>
</td>
<td valign="top" width="107">
<p align="center">1</p>
</td>
<td valign="top" width="42">
<p align="center"></p>
</td>
</tr>
<tr>
<td valign="top" width="257">
<p align="center">Stronger Partner Ecosystem</p>
</td>
<td valign="top" width="107">
<p align="center">1</p>
</td>
<td valign="top" width="42">
<p align="center"></p>
</td>
</tr>
<tr>
<td valign="top" width="257">
<p align="center">Better Together with Microsoft Office</p>
</td>
<td valign="top" width="107">
<p align="center">1</p>
</td>
<td valign="top" width="42">
<p align="center"></p>
</td>
</tr>
<tr>
<td valign="top" width="257">
<p align="center">Security</p>
</td>
<td valign="top" width="107">
<p align="center">1</p>
</td>
<td valign="top" width="42">&#160;</td>
</tr>
<tr>
<td valign="top" width="257">
<p align="center">Total</p>
</td>
<td valign="top" width="107">
<p align="center">6</p>
</td>
<td valign="top" width="42">
<p align="center">1</p>
</td>
</tr>
</tbody>
</table>
<p>&#160;</p>
<p>Round 2 of the Database wars appears to be on. Microsoft appears to have taken the first shot! </p>
]]></content:encoded>
			<wfw:commentRss>http://fraser.dowall.com/?feed=rss2&amp;p=124</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>StreamInsight in SQL Server 2008 R2</title>
		<link>http://fraser.dowall.com/?p=115</link>
		<comments>http://fraser.dowall.com/?p=115#comments</comments>
		<pubDate>Thu, 04 Feb 2010 21:25:00 +0000</pubDate>
		<dc:creator>Fraser</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[SQL Server; Microsoft]]></category>

		<guid isPermaLink="false">http://fraser.dowall.com/?p=115</guid>
		<description><![CDATA[&#160; REAL TIME REPORTING, not NEAR, NOT Yesterday.. NOW! SQL SERVER 2008 R2, a bold new era of some great new features. I wanted to share one that I have been looking at recently. STREAMINSIGHT The short of it is that you can now monitor a real time data stream for reports and or alerts. [...]]]></description>
			<content:encoded><![CDATA[<p>&#160;</p>
<p>REAL TIME REPORTING, not NEAR, NOT Yesterday.. NOW!</p>
<p>SQL SERVER 2008 R2, a bold new era of some great new features. I wanted to share one that I have been looking at recently. </p>
<blockquote><p><strong>STREAMINSIGHT</strong></p>
</blockquote>
<p>The short of it is that you can now monitor a real time data stream for reports and or alerts. This has been a long time coming and finally closes an open hole in the Microsoft reporting strategy. </p>
<p>Recently one of Microsoft’s ISV’s talked about how much it saved them being able to monitor the real time stream, rather than storing all of the data, they were able to store exceptions, and averages saving 100’s of gigabytes of data per day.</p>
<p>&#160;</p>
<p><a href="http://www.microsoft.com/sqlserver/2008/en/us/R2-complex-event.aspx">http://www.microsoft.com/sqlserver/2008/en/us/R2-complex-event.aspx</a></p>
<p><a href="http://fraser.dowall.com/wp-content/uploads/2010/02/cepruntime1.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="CEP-Runtime[1]" border="0" alt="CEP-Runtime[1]" src="http://fraser.dowall.com/wp-content/uploads/2010/02/cepruntime1-thumb.jpg" width="404" height="289" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://fraser.dowall.com/?feed=rss2&amp;p=115</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Windows Live Writer</title>
		<link>http://fraser.dowall.com/?p=121</link>
		<comments>http://fraser.dowall.com/?p=121#comments</comments>
		<pubDate>Tue, 02 Feb 2010 20:39:28 +0000</pubDate>
		<dc:creator>Fraser</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://fraser.dowall.com/?p=121</guid>
		<description><![CDATA[&#160; &#160; OK, this is the best blog update tools that I’ve seen in a while. It’s simple to use, a clean interface and its free. &#160;http://windowslivewriter.spaces.live.com/default.aspx Don’t forget to check out all the plug ins too! Great Job Microsoft!! http://gallery.live.com/default.aspx?l=8 &#160;]]></description>
			<content:encoded><![CDATA[<p>&#160;</p>
<p><a href="http://fraser.dowall.com/wp-content/uploads/2010/02/overview1.jpg"><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="overview[1]" border="0" alt="overview[1]" src="http://fraser.dowall.com/wp-content/uploads/2010/02/overview1-thumb.jpg" width="244" height="209" /></a></p>
<p>&#160;</p>
<p>OK, this is the best blog update tools that I’ve seen in a while. It’s simple to use, a clean interface and its free. </p>
<p>&#160;<a href="http://windowslivewriter.spaces.live.com/default.aspx">http://windowslivewriter.spaces.live.com/default.aspx</a></p>
<blockquote><p>Don’t forget to check out all the plug ins too! Great Job Microsoft!!</p>
</blockquote>
</p>
<p><a title="http://gallery.live.com/default.aspx?l=8" href="http://gallery.live.com/default.aspx?l=8">http://gallery.live.com/default.aspx?l=8</a></p>
<p>&#160;</p>
</p>
<div style="padding-bottom: 0px; padding-left: 0px; width: 243px; padding-right: 0px; display: block; float: none; margin-left: auto; margin-right: auto; padding-top: 0px" id="scid:8747F07C-CDE8-481f-B0DF-C6CFD074BF67:fff15d27-6628-4530-b87a-d192286c625b" class="wlWriterEditableSmartContent"><a href="http://fraser.dowall.com/wp-content/uploads/2010/02/5460-130253116566-602171566-3026140-6338028-n8x6.jpg" title="" rel="thumbnail"><img border="0" src="http://fraser.dowall.com/wp-content/uploads/2010/02/5460-130253116566-602171566-3026140-6338028-n.png" width="243" height="335" /></a></div>
]]></content:encoded>
			<wfw:commentRss>http://fraser.dowall.com/?feed=rss2&amp;p=121</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Ubuntu 9.04 install on VPC 2007</title>
		<link>http://fraser.dowall.com/?p=99</link>
		<comments>http://fraser.dowall.com/?p=99#comments</comments>
		<pubDate>Thu, 23 Apr 2009 17:30:16 +0000</pubDate>
		<dc:creator>Fraser</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Ubuntu VPC2007]]></category>

		<guid isPermaLink="false">http://fraser.dowall.com/?p=99</guid>
		<description><![CDATA[Ubuntu 9,04 is out! Install Ubuntu on a VPC 2007 : Boot up and select yoiur language, for me english, Then press the down arrow to install ubuntu and press f4 Select safe graphics mode Then press f6 This will pop up a menu press escape and yoiushoyou see the command line, Delete the Quiet [...]]]></description>
			<content:encoded><![CDATA[<p>Ubuntu 9,04 is out!</p>
<p>Install Ubuntu on a VPC 2007 :</p>
<p>Boot up and select yoiur language, for me english,</p>
<p>Then press the down arrow to install ubuntu and press f4</p>
<p>Select safe graphics mode</p>
<p>Then press f6</p>
<p>This will pop up a menu press escape and yoiushoyou see the command line, Delete the Quiet and No Spalsh and add</p>
<p>So :<br />
Boot Options seed/ubuntu.seed boot=casper initrd=/casper/initrd.gz quiet splash –</p>
<p>Becomes :<br />
Boot Options seed/ubuntu.seed boot=casper initrd=/casper/initrd.gz vga=791 noreplace-paravirt</p>
<p>Press enter and the installation should begin! </p>
<p>It runs slow, so be patient during the install</p>
<p> </p>
<p>then edit the GRUB Menu and add the same change to the kernal option..</p>
<p> </p>
<p>then mod yoiur x11 screen res :</p>
<p> </p>
<pre class="FreeTextFull">You need to edit /etc/X11/xorg.conf
Here's what I have:

Section "InputDevice"
Identifier	"Generic Keyboard"
Driver		"kbd"
Option		"XkbRules"	"xorg"
Option		"XkbModel"	"pc104"
Option		"XkbLayout"	"us"
EndSection

Section "InputDevice"
Identifier	"Configured Mouse"
Driver		"mouse"
Option		"CorePointer"
EndSection

Section "Device"
Identifier	"Configured Video Device"
Driver		"vesa"
#Option		"UseFBDev"		"true"
EndSection

Section "Monitor"
Identifier	"Configured Monitor"
HorizSync	30-70
VertRefresh	50-160
EndSection

Section "Screen"
Identifier	"Default Screen"
Monitor		"Configured Monitor"
Device		"Configured Video Device"
DefaultDepth 	16
SubSection "Display"
Depth	16
Modes	"1024x768" "896x600" "800x600"
EndSubSection
EndSection

Section "ServerLayout"
Identifier	"Default Layout"
Screen		"Default Screen"
EndSection</pre>
<pre class="FreeTextFull"></pre>
<pre class="FreeTextFull"></pre>
]]></content:encoded>
			<wfw:commentRss>http://fraser.dowall.com/?feed=rss2&amp;p=99</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ProClarity 6.3 Evaluation Server and Desktop</title>
		<link>http://fraser.dowall.com/?p=94</link>
		<comments>http://fraser.dowall.com/?p=94#comments</comments>
		<pubDate>Mon, 02 Feb 2009 17:00:59 +0000</pubDate>
		<dc:creator>Fraser</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://fraser.dowall.com/?p=94</guid>
		<description><![CDATA[It&#8217;s BI TIME! With the recent announcement of the integration of SharePoint and the Performance Point Analytics and Monitoring parts it&#8217;s time to get the ball rolling on your implementations. Microsoft has been so kind as to put up one of the top OLAP analysis tools for consumer to download and evaluate. If you have [...]]]></description>
			<content:encoded><![CDATA[<p><span>It&#8217;s BI TIME!</span></p>
<p><span>With the recent announcement of the integration of SharePoint and the Performance Point Analytics and Monitoring parts it&#8217;s time to get the ball rolling on your implementations.</span></p>
<p><span>Microsoft has been so kind as to put up one of the top OLAP analysis tools for consumer to download and evaluate.</span></p>
<p><span>If you have not seen this product before, then you are missing out, there are very few tool available that can do anything even close to what this one can.</span></p>
<p><span>Don&#8217;t believe me? Well, try it for yourself! <img src='http://fraser.dowall.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </span></p>
<p><strong><span>Microsoft ProClarity Desktop Professional Evaluation 6.3</span></strong></p>
<p><span><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=1fbeb8a0-25e6-4963-9cf2-b0a3c6852f49&amp;DisplayLang=en">http://www.microsoft.com/downloads/details.aspx?FamilyID=1fbeb8a0-25e6-4963-9cf2-b0a3c6852f49&amp;DisplayLang=en</a></span></p>
<p><strong><span>Microsoft ProClarity Analytics Server 6.3.Evaluation</span></strong></p>
<p><span><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=682fde6f-30de-45d1-93d2-25081a142e2f&amp;DisplayLang=en">http://www.microsoft.com/downloads/details.aspx?FamilyID=682fde6f-30de-45d1-93d2-25081a142e2f&amp;DisplayLang=en</a></span></p>
<p class="MsoNormal"> </p>
]]></content:encoded>
			<wfw:commentRss>http://fraser.dowall.com/?feed=rss2&amp;p=94</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
