<?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>William Durkin&#039;s Blog</title>
	<atom:link href="http://williamdurkin.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://williamdurkin.wordpress.com</link>
	<description>SQL Server, Replication, Performance Tuning and whatever else.</description>
	<lastBuildDate>Wed, 04 Jan 2012 06:34:33 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='williamdurkin.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>William Durkin&#039;s Blog</title>
		<link>http://williamdurkin.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://williamdurkin.wordpress.com/osd.xml" title="William Durkin&#039;s Blog" />
	<atom:link rel='hub' href='http://williamdurkin.wordpress.com/?pushpress=hub'/>
		<item>
		<title>When COUNT() isn&#8217;t the only way to count</title>
		<link>http://williamdurkin.wordpress.com/2011/11/17/when-count-isnt-the-only-way-to-count/</link>
		<comments>http://williamdurkin.wordpress.com/2011/11/17/when-count-isnt-the-only-way-to-count/#comments</comments>
		<pubDate>Thu, 17 Nov 2011 18:28:26 +0000</pubDate>
		<dc:creator>WilliamD</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[coding-toolbox]]></category>
		<category><![CDATA[t-sql]]></category>

		<guid isPermaLink="false">http://williamdurkin.wordpress.com/?p=200</guid>
		<description><![CDATA[When we want to count data in SQL Server, we instantly think of COUNT().  In this post, I will show that COUNT() isn't always the best way.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=williamdurkin.wordpress.com&amp;blog=12357883&amp;post=200&amp;subd=williamdurkin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I have come across a situation a number of times in the past that seems to be one of those things that are so obvious when you see the solution, but can&#8217;t see them before the penny has dropped.</p>
<p>Imagine the following scenario:</p>
<p>You want to find the total number of orders that have the Order Status &#8216;A&#8217; and the number of orders with an Order Status of &#8216;B&#8217;. This sounds like a simple enough request, that I&#8217;m sure you have heard of before.</p>
<p>Lets start off with some test data.</p>
<pre>--Test Structure
USE master
go
IF DB_ID('Sandbox') IS NULL
BEGIN
    CREATE DATABASE Sandbox
END
GO

USE Sandbox
GO
IF OBJECT_ID('dbo.CountExample') IS NOT NULL
BEGIN
    DROP TABLE dbo.CountExample
END
GO
IF OBJECT_ID('dbo.Nums') IS NOT NULL
BEGIN
    DROP FUNCTION dbo.Nums
END
GO
-- Test Function to allow fast test data creation
CREATE FUNCTION [dbo].[Nums] (@m AS bigint)
RETURNS TABLE
AS
RETURN
WITH t0
AS (SELECT n = 1
UNION ALL
SELECT n = 1),
t1
AS (SELECT n = 1
FROM t0 AS a,
t0 AS b),
t2
AS (SELECT n = 1
FROM t1 AS a,
t1 AS b),
t3
AS (SELECT n = 1
FROM t2 AS a,
t2 AS b),
t4
AS (SELECT n = 1
FROM t3 AS a,
t3 AS b),
t5
AS (SELECT n = 1
FROM t4 AS a,
t4 AS b),
results
AS (SELECT ROW_NUMBER() OVER (ORDER BY n) AS n
FROM t5)
SELECT n
FROM results
WHERE n &lt;= @m

GO
CREATE TABLE dbo.CountExample
(OrderId int NOT NULL,
OrderStatus char(1) NOT NULL)

GO

--Test data
INSERT INTO dbo.CountExample
(OrderId,
OrderStatus)
SELECT n,
CHAR(n % 27 + 64)
FROM dbo.Nums (1000) AS N
GO</pre>
<p>Now that we have some test data and tables, we can take a look at what solutions are possible.</p>
<p>Solution 1:</p>
<p>The solution that I have seen come from a lot of people has been to basically run two queries, one for each Order Stautus and then collect these together returning the result.</p>
<p>Something along the lines of:</p>
<pre>SELECT (SELECT COUNT(*) CountA
        FROM dbo.CountExample AS CE
        WHERE OrderStatus = 'A') CountA,
       (SELECT COUNT(*) CountB
        FROM dbo.CountExample AS CE
        WHERE OrderStatus = 'B') CountB</pre>
<p>This delivers the correct result, but causes two separate queries to be run (one for each Order Status). There are variations of this solution, using sub-queries or CTEs, but I hope you get the idea that a separate COUNT() is required for each total that you want to calculate.</p>
<p>Solution 2:</p>
<p>The best way, that I know of, to achieve this would be to change the logic from a COUNT() to a SUM(). This sounds wrong at first, especially because the column Order Status is a char(1) and not an integer!</p>
<p>Take a look at how I have solved the problem with SUM():</p>
<pre> 
SELECT SUM(CASE WHEN OrderStatus = 'A' THEN 1 ELSE 0 END) CountA,
       SUM(CASE WHEN OrderStatus = 'B' THEN 1 ELSE 0 END) CountB
FROM dbo.CountExample AS CE</pre>
<p>Looking at the code, we can see that I have not just used SUM(), but also a CASE statement. CASE is one of my favourite constructs in T-SQL, as it allows you to perform logical processing of an entire set or only part of a set without filtering using a WHERE clause.</p>
<p>If you take a look at the execution plan, you will also see that the table is accessed once. This is an instant improvement over the &#8220;standard&#8221; solution of COUNT()-ing per Order Status and has the added bonus of never being noticeably more expensive, regardless of how many different Order Status totals are required.</p>
<p><a href="http://williamdurkin.files.wordpress.com/2011/11/count.png"><img class="alignleft size-full wp-image-239" title="COUNT() query plan" src="http://williamdurkin.files.wordpress.com/2011/11/count.png?w=500&#038;h=68" alt="" width="500" height="68" /></a></p>
<p><a href="http://williamdurkin.files.wordpress.com/2011/11/sum.png"><img class="alignleft size-full wp-image-240" title="SUM() query plan" src="http://williamdurkin.files.wordpress.com/2011/11/sum.png?w=500&#038;h=41" alt="" width="500" height="41" /></a></p>
<p>So there you go.  COUNT() isn&#8217;t always the best way to count data in SQL Server.</p>
<br />Filed under: <a href='http://williamdurkin.wordpress.com/category/code/'>Code</a> Tagged: <a href='http://williamdurkin.wordpress.com/tag/code-2/'>code</a>, <a href='http://williamdurkin.wordpress.com/tag/coding-toolbox-2/'>coding-toolbox</a>, <a href='http://williamdurkin.wordpress.com/tag/t-sql/'>t-sql</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/williamdurkin.wordpress.com/200/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/williamdurkin.wordpress.com/200/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/williamdurkin.wordpress.com/200/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/williamdurkin.wordpress.com/200/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/williamdurkin.wordpress.com/200/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/williamdurkin.wordpress.com/200/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/williamdurkin.wordpress.com/200/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/williamdurkin.wordpress.com/200/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/williamdurkin.wordpress.com/200/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/williamdurkin.wordpress.com/200/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/williamdurkin.wordpress.com/200/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/williamdurkin.wordpress.com/200/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/williamdurkin.wordpress.com/200/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/williamdurkin.wordpress.com/200/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=williamdurkin.wordpress.com&amp;blog=12357883&amp;post=200&amp;subd=williamdurkin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://williamdurkin.wordpress.com/2011/11/17/when-count-isnt-the-only-way-to-count/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ccf3a7554dc9aafc3a5bdf230331a757?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">williamdurkin</media:title>
		</media:content>

		<media:content url="http://williamdurkin.files.wordpress.com/2011/11/count.png" medium="image">
			<media:title type="html">COUNT() query plan</media:title>
		</media:content>

		<media:content url="http://williamdurkin.files.wordpress.com/2011/11/sum.png" medium="image">
			<media:title type="html">SUM() query plan</media:title>
		</media:content>
	</item>
		<item>
		<title>SQLRoadtrip, part the 6th</title>
		<link>http://williamdurkin.wordpress.com/2011/08/01/sqlroadtrip-part-the-6th/</link>
		<comments>http://williamdurkin.wordpress.com/2011/08/01/sqlroadtrip-part-the-6th/#comments</comments>
		<pubDate>Mon, 01 Aug 2011 17:23:25 +0000</pubDate>
		<dc:creator>WilliamD</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[Installation]]></category>
		<category><![CDATA[SQL Roadtrip]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[administration]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[sqlroadtrip]]></category>

		<guid isPermaLink="false">http://williamdurkin.wordpress.com/?p=191</guid>
		<description><![CDATA[My #sqlroadtrip is now over (part 1, part 2, part 3, part 4 and part 5). I have had 2 1/2 weeks of offline time, where I ignored technology as far as I could and spent some much needed time with my family. During that time I had two more flights and a hotel stay, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=williamdurkin.wordpress.com&amp;blog=12357883&amp;post=191&amp;subd=williamdurkin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>My <a href="http://twitter.com/#!/search/%23sqlroadtrip">#sqlroadtrip</a> is now over (<a href="http://williamdurkin.wordpress.com/2011/05/29/round-the-world-in-38-days/">part 1</a>, <a href="http://williamdurkin.wordpress.com/2011/05/31/sqlroadtrip-part-deux/">part 2</a>, <a href="http://williamdurkin.wordpress.com/2011/06/10/round-the-world-in-38-days-teil-3/">part 3</a>, <a href="http://williamdurkin.wordpress.com/2011/06/16/sqlroadtrip-half-way-point/">part 4</a> and <a href="http://williamdurkin.wordpress.com/2011/06/29/the-home-stretch/">part 5</a>).  I have had 2 1/2 weeks of offline time, where I ignored technology as far as I could and spent some much needed time with my family.  During that time I had two more flights and a hotel stay, although a much more relaxed version (a week in Sardinia and not a server in sight!).</p>
<p>@Fatherjack (<a href="http://www.simple-talk.com/community/blogs/jonathanallen/default.aspx">Web</a>|<a href="http://twitter.com/#!/fatherjack">twitter</a>) requested a DBA-typical numbers breakdown of my trip, I have attempted to oblige him here:</p>
<p>38 days<br />
20 flights<br />
15 countries<br />
11 servers<br />
11 hotels<br />
5 continents<br />
4 power cuts<br />
1 case of food poisoning</p>
<p>In that time, I racked up 37229 miles (according to <a href="www.gcmap.com">www.gcmap.com</a>) and reached the &#8220;Frequent Flyer&#8221; status with Lufthansa.  I had a total flight time of approximately 80 hours (according to Lufthansa&#8217;s site), with the shortest flight being 150 miles and the longest 6526 miles.</p>
<p>I am happy to say, the rollout went well.  The systems have been up an running since, and even survived a 5 day outage in one of the offices.  The office came back online and synched up within a few hours, I was most surprised at that!</p>
<p>I am now easing myself back into my daily work, with an eye on my next trip to the PASS Summit in October &#8211; I hope to put my new Lufthansa status to use, maybe even upgrade this time round!</p>
<p>P.S. A final <a href="https://picasaweb.google.com/110793166583449139032/SQLRoadtrip?authkey=Gv1sRgCJCDt6CLuZadhAE#">picture update</a> is now online, with a few sites from Rio.  Really nice city, if it wasn&#8217;t for all the smog!!</p>
<br />Filed under: <a href='http://williamdurkin.wordpress.com/category/administration/'>Administration</a>, <a href='http://williamdurkin.wordpress.com/category/administration/installation/'>Installation</a>, <a href='http://williamdurkin.wordpress.com/category/sql-roadtrip/'>SQL Roadtrip</a>, <a href='http://williamdurkin.wordpress.com/category/uncategorized/'>Uncategorized</a> Tagged: <a href='http://williamdurkin.wordpress.com/tag/administration-2/'>administration</a>, <a href='http://williamdurkin.wordpress.com/tag/fun/'>fun</a>, <a href='http://williamdurkin.wordpress.com/tag/sqlroadtrip/'>sqlroadtrip</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/williamdurkin.wordpress.com/191/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/williamdurkin.wordpress.com/191/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/williamdurkin.wordpress.com/191/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/williamdurkin.wordpress.com/191/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/williamdurkin.wordpress.com/191/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/williamdurkin.wordpress.com/191/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/williamdurkin.wordpress.com/191/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/williamdurkin.wordpress.com/191/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/williamdurkin.wordpress.com/191/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/williamdurkin.wordpress.com/191/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/williamdurkin.wordpress.com/191/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/williamdurkin.wordpress.com/191/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/williamdurkin.wordpress.com/191/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/williamdurkin.wordpress.com/191/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=williamdurkin.wordpress.com&amp;blog=12357883&amp;post=191&amp;subd=williamdurkin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://williamdurkin.wordpress.com/2011/08/01/sqlroadtrip-part-the-6th/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ccf3a7554dc9aafc3a5bdf230331a757?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">williamdurkin</media:title>
		</media:content>
	</item>
		<item>
		<title>Be prepared!</title>
		<link>http://williamdurkin.wordpress.com/2011/07/01/be-prepared/</link>
		<comments>http://williamdurkin.wordpress.com/2011/07/01/be-prepared/#comments</comments>
		<pubDate>Fri, 01 Jul 2011 13:00:47 +0000</pubDate>
		<dc:creator>WilliamD</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Coding Toolbox]]></category>
		<category><![CDATA[Installation]]></category>
		<category><![CDATA[administration]]></category>
		<category><![CDATA[Automation]]></category>
		<category><![CDATA[best practices]]></category>

		<guid isPermaLink="false">http://williamdurkin.wordpress.com/?p=182</guid>
		<description><![CDATA[While I was on my recent trans-global sojourn I came to the conclusion that the boy scouts really had a valid point with their motto &#8220;Be Prepared&#8221;. Of course, I am not meaning it quite in the semi-military sense that Robert Baden-Powell meant, but being prepared before the large system roll-out really saved a lot [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=williamdurkin.wordpress.com&amp;blog=12357883&amp;post=182&amp;subd=williamdurkin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>While I was on my recent <a href="https://williamdurkin.wordpress.com/category/sql-roadtrip/">trans-global sojourn</a> I came to the conclusion that the boy scouts really had a valid point with their motto <a href="http://en.wikipedia.org/wiki/Scout_Motto">&#8220;Be Prepared&#8221;</a>. Of course, I am not meaning it quite in the semi-military sense that Robert Baden-Powell meant, but being prepared before the large system roll-out really saved a lot of time, nerves and money. </p>
<p>The roll-out was a set of reporting servers in a transactional replication setup, pushing operational data from a central server to the outlying branch offices around the world. I spent a great deal of time preparing these systems for the roll-out; standardising the installations, scripting out each step required to set up users, roles, permissions, DB objects, linked servers, jobs etc. This long preparation period was very tedious and I would often lose the motivation to keep at it. </p>
<p>The final payoff for this long drawn-out process has been the actual roll-out at each location. I have been able to arrive at each office, totally jet-lagged and tired from the entire travel regime and basically sit and watch the scripts run through and see the systems come to life. Had I not been prepared, I would have been in a world of pain, trying to remember what needed doing and when whilst fighting off sleep and headaches.</p>
<p>As a side note: A former colleague/mentor told me to save every script I ever run. If you don&#8217;t, you&#8217;ll need to repeat that script that took you an hour to write the very next day after you deleted it. This task has been made much easier to do thanks to the <a href="www.ssmstoolspack.com">SSMS Toolspack</a> provided by the more than awesome <a href="http://weblogs.sqlteam.com/mladenp/default.aspx">Mladen Prajdić</a>. His SSMS extension has saved me hours of time when I have written code and accidentally thrown it away, or when SSMS has crashed. Use his tool and donate to the cause!</p>
<p>So, before you start any project, always keep the Scouts motto in mind &#8211; &#8220;Be prepared&#8221;. Hard disk space is so cheap as to be free, how cheap is your time?</p>
<br />Filed under: <a href='http://williamdurkin.wordpress.com/category/administration/'>Administration</a>, <a href='http://williamdurkin.wordpress.com/category/code/'>Code</a>, <a href='http://williamdurkin.wordpress.com/category/code/coding-toolbox/'>Coding Toolbox</a>, <a href='http://williamdurkin.wordpress.com/category/administration/installation/'>Installation</a> Tagged: <a href='http://williamdurkin.wordpress.com/tag/administration-2/'>administration</a>, <a href='http://williamdurkin.wordpress.com/tag/automation/'>Automation</a>, <a href='http://williamdurkin.wordpress.com/tag/best-practices/'>best practices</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/williamdurkin.wordpress.com/182/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/williamdurkin.wordpress.com/182/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/williamdurkin.wordpress.com/182/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/williamdurkin.wordpress.com/182/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/williamdurkin.wordpress.com/182/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/williamdurkin.wordpress.com/182/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/williamdurkin.wordpress.com/182/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/williamdurkin.wordpress.com/182/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/williamdurkin.wordpress.com/182/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/williamdurkin.wordpress.com/182/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/williamdurkin.wordpress.com/182/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/williamdurkin.wordpress.com/182/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/williamdurkin.wordpress.com/182/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/williamdurkin.wordpress.com/182/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=williamdurkin.wordpress.com&amp;blog=12357883&amp;post=182&amp;subd=williamdurkin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://williamdurkin.wordpress.com/2011/07/01/be-prepared/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ccf3a7554dc9aafc3a5bdf230331a757?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">williamdurkin</media:title>
		</media:content>
	</item>
		<item>
		<title>The Home Stretch</title>
		<link>http://williamdurkin.wordpress.com/2011/06/29/the-home-stretch/</link>
		<comments>http://williamdurkin.wordpress.com/2011/06/29/the-home-stretch/#comments</comments>
		<pubDate>Wed, 29 Jun 2011 21:29:31 +0000</pubDate>
		<dc:creator>WilliamD</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[Installation]]></category>
		<category><![CDATA[SQL Roadtrip]]></category>
		<category><![CDATA[administration]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[sqlroadtrip]]></category>

		<guid isPermaLink="false">http://williamdurkin.wordpress.com/?p=177</guid>
		<description><![CDATA[I am now on the final third of my #sqlroadtrip (part 1, part 2, part 3 and part 4). My last post saw me in New Zealand where I spent a great 36 hours taking in what I could of Auckland. Unfortunately I didn&#8217;t meet up with Dave Dustin, his work got in the way [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=williamdurkin.wordpress.com&amp;blog=12357883&amp;post=177&amp;subd=williamdurkin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I am now on the final third of my <a href="http://twitter.com/#!/search/%23sqlroadtrip">#sqlroadtrip</a> (<a href="http://williamdurkin.wordpress.com/2011/05/29/round-the-world-in-38-days/">part 1</a>, <a href="http://williamdurkin.wordpress.com/2011/05/31/sqlroadtrip-part-deux/">part 2</a>, <a href="http://williamdurkin.wordpress.com/2011/06/10/round-the-world-in-38-days-teil-3/">part 3</a> and <a href="http://williamdurkin.wordpress.com/2011/06/16/sqlroadtrip-half-way-point/">part 4</a>).</p>
<p>My <a href="http://williamdurkin.wordpress.com/2011/06/16/sqlroadtrip-half-way-point/">last post</a> saw me in New Zealand where I spent a great 36 hours taking in what I could of Auckland.  Unfortunately I didn&#8217;t meet up with Dave Dustin, his work got in the way at short notice <img src='http://s0.wp.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  &#8211; this didn&#8217;t stop me from checking out quite a bit of Auckland, including the <a href="http://www.skycityauckland.co.nz/Attractions/Skytower.html">SkyTower</a>.  I got a great view of the city and then walked around town taking in the sights and sounds.</p>
<p>The evening flight from Auckland to Los Angeles ended up being really comfortable.  Air New Zealand&#8217;s Premium Economy is a major step up from standard economy, offering miles of legroom and the business class menu and winelist (for a snip at $150 on top).  I didn&#8217;t sleep, but was definitely comfortable for the 12 hour flight.  This was followed by a 90 minute layover at LAX, where I was given priority entry into the US so that I could get to my connecting flight on time.</p>
<p>Calgary offered up another uneventful installation, allowing me and a colleague to check out the <a href="http://www.google.com/maps?q=Banff+National+Park,+Banff+Avenue,+Banff,+Alberta,+Canada&amp;hl=en&amp;sll=37.160317,-95.712891&amp;sspn=27.20365,43.154297&amp;t=h&amp;z=7">Banff National Park</a>.  It has some great views, with some of the mountain ranges looking like the mountains from the start of my trip in Switzerland (decide for yourself by checking out my web-album &#8211; link at the bottom of the page).</p>
<p>As luck would have it, when I checked into my flight from Calgary to Houston, I was offered an upgrade to Continental First Class for the wallet-friendly price of $100.  I took them up on the offer and had a very comfortable 4 hour flight down to Houston.  I was picked up from the airport by my data-courier colleague who had landed in Houston a couple of hours before me.  He had managed to get a nice rental car upgrade because the rental company had messed up the reservation and only had a big SUV left! <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   We took off and setup the server in Houston and were treated to a relaxing evening at the local IT manager&#8217;s house.  We were able to cool off in his pool and enjoyed a few ice-cold beers.  This was the first real chance of relaxation since starting the trip all those weeks ago &#8211; thank you Volker!  After missing the chance to meet Dave Dustin in New Zealand, I got another opportunity to meet an online acquaintance from the <a href="http://ask.sqlservercentral.com">ASKSSC forum</a> &#8211; <a href="http://ask.sqlservercentral.com/users/1638/oleg/">Oleg Netchaev</a> &#8211; for lunch in Houston.  It was great to put a name to a face.</p>
<p>I then flew down to Veracruz for the next server installation.  This was a little touch-and-go, because the hardware had been stuck in customs for a few weeks (it had been sent before I started my trip!).  This was sorted out whilst I was in Houston and the server was brought online just in time to get things setup before my flight down to Mexico.</p>
<p>I arrived and finished setting up the server in <a href="http://www.google.com/maps?q=Veracruz,+Mexico&amp;hl=en&amp;sll=37.160317,-95.712891&amp;sspn=42.324477,92.724609&amp;t=h&amp;z=13">Veracruz</a>, no problems, everything ran like clockwork.  The local IT manager then took us for a quick drive round the city, showing us a few sights and letting us get an idea of what the &#8220;real&#8221; Mexico is like.  We ended up eating some mexican food (although I skipped the pigs brain in tortillas!) and heading down to the Aquarium.  Whilst there, we were offered the opportunity to get into a glass box and feed the sharks in the big shark tank.  We jumped at the opportunity and spent a fascinating 15 minutes in the water with an oceanologist who speacialises in sharks. That was definitely an experience I will never forget.</p>
<p>From Veracruz I set off to Rio de Janeiro (via Houston &#8211; where I am right now) to setup the 11th and final server.  This will be a short hop, arriving Thursday and leaving on Sunday, but at this point I really don&#8217;t mind.  The trip has been really interesting, but extremely challenging, both physically and mentally, and I&#8217;m looking forward to going home.</p>
<p>Luckily, I will be arriving in Germany next Monday and taking a 3 week break from work (and possibly technology).  I should be able to recharge my batteries and get back to some sort of normal daily routine.  My son has been asking if I&#8217;m in the planes that fly over our house since the first week of my trip.  He seems to be looking forward to me coming home, I was worried he wasn&#8217;t bothered or had even forgotten about me <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>So, time to sit back and relax before the second longest flight of this trip.  The President&#8217;s Club is comfortable and quiet and I&#8217;ll be fine for the 4.5 hours I have till boarding.</p>
<p>TTFN!</p>
<p>P.S. I have recently updated my <a href="https://picasaweb.google.com/110793166583449139032/SQLRoadtrip?authkey=Gv1sRgCJCDt6CLuZadhAE#">web-album</a> with the pictures taken since my last blog-post, with views from Calgary, Houston and Veracruz.</p>
<br />Filed under: <a href='http://williamdurkin.wordpress.com/category/administration/'>Administration</a>, <a href='http://williamdurkin.wordpress.com/category/administration/installation/'>Installation</a>, <a href='http://williamdurkin.wordpress.com/category/sql-roadtrip/'>SQL Roadtrip</a> Tagged: <a href='http://williamdurkin.wordpress.com/tag/administration-2/'>administration</a>, <a href='http://williamdurkin.wordpress.com/tag/fun/'>fun</a>, <a href='http://williamdurkin.wordpress.com/tag/sqlroadtrip/'>sqlroadtrip</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/williamdurkin.wordpress.com/177/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/williamdurkin.wordpress.com/177/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/williamdurkin.wordpress.com/177/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/williamdurkin.wordpress.com/177/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/williamdurkin.wordpress.com/177/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/williamdurkin.wordpress.com/177/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/williamdurkin.wordpress.com/177/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/williamdurkin.wordpress.com/177/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/williamdurkin.wordpress.com/177/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/williamdurkin.wordpress.com/177/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/williamdurkin.wordpress.com/177/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/williamdurkin.wordpress.com/177/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/williamdurkin.wordpress.com/177/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/williamdurkin.wordpress.com/177/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=williamdurkin.wordpress.com&amp;blog=12357883&amp;post=177&amp;subd=williamdurkin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://williamdurkin.wordpress.com/2011/06/29/the-home-stretch/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ccf3a7554dc9aafc3a5bdf230331a757?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">williamdurkin</media:title>
		</media:content>
	</item>
		<item>
		<title>Sqlroadtrip &#8211; Half Way Point</title>
		<link>http://williamdurkin.wordpress.com/2011/06/16/sqlroadtrip-half-way-point/</link>
		<comments>http://williamdurkin.wordpress.com/2011/06/16/sqlroadtrip-half-way-point/#comments</comments>
		<pubDate>Thu, 16 Jun 2011 10:01:26 +0000</pubDate>
		<dc:creator>WilliamD</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[Installation]]></category>
		<category><![CDATA[SQL Roadtrip]]></category>
		<category><![CDATA[administration]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[sqlroadtrip]]></category>

		<guid isPermaLink="false">http://williamdurkin.wordpress.com/?p=174</guid>
		<description><![CDATA[I am now at the half-way stage of my round the world trip (see part 1, part 2 and part 3). After part 3 I went on from Kuala Lumpur to Perth. This time I flew with Singapore Airlines &#8211; an extremely good airline as far as I am concerned, the entire experience was positive. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=williamdurkin.wordpress.com&amp;blog=12357883&amp;post=174&amp;subd=williamdurkin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I am now at the half-way stage of my round the world trip (see <a href="http://williamdurkin.wordpress.com/2011/05/29/round-the-world-in-38-days/">part 1</a>, <a href="http://williamdurkin.wordpress.com/2011/05/31/sqlroadtrip-part-deux/">part 2</a> and <a href="http://williamdurkin.wordpress.com/2011/06/10/round-the-world-in-38-days-teil-3/">part 3</a>).  </p>
<p>After <a href="http://williamdurkin.wordpress.com/2011/06/10/round-the-world-in-38-days-teil-3/">part 3</a> I went on from Kuala Lumpur to Perth.  This time I flew with Singapore Airlines &#8211; an extremely good airline as far as I am concerned, the entire experience was positive.  I had a short hop from Kuala Lumpur to Sinpagore and then a 5 hours flight to Perth.</p>
<p>There was a mix-up at my company regarding the data transport, so I arrived a full 24 hours too early in Perth.  I finally caught up on some of the missing sleep &#8211; I slept a full 18 hours!</p>
<p>The data finally arrived and I got to work at the Perth office.  The installation ran without any issues (we&#8217;ve got the rollout totally sorted by now) and even managed to do a little more testing of the performance improvements of running readonly reporting on the local server.  Who would have thought it, a server in the LAN is faster than a server over WAN!!! <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>I only saw the hotel (<a href="http://www.esplanadehotelfremantle.com.au/">Esplanade in Fremantle</a>), the office and a micro-brewery pub (The Mad Monk in Fremantle).  This was the shortest stop of all so far, but I was more than happy to take that hit to allow me to have some &#8220;real&#8221; free time in New Zealand.</p>
<p>I arrived in Auckland this morning after an uneventful flight from Perth to Auckland.  I spent the day exploring the city and adding to the <a href="https://picasaweb.google.com/110793166583449139032/SQLRoadtrip?authkey=Gv1sRgCJCDt6CLuZadhAE&amp;feat=directlink">photo collection</a>.  I will hopefully be meeting up with Dave Dustin (<a href="http://twitter.com/#!/venzann">Twitter</a>) for lunch tomorrow before jumping on my longest flight so far &#8211; Auckland to Los Angeles to Calgary. The first leg is over 10000 km and 12 hours, luckily in Premium Economy flying with Air New Zealand &#8211; a little extra legroom is always nice.</p>
<p>So, time for bed, the day starts early with me trying to take part in the PoSh webcast held by Aaron Nelson (<a href="http://sqlvariant.com/wordpress/">Web</a>|<a href="http://twitter.com/#!/sqlvariant">twitter</a>) for the <a href="http://sqlsouthwest.co.uk/">UK Sout West User Group</a>.  That&#8217;ll mean a 5am start, but my brain is scattered from timezone-hopping anyway.</p>
<br />Filed under: <a href='http://williamdurkin.wordpress.com/category/administration/'>Administration</a>, <a href='http://williamdurkin.wordpress.com/category/administration/installation/'>Installation</a>, <a href='http://williamdurkin.wordpress.com/category/sql-roadtrip/'>SQL Roadtrip</a> Tagged: <a href='http://williamdurkin.wordpress.com/tag/administration-2/'>administration</a>, <a href='http://williamdurkin.wordpress.com/tag/fun/'>fun</a>, <a href='http://williamdurkin.wordpress.com/tag/sqlroadtrip/'>sqlroadtrip</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/williamdurkin.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/williamdurkin.wordpress.com/174/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/williamdurkin.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/williamdurkin.wordpress.com/174/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/williamdurkin.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/williamdurkin.wordpress.com/174/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/williamdurkin.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/williamdurkin.wordpress.com/174/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/williamdurkin.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/williamdurkin.wordpress.com/174/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/williamdurkin.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/williamdurkin.wordpress.com/174/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/williamdurkin.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/williamdurkin.wordpress.com/174/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=williamdurkin.wordpress.com&amp;blog=12357883&amp;post=174&amp;subd=williamdurkin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://williamdurkin.wordpress.com/2011/06/16/sqlroadtrip-half-way-point/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ccf3a7554dc9aafc3a5bdf230331a757?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">williamdurkin</media:title>
		</media:content>
	</item>
		<item>
		<title>Round the world in 38 days &#8211; Teil 3</title>
		<link>http://williamdurkin.wordpress.com/2011/06/10/round-the-world-in-38-days-teil-3/</link>
		<comments>http://williamdurkin.wordpress.com/2011/06/10/round-the-world-in-38-days-teil-3/#comments</comments>
		<pubDate>Fri, 10 Jun 2011 10:25:56 +0000</pubDate>
		<dc:creator>WilliamD</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[SQL Roadtrip]]></category>
		<category><![CDATA[administration]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[sqlroadtrip]]></category>

		<guid isPermaLink="false">http://williamdurkin.wordpress.com/?p=169</guid>
		<description><![CDATA[If you have been following my adventures so far, then you will know that I have embarked upon a trip around the world. This trip entails setting up a load of SQL Servers for my employer. For more details, see part one and part two. I was unable to blog whilst in Dubai and Saudi [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=williamdurkin.wordpress.com&amp;blog=12357883&amp;post=169&amp;subd=williamdurkin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>If you have been following my adventures so far, then you will know that I have embarked upon a trip around the world.  This trip entails setting up a load of SQL Servers for my employer.  For more details, see <a href="http://williamdurkin.wordpress.com/2011/05/29/round-the-world-in-38-days/">part one</a> and <a href="http://williamdurkin.wordpress.com/2011/05/31/sqlroadtrip-part-deux/">part two</a>.</p>
<p>I was unable to blog whilst in Dubai and Saudi Arabia, so I have a little catching up to do.</p>
<p>Dubai turned out to be the highlight of the trip so far.  I was staying in the <a href="http://www.moevenpick-hotels.com/en/pub/your_hotels/worldmap/ibn_battuta/overview.cfm">Mövenpick Hotel Ibn Battuta Gate</a>.  I managed to snag an extremely good deal on the hotel and upgraded to an executive room priced at 90 Euros a night.  The hotel was absolutely brilliant and really proved the five star rating.  The remainder of my trip will be comparing the other hotels to what was on offer in Dubai.  I think it will be difficult to top though.</p>
<p>The roll-out has been pretty smooth so far.  All those practice runs and copious notes seem to be paying off, who&#8217;d have thought!</p>
<p>Rolling into Saudi Arabia was a fun experience too.  I landed at Dammam International Airport after a normal 90 minute flight from Dubai.  The fun started at passport control, where I waited about 90 minutes to get processed.  The men at the counters were rather lax in their work attitude, stopping to chat with their colleagues, smoke or just read a newspaper!  I was luckily not waiting for a work-permit, some not so lucky Indians had already been waiting for 3 hours.</p>
<p>After finally collecting my suitcase, I went through to the arrivals lounge.  It was then that I found out that no hotel and no pick-up had been arranged for me.  Thus ensued a great deal of phoning around trying to find out who could help me out.  As luck would have it, someone was still in the Dammam office.  A car was sent to pick me up and a room was arranged for me at the Dhahran International Hotel.  The hotel is a throw-back to the 70s (not a new hotel built to look that way).  I&#8217;m sure I saw people with bell-bottom trousers and gold medaillions around their necks!</p>
<p>The roll-out in Dammam went equally smooth.  The local IT man really looked after me while I was there.  He took me to a couple of local restaurants for lunch, where I gorged on the brilliant arabian food on offer.</p>
<p>I then set off to my next destination &#8211; Kuala Lumpur.  This was to be the longest leg of the trip so far, involving 3 flights.  Dammam to Dubai, Dubai to Bangkok, Bangkok to Kuala Lumpur.  I got to Dubai without any problems and treated myself to 3 hours of lounge access.  I attacked the buffet and had a few beers to relax before the 6 hour flight to Bangkok.</p>
<p>The real fun started on the flight to Bangkok &#8211; Thai Airlines Flght TG 518.  This will be burned in my brain until I die.  I had a comfortable seat (32A) in a relatively new A330.  The flight started nicely and I got stuck into the onboard film.  Things changed when the food arrived.  I tried the side salad (something with fish) and it didn&#8217;t taste right.  20 minutes later, my body decided that the fish really wasn&#8217;t right.  I spent the remainder of the flight in a delirious cold sweat, running to the bathroom to throw-up.  I can safely say, that was the longest 5 1/2 hours of my life.</p>
<p>The flight from Bangkok to Kuala Lumpur was a little better as I fell into a deep sleep.</p>
<p>All is well again this morning.  I setup the system in Kuala Lumpur and have a day off tomorrow.  I hope to climb the Patronas Towers and take a look around the city before flying to Perth on Sunday.</p>
<p>So, time to shut up shop for the day and relax a little.  I&#8217;m only half way round the world and the travelling and time difference are certainly taking their toll!</p>
<p>TTFN!</p>
<br />Filed under: <a href='http://williamdurkin.wordpress.com/category/administration/'>Administration</a>, <a href='http://williamdurkin.wordpress.com/category/sql-roadtrip/'>SQL Roadtrip</a> Tagged: <a href='http://williamdurkin.wordpress.com/tag/administration-2/'>administration</a>, <a href='http://williamdurkin.wordpress.com/tag/fun/'>fun</a>, <a href='http://williamdurkin.wordpress.com/tag/sqlroadtrip/'>sqlroadtrip</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/williamdurkin.wordpress.com/169/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/williamdurkin.wordpress.com/169/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/williamdurkin.wordpress.com/169/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/williamdurkin.wordpress.com/169/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/williamdurkin.wordpress.com/169/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/williamdurkin.wordpress.com/169/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/williamdurkin.wordpress.com/169/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/williamdurkin.wordpress.com/169/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/williamdurkin.wordpress.com/169/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/williamdurkin.wordpress.com/169/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/williamdurkin.wordpress.com/169/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/williamdurkin.wordpress.com/169/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/williamdurkin.wordpress.com/169/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/williamdurkin.wordpress.com/169/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=williamdurkin.wordpress.com&amp;blog=12357883&amp;post=169&amp;subd=williamdurkin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://williamdurkin.wordpress.com/2011/06/10/round-the-world-in-38-days-teil-3/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ccf3a7554dc9aafc3a5bdf230331a757?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">williamdurkin</media:title>
		</media:content>
	</item>
		<item>
		<title>Sqlroadtrip part deux</title>
		<link>http://williamdurkin.wordpress.com/2011/05/31/sqlroadtrip-part-deux/</link>
		<comments>http://williamdurkin.wordpress.com/2011/05/31/sqlroadtrip-part-deux/#comments</comments>
		<pubDate>Tue, 31 May 2011 11:52:48 +0000</pubDate>
		<dc:creator>WilliamD</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[Installation]]></category>
		<category><![CDATA[SQL Roadtrip]]></category>
		<category><![CDATA[administration]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[sqlroadtrip]]></category>

		<guid isPermaLink="false">http://williamdurkin.wordpress.com/?p=164</guid>
		<description><![CDATA[Hello again! Here is an update on the #sqlroadtrip, which started out in Switzerland (part one of the trip). I have spent the last few days in Kiev in the Ukraine. I arrived at 01:30 (EET) at the airport and spent the next 45 minutes waiting for passport control. They had 8 control gates, but [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=williamdurkin.wordpress.com&amp;blog=12357883&amp;post=164&amp;subd=williamdurkin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hello again!</p>
<p>Here is an update on the <a href="http://twitter.com/#!/search/%23sqlroadtrip">#sqlroadtrip</a>, which started out in Switzerland (<a href="http://williamdurkin.wordpress.com/2011/05/29/round-the-world-in-38-days/">part one of the trip</a>).</p>
<p>I have spent the last few days in Kiev in the Ukraine.  I arrived at 01:30 (EET) at the airport and spent the next 45 minutes waiting for passport control.  They had 8 control gates, but only two open!?  They are seriously expanding the airport in preparation for the european football championships next year.  This is also the reason for all the road works in and around the city.</p>
<p>I was driven from the airport to the hotel (<a href="http://www.hotelrus.kiev.ua/en.html">Rus Hotel, Kiev</a>), where I slept until 9am (local time = CET+1).  Then setup our replication system.  After 4 hours, and only one error message, I was done!</p>
<p>I went to the hotel, had some rather uninspiring food and some cheap Danish and Ukrainian beer, then fell into a deep sleep.</p>
<p>The following day was spent checking the replication was working properly (it was) and explaining the replication system to the people in the office.  We are running transactional replication to allow reporting offloading for each office.  It is quite impressive to see our data being updated at near real-time (~5 seconds), even to the offices with the worst network connection. They were happy about the new system, but also gave me a lot of information to take back to HQ regarding performance problems.  The perceived performance is different to the measured performance.  I have already identified areas in our software that can be optimised for a better user experience, where the devs back home would think the behaviour/performance is acceptable.</p>
<p>I will finish up today and make sure the next location is ready for the replication, then check out some sights around the centre of Kiev.  After that, it will be time to pack up and get ready for my next flight.  I check out of the hotel tomorrow morning at 08:00 (EET) and take a flight from Kiev to Vienna 10:50 (EET) departure, arriving 11:55 (CET).  This is followed by a 90 minute layover and then an Austrian Airlines flight to Dubai (13:30 CET depart, 21:10 GST arrival).</p>
<p>The colleagues from the Kiev office have been really friendly and helpful the entire time.  The same can be said for the majority of the people I met.  I can definitely recommend Kiev as a holiday location, or at least as a place on a european tour.  Most young people speak English, which is good if you can&#8217;t speak/read Ukranian or Russian!</p>
<p>Check back again soon for the next part of my <a href="http://twitter.com/#!/search/%23sqlroadtrip">#sqlroadtrip</a>, where you will see what I get up to in the Middle East.</p>
<p>Just as a teaser, I will be staying in a slightly better hotel in Dubai, details to follow when I have arrived <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<br />Filed under: <a href='http://williamdurkin.wordpress.com/category/administration/'>Administration</a>, <a href='http://williamdurkin.wordpress.com/category/administration/installation/'>Installation</a>, <a href='http://williamdurkin.wordpress.com/category/sql-roadtrip/'>SQL Roadtrip</a> Tagged: <a href='http://williamdurkin.wordpress.com/tag/administration-2/'>administration</a>, <a href='http://williamdurkin.wordpress.com/tag/fun/'>fun</a>, <a href='http://williamdurkin.wordpress.com/tag/sqlroadtrip/'>sqlroadtrip</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/williamdurkin.wordpress.com/164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/williamdurkin.wordpress.com/164/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/williamdurkin.wordpress.com/164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/williamdurkin.wordpress.com/164/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/williamdurkin.wordpress.com/164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/williamdurkin.wordpress.com/164/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/williamdurkin.wordpress.com/164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/williamdurkin.wordpress.com/164/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/williamdurkin.wordpress.com/164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/williamdurkin.wordpress.com/164/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/williamdurkin.wordpress.com/164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/williamdurkin.wordpress.com/164/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/williamdurkin.wordpress.com/164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/williamdurkin.wordpress.com/164/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=williamdurkin.wordpress.com&amp;blog=12357883&amp;post=164&amp;subd=williamdurkin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://williamdurkin.wordpress.com/2011/05/31/sqlroadtrip-part-deux/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ccf3a7554dc9aafc3a5bdf230331a757?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">williamdurkin</media:title>
		</media:content>
	</item>
		<item>
		<title>Round the world in 38 days</title>
		<link>http://williamdurkin.wordpress.com/2011/05/29/round-the-world-in-38-days/</link>
		<comments>http://williamdurkin.wordpress.com/2011/05/29/round-the-world-in-38-days/#comments</comments>
		<pubDate>Sun, 29 May 2011 08:36:09 +0000</pubDate>
		<dc:creator>WilliamD</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[SQL Roadtrip]]></category>
		<category><![CDATA[administration]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[sqlroadtrip]]></category>

		<guid isPermaLink="false">http://williamdurkin.wordpress.com/?p=158</guid>
		<description><![CDATA[Saturday 28th May 2011: Here I am in Zurich airport waiting for my next flight in my round the world trip. Maybe I should bacck up a little and explain. Without going into too many details and possibly getting in trouble with work, they want me to go to some of our branch offices to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=williamdurkin.wordpress.com&amp;blog=12357883&amp;post=158&amp;subd=williamdurkin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Saturday 28th May 2011:</p>
<p>Here I am in Zurich airport waiting for my next flight in my round the world trip.</p>
<p>Maybe I should bacck up a little and explain.</p>
<p>Without going into too many details and possibly getting in trouble with work, they want me to go to some of our branch offices to setup some sql servers and get replication up and running.  This project has been in the planning stages for millenia and it finally got the green light.  I found out on Wednesday evening (25.05) that I would be starting my trip on Friday (27.05).  My first port of call was our company headquarters in Switzerland, so that meant jumping on a plane on Friday morning and flying down to HQ.</p>
<p>Whilst there, I made the finishing touches to the setup and initialised the third branch office and created a snapshot of the data.  This took me until this morning (28.05 &#8211; 03:00 CET), after which I had a 3 hour nap.  I then went back to the office and got my stuff together ready for my trip to the first branch office in Kiev (we had done two offices as a practice run).</p>
<p>I then drove back up to Zurich to take my next flight, Zurich to Frankfurt (where I am whilst writing this).  This is basically the warm-up for the real thing, as my Star Alliance &#8220;Around The World&#8221; Ticket starts in Frankfurt and takes me to Kiev, Dubai, Damamm, Dubai (again), Bangkok, Kuala Lumpur, Singapore, Perth, Auckland, Los Angeles, Calgary, Houston, Veracruz, Houston (again), Rio de Janeiro, Frankfurt, Muenster.  This is *by far* the most international travel I have ever done in my life (over 36000 miles), and it is all compressed into a 5 week schedule!  I finally arrive home on the 4th of July. Right on time to see my parents (who are stopping by on a road-trip through europe), then celebrate my wife&#8217;s birthday on the 8th of July and, last but not least, go on holiday on the 10th of July.</p>
<p>To take a look at the route, follow this link: <a href="http://bit.ly/iZvkGU" title="Great Circle Mapper">Great Circle Mapper</a></p>
<p>I shall be documenting the trip here and via the twitter hash-tag <a href="http://twitter.com/#!/search/%23sqlroadtrip" title="#sqlroadtrip">#sqlroadtrip</a>, so keep coming back to see what I&#8217;ve been up to.</p>
<br />Filed under: <a href='http://williamdurkin.wordpress.com/category/administration/'>Administration</a>, <a href='http://williamdurkin.wordpress.com/category/sql-roadtrip/'>SQL Roadtrip</a> Tagged: <a href='http://williamdurkin.wordpress.com/tag/administration-2/'>administration</a>, <a href='http://williamdurkin.wordpress.com/tag/fun/'>fun</a>, <a href='http://williamdurkin.wordpress.com/tag/sqlroadtrip/'>sqlroadtrip</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/williamdurkin.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/williamdurkin.wordpress.com/158/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/williamdurkin.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/williamdurkin.wordpress.com/158/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/williamdurkin.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/williamdurkin.wordpress.com/158/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/williamdurkin.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/williamdurkin.wordpress.com/158/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/williamdurkin.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/williamdurkin.wordpress.com/158/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/williamdurkin.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/williamdurkin.wordpress.com/158/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/williamdurkin.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/williamdurkin.wordpress.com/158/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=williamdurkin.wordpress.com&amp;blog=12357883&amp;post=158&amp;subd=williamdurkin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://williamdurkin.wordpress.com/2011/05/29/round-the-world-in-38-days/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ccf3a7554dc9aafc3a5bdf230331a757?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">williamdurkin</media:title>
		</media:content>
	</item>
		<item>
		<title>Good News / Bad News</title>
		<link>http://williamdurkin.wordpress.com/2011/02/09/good-news-bad-news/</link>
		<comments>http://williamdurkin.wordpress.com/2011/02/09/good-news-bad-news/#comments</comments>
		<pubDate>Wed, 09 Feb 2011 22:19:46 +0000</pubDate>
		<dc:creator>WilliamD</dc:creator>
				<category><![CDATA[Free Stuff]]></category>
		<category><![CDATA[SQL Server Tools]]></category>
		<category><![CDATA[free stuff]]></category>
		<category><![CDATA[sql server tools]]></category>

		<guid isPermaLink="false">http://williamdurkin.wordpress.com/?p=150</guid>
		<description><![CDATA[Given the choice, most people want to hear the bad news before the good: The Bad News I recently found out that the owner of Atlantis Interactive has decided to throw in the towel with regards to his absolutely amazing SQL Server Tools and IDE. Matt Whitfield has produced (on his own) a set of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=williamdurkin.wordpress.com&amp;blog=12357883&amp;post=150&amp;subd=williamdurkin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Given the choice, most people want to hear the bad news before the good:</p>
<h3>The Bad News</h3>
<p>I recently found out that the owner of <a href="http://www.atlantis-interactive.co.uk/">Atlantis Interactive </a>has decided to throw in the towel with regards to his absolutely amazing SQL Server Tools and IDE.</p>
<p>Matt Whitfield has produced (on his own) a set of tools that puts a lot of full blown companies to shame! The IDE <a href="http://www.atlantis-interactive.co.uk/products/sqleverywhere/default.aspx">SQL Everywhere </a>is a complete replacement for SSMS, but boasts a number of improvements/extra features that seem blindingly obvious when you see them in SQL Everywhere. My favourites are &#8220;extract as CTE&#8221; where you mark some code and allow SQL Everywhere to create a CTE for you, and the smart renaming of variables/aliases etc.</p>
<p>When I heard that he had made this decision, I could understand it, but still find it a shame. He was obviously in a hard market to start with, with some very firm competition. I am still surprised that the tools haven&#8217;t made any noticeable headway &#8211; there are loads of people looking for good tools, even in the niche of T-SQL development.</p>
<h3>The Good News</h3>
<p>Matt has not decided to throw away all that he created. <a href="http://www.atlantis-interactive.co.uk/blog/post/2011/02/03/Why-Atlantis-now-provide-totally-free-SQL-Server-tools.aspx">He has unlocked all the tools and set them free!</a> His blood, sweat and tears (well, not so much blood &#8211; I hope!) have not been wasted.</p>
<p>If you have had enough of the limitations of SSMS intellisense, or general SSMS strangeness, take a good look at <a href="http://www.atlantis-interactive.co.uk/products/sqleverywhere/default.aspx">SQL Everywhere</a>. Whilst you are there, have a look at the other great tools he created, you will be surprised at what you find.</p>
<p>My hat goes off to him and I hope that this setback doesn&#8217;t stop him from giving it another go in the future.</p>
<p>@Matt &#8211; if you read this, I&#8217;m looking forward to meeting you at SQLBits.  I would love to hear about any other ideas you have on the back burner <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<br />Filed under: <a href='http://williamdurkin.wordpress.com/category/free-stuff/'>Free Stuff</a>, <a href='http://williamdurkin.wordpress.com/category/sql-server-tools/'>SQL Server Tools</a> Tagged: <a href='http://williamdurkin.wordpress.com/tag/free-stuff-2/'>free stuff</a>, <a href='http://williamdurkin.wordpress.com/tag/sql-server-tools-2/'>sql server tools</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/williamdurkin.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/williamdurkin.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/williamdurkin.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/williamdurkin.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/williamdurkin.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/williamdurkin.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/williamdurkin.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/williamdurkin.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/williamdurkin.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/williamdurkin.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/williamdurkin.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/williamdurkin.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/williamdurkin.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/williamdurkin.wordpress.com/150/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=williamdurkin.wordpress.com&amp;blog=12357883&amp;post=150&amp;subd=williamdurkin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://williamdurkin.wordpress.com/2011/02/09/good-news-bad-news/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ccf3a7554dc9aafc3a5bdf230331a757?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">williamdurkin</media:title>
		</media:content>
	</item>
		<item>
		<title>SQLBits here I come</title>
		<link>http://williamdurkin.wordpress.com/2011/02/02/sqlbits-here-i-come/</link>
		<comments>http://williamdurkin.wordpress.com/2011/02/02/sqlbits-here-i-come/#comments</comments>
		<pubDate>Wed, 02 Feb 2011 20:11:55 +0000</pubDate>
		<dc:creator>WilliamD</dc:creator>
				<category><![CDATA[Professional Development]]></category>
		<category><![CDATA[Training]]></category>
		<category><![CDATA[ASK]]></category>
		<category><![CDATA[professional development]]></category>
		<category><![CDATA[SQLBits]]></category>

		<guid isPermaLink="false">http://williamdurkin.wordpress.com/?p=141</guid>
		<description><![CDATA[I'm going to SQLBits 8 in Brighton.  See you there!<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=williamdurkin.wordpress.com&amp;blog=12357883&amp;post=141&amp;subd=williamdurkin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I recently found out that I am, unfortunately, <em>not</em> <a href="http://williamdurkin.wordpress.com/2011/01/25/am-i-charlie-bucket/">Charlie Bucket</a>.  The people over at SQLskills were offering a free ticket to one of their Microsoft Certified Master training camps dubbed <a href="http://www.sqlskills.com/T_SQLskillsMasterImmersionEvents.asp">SQLskills Master Immersion Events</a>.</p>
<p>I entered into the competition on the off chance that I was picked and got to go to one of their week long training events.  The gods were not smiling on me that day and I wasn&#8217;t chosen <img src='http://s0.wp.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>However, this has not deterred me from continuing my quest for awesome training.  I mentioned in my entry to the SQLskills competition that I would be going to <a href="http://www.sqlbits.com">SQLBits VIII</a>.  I have now completed all the preparations to be able to go there in April.</p>
<p>I will be attending the Friday training day and the Saturday community day and am looking forward to it.  I know a couple of the people on the speakers list (the Saturday sessions are still open to voting, so the list may change yet) and hope to either catch up with them (<a href="http://sqlbits.com/Speakers/Andre_Kamman">Andre Kamman</a> / <a href="http://andrekamman.com">Blog</a> &#8211; we met at the PASS Summit in Seattle) or finally meet them in person (<a href="http://sqlbits.com/Speakers/Matt_Whitfield">Matt Whitfield</a> / <a href="http://www.atlantis-interactive.co.uk/blog/default.aspx">Blog</a> &#8211; we met online at <a href="http://ask.sqlservercentral.com">ASK</a>).</p>
<p>I am also hoping to meet up with a couple of other people from the <a href="http://ask.sqlservercentral.com">ASK</a>) site (in no particular order):</p>
<p><a href="http://www.simple-talk.com/community/blogs/jonathanallen">Jonathan Allen</a><br />
<a href="http://ask.sqlservercentral.com/users/36/kev-riley">Kev Riley</a><br />
<a href="http://thelonedba.wordpress.com/">Thomas Rushton</a></p>
<p>They have all helped me a great deal in the last 6 months and I think a pint is in order! On top of which I would love to finally meet some SQL people from the UK, they are very thin on the ground where I live.</p>
<p>I also plan on making this a sort of reconnaissance mission for my employer.  They recently made it clear that the PASS Summit is too pricey and I have been inofficially tasked with finding top-rated training a little closer to home.  The videos of previous SQLBits conferences are very promising, so I expect things to work out well on that front.</p>
<p>I&#8217;ll be staying at the Best Western in Brighton, just down the road from the conference.  As this is on my tab, The Grand was a little too much for my wallet to handle (maybe work will foot the bill the next time and SQLBits will be at the Ritz).</p>
<p>I look forward to meeting people and learning a few new things whilst I&#8217;m beside the seaside, beside the sea.</p>
<p>Hope to see you there.</p>
<br />Filed under: <a href='http://williamdurkin.wordpress.com/category/professional-development/'>Professional Development</a>, <a href='http://williamdurkin.wordpress.com/category/training/'>Training</a> Tagged: <a href='http://williamdurkin.wordpress.com/tag/ask/'>ASK</a>, <a href='http://williamdurkin.wordpress.com/tag/professional-development-2/'>professional development</a>, <a href='http://williamdurkin.wordpress.com/tag/sqlbits/'>SQLBits</a>, <a href='http://williamdurkin.wordpress.com/tag/training/'>Training</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/williamdurkin.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/williamdurkin.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/williamdurkin.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/williamdurkin.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/williamdurkin.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/williamdurkin.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/williamdurkin.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/williamdurkin.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/williamdurkin.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/williamdurkin.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/williamdurkin.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/williamdurkin.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/williamdurkin.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/williamdurkin.wordpress.com/141/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=williamdurkin.wordpress.com&amp;blog=12357883&amp;post=141&amp;subd=williamdurkin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://williamdurkin.wordpress.com/2011/02/02/sqlbits-here-i-come/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ccf3a7554dc9aafc3a5bdf230331a757?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">williamdurkin</media:title>
		</media:content>
	</item>
	</channel>
</rss>
