<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Michael Ellerbeck</title>
	<atom:link href="http://michaelellerbeck.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://michaelellerbeck.com</link>
	<description>Michael Ellerbeck</description>
	<lastBuildDate>Fri, 18 May 2012 21:43:55 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='michaelellerbeck.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Michael Ellerbeck</title>
		<link>http://michaelellerbeck.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://michaelellerbeck.com/osd.xml" title="Michael Ellerbeck" />
	<atom:link rel='hub' href='http://michaelellerbeck.com/?pushpress=hub'/>
		<item>
		<title>Adding new article to Existing Publication (Transactional Replication)</title>
		<link>http://michaelellerbeck.com/2012/05/18/adding-new-article-to-existing-publication-transactional-replication/</link>
		<comments>http://michaelellerbeck.com/2012/05/18/adding-new-article-to-existing-publication-transactional-replication/#comments</comments>
		<pubDate>Fri, 18 May 2012 21:43:20 +0000</pubDate>
		<dc:creator>mellerbeck</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[sql]]></category>

		<guid isPermaLink="false">http://michaelellerbeck.com/?p=1567</guid>
		<description><![CDATA[A smart guy here at work was working on being able to remove and add an article to our SQL server 2008 R2 server. (We used to do it all the time in 2000) After much googling he finally hit on this blog that &#8216;actually works&#8217; (compared to many that didn&#8217;t) http://ansqldba.blogspot.com/2012/02/adding-new-article-to-existing.html Adding new article [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=michaelellerbeck.com&#038;blog=2049318&#038;post=1567&#038;subd=mellerbeck&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>A smart guy here at work was working on being able to remove and add an article to our SQL server 2008 R2 server. (We used to do it all the time in 2000)</p>
<p>After much googling he finally hit on this blog that &#8216;actually works&#8217; (compared to many that didn&#8217;t)</p>
<p><a href="http://ansqldba.blogspot.com/2012/02/adding-new-article-to-existing.html">http://ansqldba.blogspot.com/2012/02/adding-new-article-to-existing.html</a></p>
<p><strong>Adding new article to Existing Publication (Transactional Replication)</strong></p>
<div>First of all I ran Exec sp_helppublication in my publication database and checked the following fields,<br />
1. Immediate_sync<br />
2. Allow_anonymous<br />
Both the fields were set to ON as they showed a value 1 which is enabled. If the Immediate_sync is enabled, everytime you add a new article it will cause the entire snapshot to be applied and not the one for the particular article alone.<br />
Usually, the immediate_sync publication property is set to true if we allowed anonymous subscriptions while creating the publication through the CreatePublication wizard. To prevent the complete snapshot, run the script below.</div>
<div></div>
<div></div>
<div></div>
<div><strong>Step :- 1</strong><br />
EXEC sp_changepublication<br />
@publication = &#8217;Pub_dbAmericasCitrixFarm&#8217;,<br />
@property = N&#8217;allow_anonymous&#8217;,<br />
@value = &#8216;false&#8217;<br />
GO<br />
EXEC sp_changepublication<br />
@publication = &#8217;Pub_dbAmericasCitrixFarm&#8217;,<br />
@property = N&#8217;immediate_sync&#8217;,<br />
@value = &#8216;false&#8217;<br />
GO</div>
<div></div>
<div><strong>Step :- 2</strong></div>
<div>I added the single article using the below command,<br />
EXEC sp_addarticle</div>
<div>      @publication = Pub_dbAmericasCitrixFarm,</div>
<div>      @article = Table_2,</div>
<div>      @source_object = Table_2,</div>
<div></div>
<div>I got the following error for the above command,<br />
Msg 20607, Level 16, State 1, Procedure sp_MSreinit_article, Line 99<br />
Cannot make the change because a snapshot is already generated. Set @force_invalidate_snapshot to 1 to force the change and invalidate the existing snapshot.<br />
The reason behind this error message was that there was already a snapshot that was created recently. Since I added a new article it wouldn’t be able to use the existing snapshot so I need to use the option @force_invalidate_snapshot=1 to invalidate the existing snapshot and it would generate a new snapshot to be applied to the subscriber.<br />
EXEC sp_addarticle</div>
<div>      @publication = Pub_dbAmericasCitrixFarm,</div>
<div>      @article = Table_2,</div>
<div>      @source_object = Table_2,</div>
<div>      @force_invalidate_snapshot=1</div>
<div><strong>Step:-3</strong></div>
<div>Now I adding the subscription to the existing publisher for the single table alone using the below command,<br />
EXEC sp_addsubscription</div>
<div>@publication = &#8217;Pub_dbAmericasCitrixFarm&#8217;,</div>
<div>@subscriber = &#8217;FTDCCWPCTRXSQL&#8217;,</div>
<div>@destination_db = &#8217;dbAmericasCitrixFarm&#8217;,</div>
<div>I got the following error message while running the above command in my publication database.<br />
“Specify all articles when subscribing to a publication using concurrent snapshot processing”<br />
This error occurs when the existing publication was set up with concurrent snapshot option and means that you can&#8217;t synchronize subscriptions for such publications without a complete resynchronization. There are 2 workarounds: (a) By specifying @reserve = &#8216;internal&#8217; when you add the subscription for the new article and the snapshot agent should generate snapshot for the new article after that and b.) Changing the sync_method from &#8216;concurrent&#8217; to either &#8216;database snapshot&#8217; (enterprise edition only in SQL Server 2005) or &#8216;native&#8217; (which locks table during snapshot generation). Change the sync_method will force a reinitialization of all your subscriptions at this point. Alternatively you could create another publication and use this instead.<br />
I ran this command and it worked fine,<br />
EXEC sp_addsubscription</div>
<div>@publication = &#8217;Pub_dbAmericasCitrixFarm&#8217;,</div>
<div>@subscriber = &#8217;FTDCCWPCTRXSQL&#8217;,</div>
<div>@destination_db = &#8217;dbAmericasCitrixFarm&#8217;,</div>
<div>@reserved=&#8217;Internal&#8217;</div>
<div>Now I went ahead and started the snapshot agent in publisher, it worked perfectly. I can now see that only the particular table I added was replicated. So from now on to apply the snapshots of the entire articles we need to reinitialize the subscriptions since the immediate_sync is set to off.<strong></strong></div>
<div></div>
<div><strong>Drop new article to Existing Publication (Transactional Replication)</strong></div>
<div>EXEC sp_dropsubscription</div>
<div>  @publication = Pub_dbAmericasCitrixFarm,</div>
<div>  @article = N&#8217;Table_2&#8242;,</div>
<div>  @subscriber = &#8217;FTDCCWPCTRXSQL&#8217;;</div>
<div>GO</div>
<div></div>
<div>EXEC sp_droparticle</div>
<div>  @publication = Pub_dbAmericasCitrixFarm,</div>
<div>  @article = Table_2,</div>
<div>  @force_invalidate_snapshot = 1;</div>
<div></div>
<div><strong>For Pull Subscription (Existing Publication and subscription)</strong></div>
<div>First Make sure that the publisher properties &#8220;allow_anonymous&#8221; and &#8220;immediate_sync&#8221; are set to &#8220;False&#8221;, if these 2 options are set to &#8220;True&#8221; then this SP will mark all the articles for generating snapshot instead of marking only the newly added articles.To Check the publication properties, use this query.</div>
<div>exec sp_helppublication &#8217;PublicationName&#8217;<br />
GO</div>
<div>If the values of the output columns &#8221;allow_anonymous&#8221; and &#8220;immediate_sync&#8221; are 0 then they are set to &#8220;False&#8221; if their values are 1 then they are set to &#8220;True&#8221;<strong></strong></div>
<div></div>
<div>Add Article using below command</div>
<div>EXEC sp_addarticle</div>
<div>      @publication = Pub_dbAmericasCitrixFarm,</div>
<div>      @article = Table_2,</div>
<div>      @source_object = Table_2,</div>
<div>      @force_invalidate_snapshot=1</div>
<div></div>
<div>&#8211;Refresh Subscriptions</div>
<div>exec sp_refreshsubscriptions &#8217; Pub_dbAmericasCitrixFarm &#8217;</div>
<div>GO</div>
<div></div>
<div>After running the above commands, run the snapshot agent.</div>
<div></div>
<div><strong><strong>&gt;&gt; Adding Article in existing transactional replication using entire snapshot regenerate use below method.</strong></strong></div>
<div>Step 1:-</div>
<div>Set properties &#8220;allow_anonymous&#8221; and &#8220;immediate_sync&#8221; to true</div>
<div><strong>Step 2:-</strong></div>
<div></div>
<div>EXEC sp_addarticle</div>
<div>      @publication = Pub_dbAmericasCitrixFarm,</div>
<div>      @article = Table_2,</div>
<div>      @source_object = Table_2,<br />
<strong></strong></div>
<div><strong>Step 3:-</strong></div>
<div>EXEC sp_addsubscription</div>
<div>@publication = &#8217;Pub_dbAmericasCitrixFarm&#8217;,</div>
<div>&#8211;@article = &#8216;Table_2&#8242;,</div>
<div>@subscriber = &#8217;FTDCCWPCTRXSQL&#8217;,</div>
<div>@destination_db = &#8217;dbAmericasCitrixFarm&#8217;,</div>
<div>&#8211;@subscription_type = N&#8217;push&#8217;</div>
<div> @reserved=&#8217;Internal&#8217;</div>
<div><strong>Step 3:-</strong></div>
<div>Run the Snapshot agent, it will genrate the entire snashot again for all the article</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mellerbeck.wordpress.com/1567/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mellerbeck.wordpress.com/1567/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mellerbeck.wordpress.com/1567/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mellerbeck.wordpress.com/1567/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mellerbeck.wordpress.com/1567/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mellerbeck.wordpress.com/1567/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mellerbeck.wordpress.com/1567/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mellerbeck.wordpress.com/1567/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mellerbeck.wordpress.com/1567/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mellerbeck.wordpress.com/1567/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mellerbeck.wordpress.com/1567/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mellerbeck.wordpress.com/1567/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mellerbeck.wordpress.com/1567/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mellerbeck.wordpress.com/1567/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=michaelellerbeck.com&#038;blog=2049318&#038;post=1567&#038;subd=mellerbeck&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://michaelellerbeck.com/2012/05/18/adding-new-article-to-existing-publication-transactional-replication/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/ffebb155a6c1fd8217993adbf11cc97b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mellerbeck</media:title>
		</media:content>
	</item>
		<item>
		<title>Some simple examples of #Qlikview, Response to Part 1</title>
		<link>http://michaelellerbeck.com/2012/05/17/some-simple-examples-of-qlikview-response-to-part-1/</link>
		<comments>http://michaelellerbeck.com/2012/05/17/some-simple-examples-of-qlikview-response-to-part-1/#comments</comments>
		<pubDate>Thu, 17 May 2012 21:03:56 +0000</pubDate>
		<dc:creator>mellerbeck</dc:creator>
				<category><![CDATA[Qlikview]]></category>

		<guid isPermaLink="false">http://michaelellerbeck.com/?p=1563</guid>
		<description><![CDATA[Thanks to RJ (@RalphJaquez) and Ralf Becher (@TIQView) I&#8217;m starting to understand this a little better. RJ lays it out well &#8220;One way to think about it is that a chart object – no matter what it is, wants to aggregate. Even though you can write an expression that does not aggregate, really the charts power is with aggregation. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=michaelellerbeck.com&#038;blog=2049318&#038;post=1563&#038;subd=mellerbeck&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div>Thanks to <a href="http://twitter.com/RalphJaquez" rel="external nofollow">RJ (@RalphJaquez)</a> and <strong><a href="http://twitter.com/TIQView" rel="external nofollow">Ralf Becher (@TIQView)</a> </strong>I&#8217;m starting to understand this a little better.</div>
<div></div>
<div>RJ lays it out well &#8220;One way to think about it is that a chart object – no matter what it is, wants to aggregate. Even though you can write an expression that does not aggregate, really the charts power is with aggregation.<br />
When you try to use fields that cannot be aggregated, like text fields, the chart will do things that don’t make sense.&#8221;</div>
<div></div>
<div>Following this if you create a table box with Name, Area or Area, Name it will display correctly. In fact I wonder if you can think of a table box as just containing dimensions?</div>
<div></div>
<div>As mentioned in the comments, if you really wanted to do this &#8220;I would put both fields as a dimension and then put an expression like =count(Area) or =count(Name)&#8221; and then hide the expression.</div>
<div></div>
<div>One other way I pondered, make a dimension Area &amp; &#8216;-&#8217; &amp; Name, Area, and expression name. Then hide the Area &amp; &#8216;-&#8217; &amp; Name Column.</div>
<div></div>
<div></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mellerbeck.wordpress.com/1563/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mellerbeck.wordpress.com/1563/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mellerbeck.wordpress.com/1563/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mellerbeck.wordpress.com/1563/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mellerbeck.wordpress.com/1563/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mellerbeck.wordpress.com/1563/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mellerbeck.wordpress.com/1563/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mellerbeck.wordpress.com/1563/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mellerbeck.wordpress.com/1563/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mellerbeck.wordpress.com/1563/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mellerbeck.wordpress.com/1563/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mellerbeck.wordpress.com/1563/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mellerbeck.wordpress.com/1563/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mellerbeck.wordpress.com/1563/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=michaelellerbeck.com&#038;blog=2049318&#038;post=1563&#038;subd=mellerbeck&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://michaelellerbeck.com/2012/05/17/some-simple-examples-of-qlikview-response-to-part-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/ffebb155a6c1fd8217993adbf11cc97b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mellerbeck</media:title>
		</media:content>
	</item>
		<item>
		<title>Some simple examples of #Qlikview, Part 1</title>
		<link>http://michaelellerbeck.com/2012/05/16/some-simple-examples-of-qlikview-part-1/</link>
		<comments>http://michaelellerbeck.com/2012/05/16/some-simple-examples-of-qlikview-part-1/#comments</comments>
		<pubDate>Wed, 16 May 2012 17:12:18 +0000</pubDate>
		<dc:creator>mellerbeck</dc:creator>
				<category><![CDATA[Qlikview]]></category>

		<guid isPermaLink="false">http://michaelellerbeck.com/?p=1553</guid>
		<description><![CDATA[There are a lot of concepts with Qlikview that can be baffling at first. I really miss being able to purchase a Qlikview &#8216;Bible&#8217; (and am surprised no one has written one yet). This means you have to learn things by trial and error. So I&#8217;m going to ruminate and exfoliate and some things I [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=michaelellerbeck.com&#038;blog=2049318&#038;post=1553&#038;subd=mellerbeck&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>There are a lot of concepts with Qlikview that can be baffling at first. I really miss being able to purchase a Qlikview &#8216;Bible&#8217; (and am surprised no one has written one yet). This means you have to learn things by trial and error.</p>
<p>So I&#8217;m going to ruminate and exfoliate and some things I have come across. Maybe others will be able to help clarify my thinking about &#8216;why&#8217; some things happen.</p>
<p>[SalesPeople]:</p>
<p><strong>LOAD</strong> * INLINE [<br />
Name, Area<br />
Raymond, North<br />
Drew,            North<br />
Jakeem,   South<br />
Stewart, South<br />
Murphy,   West<br />
Sam,             West<br />
John,            East<br />
];</p>
<p>First, let’s make a simple chart. Let’s show the names of the Sales Person and what area they are associated with.</p>
<p>That’s fairly easy, create a straight chart, add Name as the Dimension, and Area as the expression.</p>
<p><img class="alignleft size-full wp-image-1555" title="simple1" src="http://mellerbeck.files.wordpress.com/2012/05/simple1.png?w=468" alt=""   /></p>
<p>You will notice the nice dash at the top, this is because it is trying to total the rows. So open up the Expressions tab and click No Totals in the Total Mode. And the dash will go away.</p>
<p>Ok, the challenge, reverse the display of the data. Show the areas that the Sales Person is associated with. Like this (once again straight chart, pivots are a whole different animal)</p>
<p><a href="http://mellerbeck.files.wordpress.com/2012/05/simple2.png"><img class="alignleft size-full wp-image-1556" title="simple2" src="http://mellerbeck.files.wordpress.com/2012/05/simple2.png?w=468" alt=""   /></a></p>
<p>Now of course your initial thought is probably to set Area as your dimension, and Name as your expression. Like</p>
<p><a href="http://mellerbeck.files.wordpress.com/2012/05/simple3.png"><img class="alignleft size-full wp-image-1557" title="simple3" src="http://mellerbeck.files.wordpress.com/2012/05/simple3.png?w=468&h=171" alt="" width="468" height="171" /></a></p>
<p>And</p>
<p><a href="http://mellerbeck.files.wordpress.com/2012/05/simple4.png"><img class="alignleft size-full wp-image-1558" title="simple4" src="http://mellerbeck.files.wordpress.com/2012/05/simple4.png?w=468&h=121" alt="" width="468" height="121" /></a></p>
<p>But if you do that you will end up with</p>
<p><a href="http://mellerbeck.files.wordpress.com/2012/05/simple5.png"><img class="alignleft size-full wp-image-1559" title="simple5" src="http://mellerbeck.files.wordpress.com/2012/05/simple5.png?w=468" alt=""   /></a></p>
<p>Now that’s pretty strange isn’t it <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mellerbeck.wordpress.com/1553/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mellerbeck.wordpress.com/1553/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mellerbeck.wordpress.com/1553/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mellerbeck.wordpress.com/1553/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mellerbeck.wordpress.com/1553/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mellerbeck.wordpress.com/1553/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mellerbeck.wordpress.com/1553/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mellerbeck.wordpress.com/1553/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mellerbeck.wordpress.com/1553/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mellerbeck.wordpress.com/1553/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mellerbeck.wordpress.com/1553/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mellerbeck.wordpress.com/1553/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mellerbeck.wordpress.com/1553/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mellerbeck.wordpress.com/1553/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=michaelellerbeck.com&#038;blog=2049318&#038;post=1553&#038;subd=mellerbeck&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://michaelellerbeck.com/2012/05/16/some-simple-examples-of-qlikview-part-1/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/ffebb155a6c1fd8217993adbf11cc97b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mellerbeck</media:title>
		</media:content>

		<media:content url="http://mellerbeck.files.wordpress.com/2012/05/simple1.png" medium="image">
			<media:title type="html">simple1</media:title>
		</media:content>

		<media:content url="http://mellerbeck.files.wordpress.com/2012/05/simple2.png" medium="image">
			<media:title type="html">simple2</media:title>
		</media:content>

		<media:content url="http://mellerbeck.files.wordpress.com/2012/05/simple3.png" medium="image">
			<media:title type="html">simple3</media:title>
		</media:content>

		<media:content url="http://mellerbeck.files.wordpress.com/2012/05/simple4.png" medium="image">
			<media:title type="html">simple4</media:title>
		</media:content>

		<media:content url="http://mellerbeck.files.wordpress.com/2012/05/simple5.png" medium="image">
			<media:title type="html">simple5</media:title>
		</media:content>
	</item>
		<item>
		<title>Create an ad-hoc query and then edit the rows returned sql server 2008 r2</title>
		<link>http://michaelellerbeck.com/2012/05/10/create-an-ad-hoc-query-and-then-edit-the-rows-returned-sql-server-2008-r2/</link>
		<comments>http://michaelellerbeck.com/2012/05/10/create-an-ad-hoc-query-and-then-edit-the-rows-returned-sql-server-2008-r2/#comments</comments>
		<pubDate>Thu, 10 May 2012 22:19:39 +0000</pubDate>
		<dc:creator>mellerbeck</dc:creator>
				<category><![CDATA[Applied IT]]></category>

		<guid isPermaLink="false">http://michaelellerbeck.com/?p=1551</guid>
		<description><![CDATA[Create an ad-hoc query and then edit the rows returned sql server 2008 r2<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=michaelellerbeck.com&#038;blog=2049318&#038;post=1551&#038;subd=mellerbeck&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The &#8216;Edit top 200&#8242; shows an &#8216;editable grid&#8217; at the bottom. If you click the &#8216;Show SQL pane&#8217; while that is opened, you can alter the query, which will update the editable grid at the bottom.</p>
<p>Goto</p>
<p>Query designer, pane, sql</p>
<p>To get to the Show SQL Pane</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mellerbeck.wordpress.com/1551/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mellerbeck.wordpress.com/1551/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mellerbeck.wordpress.com/1551/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mellerbeck.wordpress.com/1551/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mellerbeck.wordpress.com/1551/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mellerbeck.wordpress.com/1551/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mellerbeck.wordpress.com/1551/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mellerbeck.wordpress.com/1551/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mellerbeck.wordpress.com/1551/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mellerbeck.wordpress.com/1551/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mellerbeck.wordpress.com/1551/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mellerbeck.wordpress.com/1551/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mellerbeck.wordpress.com/1551/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mellerbeck.wordpress.com/1551/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=michaelellerbeck.com&#038;blog=2049318&#038;post=1551&#038;subd=mellerbeck&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://michaelellerbeck.com/2012/05/10/create-an-ad-hoc-query-and-then-edit-the-rows-returned-sql-server-2008-r2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/ffebb155a6c1fd8217993adbf11cc97b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mellerbeck</media:title>
		</media:content>
	</item>
		<item>
		<title>Force a single session or allow multiple Remote Desktop sessions per user</title>
		<link>http://michaelellerbeck.com/2012/05/02/force-a-single-session-or-allow-multiple-remote-desktop-sessions-per-user/</link>
		<comments>http://michaelellerbeck.com/2012/05/02/force-a-single-session-or-allow-multiple-remote-desktop-sessions-per-user/#comments</comments>
		<pubDate>Wed, 02 May 2012 18:00:28 +0000</pubDate>
		<dc:creator>mellerbeck</dc:creator>
				<category><![CDATA[Applied IT]]></category>

		<guid isPermaLink="false">http://michaelellerbeck.com/?p=1549</guid>
		<description><![CDATA[from http://remotedesktoprdp.com/force-single-session-allow-multiple-sessions-per-user Start Registry Editor (by default, this is located atc:\windows\regedit.exe). Go to the following registry key: HKEY_LOCAL_MACHINE\ System\CurrentControlSet\Control\TerminalServer If the fSingleSessionPerUser value doesn&#8217;t exist, create a new DWORD value named fSingleSessionPerUser Open the fSingleSessionPerUser value. The possible values for this setting are as follows: 0&#215;0 Allow multiple sessions per user 0&#215;1 Force each user to a single session<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=michaelellerbeck.com&#038;blog=2049318&#038;post=1549&#038;subd=mellerbeck&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<ol>
<li>from <a href="http://remotedesktoprdp.com/force-single-session-allow-multiple-sessions-per-user">http://remotedesktoprdp.com/force-single-session-allow-multiple-sessions-per-user</a></li>
<li>Start Registry Editor (by default, this is located at<code>c:\windows\regedit.exe</code>).</li>
<li>Go to the following registry key:
<p><strong>HKEY_LOCAL_MACHINE\<br />
System\CurrentControlSet\Control\TerminalServer</strong></li>
<li>If the <strong>fSingleSessionPerUser</strong> value doesn&#8217;t exist, create a new DWORD value named <strong>fSingleSessionPerUser</strong></li>
<li>Open the <strong>fSingleSessionPerUser</strong> value. The possible values for this setting are as follows:
<dl>
<dt>0&#215;0</dt>
<dd>Allow multiple sessions per user</dd>
<dt>0&#215;1</dt>
<dd>Force each user to a single session</dd>
</dl>
</li>
</ol>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mellerbeck.wordpress.com/1549/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mellerbeck.wordpress.com/1549/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mellerbeck.wordpress.com/1549/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mellerbeck.wordpress.com/1549/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mellerbeck.wordpress.com/1549/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mellerbeck.wordpress.com/1549/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mellerbeck.wordpress.com/1549/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mellerbeck.wordpress.com/1549/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mellerbeck.wordpress.com/1549/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mellerbeck.wordpress.com/1549/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mellerbeck.wordpress.com/1549/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mellerbeck.wordpress.com/1549/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mellerbeck.wordpress.com/1549/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mellerbeck.wordpress.com/1549/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=michaelellerbeck.com&#038;blog=2049318&#038;post=1549&#038;subd=mellerbeck&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://michaelellerbeck.com/2012/05/02/force-a-single-session-or-allow-multiple-remote-desktop-sessions-per-user/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/ffebb155a6c1fd8217993adbf11cc97b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mellerbeck</media:title>
		</media:content>
	</item>
		<item>
		<title>how to setup autologon 2008 in a domain</title>
		<link>http://michaelellerbeck.com/2012/05/02/how-to-setup-autologon-2008-in-a-domain/</link>
		<comments>http://michaelellerbeck.com/2012/05/02/how-to-setup-autologon-2008-in-a-domain/#comments</comments>
		<pubDate>Wed, 02 May 2012 17:00:02 +0000</pubDate>
		<dc:creator>mellerbeck</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[2008 autologon]]></category>

		<guid isPermaLink="false">http://michaelellerbeck.com/2012/05/02/how-to-setup-autologon-2008-in-a-domain/</guid>
		<description><![CDATA[From http://www.expta.com/2008/04/how-to-enable-autologon-for-windows.html Once you join a server to a domain, Windows will automatically delete the AutoAdminLogon value from the HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon registry key. This causes the userpasswords2 control to hide the &#8220;Users must enter a user name and password to use this computer&#8221; check box shown above. Here&#8217;s how to get the missing checkbox back and configure Autologon: Open a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=michaelellerbeck.com&#038;blog=2049318&#038;post=1546&#038;subd=mellerbeck&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>From <a href="http://www.expta.com/2008/04/how-to-enable-autologon-for-windows.html">http://www.expta.com/2008/04/how-to-enable-autologon-for-windows.html</a></p>
<p>Once you join a server to a domain, Windows will automatically delete the <strong>AutoAdminLogon</strong> value from the <strong>HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon</strong> registry key. This causes the userpasswords2 control to hide the &#8220;<strong>Users must enter a user name and password to use this computer</strong>&#8221; check box shown above.</p>
<p>Here&#8217;s how to get the missing checkbox back and configure Autologon:</p>
<ul>
<li>Open a CMD prompt and enter the following (all on one line):</li>
</ul>
<div>reg add &#8220;HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon&#8221; /v AutoAdminLogon /t REG_SZ /d &#8220;1&#8243; /f</div>
<blockquote><p><strong><br />
</strong></p></blockquote>
<ul>
<li>Click <strong>Start</strong>, <strong>Run</strong> and enter <strong>control userpasswords2</strong></li>
<li>Clear the checkbox for <strong>Users must enter a user name and password to use this computer</strong> and click OK</li>
<li>Enter the user name and password that will be used for Autologon and click OK</li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mellerbeck.wordpress.com/1546/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mellerbeck.wordpress.com/1546/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mellerbeck.wordpress.com/1546/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mellerbeck.wordpress.com/1546/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mellerbeck.wordpress.com/1546/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mellerbeck.wordpress.com/1546/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mellerbeck.wordpress.com/1546/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mellerbeck.wordpress.com/1546/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mellerbeck.wordpress.com/1546/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mellerbeck.wordpress.com/1546/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mellerbeck.wordpress.com/1546/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mellerbeck.wordpress.com/1546/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mellerbeck.wordpress.com/1546/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mellerbeck.wordpress.com/1546/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=michaelellerbeck.com&#038;blog=2049318&#038;post=1546&#038;subd=mellerbeck&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://michaelellerbeck.com/2012/05/02/how-to-setup-autologon-2008-in-a-domain/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/ffebb155a6c1fd8217993adbf11cc97b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mellerbeck</media:title>
		</media:content>
	</item>
		<item>
		<title>Dear #Qlikview, portal improvements</title>
		<link>http://michaelellerbeck.com/2012/04/23/dear-qlikview-portal-improvements/</link>
		<comments>http://michaelellerbeck.com/2012/04/23/dear-qlikview-portal-improvements/#comments</comments>
		<pubDate>Mon, 23 Apr 2012 15:03:54 +0000</pubDate>
		<dc:creator>mellerbeck</dc:creator>
				<category><![CDATA[Qlikview]]></category>

		<guid isPermaLink="false">http://michaelellerbeck.com/?p=1543</guid>
		<description><![CDATA[Dear Qlikview I am trying to love your AccessPoint portal. It has everything I need, categories, thumbnails, favorites&#8230; The only thing it lacks? I can&#8217;t really use it like a real portal. What do I mean, well take for example my iGoogle page. I open that sucker up and stay in it for say months [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=michaelellerbeck.com&#038;blog=2049318&#038;post=1543&#038;subd=mellerbeck&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Dear Qlikview I am trying to love your AccessPoint portal. It has everything I need, categories, thumbnails, favorites&#8230;</p>
<p>The only thing it lacks? I can&#8217;t really use it like a real portal. What do I mean, well take for example my iGoogle page. I open that sucker up and stay in it for say months at a time.</p>
<p>If I open up the Qlikview Access point, it only keeps me signed in for around a half an hour. Are you trying to send me a message. Do you not want me to live and breathe the qlikview Access point (Because I want to, you just won&#8217;t let me)</p>
<p>I asked support about this, the response:</p>
<p><strong>Apologies, but it turns out you can only adjust how long a QVW will remain open. Leaving the AccessPoint open to click on another QVW will not work because it requires a session cookie that times out and the timeout value is hard coded in for security. So all of those settings only apply to open QVWs.</strong></p>
<p>Needless to say, I haven&#8217;t been able to get my users to adopt the portal because of this! Instead I am running on a old version of meta-dot portal software that doesn&#8217;t time out!</p>
<p>Donald(Dot)Farmer, Qlikview evangelist extraordinaire, any love for making this more user friendly. I understand that security is important, but not at the sacrifice of usability?</p>
<p>Or at least let me decide how secure I need to be&#8230;.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mellerbeck.wordpress.com/1543/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mellerbeck.wordpress.com/1543/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mellerbeck.wordpress.com/1543/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mellerbeck.wordpress.com/1543/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mellerbeck.wordpress.com/1543/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mellerbeck.wordpress.com/1543/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mellerbeck.wordpress.com/1543/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mellerbeck.wordpress.com/1543/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mellerbeck.wordpress.com/1543/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mellerbeck.wordpress.com/1543/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mellerbeck.wordpress.com/1543/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mellerbeck.wordpress.com/1543/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mellerbeck.wordpress.com/1543/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mellerbeck.wordpress.com/1543/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=michaelellerbeck.com&#038;blog=2049318&#038;post=1543&#038;subd=mellerbeck&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://michaelellerbeck.com/2012/04/23/dear-qlikview-portal-improvements/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/ffebb155a6c1fd8217993adbf11cc97b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mellerbeck</media:title>
		</media:content>
	</item>
		<item>
		<title>This server] Failed to open management RPC connection to proxy service. Port: &#8217;6162&#8242;. The RPC server is unavailable RPC function call failed. #VEEAM</title>
		<link>http://michaelellerbeck.com/2012/04/19/this-server-failed-to-open-management-rpc-connection-to-proxy-service-port-6162-the-rpc-server-is-unavailable-rpc-function-call-failed-veeam/</link>
		<comments>http://michaelellerbeck.com/2012/04/19/this-server-failed-to-open-management-rpc-connection-to-proxy-service-port-6162-the-rpc-server-is-unavailable-rpc-function-call-failed-veeam/#comments</comments>
		<pubDate>Thu, 19 Apr 2012 18:21:30 +0000</pubDate>
		<dc:creator>mellerbeck</dc:creator>
				<category><![CDATA[veeam]]></category>

		<guid isPermaLink="false">http://michaelellerbeck.com/?p=1541</guid>
		<description><![CDATA[This looks to be the sign of a dying server The veeam backup proxy service did not start on initial system startup. When I started it manually though, it did start. I also have a PFA predicitve fail on a drive so once again I think the poor server is dying.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=michaelellerbeck.com&#038;blog=2049318&#038;post=1541&#038;subd=mellerbeck&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This looks to be the sign of a dying server <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  The veeam backup proxy service did not start on initial system startup. When I started it manually though, it did start. I also have a PFA predicitve fail on a drive so once again I think the poor server is dying.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mellerbeck.wordpress.com/1541/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mellerbeck.wordpress.com/1541/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mellerbeck.wordpress.com/1541/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mellerbeck.wordpress.com/1541/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mellerbeck.wordpress.com/1541/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mellerbeck.wordpress.com/1541/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mellerbeck.wordpress.com/1541/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mellerbeck.wordpress.com/1541/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mellerbeck.wordpress.com/1541/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mellerbeck.wordpress.com/1541/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mellerbeck.wordpress.com/1541/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mellerbeck.wordpress.com/1541/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mellerbeck.wordpress.com/1541/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mellerbeck.wordpress.com/1541/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=michaelellerbeck.com&#038;blog=2049318&#038;post=1541&#038;subd=mellerbeck&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://michaelellerbeck.com/2012/04/19/this-server-failed-to-open-management-rpc-connection-to-proxy-service-port-6162-the-rpc-server-is-unavailable-rpc-function-call-failed-veeam/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/ffebb155a6c1fd8217993adbf11cc97b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mellerbeck</media:title>
		</media:content>
	</item>
		<item>
		<title>Even more fun with the IBM 3690, Hemisphere Mode</title>
		<link>http://michaelellerbeck.com/2012/04/18/even-more-fun-with-the-ibm-3690-hemisphere-mode/</link>
		<comments>http://michaelellerbeck.com/2012/04/18/even-more-fun-with-the-ibm-3690-hemisphere-mode/#comments</comments>
		<pubDate>Wed, 18 Apr 2012 22:20:27 +0000</pubDate>
		<dc:creator>mellerbeck</dc:creator>
				<category><![CDATA[3690 X5]]></category>
		<category><![CDATA[Applied IT]]></category>
		<category><![CDATA[IBM]]></category>

		<guid isPermaLink="false">http://michaelellerbeck.com/?p=1539</guid>
		<description><![CDATA[So, have you heard of hemisphere mode? Hemisphere Mode is an important performance optimization of the Xeon 6500 and 7500 processors. Hemisphere Mode is automatically enabled by the system if the memory configuration allows it. This mode interleaves memory requests between the two memory controllers within each processor, enabling reduced latency and increased throughput. It [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=michaelellerbeck.com&#038;blog=2049318&#038;post=1539&#038;subd=mellerbeck&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So, have you heard of hemisphere mode?</p>
<p>Hemisphere Mode is an important performance optimization of the Xeon 6500 and 7500</p>
<p>processors. Hemisphere Mode is automatically enabled by the system if the memory</p>
<p>configuration allows it. This mode interleaves memory requests between the two memory</p>
<p>controllers within each processor, enabling reduced latency and increased throughput. It also</p>
<p>allows the processor to optimize its internal buffers to maximize memory throughput.</p>
<p>&nbsp;</p>
<p>Hemisphere Mode is enabled only when the memory configuration behind each memory</p>
<p>controller on a processor is identical. Because the Xeon 7500 memory population rules</p>
<p>dictate that a minimum of two DIMMs are installed on each memory controller at a time (one on each of the attached memory buffers<strong>), DIMMs must be installed in quantities of four per </strong></p>
<p><strong>processor to enable Hemisphere Mode.</strong></p>
<p><strong> </strong>Our consultant didn&#8217;t follow the four per processor rule….</p>
<p>But then it gets even more interesting.</p>
<p>So I have two quad port Ethernet adapters (Intel Ethernet Server Adapter I340-T4) of course I’m not lucky enough to have them install automagically with ESX so I need drivers.</p>
<p>After much, much googling I hit on this post <a href="http://blog.bradpeczka.com/2011/05/02/ibm-nics-in-vmware-esxi-4-04-1/">http://blog.bradpeczka.com/2011/05/02/ibm-nics-in-vmware-esxi-4-04-1/</a> with a comment that they got it to work on their 3690 X5’s so at least I knew it was possible.</p>
<p>I was pretty sure that I wanted the 2.1.10.2 version as verified by <a href="http://partnerweb.vmware.com/comp_guide1/detail.php?device_cat=io&amp;device_id=14747">http://partnerweb.vmware.com/comp_guide1/detail.php?device_cat=io&amp;device_id=14747</a></p>
<p>I burned it, and then loaded it as an additional driver during the ESX install and that’s when it hung at &#8220;Status: 32% complete &#8211; Loading 34.storage-drivers&#8221;</p>
<p>Gah! So I tried all sorts of iterations, flipping ports, but luckily someone else had the answer on the forum.</p>
<p><a href="http://communities.vmware.com/message/2005176">http://communities.vmware.com/message/2005176</a></p>
<p>Even though it installed ESX just fine without the network drivers, once I included the network drivers the RAID drivers stopped working</p>
<p>Apparently this is a known issue with the new version of the firmware for the M1015 (which I of course flashed it to)…</p>
<p><a href="http://www-947.ibm.com/support/entry/portal/docdisplay?lndocid=MIGR-5087330">http://www-947.ibm.com/support/entry/portal/docdisplay?lndocid=MIGR-5087330</a></p>
<p>So, download the updated megaraid driver, burn it to disk, <a href="http://downloads.vmware.com/d/details/dt_esx4x_lsi_megaraid_529/ZHcqYnR0amhiZGhwZA==#version_history">http://downloads.vmware.com/d/details/dt_esx4x_lsi_megaraid_529/ZHcqYnR0amhiZGhwZA==#version_history</a></p>
<p>And now I can install ESX…. That was easy</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mellerbeck.wordpress.com/1539/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mellerbeck.wordpress.com/1539/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mellerbeck.wordpress.com/1539/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mellerbeck.wordpress.com/1539/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mellerbeck.wordpress.com/1539/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mellerbeck.wordpress.com/1539/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mellerbeck.wordpress.com/1539/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mellerbeck.wordpress.com/1539/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mellerbeck.wordpress.com/1539/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mellerbeck.wordpress.com/1539/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mellerbeck.wordpress.com/1539/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mellerbeck.wordpress.com/1539/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mellerbeck.wordpress.com/1539/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mellerbeck.wordpress.com/1539/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=michaelellerbeck.com&#038;blog=2049318&#038;post=1539&#038;subd=mellerbeck&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://michaelellerbeck.com/2012/04/18/even-more-fun-with-the-ibm-3690-hemisphere-mode/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/ffebb155a6c1fd8217993adbf11cc97b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mellerbeck</media:title>
		</media:content>
	</item>
		<item>
		<title>I was wondering if I could access shared storage from a stand alone host for esx</title>
		<link>http://michaelellerbeck.com/2012/04/11/i-was-wondering-if-i-could-access-shared-storage-from-a-stand-alone-host-for-esx/</link>
		<comments>http://michaelellerbeck.com/2012/04/11/i-was-wondering-if-i-could-access-shared-storage-from-a-stand-alone-host-for-esx/#comments</comments>
		<pubDate>Wed, 11 Apr 2012 20:53:48 +0000</pubDate>
		<dc:creator>mellerbeck</dc:creator>
				<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://michaelellerbeck.com/?p=1535</guid>
		<description><![CDATA[I was pretty sure it was OK, but then this post lays it out very nicely. http://blog.cowger.us/2011/04/22/shared-vmfs-volumes-on-non-clustered-hosts/<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=michaelellerbeck.com&#038;blog=2049318&#038;post=1535&#038;subd=mellerbeck&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I was pretty sure it was OK, but then this post lays it out very nicely.</p>
<p><a href="http://blog.cowger.us/2011/04/22/shared-vmfs-volumes-on-non-clustered-hosts/">http://blog.cowger.us/2011/04/22/shared-vmfs-volumes-on-non-clustered-hosts/</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mellerbeck.wordpress.com/1535/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mellerbeck.wordpress.com/1535/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mellerbeck.wordpress.com/1535/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mellerbeck.wordpress.com/1535/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mellerbeck.wordpress.com/1535/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mellerbeck.wordpress.com/1535/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mellerbeck.wordpress.com/1535/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mellerbeck.wordpress.com/1535/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mellerbeck.wordpress.com/1535/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mellerbeck.wordpress.com/1535/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mellerbeck.wordpress.com/1535/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mellerbeck.wordpress.com/1535/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mellerbeck.wordpress.com/1535/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mellerbeck.wordpress.com/1535/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=michaelellerbeck.com&#038;blog=2049318&#038;post=1535&#038;subd=mellerbeck&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://michaelellerbeck.com/2012/04/11/i-was-wondering-if-i-could-access-shared-storage-from-a-stand-alone-host-for-esx/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/ffebb155a6c1fd8217993adbf11cc97b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mellerbeck</media:title>
		</media:content>
	</item>
	</channel>
</rss>
