<?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>Random Thunks</title>
	<atom:link href="http://random-thunks.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://random-thunks.com</link>
	<description>The Thunking Continues</description>
	<lastBuildDate>Fri, 04 Nov 2011 18:25:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='random-thunks.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Random Thunks</title>
		<link>http://random-thunks.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://random-thunks.com/osd.xml" title="Random Thunks" />
	<atom:link rel='hub' href='http://random-thunks.com/?pushpress=hub'/>
		<item>
		<title>Lost Database Master Key Password</title>
		<link>http://random-thunks.com/2011/11/03/lost-database-master-key-password/</link>
		<comments>http://random-thunks.com/2011/11/03/lost-database-master-key-password/#comments</comments>
		<pubDate>Thu, 03 Nov 2011 18:51:37 +0000</pubDate>
		<dc:creator>Rachel Ambler</dc:creator>
				<category><![CDATA[Encryption]]></category>
		<category><![CDATA[Sql Server]]></category>
		<category><![CDATA[T-Sql]]></category>

		<guid isPermaLink="false">https://furtherrandomthunks.wordpress.com/2011/11/03/lost-database-master-key-password/</guid>
		<description><![CDATA[I had a situation occur recently where I needed to restore a DB to a new server but I didn’t have the ability the bring the Service Master Key over with it. Nor did I have the original password used to encrypt the Database Master Key (it was before my time). What I did have [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=random-thunks.com&amp;blog=13902509&amp;post=112&amp;subd=furtherrandomthunks&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I had a situation occur recently where I needed to restore a DB to a new server but I didn’t have the ability the bring the Service Master Key over with it. Nor did I have the original password used to encrypt the Database Master Key (it was before my time).</p>
<p>What I did have was access to the box with the database still running and the associated key hierarchy still operational (symmetric keys and the like).</p>
<p>I’ve not done too much messing around with the database master key before, feeling it was best left well alone, however the need to migrate this DB was there and I needed to pull it across without loosing access to the encrypted data.</p>
<p>To prototype this activity out I created a database on my local DB server and utilized the services of another Sql Server 2008 Server elsewhere in the organization.</p>
<p>So, first off I needed to create the key hierarchy and a place to store my test encrypted data:</p>
<pre class="code"><span style="color:blue;">Create Master Key Encryption By Password </span><span style="color:gray;">= </span><span style="color:red;">'abc123!!!ORIGINAL'</span><span style="color:gray;">;
</span><span style="color:blue;">Create Asymmetric Key </span>AKey <span style="color:blue;">With Algorithm </span><span style="color:gray;">= </span><span style="color:blue;">RSA_2048</span><span style="color:gray;">;
</span><span style="color:blue;">Create Symmetric Key </span>SKey <span style="color:blue;">With Algorithm </span><span style="color:gray;">= </span><span style="color:blue;">TRIPLE_DES_3KEY
    Encryption By Asymmetric Key </span>AKey
<span style="color:blue;">Create Table </span>dbo<span style="color:gray;">.</span>ASaucerfulOfSecrets
    <span style="color:gray;">(
        </span>TheSecret        <span style="color:blue;">VarBinary</span><span style="color:gray;">(</span><span style="color:magenta;">MAX</span><span style="color:gray;">)
    )
</span><span style="color:blue;">Open Symmetric Key </span>SKey <span style="color:blue;">Decryption By Asymmetric Key </span>AKey<span style="color:gray;">;
</span><span style="color:blue;">Insert Into </span>dbo<span style="color:gray;">.</span>ASaucerfulOfSecrets <span style="color:blue;">Values
    </span><span style="color:gray;">( </span><span style="color:magenta;">EncryptByKey</span><span style="color:gray;">(</span><span style="color:magenta;">Key_Guid</span><span style="color:gray;">(</span><span style="color:red;">'SKey'</span><span style="color:gray;">), </span><span style="color:red;">N'Ssssh! This is a BIG secret!'
                                   </span><span style="color:gray;">, </span>1<span style="color:gray;">, </span>0x12345<span style="color:gray;">));
</span><span style="color:blue;">Close Symmetric Key </span>SKey<span style="color:gray;">;</span></pre>
<p>I confirmed that encryption was working as expected by simply pulling the data back:</p>
<pre class="code"><span style="color:blue;">Select </span><span style="color:gray;">*
</span><span style="color:blue;">From </span>dbo<span style="color:gray;">.</span>ASaucerfulOfSecrets
<span style="color:blue;">Open Symmetric Key </span>SKey <span style="color:blue;">Decryption By Asymmetric Key </span>AKey<span style="color:gray;">;
</span><span style="color:blue;">Select </span><span style="color:magenta;">Cast</span><span style="color:gray;">(</span><span style="color:magenta;">DecryptByKey</span><span style="color:gray;">(</span>TheSecret<span style="color:gray;">, </span>1<span style="color:gray;">, </span>0x12345<span style="color:gray;">) </span><span style="color:blue;">As NVarChar</span><span style="color:gray;">(</span><span style="color:magenta;">MAX</span><span style="color:gray;">))
  </span><span style="color:blue;">From </span>dbo<span style="color:gray;">.</span>ASaucerfulOfSecrets<span style="color:gray;">;
</span><span style="color:blue;">Close Symmetric Key </span>SKey<span style="color:gray;">;</span></pre>
<p>Which gave me the following results</p>
<p><font face="Consolas">TheSecret<br />
    <br />0x00496C61F87C4941BF7CBE8C879146BA0100000043C4B3F8824C73EBF3C0…</font></p>
<p><font face="Consolas">(No column name)<br />
    <br />Ssssh! This is a BIG secret!</font></p>
<p>Life so far was operating within the expected parameters. Now I backed up the DB and restored it to a different server.</p>
<p>Running the select again I got the expected exceptions raised due to the inability to open the Database Master Key:</p>
<p>
  <br /><font face="Consolas">(1 row(s) affected)<br />
    <br /></font><font color="#ff0000" face="Consolas">Msg 15581, Level 16, State 3, Line 3<br />
    <br />Please create a master key in the database or open the master key in the session before performing this operation.</font></p>
<p><font face="Consolas">(1 row(s) affected)<br />
    <br /></font><font color="#ff0000" face="Consolas">Msg 15315, Level 16, State 1, Line 5<br />
    <br />The key &#8216;SKey&#8217; is not open. Please open the key before using it.</font></p>
<p>So, now came the exercise of correcting the issue. Given that we had supposedly lost the password to the original DB, it’s safe to assume that one would want to recreate it (and this time, write the bloody thing down somewhere!). So that’s the approach I took. Back on the source server I ran the following:</p>
<pre class="code"><span style="color:blue;">Alter Master Key </span>Regenerate
    <span style="color:blue;">With Encryption By Password </span><span style="color:gray;">= </span><span style="color:red;">'abc123!!!New'</span></pre>
<p>The Books OnLine warns that this can be an intensive process and I suppose it comes down to just how many keys you have defined in your hierarchy. For the purposes of this test I had but one key so I wasn’t worried. Now I had a Master Key password that I knew of so I performed another backup, moved the DB to the secondary server and restored it. Just for giggles I reran the select again and received (rather unsurprisingly) the same results.</p>
<p>Next I tried the select again but only after explicitly opening the Database Master Key (with the ‘new’ password):</p>
<pre class="code"><span style="color:blue;">Open Master Key Decryption By Password </span><span style="color:gray;">= </span><span style="color:red;">'abc123!!!New'
</span><span style="color:blue;">Select </span><span style="color:gray;">*
</span><span style="color:blue;">From </span>dbo<span style="color:gray;">.</span>ASaucerfulOfSecrets
<span style="color:blue;">Open Symmetric Key </span>SKey <span style="color:blue;">Decryption By Asymmetric Key </span>AKey<span style="color:gray;">;
</span><span style="color:blue;">Select </span><span style="color:magenta;">Cast</span><span style="color:gray;">(</span><span style="color:magenta;">DecryptByKey</span><span style="color:gray;">(</span>TheSecret<span style="color:gray;">, </span>1<span style="color:gray;">, </span>0x12345<span style="color:gray;">) </span><span style="color:blue;">As NVarChar</span><span style="color:gray;">(</span><span style="color:magenta;">MAX</span><span style="color:gray;">))
  </span><span style="color:blue;">From </span>dbo<span style="color:gray;">.</span>ASaucerfulOfSecrets<span style="color:gray;">;
</span><span style="color:blue;">Close Symmetric Key </span>SKey<span style="color:gray;">;</span></pre>
<p>This did indeed pull back the decrypted data. Now for the final action – adding the Service Master Key to the Database Master Key:</p>
<pre class="code"><span style="color:blue;">Open Master Key Decryption By Password </span><span style="color:gray;">= </span><span style="color:red;">'abc123!!!New'</span><span style="color:gray;">;
</span><span style="color:blue;">Alter Master Key Add Encryption By Service Master Key</span><span style="color:gray;">;</span></pre>
<p>This enabled the encryption to use either an explicitly opened master key, or use the service master key – which is exactly what I was after.</p>
<p>I was able to confirm the results by performing the select again (without opening the master key first) and this gave me my encrypted data back. Tada!</p>
<br />Filed under: <a href='http://random-thunks.com/category/encryption/'>Encryption</a>, <a href='http://random-thunks.com/category/sql-server/'>Sql Server</a>, <a href='http://random-thunks.com/category/t-sql/'>T-Sql</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/furtherrandomthunks.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/furtherrandomthunks.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/furtherrandomthunks.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/furtherrandomthunks.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/furtherrandomthunks.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/furtherrandomthunks.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/furtherrandomthunks.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/furtherrandomthunks.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/furtherrandomthunks.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/furtherrandomthunks.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/furtherrandomthunks.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/furtherrandomthunks.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/furtherrandomthunks.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/furtherrandomthunks.wordpress.com/112/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=random-thunks.com&amp;blog=13902509&amp;post=112&amp;subd=furtherrandomthunks&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://random-thunks.com/2011/11/03/lost-database-master-key-password/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/ff753fc907fc48fcd86dea3c47cc57de?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">furtherrandomthunks</media:title>
		</media:content>
	</item>
		<item>
		<title>SSL certificate on a Sql Server 2005 instance failing with a 0x8009030d error</title>
		<link>http://random-thunks.com/2011/10/26/ssl-certificate-on-a-2005-instance-failing-with-a-0x8009030d-error/</link>
		<comments>http://random-thunks.com/2011/10/26/ssl-certificate-on-a-2005-instance-failing-with-a-0x8009030d-error/#comments</comments>
		<pubDate>Wed, 26 Oct 2011 15:49:25 +0000</pubDate>
		<dc:creator>Rachel Ambler</dc:creator>
				<category><![CDATA[Cluster]]></category>
		<category><![CDATA[Sql Server]]></category>
		<category><![CDATA[SSL]]></category>

		<guid isPermaLink="false">https://furtherrandomthunks.wordpress.com/2011/10/26/ssl-certificate-on-a-2005-instance-failing-with-a-0x8009030d-error/</guid>
		<description><![CDATA[This one had me stumped for days. Fortunately MS support came to my rescue with a simple answer. The problem I was having was getting Sql Server to load an SSL certificate to encrypt communications between client and server on a clustered instance. No matter how many times I tried, Sql refused to run issuing [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=random-thunks.com&amp;blog=13902509&amp;post=107&amp;subd=furtherrandomthunks&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This one had me stumped for days. Fortunately MS support came to my rescue with a simple answer.</p>
<p>The problem I was having was getting Sql Server to load an SSL certificate to encrypt communications between client and server on a clustered instance. No matter how many times I tried, Sql refused to run issuing a <strong>0x8009030d</strong> error code when attempting to load the certificate. I was always getting the following logged in my ErrorLog:</p>
<p><font face="Consolas">Server The server could not load the certificate it needs to initiate an SSL connection. It returned the following error: 0x8009030d. Check certificates to make sure they are valid. </font></p>
<p><font face="Consolas">Server Error: 26014, Severity: 16, State: 1. </font></p>
<p><font face="Consolas">Server Unable to load user-specified certificate. The server will not accept a connection. You should verify that the certificate is correctly installed. See &quot;Configuring Certificate for Use by SSL&quot; in Books Online. </font></p>
<p><font face="Consolas">Server Error: 17182, Severity: 16, State: 1. </font></p>
<p><font face="Consolas">Server TDSSNIClient initialization failed with error 0&#215;80092004, status code 0&#215;80.</font></p>
<p><font face="Consolas">Server Error: 17182, Severity: 16, State: 1. 2011-10-26 07:26:42.75 Server TDSSNIClient initialization failed with error 0&#215;80092004, status code 0&#215;1.</font></p>
<p><font face="Consolas">Server Error: 17826, Severity: 18, State: 3.</font></p>
<p><font face="Consolas">Server Could not start the network library because of an internal error in the network library. To determine the cause, review the errors immediately preceding this one in the error log. </font></p>
<p><font face="Consolas">Server Error: 17120, Severity: 16, State: 1.</font></p>
<p><font face="Consolas">Server SQL Server could not spawn FRunCM thread. Check the SQL Server error log and the Windows event logs for information about possible related problems.</font></p>
<p>I’d come across a few posts that mentioned this error and that Sql was having issues with the Private Key but they suggested using commands from the Resource Kit to fix the issue – something I could not do. To make matters worse (as my previous post described) Checkpointing kept on getting in my way of removing the certificate, just to get Sql to start. I’d even tried things like adding the Service Account in the Administrators group in the vain hope that it was a permissions issue.</p>
<p>So after spending several days of tearing my hair out (and running out of time to get this fixed) I came to the conclusion I needed to bring in outside help – MS Support to the rescue!</p>
<p>And the answer? It was as simple as deleting the previously imported certificate then re-importing it using the domain account that runs Sql. Yup, it was that simple…</p>
<p>Thanks Gary!</p>
<br />Filed under: <a href='http://random-thunks.com/category/cluster/'>Cluster</a>, <a href='http://random-thunks.com/category/sql-server/'>Sql Server</a>, <a href='http://random-thunks.com/category/ssl/'>SSL</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/furtherrandomthunks.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/furtherrandomthunks.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/furtherrandomthunks.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/furtherrandomthunks.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/furtherrandomthunks.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/furtherrandomthunks.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/furtherrandomthunks.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/furtherrandomthunks.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/furtherrandomthunks.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/furtherrandomthunks.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/furtherrandomthunks.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/furtherrandomthunks.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/furtherrandomthunks.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/furtherrandomthunks.wordpress.com/107/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=random-thunks.com&amp;blog=13902509&amp;post=107&amp;subd=furtherrandomthunks&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://random-thunks.com/2011/10/26/ssl-certificate-on-a-2005-instance-failing-with-a-0x8009030d-error/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/ff753fc907fc48fcd86dea3c47cc57de?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">furtherrandomthunks</media:title>
		</media:content>
	</item>
		<item>
		<title>Sql Server secretly replicating registry keys on startup</title>
		<link>http://random-thunks.com/2011/10/20/sql-server-secretly-replicating-registry-keys-on-startup/</link>
		<comments>http://random-thunks.com/2011/10/20/sql-server-secretly-replicating-registry-keys-on-startup/#comments</comments>
		<pubDate>Thu, 20 Oct 2011 17:57:50 +0000</pubDate>
		<dc:creator>Rachel Ambler</dc:creator>
				<category><![CDATA[Registry]]></category>
		<category><![CDATA[Sql Server]]></category>
		<category><![CDATA[Workarounds]]></category>

		<guid isPermaLink="false">https://furtherrandomthunks.wordpress.com/2011/10/20/sql-server-secretly-replicating-registry-keys-on-startup/</guid>
		<description><![CDATA[Not my find this but such a useful post I thought I’d repost it. In my situation I had added a certificate’s thumbprint to the SuperSocketNetLib key on a new cluster which, for some reason Sql took a total and utter dislike to. I thought (in my apparent naïveté) that I could simple remove the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=random-thunks.com&amp;blog=13902509&amp;post=105&amp;subd=furtherrandomthunks&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Not my find this but such a useful post I thought I’d repost it.</p>
<p>In my situation I had added a certificate’s thumbprint to the <strong>SuperSocketNetLib</strong> key on a new cluster which, for some reason Sql took a total and utter dislike to.</p>
<p>I thought (in my apparent naïveté) that I could simple remove the thumbprint from the registry, restart Sql and I’d be off and running.</p>
<p>Not so fast though. Every time I’d restart Sql Server it would repopulate the thumbprint back into the Certificate value then fail to start as a result. No matter how many times I rebooted, took the value out of the registry and twisted on my left foot whilst swinging a chicken in the air, Sql Server stubbornly and abjectly refused to stop repopulating the value with the bad certificates thumbprint.</p>
<p>User <a href="http://www.sqlservercentral.com/Forums/UserInfo807296.aspx">baby_cheeses</a> on <a href="http://www.sqlservercentral.com/">SqlServerCentral.com</a> was able to find the magic formula for stopping Sql Server from magically repopulating the registry.</p>
<p>I amended baby_cheeses answer slightly to fit my situation, and it is…</p>
<p>&#160; 1. Remove the Certificate’s thumbprint from the registry.</p>
<p>&#160; 2. Start Sql Server using a <strong>Net Start MSSqlServer</strong>.</p>
<p>&#160; 3. Check the registry again and ensure thumbprint hasn’t returned.</p>
<p>&#160; 4. Start up Sql Server from within Cluster Administrator</p>
<p>&#160; 5. Check registry a third time and remove the thumbprint from the Certificate value.</p>
<p>&#160; 6. Move the cluster to another node and watch it start normally.</p>
<p>Like I say, I can’t take credit for this discovery.</p>
<p>Original post is <a href="http://www.sqlservercentral.com/Forums/Topic870506-146-1.aspx#bm870520">here</a>.</p>
<p>&#160;</p>
<p><strong><u>UPDATE</u></strong></p>
<p>Apparently what is happening here is known as <a href="http://msdn.microsoft.com/en-us/library/windows/desktop/aa367195(v=vs.85).aspx">Checkpointing</a>, where a copy of the registry is stored on the Quorum. MS gives an official method of avoiding the problem <a href="http://support.microsoft.com/kb/953504">here</a>, although I still think baby_cheeses solution is simpler and involves far less hacking around!</p>
<br />Filed under: <a href='http://random-thunks.com/category/registry/'>Registry</a>, <a href='http://random-thunks.com/category/sql-server/'>Sql Server</a>, <a href='http://random-thunks.com/category/workarounds/'>Workarounds</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/furtherrandomthunks.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/furtherrandomthunks.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/furtherrandomthunks.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/furtherrandomthunks.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/furtherrandomthunks.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/furtherrandomthunks.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/furtherrandomthunks.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/furtherrandomthunks.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/furtherrandomthunks.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/furtherrandomthunks.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/furtherrandomthunks.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/furtherrandomthunks.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/furtherrandomthunks.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/furtherrandomthunks.wordpress.com/105/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=random-thunks.com&amp;blog=13902509&amp;post=105&amp;subd=furtherrandomthunks&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://random-thunks.com/2011/10/20/sql-server-secretly-replicating-registry-keys-on-startup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/ff753fc907fc48fcd86dea3c47cc57de?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">furtherrandomthunks</media:title>
		</media:content>
	</item>
		<item>
		<title>SHOWPLAN permission denied in database &#8216;master&#8217;.</title>
		<link>http://random-thunks.com/2011/03/08/showplan-permission-denied-in-database-master/</link>
		<comments>http://random-thunks.com/2011/03/08/showplan-permission-denied-in-database-master/#comments</comments>
		<pubDate>Tue, 08 Mar 2011 20:02:01 +0000</pubDate>
		<dc:creator>Rachel Ambler</dc:creator>
				<category><![CDATA[Grumbles]]></category>
		<category><![CDATA[Sql Server]]></category>

		<guid isPermaLink="false">http://random-thunks.com/?p=97</guid>
		<description><![CDATA[Tricky lil&#8217; bugger this one. We hit this error when trying to run a Estimated Query Plan on a users&#8217; query. Didn&#8217;t make any sense since we&#8217;re SysAdmin&#8217;s on the server;  doubly-so since we could run a showplan elsewhere. Turns out the offender in question was a call to msdb.dbo.sp_send_dbmail. Apparently bad funky things happen there [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=random-thunks.com&amp;blog=13902509&amp;post=97&amp;subd=furtherrandomthunks&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Tricky lil&#8217; bugger this one.</p>
<p>We hit this error when trying to run a Estimated Query Plan on a users&#8217; query. Didn&#8217;t make any sense since we&#8217;re SysAdmin&#8217;s on the server;  doubly-so since we could run a showplan elsewhere.</p>
<p>Turns out the offender in question was a call to msdb.dbo.sp_send_dbmail. Apparently bad funky things happen there if one tries a showplan on it. To solve it we simply commented out the call to the sendmail procedure out and then, the sky&#8217;s did doth part and our estimated query plan presented itself unto us..</p>
<p>Good to know&#8230;</p>
<br />Filed under: <a href='http://random-thunks.com/category/grumbles/'>Grumbles</a>, <a href='http://random-thunks.com/category/sql-server/'>Sql Server</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/furtherrandomthunks.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/furtherrandomthunks.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/furtherrandomthunks.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/furtherrandomthunks.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/furtherrandomthunks.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/furtherrandomthunks.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/furtherrandomthunks.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/furtherrandomthunks.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/furtherrandomthunks.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/furtherrandomthunks.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/furtherrandomthunks.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/furtherrandomthunks.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/furtherrandomthunks.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/furtherrandomthunks.wordpress.com/97/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=random-thunks.com&amp;blog=13902509&amp;post=97&amp;subd=furtherrandomthunks&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://random-thunks.com/2011/03/08/showplan-permission-denied-in-database-master/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/ff753fc907fc48fcd86dea3c47cc57de?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">furtherrandomthunks</media:title>
		</media:content>
	</item>
		<item>
		<title>Target.com: Inventory like it&#8217;s 1999!</title>
		<link>http://random-thunks.com/2011/01/22/target-com-inventory-like-its-1999/</link>
		<comments>http://random-thunks.com/2011/01/22/target-com-inventory-like-its-1999/#comments</comments>
		<pubDate>Sat, 22 Jan 2011 13:51:35 +0000</pubDate>
		<dc:creator>Rachel Ambler</dc:creator>
				<category><![CDATA[Grumbles]]></category>
		<category><![CDATA[Inventory]]></category>
		<category><![CDATA[Sql Server]]></category>

		<guid isPermaLink="false">https://furtherrandomthunks.wordpress.com/2011/01/22/target-com-inventory-like-its-1999/</guid>
		<description><![CDATA[I like online shopping – I do it a lot. I’ll admit that Amazon.Com has me hooked and I’d spend even more money there if the wife wouldn’t cut my fingers off at the core as a result. Target.Com is a new one for me to visit though. Done the retail store (a lot) and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=random-thunks.com&amp;blog=13902509&amp;post=94&amp;subd=furtherrandomthunks&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I like online shopping – I do it a lot. I’ll admit that <a href="http://amazon.com">Amazon.Com</a> has me hooked and I’d spend even more money there if the wife wouldn’t cut my fingers off at the core as a result. <a href="http://target.com">Target.Com</a> is a new one for me to visit though. Done the retail store (a lot) and like it a lot (beats <a href="http://www.walmart.com">Wally World</a> any day of the week), but their online inventory leaves something to be desired.</p>
<p>They try hard hard – real hard. When an item’s in stock they not only tell you that but also which Aisle it’s in (or endcap thereof). Real nice and useful however a total FAIL when it comes to reliability.</p>
<p>For me if your data’s not 100% correct it’s not worth pushing. And in Target’s case they seem to have an issue with the number of items on hand bit. Depending on whom we spoke to (wither store or via the phone) that figure could be 24 hours or even more out of date ; The web site continued to proudly inform us that our local Target had a particular item in stock even when it didn&#8217;t. Even checking over 24 hours later it still told us it was available even though it wasn’t.</p>
<p>This effect reminds me of a crowd I did some Sql Work for late in the last c. whilst I was still in the UK. Their name shall remain known only to me and them, however the story’s true. This crowd wanted an online system to punt their wares to Joe Consumer – all wizzywzggy flash driven utilizing Sql Server on the front and back end with replication to handle to the orders. Real nice right up to the point when there order’s then ended up on a printer somewhere awaiting an operator to actually input the order to the mainframe ‘at some later point’. This of course meant the at any point in time the inventory could could vary from accurate to ‘just a stab in the dark’.</p>
<p>I was reminded of this antiquated hand-cranked this system with my experience at Target; if you’re going to have an inventory indicator then it’d had better be accurate to, I don’t know, the last 60 minutes at least or else it devalues the web site forcing the consumer to have to resort to the phone to double check the inventory prior to (in our case) traipsing out in the bloody snow and cold).</p>
<br />Filed under: <a href='http://random-thunks.com/category/grumbles/'>Grumbles</a>, <a href='http://random-thunks.com/category/inventory/'>Inventory</a>, <a href='http://random-thunks.com/category/sql-server/'>Sql Server</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/furtherrandomthunks.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/furtherrandomthunks.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/furtherrandomthunks.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/furtherrandomthunks.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/furtherrandomthunks.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/furtherrandomthunks.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/furtherrandomthunks.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/furtherrandomthunks.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/furtherrandomthunks.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/furtherrandomthunks.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/furtherrandomthunks.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/furtherrandomthunks.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/furtherrandomthunks.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/furtherrandomthunks.wordpress.com/94/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=random-thunks.com&amp;blog=13902509&amp;post=94&amp;subd=furtherrandomthunks&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://random-thunks.com/2011/01/22/target-com-inventory-like-its-1999/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/ff753fc907fc48fcd86dea3c47cc57de?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">furtherrandomthunks</media:title>
		</media:content>
	</item>
		<item>
		<title>Resilient and unstoppable</title>
		<link>http://random-thunks.com/2010/12/30/resilient-and-unstoppable/</link>
		<comments>http://random-thunks.com/2010/12/30/resilient-and-unstoppable/#comments</comments>
		<pubDate>Thu, 30 Dec 2010 13:09:41 +0000</pubDate>
		<dc:creator>Rachel Ambler</dc:creator>
				<category><![CDATA[Auditing]]></category>
		<category><![CDATA[Idera]]></category>
		<category><![CDATA[Sql Server]]></category>

		<guid isPermaLink="false">https://furtherrandomthunks.wordpress.com/2010/12/30/resilient-and-unstoppable/</guid>
		<description><![CDATA[This post is a little on the late side, however better late than never… We’ve been using Idera’s Sql Compliance Manager at work for some time to provide a good healthy audit trail of all user database changes, good or bad, on the production DB’s. As our use grew so did it’s unsuitability to the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=random-thunks.com&amp;blog=13902509&amp;post=93&amp;subd=furtherrandomthunks&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This post is a little on the late side, however better late than never…</p>
<p>We’ve been using <a href="http://www.idera.com/Products/SQL-Server/SQL-compliance-manager/">Idera’s Sql Compliance Manager</a> at work for some time to provide a good healthy audit trail of all user database changes, good or bad, on the production DB’s. As our use grew so did it’s unsuitability to the server it was located on (needed a TB more data than the few hundred GB currently on offer would allow!). So that led me to make the biggest move yet when I had to copy nearly a year’s worth of audit data (took about 24 hours across a 1GB pipe!), followed by a total reinstalled and repointing from the client DB Servers.</p>
<p>I’m extremely proud to report that throughout this downtime (nearly 2 days in total), Idera didn’t miss a beat and ALL activity that took place during the move was picked up as soon as the new server came online and within a day you’d have never known there had even been the potential of a blip.</p>
<p>Nice work Idera – Mark me down as extremely bloody impressed.</p>
<br />Filed under: <a href='http://random-thunks.com/category/auditing/'>Auditing</a>, <a href='http://random-thunks.com/category/idera/'>Idera</a>, <a href='http://random-thunks.com/category/sql-server/'>Sql Server</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/furtherrandomthunks.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/furtherrandomthunks.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/furtherrandomthunks.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/furtherrandomthunks.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/furtherrandomthunks.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/furtherrandomthunks.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/furtherrandomthunks.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/furtherrandomthunks.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/furtherrandomthunks.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/furtherrandomthunks.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/furtherrandomthunks.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/furtherrandomthunks.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/furtherrandomthunks.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/furtherrandomthunks.wordpress.com/93/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=random-thunks.com&amp;blog=13902509&amp;post=93&amp;subd=furtherrandomthunks&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://random-thunks.com/2010/12/30/resilient-and-unstoppable/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/ff753fc907fc48fcd86dea3c47cc57de?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">furtherrandomthunks</media:title>
		</media:content>
	</item>
		<item>
		<title>ToDo&#8217;s in the cloud</title>
		<link>http://random-thunks.com/2010/12/28/todos-in-the-cloud/</link>
		<comments>http://random-thunks.com/2010/12/28/todos-in-the-cloud/#comments</comments>
		<pubDate>Tue, 28 Dec 2010 15:48:44 +0000</pubDate>
		<dc:creator>Rachel Ambler</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Cloud]]></category>
		<category><![CDATA[GTD]]></category>
		<category><![CDATA[Outlook]]></category>
		<category><![CDATA[Tasks]]></category>

		<guid isPermaLink="false">https://furtherrandomthunks.wordpress.com/2010/12/28/todos-in-the-cloud/</guid>
		<description><![CDATA[Way back in June of this year (yup, it’s still just barely 2010), I posted an entry about Migrating our world to Google Apps which ended up with a plea for Google to bring out an API for Google Tasks. Since then we’ve moved on a little – Email’s it seems will be handled now [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=random-thunks.com&amp;blog=13902509&amp;post=88&amp;subd=furtherrandomthunks&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Way back in June of this year (yup, it’s still just barely 2010), I posted an entry about <a href="http://random-thunks.com/2010/06/18/migrating-our-world-to-google-apps/">Migrating our world to Google Apps</a> which ended up with a plea for Google to bring out an API for Google Tasks.</p>
<p>Since then we’ve moved on a little – Email’s it seems will be handled now by Outlook 2010 with a rather superb little program called <a href="http://www.daveswebsite.com/software/gsync/">GSyncIt</a> to handle Google integration of Contacts and Calendars. Now, GSyncIt can do Tasks as well however Google Tasks are not well represented in the Android World.</p>
<p>When it comes down to Cloud task managers there seem to be three main contenders:</p>
<ul>
<li><a href="http://www.rememberthemilk.com/">Remember the Milk</a>: Nice idea, kludgy interface, expensive annual price for not much more</li>
<li><a href="http://www.producteev.com/">Producteev</a>: Nice interface, very happily with <a href="http://weloveastrid.com/">Astrid</a>. Makes tasks kinda fun again. Also has some nice Google Gadgets and Labs features.</li>
<li><a href="http://www.toodledo.com">Toodledo</a>: More inline with the <a href="http://en.wikipedia.org/wiki/Getting_Things_Done">GTD</a> philosophy and as such a reasonable cloud replacement for <a href="http://www.effexis.com/achieve/planner.htm">Achieve</a> (which I used to use a lot until they pulled a fast one and did a v2 that was still v1 with small amendments) (despite it’s one level of SubTasks). Works VERY well with <a href="http://webis.net/products_info.php?p_id=pocketinformant_android">Pocket Informant</a>.</li>
</ul>
<p>My first choice was Producteev : it beat Milk hands down on the user interface, had a very nice price (free for 2 people sharing) and felt very smooth – especially with it’s hooks into Astrid. However my decision was eventually made for me by WebIS’s PI. They had standardized on ToodleDo for their task synchronization, and now apparently I hear that <a href="http://koxx3.wordpress.com/">Pure Calendar</a> also talks to PI.</p>
<p>Granted Toodledo’s subtask feature takes it from free to $14.95, but that’s still cheaper than Milk Pro – and $14.95 per user more expensive than Producteev (sometimes it’s kinda tough to beat free).</p>
<p>I still like Producteev a lot and I really hate to move away from it – they’re a extremely competent offering and I recommended them a lot.. If it wasn’t for PI I probably wouldn’t have changed. However I’ve used Pocket Informant on mutiple platforms (I think they may have even had a Palm v3.0 edition at one point) and I have become a major fan of the software – task and event templates alone make it a worthwhile purchase.</p>
<p>Granted I could have stuck with something like <a href="http://www.jorte.net/english/index.html">Jorte</a> and an Astrid\Producteev combo but I feel like I’m addicted to the Web IS offering – and I don’t want to give it up.</p>
<p>The final item that pushed me to the Toodledo camp was at least it had some level of Outlook synchronization with Chromatic Dragon’s <a href="http://www.chromadrake.com/ChromaticDragon/software/ToodledoSyncInfo.aspx">offering</a> (I swear I remember that domain from the late 90’s as a crowd who offered Windows Theming software). Producteev had spoken about the possibility of one way back in August but none was forthcoming).</p>
<p>So, my life is now complete. I can use Outlook, the web or my <a href="http://en.wikipedia.org/wiki/Droid_Incredible">Droid Incredible</a> to handle all my PIM needs. And I’m now fully in the folds of David Allens GTD world!</p>
<br />Filed under: <a href='http://random-thunks.com/category/android/'>Android</a>, <a href='http://random-thunks.com/category/cloud/'>Cloud</a>, <a href='http://random-thunks.com/category/gtd/'>GTD</a>, <a href='http://random-thunks.com/category/outlook/'>Outlook</a>, <a href='http://random-thunks.com/category/tasks/'>Tasks</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/furtherrandomthunks.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/furtherrandomthunks.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/furtherrandomthunks.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/furtherrandomthunks.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/furtherrandomthunks.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/furtherrandomthunks.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/furtherrandomthunks.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/furtherrandomthunks.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/furtherrandomthunks.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/furtherrandomthunks.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/furtherrandomthunks.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/furtherrandomthunks.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/furtherrandomthunks.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/furtherrandomthunks.wordpress.com/88/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=random-thunks.com&amp;blog=13902509&amp;post=88&amp;subd=furtherrandomthunks&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://random-thunks.com/2010/12/28/todos-in-the-cloud/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/ff753fc907fc48fcd86dea3c47cc57de?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">furtherrandomthunks</media:title>
		</media:content>
	</item>
		<item>
		<title>Why I switched to Crashplan</title>
		<link>http://random-thunks.com/2010/12/28/why-i-switched-to-crashplan/</link>
		<comments>http://random-thunks.com/2010/12/28/why-i-switched-to-crashplan/#comments</comments>
		<pubDate>Tue, 28 Dec 2010 14:32:36 +0000</pubDate>
		<dc:creator>Rachel Ambler</dc:creator>
				<category><![CDATA[Archiving]]></category>
		<category><![CDATA[Cloud]]></category>

		<guid isPermaLink="false">https://furtherrandomthunks.wordpress.com/2010/12/28/why-i-switched-to-crashplan/</guid>
		<description><![CDATA[There are several cloud backup products on the market and I’ve dabbled in quite a few. BeInSync was my first true love – right up to the point Phoenix Technologies shut down operations. That was then replaced by iDrive &#8211; which is still on the wife’s PC today &#8211; albeit on a short term lease [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=random-thunks.com&amp;blog=13902509&amp;post=86&amp;subd=furtherrandomthunks&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>There are several cloud backup products on the market and I’ve dabbled in quite a few. <a href="http://techcrunch.com/2008/03/26/beinsync-acquired-by-phoenix-technologies-for-25m/">BeInSync</a> was my first true love – right up to the point Phoenix Technologies shut down operations. That was then replaced by <a href="http://www.idrive.com/">iDrive</a> &#8211; which is still on the wife’s PC today &#8211; albeit on a short term lease of life. It had been on my PC aswell but after the move to Windows 7 and <a href="http://www.comodo.com/">Comodo</a> it stubbornly refused to play ball (which was odd because wifey has the same configuration and there it works fine). So last March I threw myself into <a href="http://www.carbonite.com/">Carbonite</a> and really liked the way it put those lil’ ol’ red/greeen markers on each file to indicate it’s freshness in the cloud. However it too had issues such as not playing ball with my Outlook PST files in a sensible and meaningful fashion.</p>
<p>I should probably add here that before I settled on iDrive I had also briefly auditioned <a href="http://mozy.com/">Mozy</a> but quickly threw that idea out.</p>
<p>So at this juncture I was left with iDrive ion the SO’s PC, Carbonite on mine and <a href="http://www.genie-soft.com/Business/genie_timeline_pro/overview.aspx">Genie Timeline</a> on both performing local backups. Trouble is, I’m a control freak and none of this was giving me the confidence that all was really well on both PC’s – yet alone my Linux Mint (yeah, I <a href="http://random-thunks.com/2010/06/03/my-brief-sojourn-with-linux-mint-is-over/">switched back</a> to Mint!) Netbook which was left swinging in the wind with a collection of important files on there left from various vacations (which is when the Netbook get’s pressed into action the most).</p>
<p><a href="http://crashplan.com">Crashplan</a> made it’s presence known through the strongest advertising I’d seen myself. Every time I flicked on <a href="http://www.evernote.com/">Evernote</a> there was a prod to try it out (I used Evernote a lot). Then the pushed through their Thanksgiving Cyber-Monday sale which I still refused to take a bite out (mainly because it didn’t address at the time there sudden disappearance of Crashplan+), even through the short term sale of a 3 years 3 PC offer seemed tempting.</p>
<p>Now, what made me make the jump was the sales structure AFTERWARDS. Sure the 3 year (for the price of 2 years) 3 PC deal had vanished but in it’s place was a 4 Year ‘All you can eat’ plan. This was indeed tempting – so much so that I quickly installed a copy on my PC as a 30 day trial and began thro throw more and more at it.</p>
<p>Here’s what I liked so much:</p>
<ul>
<li>Multiple PC’s in the same household are all covered</li>
<li>Windows, Linux or Mac makes no odds – still covered.</li>
<li>Backup to cloud, local drive or another PC – snap (no more need for Genie Timeline 2.0)</li>
<li>Email and Twitter both utilized for alerting of failed backups.</li>
<li>Multiple backup sets (e.g. my AppData stuff I backup only to a local drive and another PC)</li>
<li>Single source backup – no mo longer need third party applications to backup outside of the cloud.</li>
</ul>
<p>So after auditioning it myself (I dogfood pretty much everything before it get’s put on my wife’s PC) – I came out a true believer. We checked the budget, confirmed we had the cash for a 4 year upfront payment and set the ball rolling</p>
<p>I then threw the kitchen sink at it. All my original sized pictures, MP3’s AppData – the whole shebang and it ate it all up with aplomb and gusto.It finished the wife’s full backup to the cloud a few days ago which means that I know can finally shut off the iDrive and Genie spigots.</p>
<p>My backup’s still running, but only because my 50GB MP3 collection has been set to backup during the night time only – I still have 3 months of Carbonite subscription left on my PC so I’m not so worried about getting it done ASAP – ‘sides, I do like my bandwidth!</p>
<p>So now I’m happy – less to maintain and more completeness – what a combo!</p>
<br />Filed under: <a href='http://random-thunks.com/category/archiving/'>Archiving</a>, <a href='http://random-thunks.com/category/cloud/'>Cloud</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/furtherrandomthunks.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/furtherrandomthunks.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/furtherrandomthunks.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/furtherrandomthunks.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/furtherrandomthunks.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/furtherrandomthunks.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/furtherrandomthunks.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/furtherrandomthunks.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/furtherrandomthunks.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/furtherrandomthunks.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/furtherrandomthunks.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/furtherrandomthunks.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/furtherrandomthunks.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/furtherrandomthunks.wordpress.com/86/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=random-thunks.com&amp;blog=13902509&amp;post=86&amp;subd=furtherrandomthunks&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://random-thunks.com/2010/12/28/why-i-switched-to-crashplan/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/ff753fc907fc48fcd86dea3c47cc57de?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">furtherrandomthunks</media:title>
		</media:content>
	</item>
		<item>
		<title>Migrating our world to Google Apps</title>
		<link>http://random-thunks.com/2010/06/18/migrating-our-world-to-google-apps/</link>
		<comments>http://random-thunks.com/2010/06/18/migrating-our-world-to-google-apps/#comments</comments>
		<pubDate>Fri, 18 Jun 2010 15:25:25 +0000</pubDate>
		<dc:creator>Rachel Ambler</dc:creator>
				<category><![CDATA[Cloud]]></category>
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">https://furtherrandomthunks.wordpress.com/2010/06/18/migrating-our-world-to-google-apps/</guid>
		<description><![CDATA[Those who know me will know I’ve not been the biggest fan of Google of late. I still think many of their business strategies may be on the dodgy side (read Capturing emails and passwords from unsecured WiFi access points amongst others). However I will have to admit that in terms of providing a unified [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=random-thunks.com&amp;blog=13902509&amp;post=79&amp;subd=furtherrandomthunks&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Those who know me will know I’ve not been the biggest fan of Google of late. I still think many of their business strategies may be on the dodgy side (read <a href="http://www.macworld.co.uk/digitallifestyle/news/index.cfm?newsid=3227419&amp;pagtype=allchandate" target="_blank">Capturing emails and passwords from unsecured WiFi access points</a> amongst others).</p>
<p>However I will have to admit that in terms of providing a unified cloud for governing ones life (email, documents, tasks, calendar etc) then they do have more than an edge on their competitors. Granted Microsoft has their <a href="http://www.officelive.com/en-us/" target="_blank">Office Live</a> and <a href="http://windowslive.com/Online" target="_blank">Windows Live</a> sites however it doesn’t do much for you on the email front unless you’re an <a href="http://connect.microsoft.com/site452" target="_blank">educational establishment</a> – and I needed a total a solution as I could get.</p>
<p>My spouse and I have both been long time Outlook users and I’ve been using Outlook 2010 for the last 2-3 months, however given the fact that we’re both wanting more ‘anywhere anytime’ access to our data and the fact we’re both getting into more social networking, it fell upon my shoulders to find a solution that would make both of us happy.</p>
<p>Where Microsoft has Live and Outlook then, Google has <a href="http://www.mozillamessaging.com/en-US/thunderbird/" target="_blank">Thunderbird</a> (or <a href="http://projects.gnome.org/evolution/" target="_blank">Evolution</a> or any other application that does IMAP – including Outlook). And being a bit of a control freak (in other words I like to have a central ‘command’ console whenever possible) Google Apps Standard seemed to fit the bill for myself and ‘she who must be obeyed’.</p>
<p>Currently we use <a href="http://order.1and1.com" target="_blank">1&amp;1</a> for our email handling – I also use it to host all the images etc. in this blog, in addition to allowing other family members to use it for their web needs as well). Being paranoid buggers, neither myself, nor my better half like using single email addresses for everyone. So instead we generate email random addresses for each company we contact – that way when an address should somehow find its way onto a Spam list (as 4-5 have these last 2 years) we can simple blow that address away and we’re back to a spam free existence. So given our investment already in 1&amp;1 I was loath to drop it – so I didn’t and instead incorporated it into my overall solution and ended up simply forwarded emails to the new address (which was especially nice since it allowed me to run both systems side by side for a while).</p>
<p>Utilizing 1&amp;1’s domain DNS management features (it allowed me to easily modify the MX records and CNames as required) and free sub-domains I was able to set up a new sub-domain for all my mobile communications need and attach that to Google apps. This allowed me to set up friendly URL’s to each service (Mail, Calendar etc).</p>
<p>Then came configuring GMail accounts for us both making sure we kept as much of our existing Outlook functionality as possible (shared calendars and tasks using <a href="http://www.sync2pst.com/" target="_blank">Sync2Pst</a>) whilst gaining more functionality (unified view of the data, regardless of which OS, PC or mobile device we use). This necessitated using Thunderbird (I did try Evolution which ran OK on my <a href="http://www.ubuntu.com/" target="_blank">Ubuntu</a> box but failed miserably to work on the <a href="http://www.dipconsultants.com/evolution/" target="_blank">Windows port</a>) using a handful of addons (<a href="http://www.mozilla.org/projects/calendar/lightning/" target="_blank">Lightening</a>, <a href="https://addons.mozilla.org/en-US/thunderbird/addon/4631/" target="_blank">Google Calendar Provider for Lightening</a> and the rather excellent although still in beta (for v3 anyway) <a href="http://www.pirules.org/blog/?p=339#comments" target="_blank">gContactSync</a>) to name but three. With this in hand I was able to achieve my first directive from the boss – no duplication of work – in other words should she delete an email using (<a href="http://www.brighthand.com/default.asp?newsID=16683&amp;news=Google+Android+OS+2.1+HTC+Droid+Incredible+Verizon+Sold+Out+Backorder" target="_blank">the soon to arrive</a>) <a href="http://www.htc.com/us/products/droid-incredible-verizon?view=1-1&amp;sort=0" target="_blank">Droid Incredible</a> she wanted it gone everywhere. Equally if she updated a contact in Thunderbird, she’d expect to see the same update on her phone. The sharing of calendars was the easiest bit using Google’s direct calendar sharing facilities.</p>
<p>This still leaves us with some holes which we’ve either got a workaround for (tasks are Calendar entries) or no solution (sharing contacts between us) however I continue to look for answers as and when they should transpire.</p>
<p>Google apps also gives us access to several other shared applications what we can use a single sign on for which makes the deal even better including a HelpDesk app which allows her to get me to fix computer issues without nagging me every 5 minutes!</p>
<p>Now, this is not perfect I’ll admit, however given the alternatives (or lack thereof) it’s the best solution (especially given that we’re both about to get Droid’ed).</p>
<p>I’m also hoping that Google do begin to migrate Picasa soon to Google Apps since that would make handling our pictures easier and <em>please</em> Google, bring out an API for tasks!</p>
<br />Filed under: <a href='http://random-thunks.com/category/cloud/'>Cloud</a>, <a href='http://random-thunks.com/category/google/'>Google</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/furtherrandomthunks.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/furtherrandomthunks.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/furtherrandomthunks.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/furtherrandomthunks.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/furtherrandomthunks.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/furtherrandomthunks.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/furtherrandomthunks.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/furtherrandomthunks.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/furtherrandomthunks.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/furtherrandomthunks.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/furtherrandomthunks.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/furtherrandomthunks.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/furtherrandomthunks.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/furtherrandomthunks.wordpress.com/79/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=random-thunks.com&amp;blog=13902509&amp;post=79&amp;subd=furtherrandomthunks&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://random-thunks.com/2010/06/18/migrating-our-world-to-google-apps/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/ff753fc907fc48fcd86dea3c47cc57de?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">furtherrandomthunks</media:title>
		</media:content>
	</item>
		<item>
		<title>My brief sojourn with Linux Mint is over&#8230;</title>
		<link>http://random-thunks.com/2010/06/03/my-brief-sojourn-with-linux-mint-is-over/</link>
		<comments>http://random-thunks.com/2010/06/03/my-brief-sojourn-with-linux-mint-is-over/#comments</comments>
		<pubDate>Thu, 03 Jun 2010 16:35:49 +0000</pubDate>
		<dc:creator>Rachel Ambler</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mint]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">https://furtherrandomthunks.wordpress.com/2010/06/03/my-brief-sojourn-with-linux-mint-is-over/</guid>
		<description><![CDATA[Well, it was a brief, but informative party. However now the guests have all gone home I’m left looking at removing Linux Mint from my laptop. Linux Mint I heard, was meant to be the most user friendly version of Linux one could get. However I myself found it kludgy and it felt just a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=random-thunks.com&amp;blog=13902509&amp;post=78&amp;subd=furtherrandomthunks&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Well, it was a brief, but informative party. However now the guests have all gone home I’m left looking at removing <a href="http://www.linuxmint.com" target="_blank">Linux Mint</a> from my laptop.</p>
<p><a href="http://www.linux.org" target="_blank">Linux</a> Mint I heard, was meant to be the most user friendly version of Linux one could get. However I myself found it kludgy and it felt just a tad bit hostile. Configuring and installing Software packages I found somewhat counter-intuitive – first of all I did like the idea that one has to select packages and libraries, just to say, grab a copy of Evolution. Secondly I found it surprising that the installation would then sit there with a rather obscure ‘waiting for lock’ message. It took me a while to realize the lock was the package browser (or whatever it’s called).</p>
<p><a href="http://www.compiz.org">Compiz</a> had it’s own challenges and I was forced to spend some time surfing the web to find out what it could – and couldn’t do. Cute effects but still a bit of a pain to configure. Also, not helping Mint was the failure to launch the UFW GUI from the main GUI window. Had to again surf the web to find out how to launch it manually.</p>
<p>And all this concerns me; I’ve been a long time Windows user at home (and predominantly at work). The Windows 7 install was simple and I found everything worked out the box. Dialog boxes were informative and well designed and I found it so much easier to navigate. Mint felt like a major step backwards and I was going to be hard pushed to convince my partner to allow me to put Mint on the family Asus 1008 eeE PC netbook.</p>
<p>This however is not the end of my return to Linux. Last night I decided to download a Live CD copy of <a href="http://www.ubuntu.com" target="_blank">Ubuntu</a> 10.04 LTS onto a wee lil’ USB Stick and did a Live Boot of that onto the netbook (which currently still runs the default XP O/S).</p>
<p>What a difference it felt like! Right from the Get Go I felt welcomed into Ubuntu’s warm embrace – this was a Linux distro that seemed to wanted me as a friend. I was happy to see many of the standard applications were pre-installed and ready to rock and within just a few minutes I’d already had Evolution configured and syncing to my Google Calendar (yeah, I know it all get’s blown away when I reboot, but this was a PoC test only).</p>
<p>I’ll be interested to see if this feeling translates to a full-blown laptop install. I hope so because I’m seriously considering putting Ubuntu on the Netbook this weekend (if the other [and more important] half gives me the go-ahead). However in the meantime I think I’ll be replacing Mint with Ubuntu on the laptop to see how well it goes there.</p>
<p>In the meantime I’ve left Ubuntu running on the Asus and let my partner test drive it for a few days to see how she feels about it.</p>
<p>Fingers crossed!</p>
<br />Filed under: <a href='http://random-thunks.com/category/linux/'>Linux</a>, <a href='http://random-thunks.com/category/mint/'>Mint</a>, <a href='http://random-thunks.com/category/ubuntu/'>Ubuntu</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/furtherrandomthunks.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/furtherrandomthunks.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/furtherrandomthunks.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/furtherrandomthunks.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/furtherrandomthunks.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/furtherrandomthunks.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/furtherrandomthunks.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/furtherrandomthunks.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/furtherrandomthunks.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/furtherrandomthunks.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/furtherrandomthunks.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/furtherrandomthunks.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/furtherrandomthunks.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/furtherrandomthunks.wordpress.com/78/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=random-thunks.com&amp;blog=13902509&amp;post=78&amp;subd=furtherrandomthunks&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://random-thunks.com/2010/06/03/my-brief-sojourn-with-linux-mint-is-over/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/ff753fc907fc48fcd86dea3c47cc57de?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">furtherrandomthunks</media:title>
		</media:content>
	</item>
	</channel>
</rss>
