<?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>stuartpreston.net &#187; Uncategorized</title>
	<atom:link href="http://stuartpreston.net/blog/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://stuartpreston.net/blog</link>
	<description>Blog of Stuart Preston</description>
	<lastBuildDate>Fri, 06 Apr 2012 22:46:52 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Date format bug in Sprint Burndown report (Visual Studio Scrum 1.0 RTW) &#8211; non US locales only.</title>
		<link>http://stuartpreston.net/blog/2010/07/21/date-format-bug-in-sprint-burndown-report-visual-studio-scrum-1-0-rtw-non-us-locales-only/</link>
		<comments>http://stuartpreston.net/blog/2010/07/21/date-format-bug-in-sprint-burndown-report-visual-studio-scrum-1-0-rtw-non-us-locales-only/#comments</comments>
		<pubDate>Wed, 21 Jul 2010 09:33:47 +0000</pubDate>
		<dc:creator>Stuart Preston</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://stuartpreston.net/blog/2010/07/21/date-format-bug-in-sprint-burndown-report-visual-studio-scrum-1-0-rtw-non-us-locales-only/</guid>
		<description><![CDATA[Only applies if you are in a non-US locale.
Working through a Visual Studio Scrum implementation on a client site at the moment we noticed there seems to be a date format bug in the Sprint Burndown report in Visual Studio Scrum 1.0 RTW if you are in a non US locale.&#160; This prevents the current [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Only applies if you are in a non-US locale.</strong></p>
<p>Working through a Visual Studio Scrum implementation on a client site at the moment we noticed there seems to be a date format bug in the Sprint Burndown report in Visual Studio Scrum 1.0 RTW if you are in a non US locale.&#160; This prevents the current sprint bring calculated and the report falls over with an error: </p>
<p><em>&#160;&#160;&#160; Query execution failed for dataset &#8216;dsSprintsCurrent&#8217;. (rsErrorExecutingCommand)      <br />&#160;&#160;&#160; The conversion of a nvarchar data type to a datetime data type resulted in an out-of-range value.</em> </p>
<p><strike>My fix is in the RDL and to replace the line: </strike></p>
<p><strike>&#160;&#160;&#160; DECLARE @Tomorrow DATE = CONVERT(DATE, DATEADD(day, 1, @Today) </strike></p>
<p><strike>with </strike></p>
<p><strike>&#160;&#160;&#160; DECLARE @Tomorrow DATE = CONVERT(DATE, DATEADD(day, 1, CONVERT(DATE, @Today, 103)))</strike></p>
<p><strike>No doubt there will be an update at some point but thought put up this information to help anyone who has this issue.</strike></p>
<p>Update (22nd July 2010):&#160; The official fix revolves around the data type of the “Today” parameter in the report which is incorrectly set to a string:</p>
<pre class="csharpcode"><span class="kwrd">&lt;</span><span class="html">ReportParameter</span> <span class="attr">Name</span><span class="kwrd">=&quot;Today&quot;</span><span class="kwrd">&gt;</span>
  <span class="kwrd">&lt;</span><span class="html">DataType</span><span class="kwrd">&gt;</span><strong>DateTime</strong><span class="kwrd">&lt;/</span><span class="html">DataType</span><span class="kwrd">&gt;</span>
  <span class="kwrd">&lt;</span><span class="html">DefaultValue</span><span class="kwrd">&gt;</span>
    <span class="kwrd">&lt;</span><span class="html">Values</span><span class="kwrd">&gt;</span>
      <span class="kwrd">&lt;</span><span class="html">Value</span><span class="kwrd">&gt;</span>=today<span class="kwrd">&lt;/</span><span class="html">Value</span><span class="kwrd">&gt;</span>
    <span class="kwrd">&lt;/</span><span class="html">Values</span><span class="kwrd">&gt;</span>
  <span class="kwrd">&lt;/</span><span class="html">DefaultValue</span><span class="kwrd">&gt;</span>
  <span class="kwrd">&lt;</span><span class="html">Hidden</span><span class="kwrd">&gt;</span>true<span class="kwrd">&lt;/</span><span class="html">Hidden</span><span class="kwrd">&gt;</span>
<span class="kwrd">&lt;/</span><span class="html">ReportParameter</span><span class="kwrd">&gt;</span></pre>
<style type="text/css">
.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }</style>
]]></content:encoded>
			<wfw:commentRss>http://stuartpreston.net/blog/2010/07/21/date-format-bug-in-sprint-burndown-report-visual-studio-scrum-1-0-rtw-non-us-locales-only/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>2nd UK ALM User Group meeting &#8211; postponed (again) :(</title>
		<link>http://stuartpreston.net/blog/2010/06/16/2nd-uk-alm-user-group-meeting-postponed-again/</link>
		<comments>http://stuartpreston.net/blog/2010/06/16/2nd-uk-alm-user-group-meeting-postponed-again/#comments</comments>
		<pubDate>Wed, 16 Jun 2010 18:10:13 +0000</pubDate>
		<dc:creator>Stuart Preston</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://stuartpreston.net/blog/2010/06/16/2nd-uk-alm-user-group-meeting-postponed-again/</guid>
		<description><![CDATA[After all the effort put in to setting up a vote for the date of the 2nd UK ALM User Group meeting on 23rd June 2010, I am regretfully going to have to postpone it again.
Firstly there is some football match* on Wednesday afternoon and this has limited the choice of venue somewhat (and probably [...]]]></description>
			<content:encoded><![CDATA[<p>After all the effort put in to setting up a vote for the date of the 2nd UK ALM User Group meeting on 23rd June 2010, I am regretfully going to have to postpone it again.
<p>Firstly there is some football match* on Wednesday afternoon and this has limited the choice of venue somewhat (and probably attendance), secondly it is necessary for me to be on a client site on Wednesday and it is out of town so I cannot even guarantee my attendance.
<p>This is certainly not the way we planned things, I would be grateful for anyone who can step forward and help co-ordinate the London end of things jointly with me so we have some resilience in future.&nbsp; Any suggestions for a venue with a projector (not showing the football!), tables, WiFi (am I just dreaming now?) and a bar gratefully received.
<p>We had a few presenters lined up for this session as well as a raffle for a Pluralsight On Demand subscription and I apologise to them especially and hope we can reschedule all of this asap.
<p>Finally, i&#8217;m compiling a twitter list (@ukalmug/members) with everyone who wants to participate so we can follow each other &#8211; please can you send me your twitter ID and I will add it.
<p>Thanks, Stuart.
<p>Stuart Preston<br />UK ALM User Group Coordinator, <a href="http://almug.org">http://almug.org</a><br />@StuartPreston @ukalmug
<p>(* Can you tell I&#8217;m not a big football fan?)</p>
]]></content:encoded>
			<wfw:commentRss>http://stuartpreston.net/blog/2010/06/16/2nd-uk-alm-user-group-meeting-postponed-again/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

