<?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>SQL Server Sleuth &#187; NTSSUG</title>
	<atom:link href="http://sqlserversleuth.com/tag/ntssug/feed/" rel="self" type="application/rss+xml" />
	<link>http://sqlserversleuth.com</link>
	<description>For DBAs that enjoy a good mystery</description>
	<lastBuildDate>Sat, 01 Oct 2011 06:04:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='sqlserversleuth.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://0.gravatar.com/blavatar/a9ab64e4b3cc6d92ec2c225a7d6ea0bd?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>SQL Server Sleuth &#187; NTSSUG</title>
		<link>http://sqlserversleuth.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://sqlserversleuth.com/osd.xml" title="SQL Server Sleuth" />
	<atom:link rel='hub' href='http://sqlserversleuth.com/?pushpress=hub'/>
		<item>
		<title>Query &#8211; Finding a DMV based on column names</title>
		<link>http://sqlserversleuth.com/2011/05/22/query-finding-a-dmv-based-on-column-names/</link>
		<comments>http://sqlserversleuth.com/2011/05/22/query-finding-a-dmv-based-on-column-names/#comments</comments>
		<pubDate>Sun, 22 May 2011 21:48:23 +0000</pubDate>
		<dc:creator>tnbarkhouse</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[catalog views]]></category>
		<category><![CDATA[CSS SQL Server]]></category>
		<category><![CDATA[DMVs]]></category>
		<category><![CDATA[meta data]]></category>
		<category><![CDATA[NTSSUG]]></category>
		<category><![CDATA[role models]]></category>
		<category><![CDATA[SQLskills Immersion]]></category>
		<category><![CDATA[training]]></category>
		<category><![CDATA[Transact-SQL]]></category>

		<guid isPermaLink="false">http://sqlserversleuth.com/?p=280</guid>
		<description><![CDATA[I really enjoyed the NTSSUG meeting on Thursday. Bob Ward (blog, Twitter), a major role model of mine, presented Inside SQL Server Wait Types. As with the SQLskills Immersion Events, I spent the whole time taking copious notes as the &#8230; <a href="http://sqlserversleuth.com/2011/05/22/query-finding-a-dmv-based-on-column-names/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sqlserversleuth.com&amp;blog=6775699&amp;post=280&amp;subd=tnbarkhouse&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I really enjoyed the <a href="http://northtexas.sqlpass.org/" target="_blank">NTSSUG</a> meeting on Thursday.  Bob Ward (<a href="http://blogs.msdn.com/b/psssql/" target="_blank">blog</a>, <a href="http://twitter.com/#!/bobwardms" target="_blank">Twitter</a>), a major role model of mine, presented <a href="http://www.sqlpass.org/summit/eu2010/Agenda/SpotlightSessions/InsideSQLServerWaitTypes.aspx" target="_blank">Inside SQL Server Wait Types</a>.  As with the <a href="http://www.sqlskills.com/ImmersionEvents.asp" target="_blank">SQLskills Immersion Events</a>, I spent the whole time taking copious notes as the priceless information flowed.</p>
<p>While discussing <a href="http://blogs.msdn.com/b/psssql/archive/2009/11/03/the-sql-server-wait-type-repository.aspx" target="_blank">THREADPOOL</a> waits, I missed the name of a helpful <a href="http://msdn.microsoft.com/en-us/library/ms188754.aspx" target="_blank">DMV</a> for identifying a lack of <a href="http://blogs.msdn.com/b/khen1234/archive/2005/11/07/489778.aspx" target="_blank">worker threads</a>.  I <span style="font-style:italic;">did</span> hear the name of the relevant column though&#8230; &#8220;work_queue_count.&#8221;  Thanks to SQL Server&#8217;s <a href="http://msdn.microsoft.com/en-us/library/ms174365.aspx" target="_blank">catalog views</a>, it was easily to track down the DMV in question, <a href="http://msdn.microsoft.com/en-us/library/ms177526.aspx" target="_blank">[sys].[dm_os_schedulers]</a>:</p>
<pre style="margin-left:15px;">SELECT [_Objects].[object_id] AS [ObjectID],
    [_Objects].[name] AS [ObjectName],
    [_Objects].[type_desc] AS [ObjectType],
    [_Columns].[column_id] AS [ColumnID],
    [_Columns].[name] AS [ColumnName]
FROM [master].[sys].[system_objects] AS [_Objects]
INNER JOIN [master].[sys].[system_columns] AS [_Columns]
ON ([_Objects].[object_id] = [_Columns].[object_id])
WHERE (
    ([_Objects].[name] LIKE N'dm_%')
    AND
    ([_Objects].[type] IN ('IF', 'TF', 'V'))
    AND
    ([_Objects].[schema_id] = Schema_ID('sys'))
    AND
    ([_Objects].[is_ms_shipped] = 1)
    AND
    ([_Columns].[name] LIKE N'%work%queue%count%')
)
ORDER BY [_Objects].[name] ASC,
    [_Columns].[name] ASC;</pre>
<p>This type of query is also useful when searching for gems in <a href="http://www.microsoft.com/sqlserver/en/us/default.aspx" target="_blank">SQL Server&#8217;s</a> <a href="http://msdn.microsoft.com/en-us/library/ms187113.aspx" target="_blank">meta data</a>:</p>
<pre style="margin-left:15px;">SELECT [_Objects].[object_id] AS [ObjectID],
    [_Objects].[name] AS [ObjectName],
    [_Objects].[type_desc] AS [ObjectType],
    [_Columns].[column_id] AS [ColumnID],
    [_Columns].[name] AS [ColumnName]
FROM [master].[sys].[system_objects] AS [_Objects]
INNER JOIN [master].[sys].[system_columns] AS [_Columns]
ON ([_Objects].[object_id] = [_Columns].[object_id])
WHERE (
    ([_Objects].[type] IN ('IF', 'TF', 'V'))
    AND
    ([_Objects].[schema_id] = Schema_ID('sys'))
    AND
    ([_Objects].[is_ms_shipped] = 1)
)
ORDER BY [_Objects].[name] ASC,
    [_Columns].[column_id] ASC;</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tnbarkhouse.wordpress.com/280/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tnbarkhouse.wordpress.com/280/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tnbarkhouse.wordpress.com/280/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tnbarkhouse.wordpress.com/280/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tnbarkhouse.wordpress.com/280/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tnbarkhouse.wordpress.com/280/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tnbarkhouse.wordpress.com/280/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tnbarkhouse.wordpress.com/280/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tnbarkhouse.wordpress.com/280/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tnbarkhouse.wordpress.com/280/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tnbarkhouse.wordpress.com/280/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tnbarkhouse.wordpress.com/280/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tnbarkhouse.wordpress.com/280/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tnbarkhouse.wordpress.com/280/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sqlserversleuth.com&amp;blog=6775699&amp;post=280&amp;subd=tnbarkhouse&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sqlserversleuth.com/2011/05/22/query-finding-a-dmv-based-on-column-names/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a662186ae400e1e95ffca05d7b474fd7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tnbarkhouse</media:title>
		</media:content>
	</item>
		<item>
		<title>Please vote for PASS Summit 2011 sessions!</title>
		<link>http://sqlserversleuth.com/2011/05/19/please-vote-for-pass-summit-2011-sessions/</link>
		<comments>http://sqlserversleuth.com/2011/05/19/please-vote-for-pass-summit-2011-sessions/#comments</comments>
		<pubDate>Thu, 19 May 2011 20:21:52 +0000</pubDate>
		<dc:creator>tnbarkhouse</dc:creator>
				<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[conferences]]></category>
		<category><![CDATA[cookbooks]]></category>
		<category><![CDATA[deadlocks]]></category>
		<category><![CDATA[FWSSUG]]></category>
		<category><![CDATA[NTSSUG]]></category>
		<category><![CDATA[PASS]]></category>
		<category><![CDATA[speaking]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://sqlserversleuth.com/?p=274</guid>
		<description><![CDATA[I have been extremely fortunate to have spoken at the last two North American PASS Summits. The experiences have been amazing and I&#8217;m hopeful about getting a chance to present at this year&#8217;s conference too. I received very good feedback &#8230; <a href="http://sqlserversleuth.com/2011/05/19/please-vote-for-pass-summit-2011-sessions/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sqlserversleuth.com&amp;blog=6775699&amp;post=274&amp;subd=tnbarkhouse&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I have been extremely fortunate to have spoken at the last two North American <a href="http://www.sqlpass.org/summit/" target="_blank">PASS Summits</a>.  The experiences have been amazing and I&#8217;m hopeful about getting a chance to present at this year&#8217;s conference too.  I received very good feedback from last year&#8217;s session, &#8220;<a href="/technical-presentations/deadlocks/" target="_blank">Deadlock Detection, Troubleshooting, and Prevention</a>&#8220;, which is reassuring, but so many fantastic speakers have submitted to speak that there is fierce competition.</p>
<p>This year, the session selection committee is trying something new and has requested input on the submitted abstracts.  I strongly encourage you to take a few minutes and vote for abstracts that appeal to you in the <a href="http://www.sqlpass.org/summit/2011/UserLogin.aspx?returnurl=%2fsummit%2f2011%2fSpeakers%2fSessionPreferencing.aspx%3fp%3d62%26preferred%3dFalse" target="_blank">PASS Summit 2011 Session Preference Survey</a>.  You can vote even if you might not be able to attend the conference&#8230; all that you need is an account on the <a href="http://www.sqlpass.org/" target="_blank">SQLPASS.org</a> web site.  If you don&#8217;t already have one, <a href="http://www.sqlpass.org/RegisterforSQLPASS.aspx?returnurl=%2fsummit%2f2011%2fSpeakers%2fSessionPreferencing.aspx%3fp%3d62%26preferred%3dFalse" target="_blank">registration</a> is easy and free.</p>
<p>If you have attended any of my presentations and enjoyed them/learned from them, I would greatly appreciate the support of voting for some of my sessions.  I submitted the maximum of four abstracts, but I would prefer to deliver either of my &#8220;cookbook&#8221; presentations:</p>
<ul>
<li>
                <a href="/technical-presentations/powershellcookbook/" target="_blank">A PowerShell Cookbook for DBAs</a></p>
<ul>
<li>
                            I have been delivering this presentation since <a href="http://sqlsaturday.com/22/eventhome.aspx" target="_blank">SQLSaturday #22</a> on 2010-06-05
                        </li>
<li>
                            As a production/escalation DBA, I use <a href="http://technet.microsoft.com/en-us/scriptcenter/dd742419.aspx" target="_blank">PowerShell</a> more than any other single program, <span style="font-style:italic;">especially</span> when interacting with <a href="http://www.microsoft.com/sqlserver/en/us/default.aspx" target="_blank">SQL Server</a>
                        </li>
<li>
                            My goal is to convince fellow DBAs to try PowerShell by showing a variety of ways that PowerShell makes our jobs easier and by providing attendees with a collection of ready-to-use scripts for getting started
                        </li>
</ul>
</li>
<li>
                An XQuery Cookbook for DBAs</p>
<ul>
<li>
                            This is a new presentation that is under development.  I will probably deliver it for the first time at the July meeting of the <a href="http://fwssug.org/" target="_blank">Fort Worth SQL Server Users Group</a>
                        </li>
<li>
                            A lot of valuable diagnostic data is exposed as <a href="http://en.wikipedia.org/wiki/XML" target="_blank">XML</a> these days
                        </li>
<li>
                            I have written many <a href="http://en.wikipedia.org/wiki/Transact-SQL" target="_blank">T-SQL</a>/<a href="http://en.wikipedia.org/wiki/XQuery" target="_blank">XQuery</a> scripts to analyze and manipulate the data, but I would not describe the experience as being pleasant
                        </li>
<li>
                            I would like to give other DBAs these scripts, along with a little bit of background understanding, so that they can access this very powerful meta data without the many hours of frustration in developing the scripts
                        </li>
<li>
                            Some of the &#8220;recipes&#8221; included in the presentation will work with the following data sets:</p>
<ul>
<li>
                                        <a href="http://msdn.microsoft.com/en-us/library/ms190989.aspx" target="_blank">DDL trigger</a> event data
                                    </li>
<li>
                                        <a href="http://msdn.microsoft.com/en-us/library/ms188246.aspx" target="_blank">Deadlock graphs</a>
                                    </li>
<li>
                                        <a href="http://msdn.microsoft.com/en-us/library/bb630354.aspx" target="_blank">Extended Events</a> payloads
                                    </li>
<li>
                                        Output from the <a href="http://pal.codeplex.com/" target="_blank">Performance Analysis of Logs (PAL) Tool</a>
                                    </li>
<li>
                                        The <a href="http://msdn.microsoft.com/en-us/library/dd672789(SQL.100).aspx" target="_blank">[sys].[dm_os_ring_buffers]</a> DMV&#8217;s contents
                                    </li>
<li>
                                        <a href="http://msdn.microsoft.com/en-us/library/aa385780%28VS.85%29.aspx" target="_blank">Windows event logs</a>
                                    </li>
<li>
                                        <a href="http://msdn.microsoft.com/en-us/library/ms190233.aspx" target="_blank">XML statistics profiles</a> (query plans)
                                    </li>
</ul>
</li>
</ul>
</li>
</ul>
<p><span style="font-weight:bold;">Note:</span> The deadline for voting is tomorrow, so please do so as soon as possible!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tnbarkhouse.wordpress.com/274/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tnbarkhouse.wordpress.com/274/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tnbarkhouse.wordpress.com/274/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tnbarkhouse.wordpress.com/274/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tnbarkhouse.wordpress.com/274/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tnbarkhouse.wordpress.com/274/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tnbarkhouse.wordpress.com/274/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tnbarkhouse.wordpress.com/274/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tnbarkhouse.wordpress.com/274/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tnbarkhouse.wordpress.com/274/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tnbarkhouse.wordpress.com/274/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tnbarkhouse.wordpress.com/274/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tnbarkhouse.wordpress.com/274/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tnbarkhouse.wordpress.com/274/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sqlserversleuth.com&amp;blog=6775699&amp;post=274&amp;subd=tnbarkhouse&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sqlserversleuth.com/2011/05/19/please-vote-for-pass-summit-2011-sessions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a662186ae400e1e95ffca05d7b474fd7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tnbarkhouse</media:title>
		</media:content>
	</item>
		<item>
		<title>A Successful Rehearsal and Upcoming Improvements to the Presentation</title>
		<link>http://sqlserversleuth.com/2009/10/31/a-successful-rehearsal-and-upcoming-improvements-to-the-presentation/</link>
		<comments>http://sqlserversleuth.com/2009/10/31/a-successful-rehearsal-and-upcoming-improvements-to-the-presentation/#comments</comments>
		<pubDate>Sat, 31 Oct 2009 06:02:44 +0000</pubDate>
		<dc:creator>tnbarkhouse</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[conferences]]></category>
		<category><![CDATA[NTSSUG]]></category>
		<category><![CDATA[PASS]]></category>
		<category><![CDATA[speaking]]></category>
		<category><![CDATA[SQLDiag]]></category>
		<category><![CDATA[Terremark]]></category>

		<guid isPermaLink="false">http://sqlserversleuth.com/?p=172</guid>
		<description><![CDATA[My rehearsal this morning went really well. Not in terms of my delivery, but rather in the great feedback that I received and my own ideas for improvement that it generated. I want to thank Patrick LeBlanc (blog, Twitter) again &#8230; <a href="http://sqlserversleuth.com/2009/10/31/a-successful-rehearsal-and-upcoming-improvements-to-the-presentation/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sqlserversleuth.com&amp;blog=6775699&amp;post=172&amp;subd=tnbarkhouse&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>My <a href="/2009/10/29/last-minute-rehearsal/" target="_blank">rehearsal this morning</a> went really well.  Not in terms of my delivery, but rather in the great feedback that I received and my own ideas for improvement that it generated.</p>
<p>I want to thank Patrick LeBlanc (<a href="http://www.sqlservercentral.com/blogs/sqldownsouth/default.aspx" target="_blank">blog</a>, <a href="http://twitter.com/patrickdba" target="_blank">Twitter</a>) again for helping me to pull off the rehearsal on such short notice!  I look forward to returning as a <a href="http://www.sqllunch.com/" target="_blank">SQL Lunch</a> presenter in the not-too-distant future.</p>
<p>When I gave the <a href="/technical-presentations/#SQLDiag" target="_blank">SQLDiag presentation</a> <a href="/2009/10/12/speaking-at-the-october-gfwssug-and-ntssug-meetings/" target="_blank">on the 21st</a>, there was good response to the recently added <a href="http://en.wikipedia.org/wiki/Case_method" target="_blank">case study</a> and it was suggested that I increase its role in the talk.  Mike McKinney also made a great observation: I&#8217;m spending too much time describing the <a href="http://technet.microsoft.com/en-us/library/aa175399(SQL.80).aspx" target="_blank">configuration</a> of <a href="http://msdn.microsoft.com/en-us/library/ms162833.aspx" target="_blank">SQLDiag</a> (overall, but especially before showing the end result of using it).  In other words, I need to firmly establish the value of these tools before delving into the mechanics of their usage.  His point made so much sense and I&#8217;m grateful for the insight.</p>
<p>I made a lot of changes based on those suggestions, which were put into play for the first time this morning.  They made a huge difference, but it did lead to some continuity issues and glitches.</p>
<p>Another friend from the <a href="http://northtexas.sqlpass.org/" target="_blank">user group</a>, David Stein (<a href="http://www.made2mentor.com/" target="_blank">blog</a>, <a href="http://twitter.com/Made2Mentor" target="_blank">Twitter</a>), provided some very detailed and helpful constructive criticism.  I also received emails with good ideas from Steve Jones (<a href="http://www.sqlservercentral.com/blogs/steve_jones/" target="_blank">blog</a>, <a href="http://twitter.com/way0utwest" target="_blank">Twitter</a>), Tim Mitchell (<a href="http://www.timmitchell.net/" target="_blank">blog</a>, <a href="http://twitter.com/Tim_Mitchell" target="_blank">Twitter</a>), and Vic Prabhu (<a href="http://twitter.com/SQLJackal" target="_blank">Twitter</a>).  The following points, which ring true, were raised by one or more of them:</p>
<ul>
<li>I need to work on my demeanor.  Apparently it takes five to ten minutes for me to warm up and start to seem comfortable and confident</li>
<li>I should significantly cut back the introduction section</li>
<li>I&#8217;m switching between windows too often, giving a choppy feel to the talk</li>
<li>I need to speed up/cut back on the content.  I&#8217;m still running out of time long before I cover everything</li>
<li>I&#8217;m spending too long on the troubleshooting methodology at the expense of demonstrating the tools and techniques</li>
<li>I need more practice</li>
</ul>
<p>I have blocked out at least an hour for each of the next three days for solo rehearsals.  I am also making the following adjustments (some based on audience feedback, others based on my own evaluation):</p>
<ul>
<li>I&#8217;m reducing the introduction section considerably.  People can read the slides and check out this blog to learn more about me.  Also, my credibility will be established by the presentation&#8217;s content (I don&#8217;t need to sell myself based on the number of instances I help support in <a href="http://www.terremark.com/services/managed-hosting/highly-managed-hosting.aspx" target="_blank">Terremark&#8217;s Highly Managed Hosting</a> environment).  Besides, when somebody chooses to attend my session it is because they already have the presumption that my information is reliable and will hold value for them</li>
<li>I&#8217;m trimming down the coverage on troubleshooting methodology quite a bit.  I did classify <a href="http://summit2009.sqlpass.org/Agenda/ProgramSessions/LeveragingPSSDiagSQLDiagforEfficientTroublesh.aspx" target="_blank">this session</a> as being at the &quot;intermediate&quot; skill level&#x2014;the audience members should already understand the importance of having a formal process and it will take less for them to adapt mine to their needs</li>
<li>The <a href="http://pal.codeplex.com/" target="_blank">PAL</a> demonstration will now precede working with <a href="http://sqlnexus.codeplex.com/" target="_blank">SQL Nexus</a>.  It will flow better, plus this is actually the order I follow when applying these techniques in the field</li>
<li>I will work the demonstration of the <a href="http://support.microsoft.com/default.aspx?scid=kb;en-us;944837" target="_blank">RML Utilities</a> back in and explain the way that this tool and SQL Nexus complement each other</li>
<li>I plan to move the &quot;&#8217;Strategies&#8217; to Avoid&quot; slide to the end of the presentation.  If I run out of time, it is the best material to sacrifice</li>
<li>I have several improvements for the case study</li>
<li>I am considering printing out (and distributing to the audience before the session) the three Microsoft Word documents: &quot;Troubleshooting Methodologies,&quot; &quot;Troubleshooting Checklist,&quot; and &quot;Case Study&quot;</li>
</ul>
<p>I feel really good about giving this at PASS!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tnbarkhouse.wordpress.com/172/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tnbarkhouse.wordpress.com/172/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tnbarkhouse.wordpress.com/172/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tnbarkhouse.wordpress.com/172/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tnbarkhouse.wordpress.com/172/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tnbarkhouse.wordpress.com/172/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tnbarkhouse.wordpress.com/172/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tnbarkhouse.wordpress.com/172/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tnbarkhouse.wordpress.com/172/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tnbarkhouse.wordpress.com/172/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tnbarkhouse.wordpress.com/172/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tnbarkhouse.wordpress.com/172/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tnbarkhouse.wordpress.com/172/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tnbarkhouse.wordpress.com/172/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sqlserversleuth.com&amp;blog=6775699&amp;post=172&amp;subd=tnbarkhouse&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sqlserversleuth.com/2009/10/31/a-successful-rehearsal-and-upcoming-improvements-to-the-presentation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a662186ae400e1e95ffca05d7b474fd7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tnbarkhouse</media:title>
		</media:content>
	</item>
		<item>
		<title>The Presentations Won&#8217;t Be Posted Until After the PASS Summit</title>
		<link>http://sqlserversleuth.com/2009/10/31/the-presentations-wont-be-posted-until-after-the-pass-summit/</link>
		<comments>http://sqlserversleuth.com/2009/10/31/the-presentations-wont-be-posted-until-after-the-pass-summit/#comments</comments>
		<pubDate>Sat, 31 Oct 2009 05:10:45 +0000</pubDate>
		<dc:creator>tnbarkhouse</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[automation]]></category>
		<category><![CDATA[conferences]]></category>
		<category><![CDATA[escalation calls]]></category>
		<category><![CDATA[NTSSUG]]></category>
		<category><![CDATA[PASS]]></category>
		<category><![CDATA[speaking]]></category>
		<category><![CDATA[SQLDiag]]></category>
		<category><![CDATA[SQLSaturday]]></category>

		<guid isPermaLink="false">http://sqlserversleuth.com/?p=167</guid>
		<description><![CDATA[I&#8217;ve decided that the posting of my presentation materials (PowerPoint slide decks and sample code) will have to wait until I return from the 2009 PASS Community Summit. I apologize again for the delay. As I mentioned previously, I&#8217;ve been &#8230; <a href="http://sqlserversleuth.com/2009/10/31/the-presentations-wont-be-posted-until-after-the-pass-summit/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sqlserversleuth.com&amp;blog=6775699&amp;post=167&amp;subd=tnbarkhouse&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve decided that the posting of my presentation materials (PowerPoint slide decks and sample code) will have to wait until I return from the <a href="http://summit2009.sqlpass.org/" target="_blank">2009 PASS Community Summit</a>.  I apologize again for the delay.</p>
<p>As I <a href="/2009/10/21/the-delay-continues/" target="_blank">mentioned previously</a>, I&#8217;ve been adding to and improving the demonstrations for the <a href="/technical-presentations/#SQLDiag" target="_blank">SQLDiag</a> presentation.  I was satisfied with the code (in terms of functionality, it still needed polishing and testing) until last week, when I got an escalation call about end-user complaints of poor performance with a customer&#8217;s application.  This type of case calls for the techniques covered in my presentation.  I then realized that October has been a bit of a dry spell in terms of complex issues that merited these techniques.</p>
<p>I ended up seeing a number of opportunities to further automate the process, pleased with the dual benefit of 1.) helping to solve the issue for the customer and 2.) having more to share with my audiences.  For example, I finally created a PowerShell script that automatically extracts a single <a href="http://msdn.microsoft.com/en-us/library/ms162833.aspx" target="_blank">SQLDiag</a> data set from a <a href="http://7-Zip.org/" target="_blank">7-Zip</a> archive and loads it into <a href="http://pal.codeplex.com/" target="_blank">PAL</a> and <a href="http://sqlnexus.codeplex.com/" target="_blank">SQL Nexus</a>.  This saves an <span style="font-weight:bold;">immense</span> amount of time!  The downside is that I added a significant set of new scripts that have to be refined and tested (but they are absolutely worth it!).</p>
<p>I have been putting the release of the presentation materials above many other tasks (including blogging, participating on <a href="/2009/10/12/my-first-forum-contribution/" target="_blank">forums</a>, and many responsibilities in my personal life), which has really added to my stress level.  It&#8217;s time to reprioritize&#8230; I need to enjoy some down-time with my wife, tie up a few loose ends at work, and prepare for the PASS conference.  I&#8217;m sorry to postpone further, but on the other hand, the quality and quantity of deliverables will be much greater this way.  I&#8217;m sure that you&#8217;ll find it worth the wait!</p>
<p>Expect the presentation materials the week of November 9th.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tnbarkhouse.wordpress.com/167/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tnbarkhouse.wordpress.com/167/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tnbarkhouse.wordpress.com/167/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tnbarkhouse.wordpress.com/167/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tnbarkhouse.wordpress.com/167/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tnbarkhouse.wordpress.com/167/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tnbarkhouse.wordpress.com/167/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tnbarkhouse.wordpress.com/167/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tnbarkhouse.wordpress.com/167/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tnbarkhouse.wordpress.com/167/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tnbarkhouse.wordpress.com/167/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tnbarkhouse.wordpress.com/167/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tnbarkhouse.wordpress.com/167/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tnbarkhouse.wordpress.com/167/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sqlserversleuth.com&amp;blog=6775699&amp;post=167&amp;subd=tnbarkhouse&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sqlserversleuth.com/2009/10/31/the-presentations-wont-be-posted-until-after-the-pass-summit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a662186ae400e1e95ffca05d7b474fd7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tnbarkhouse</media:title>
		</media:content>
	</item>
		<item>
		<title>The Delay Continues&#8230;</title>
		<link>http://sqlserversleuth.com/2009/10/21/the-delay-continues/</link>
		<comments>http://sqlserversleuth.com/2009/10/21/the-delay-continues/#comments</comments>
		<pubDate>Wed, 21 Oct 2009 20:36:19 +0000</pubDate>
		<dc:creator>tnbarkhouse</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[NTSSUG]]></category>
		<category><![CDATA[PASS]]></category>
		<category><![CDATA[speaking]]></category>
		<category><![CDATA[SQLDiag]]></category>
		<category><![CDATA[SQLSaturday]]></category>

		<guid isPermaLink="false">http://sqlserversleuth.com/?p=158</guid>
		<description><![CDATA[I made more progress on my presentations yesterday (on my day off), but they&#8217;re not ready to be posted yet. I apologize for the delay. I&#8217;m now targeting this coming weekend for their release. One reason is that the demonstrations &#8230; <a href="http://sqlserversleuth.com/2009/10/21/the-delay-continues/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sqlserversleuth.com&amp;blog=6775699&amp;post=158&amp;subd=tnbarkhouse&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I made more progress on my presentations yesterday (on my day off), but they&#8217;re not ready to be posted yet.  I apologize for the delay.  I&#8217;m now targeting this coming weekend for their release.</p>
<p>One reason is that the demonstrations for my <a href="/technical-presentations/#SQLDiag" target="_blank">SQLDiag presentation</a> are still being actively developed and tested.  They&#8217;ve come a long way so far (at <a href="http://sqlsaturday.com/eventhome.aspx?eventid=26" target="_blank">SQLSaturday #25</a> they didn&#8217;t work and at the <a href="http://northtexas.sqlpass.org/MeetingArchive/tabid/238/Default.aspx" target="_blank">October NTSSUG meeting</a> they were merely adequate).  Last night I decided to add scripts for creating a <a href="http://msdn.microsoft.com/en-us/library/ms189237.aspx" target="_blank">SQL Server Agent</a> <a href="http://msdn.microsoft.com/en-us/library/ms187880.aspx" target="_blank">job</a> and <a href="http://msdn.microsoft.com/en-us/library/ms191508.aspx" target="_blank">alert</a> pair that will launch <a href="http://msdn.microsoft.com/en-us/library/ms162833.aspx" target="_blank">SQLDiag</a>.  I&#8217;ve mentioned this technique each time that I&#8217;ve given the presentation so I thought that it was time to include the code for doing so.  It&#8217;s an important addition, but it did take a bit of time to churn out instruction-quality code.</p>
<p>I briefly considered posting the PowerPoint slide decks for the presentations, without the accompanying sample code, but I would hate for somebody to neglect to return and get the updates.  I put a lot into the sample code and I hope that it provides great value to the audience members.</p>
<p>Last night, I also had to upload the final revision of my PowerPoint slide deck for the <a href="http://summit2009.sqlpass.org/Agenda/ProgramSessions/LeveragingPSSDiagSQLDiagforEfficientTroublesh.aspx" target="_blank">PASS Community Summit 2009</a>.  I spent quite a while tweaking the content with ideas that I&#8217;ve gotten from the last few deliveries of the material.</p>
<p>Finally, there are a few remaining preparations for tonight, my last <a href="/2009/10/12/speaking-at-the-october-gfwssug-and-ntssug-meetings/" target="_blank">scheduled</a> presentation (before the Summit).</p>
<p>I&#8217;m working diligently to get everything ready for you&#8230; there&#8217;s just a great deal to do.  I even passed on going to the first meeting of the <a href="http://www.dfwitprofessionals.com/" target="_blank">DFW IT Professionals users group</a>, despite my strong desire to attend.  I decided that my commitment to those of you that have attended my presentations trumped my own enjoyment (in this case).</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tnbarkhouse.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tnbarkhouse.wordpress.com/158/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tnbarkhouse.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tnbarkhouse.wordpress.com/158/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tnbarkhouse.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tnbarkhouse.wordpress.com/158/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tnbarkhouse.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tnbarkhouse.wordpress.com/158/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tnbarkhouse.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tnbarkhouse.wordpress.com/158/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tnbarkhouse.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tnbarkhouse.wordpress.com/158/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tnbarkhouse.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tnbarkhouse.wordpress.com/158/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sqlserversleuth.com&amp;blog=6775699&amp;post=158&amp;subd=tnbarkhouse&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sqlserversleuth.com/2009/10/21/the-delay-continues/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a662186ae400e1e95ffca05d7b474fd7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tnbarkhouse</media:title>
		</media:content>
	</item>
		<item>
		<title>A Brief Delay</title>
		<link>http://sqlserversleuth.com/2009/10/19/a-brief-delay/</link>
		<comments>http://sqlserversleuth.com/2009/10/19/a-brief-delay/#comments</comments>
		<pubDate>Tue, 20 Oct 2009 03:20:46 +0000</pubDate>
		<dc:creator>tnbarkhouse</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[escalation calls]]></category>
		<category><![CDATA[NTSSUG]]></category>
		<category><![CDATA[speaking]]></category>
		<category><![CDATA[SQLDiag]]></category>
		<category><![CDATA[SQLSaturday]]></category>

		<guid isPermaLink="false">http://sqlserversleuth.com/?p=150</guid>
		<description><![CDATA[I was hoping to knock out a few tasks over the weekend: Send the slide decks and code for my SQLSaturday #25 presentations to Stuart Ainsworth (blog, Twitter) for posting on the SQLSaturday.com web site Post the slide deck for &#8230; <a href="http://sqlserversleuth.com/2009/10/19/a-brief-delay/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sqlserversleuth.com&amp;blog=6775699&amp;post=150&amp;subd=tnbarkhouse&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I was hoping to knock out a few tasks over the weekend:</p>
<ul>
<li>Send the slide decks and code for my <a href="http://sqlsaturday.com/eventhome.aspx?eventid=26" target="_blank">SQLSaturday #25</a> presentations to Stuart Ainsworth (<a href="http://codegumbo.com/" target="_blank">blog</a>, <a href="http://twitter.com/stuarta" target="_blank">Twitter</a>) for posting on the <a href="http://sqlsaturday.com/" target="_blank">SQLSaturday.com</a> web site</li>
<li>Post the slide deck for <a href="/2009/10/12/speaking-at-the-october-gfwssug-and-ntssug-meetings/" target="_blank">last Thursday&#8217;s presentation</a> on the <a href="http://northtexas.sqlpass.org/" target="_blank">NTSSUG</a> web site</li>
<li>Continue refining my <a href="/technical-presentations/#SQLDiag" target="_blank">SQLDiag presentation</a> for this coming <a href="/2009/10/12/speaking-at-the-october-gfwssug-and-ntssug-meetings/" target="_blank">Wednesday</a></li>
<li>Catch up on some blogging, including an account of my experience at SQLSaturday #25</p>
</ul>
<p>I made some great progress on the SQLDiag presentation, but the other tasks had to give way to caring for my sick wife and fielding an inordinate number of escalation calls (it was my turn to be the <a href="http://www.bls.gov/oco/ocos268.htm" target="_blank">on-call</a> DBA, a duty that rotates to me every four weeks).</p>
<p>I haven&#8217;t forgotten these tasks&#8230; hopefully I can catch up tomorrow, since I have the day off from work.  Please bear with me.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tnbarkhouse.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tnbarkhouse.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tnbarkhouse.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tnbarkhouse.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tnbarkhouse.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tnbarkhouse.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tnbarkhouse.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tnbarkhouse.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tnbarkhouse.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tnbarkhouse.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tnbarkhouse.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tnbarkhouse.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tnbarkhouse.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tnbarkhouse.wordpress.com/150/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sqlserversleuth.com&amp;blog=6775699&amp;post=150&amp;subd=tnbarkhouse&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sqlserversleuth.com/2009/10/19/a-brief-delay/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a662186ae400e1e95ffca05d7b474fd7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tnbarkhouse</media:title>
		</media:content>
	</item>
		<item>
		<title>My First Anniversary at Terremark</title>
		<link>http://sqlserversleuth.com/2009/10/19/my-first-anniversary-at-terremark/</link>
		<comments>http://sqlserversleuth.com/2009/10/19/my-first-anniversary-at-terremark/#comments</comments>
		<pubDate>Tue, 20 Oct 2009 02:33:05 +0000</pubDate>
		<dc:creator>tnbarkhouse</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[burn out]]></category>
		<category><![CDATA[involuntary DBA]]></category>
		<category><![CDATA[job search]]></category>
		<category><![CDATA[mentoring]]></category>
		<category><![CDATA[NTSSUG]]></category>
		<category><![CDATA[Project Asculum]]></category>
		<category><![CDATA[speaking]]></category>
		<category><![CDATA[Terremark]]></category>
		<category><![CDATA[Usability Sciences]]></category>

		<guid isPermaLink="false">http://sqlserversleuth.com/?p=146</guid>
		<description><![CDATA[One year ago, last Tuesday, I joined the Database Escalations and Implementation team at Terremark Worldwide, Inc. Looking back on the last twelve months, this has absolutely been the right move for me, both personally and professionally. Leaving Usability Sciences &#8230; <a href="http://sqlserversleuth.com/2009/10/19/my-first-anniversary-at-terremark/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sqlserversleuth.com&amp;blog=6775699&amp;post=146&amp;subd=tnbarkhouse&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>One year ago, last Tuesday, I joined the Database Escalations and Implementation team at <a href="http://www.terremark.com/" target="_blank">Terremark Worldwide, Inc.</a>  Looking back on the last twelve months, this has absolutely been the right move for me, both personally and professionally.</p>
<p>Leaving <a href="http://www.usabilitysciences.com/" target="_blank">Usability Sciences Corporation</a> (USC) was not easy to do.  Having worked there for nearly eight years, I have significant ties to the organization.  I consider several of my teammates amongst my dearest friends.  I am also extremely grateful for the opportunities given to me while at USC.  It was there that I first encountered <a href="http://www.microsoft.com/sqlserver/" target="_blank">SQL Server</a>, which is a pretty important part of my life now.  I also matured, first as a software developer, then as a sysadmin and database administrator.  Being a small company, there were always more roles than employees, so I was allowed to take on as many responsibilities as I could handle (and then some).  I was very much an &quot;accidental DBA&quot; or &quot;<a href="http://www.sqlskills.com/BLOGS/PAUL/post/Becoming-an-involuntary-DBA-youre-not-alone.aspx" target="_blank">involuntary DBA</a>.&quot;  I was able to learn and grow, becoming a knowledgeable and skilled SQL Server DBA.  Eventually, though, the systemic lack of resources (personnel and funding) took its toll and I got burned out.  My SQL Server expertise also started to plateau and I realized the need to move on.  Thankfully, my departure was on good terms and I&#8217;m still in frequent contact with my good friends at USC.  They even let me <a href="/2009/10/12/dress-rehearsal-for-my-second-sqlsaturday-25-presentation/" target="_blank">rehearse my technical presentations</a> there from time-to-time.</p>
<p>After I made my job search public, I sent an announcement to the <a href="http://northtexas.sqlpass.org/" target="_blank">NTSSUG</a> <a href="http://northtexas.sqlpass.org/DistributionList/tabid/364/Default.aspx" target="_blank">mailing list</a> to solicit ideas and opportunities.  I received a fantastic response, including interest from three separate Terremark employees: Jason Massie (<a href="http://jasonmassie.com/" target="_blank">blog</a>, <a href="http://twitter.com/statisticsio" target="_blank">Twitter</a>), Kevin Hill (<a href="http://kevin3nf.blogspot.com/" target="_blank">blog</a>, <a href="http://twitter.com/Kevin3NF/" target="_blank">Twitter</a>), and Bill Lester (the manager of the Database Implementation and Escalations team).  I knew Jason from the user group and considered him a role model (I still do), so I invited him to lunch for a good ol&#8217; <a href="http://en.wikipedia.org/wiki/Informational_interview" target="_blank">informational interview</a>, which he graciously accepted.  Then I got to meet Kevin and Bill at a Terremark open house (showcasing their new <a href="http://www.theenterprisecloud.com/" target="_blank">Enterprise Cloud</a> product).  Several interviews followed and Terremark made an offer, which I gladly accepted.  My first day was Monday, October 13th, 2008.</p>
<p>Landing this job has been a tremendous blessing.  I was glad to be on a team whose expertise and experience was far beyond my own (two of my teammates came directly from the <a href="http://www.microsoft.com/about/companyinformation/usaoffices/southcentral/dallas.mspx" target="_blank">local Microsoft campus</a> where they were on the <a href="http://blogs.msdn.com/psssql/" target="_blank">SQL Server support team</a>!).  For the first time in many years, I could learn database skills from co-workers and wouldn&#8217;t have to be out-in-front, teaching myself.</p>
<p>Jason originally worked in a <a href="http://www.terremark.com/uploadedFiles/TM_EngineeringServices.pdf" target="_blank">different unit</a>, but by serendipity he became my immediate manager a month later.  I&#8217;ve learned a great deal about SQL Server from Jason, but he has also helped immensely with my entry into <a href="/technical-presentations/" target="_blank">technological public speaking</a>.  This type of mentoring, which I don&#8217;t consider to be included in his job responsibilities, has been invaluable.</p>
<p>Like any job, there are pros and cons.  However, with the exception of the beat down from <span style="font-style:italic;">Project Asculum</span> (which still needs coverage on this blog), I have greatly enjoyed this job and the benefits have <span style="font-weight:bold;">far exceeded</span> the drawbacks.  I look forward to many more years with Terremark.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tnbarkhouse.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tnbarkhouse.wordpress.com/146/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tnbarkhouse.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tnbarkhouse.wordpress.com/146/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tnbarkhouse.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tnbarkhouse.wordpress.com/146/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tnbarkhouse.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tnbarkhouse.wordpress.com/146/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tnbarkhouse.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tnbarkhouse.wordpress.com/146/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tnbarkhouse.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tnbarkhouse.wordpress.com/146/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tnbarkhouse.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tnbarkhouse.wordpress.com/146/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sqlserversleuth.com&amp;blog=6775699&amp;post=146&amp;subd=tnbarkhouse&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sqlserversleuth.com/2009/10/19/my-first-anniversary-at-terremark/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a662186ae400e1e95ffca05d7b474fd7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tnbarkhouse</media:title>
		</media:content>
	</item>
		<item>
		<title>Speaking at the October GFWSSUG and NTSSUG meetings</title>
		<link>http://sqlserversleuth.com/2009/10/12/speaking-at-the-october-gfwssug-and-ntssug-meetings/</link>
		<comments>http://sqlserversleuth.com/2009/10/12/speaking-at-the-october-gfwssug-and-ntssug-meetings/#comments</comments>
		<pubDate>Tue, 13 Oct 2009 01:08:43 +0000</pubDate>
		<dc:creator>tnbarkhouse</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[NTSSUG]]></category>
		<category><![CDATA[speaking]]></category>
		<category><![CDATA[SQLDiag]]></category>

		<guid isPermaLink="false">http://sqlserversleuth.com/?p=141</guid>
		<description><![CDATA[I will be delivering my Leveraging PSSDiag/SQLDiag for Efficient Troubleshooting presentation at the October meetings for the Greater Fort Worth SQL Users Group and North Texas SQL Server Users Group. The NTSSUG meeting will be this Thursday, October 15th (6:30 &#8230; <a href="http://sqlserversleuth.com/2009/10/12/speaking-at-the-october-gfwssug-and-ntssug-meetings/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sqlserversleuth.com&amp;blog=6775699&amp;post=141&amp;subd=tnbarkhouse&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I will be delivering my <a href="/technical-presentations/#SQLDiag" target="_blank">Leveraging PSSDiag/SQLDiag for Efficient Troubleshooting</a> presentation at the October meetings for the <a href="http://gfwssug.net/" target="_blank">Greater Fort Worth SQL Users Group</a> and <a href="http://northtexas.sqlpass.org/" target="_blank">North Texas SQL Server Users Group</a>.</p>
<p>The NTSSUG meeting will be this Thursday, October 15th (6:30 p.m.), at Microsoft&#8217;s <a href="http://www.microsoft.com/about/companyinformation/usaoffices/southcentral/dallas.mspx" target="_blank">Las Colinas</a> campus in Irving, Texas.</p>
<p>The GFWSSUG meeting will be on Wednesday, October 21st (6:30 p.m.), at the <a href="http://www.freese.com/Locations/#fortworth" target="_blank">Freese and Nichols</a> office in Fort Worth, Texas.</p>
<p>I hope to see you at either (or both)!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tnbarkhouse.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tnbarkhouse.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tnbarkhouse.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tnbarkhouse.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tnbarkhouse.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tnbarkhouse.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tnbarkhouse.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tnbarkhouse.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tnbarkhouse.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tnbarkhouse.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tnbarkhouse.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tnbarkhouse.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tnbarkhouse.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tnbarkhouse.wordpress.com/141/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sqlserversleuth.com&amp;blog=6775699&amp;post=141&amp;subd=tnbarkhouse&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sqlserversleuth.com/2009/10/12/speaking-at-the-october-gfwssug-and-ntssug-meetings/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a662186ae400e1e95ffca05d7b474fd7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tnbarkhouse</media:title>
		</media:content>
	</item>
		<item>
		<title>Speaking at SQLSaturday #25</title>
		<link>http://sqlserversleuth.com/2009/10/04/speaking-at-sqlsaturday-25/</link>
		<comments>http://sqlserversleuth.com/2009/10/04/speaking-at-sqlsaturday-25/#comments</comments>
		<pubDate>Sun, 04 Oct 2009 23:56:22 +0000</pubDate>
		<dc:creator>tnbarkhouse</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[conferences]]></category>
		<category><![CDATA[deadlocks]]></category>
		<category><![CDATA[NTSSUG]]></category>
		<category><![CDATA[PASS]]></category>
		<category><![CDATA[speaking]]></category>
		<category><![CDATA[SQLDiag]]></category>
		<category><![CDATA[SQLSaturday]]></category>

		<guid isPermaLink="false">http://sqlserversleuth.com/?p=98</guid>
		<description><![CDATA[This coming weekend, I head to Gainesville, Georgia for SQLSaturday #25. This will be my second SQLSaturday event to attend, and this time I will be presenting two sessions: Deadlock Detection, Troubleshooting, &#38; Prevention at 8:30 a.m. Leveraging SQLDiag for &#8230; <a href="http://sqlserversleuth.com/2009/10/04/speaking-at-sqlsaturday-25/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sqlserversleuth.com&amp;blog=6775699&amp;post=98&amp;subd=tnbarkhouse&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This coming weekend, I head to <a href="http://en.wikipedia.org/wiki/Gainesville,_Georgia" target="_blank">Gainesville, Georgia</a> for <a href="http://sqlsaturday.com/eventhome.aspx?eventid=26" target="_blank">SQLSaturday #25</a>.  This will be my <a href="/2009/07/31/speaking-at-sqlsaturday-17/" target="_blank">second</a> <a href="http://sqlsaturday.com/" target="_blank">SQLSaturday</a> event to attend, and this time I will be presenting two sessions:</p>
<ol>
<li><a href="http://www.sqlsaturday.com/viewsession.aspx?sessionid=785" target="_blank">Deadlock Detection, Troubleshooting, &amp; Prevention</a> at 8:30 a.m.</li>
<li><a href="http://www.sqlsaturday.com/viewsession.aspx?sessionid=786" target="_blank">Leveraging SQLDiag for Efficient Troubleshooting</a> at 11:00 a.m.</li>
</ol>
<p>The latter will be my first public delivery of that presentation, the same one that I will be giving in less than a month at the <a href="/2009/07/01/speaking-at-the-pass-community-summit-2009/" target="_blank">PASS Community Summit 2009</a>!  I hope to get a lot of good feedback so that I can continue to refine it.</p>
<p>As before, with <a href="http://sqlsaturday.com/eventhome.aspx?eventid=21" target="_blank">SQLSaturday #17</a>, a secondary reason for attending is to gain greater insight into the workings of a SQLSaturday event, in order to apply the experience to the North Texas SQLSaturday event that we are planning.  I learned a great deal from <a href="http://codegumbo.com/index.php/2009/04/28/so-you-wanna-host-a-sqlsaturday-heres-my-tale/" target="_blank">a great blog post</a> by Stuart Ainsworth (<a href="http://codegumbo.com/" target="_blank">blog</a>, <a href="http://twitter.com/stuarta" target="_blank">Twitter</a>), so it will be great to see him in action (he&#8217;s also the event coordinator of SQLSaturday #25).</p>
<p>I&#8217;m fortunate to get to travel with another friend from the <a href="http://northtexas.sqlpass.org/" target="_blank">user group</a>, Tim Costello (<a href="http://wonkycoder.wordpress.com/" target="_blank">blog</a>, <a href="http://twitter.com/TimCost" target="_blank">Twitter</a>).  This is going to be a fun trip!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tnbarkhouse.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tnbarkhouse.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tnbarkhouse.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tnbarkhouse.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tnbarkhouse.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tnbarkhouse.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tnbarkhouse.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tnbarkhouse.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tnbarkhouse.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tnbarkhouse.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tnbarkhouse.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tnbarkhouse.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tnbarkhouse.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tnbarkhouse.wordpress.com/98/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sqlserversleuth.com&amp;blog=6775699&amp;post=98&amp;subd=tnbarkhouse&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sqlserversleuth.com/2009/10/04/speaking-at-sqlsaturday-25/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a662186ae400e1e95ffca05d7b474fd7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tnbarkhouse</media:title>
		</media:content>
	</item>
		<item>
		<title>Taking Stock of My Goals for the Year</title>
		<link>http://sqlserversleuth.com/2009/10/02/taking-stock-of-my-goals-for-the-year/</link>
		<comments>http://sqlserversleuth.com/2009/10/02/taking-stock-of-my-goals-for-the-year/#comments</comments>
		<pubDate>Fri, 02 Oct 2009 21:36:02 +0000</pubDate>
		<dc:creator>tnbarkhouse</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[conferences]]></category>
		<category><![CDATA[goals]]></category>
		<category><![CDATA[NTSSUG]]></category>
		<category><![CDATA[PASS]]></category>
		<category><![CDATA[speaking]]></category>
		<category><![CDATA[SQLSaturday]]></category>

		<guid isPermaLink="false">http://sqlserversleuth.com/?p=82</guid>
		<description><![CDATA[The fourth quarter of 2009 has waylaid me; where did the time go?!? This seems like a good time to evaluate the progress on my professional/technical goals for the year: Begin answering questions in forums and newsgroups I have been &#8230; <a href="http://sqlserversleuth.com/2009/10/02/taking-stock-of-my-goals-for-the-year/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sqlserversleuth.com&amp;blog=6775699&amp;post=82&amp;subd=tnbarkhouse&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The fourth quarter of 2009 has waylaid me; where did the time go?!?</p>
<p>This seems like a good time to evaluate the progress on my professional/technical goals for the year:</p>
<div style="margin:25px;">
<h3>Begin answering questions in forums and newsgroups</h3>
<p>I have been remiss on this goal.  I continue to draw immense benefit from forums and newsgroups, yet I haven&#8217;t overcome my <a href="http://en.wikipedia.org/wiki/Lurker" target="_blank">lurker</a> nature.  It&#8217;s time for this to change.  I will create a few accounts this weekend and start small by attempting to answer one question per week.</p>
<h3>Begin delivering technical presentations</h3>
<p>This one has gone quite well, better than I could have hoped.  So far this year, I have been the featured presenter for three user group meetings and I spoke at <a href="http://sqlsaturday.com/eventhome.aspx?eventid=21" target="_blank">SQLSaturday #17</a>.  I&#8217;m also scheduled to speak at two more user group meetings, <a href="http://sqlsaturday.com/eventhome.aspx?eventid=26" target="_blank">SQLSaturday #25</a>, and the <a href="http://summit2009.sqlpass.org/" target="_blank">PASS Community Summit 2009</a>!</p>
<h3>Begin publishing a blog</h3>
<p>You see the results before you.  I need to start achieving some consistency and frequency in posting.  I have so many good ideas, it&#8217;s time to increase the priority of blog posting in my crowded schedule!</p>
<h3>Begin participating <a href="http://sqlserversleuth.com/2009/02/28/preface/" target="_blank">social computing</a></h3>
<p>I am really enjoying <a href="http://twitter.com/" target="_blank">Twitter</a> (I&#8217;m <a href="http://twitter.com/SQLServerSleuth" target="_blank">@SQLServerSleuth</a>)!  It is my primary source for blog posts and whitepapers to read.  I&#8217;ve learned a great deal from the other SQL Server professionals and I&#8217;ve had the chance to help out a few that I&#8217;d never met.</p>
<p>I have a <a href="http://www.linkedin.com/in/trevorbarkhouse" target="_blank">LinkedIn profile</a>, but I haven&#8217;t started connecting to others or joining groups.</p>
<h3>Find a way to make it back to the PASS Summit this year</h3>
<p>I am tremendously blessed, honored, and humbled to be <a href="http://sqlserversleuth.com/2009/07/01/speaking-at-the-pass-community-summit-2009/" target="_blank">speaking</a> at the <a href="http://summit2009.sqlpass.org/Agenda/ProgramSessions/LeveragingPSSDiagSQLDiagforEfficientTroublesh.aspx" target="_blank">PASS Community Summit 2009</a> this year!  To add to it, my <a href="http://www.terremark.com/" target="_blank">employer</a> has graciously agreed to cover my travel expenses!  My wife and I saved quite a bit of money in our &#8220;conferences&#8221; budget category, but now those funds can be <a href="http://cmg.org/conference/cmg2009/" target="_blank">put to good use</a> in another way!</p>
<h3>Get the test server up and running</h3>
<p>I purchased a refurbished Dell server in mid-2008 and it has proven valuable several times this year.  I have several blog posts planned on this topic.</p>
<h3>Play a bigger role in the local SQL Server community</h3>
<p>I consider this a success for the year.  I have done more this year in my leadership position for <a href="http://northtexas.sqlpass.org/" target="_blank">NTSSUG</a>.  In addition to maintaining the web site, I have also run one of the meetings, helped to line up speakers and sponsors, and have been the featured presenter for several meetings.  I&#8217;ve also made several new friends!</p>
<p>I am also working hard on the committee that is bring a <a href="http://sqlsaturday.com/" target="_blank">SQLSaturday</a> event to North Texas.</p>
</div>
<p>Overall, I&#8217;m pleased with my progress.  I&#8217;m going to dedicate more time to this blog and to participating in forums and newsgroups.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tnbarkhouse.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tnbarkhouse.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tnbarkhouse.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tnbarkhouse.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tnbarkhouse.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tnbarkhouse.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tnbarkhouse.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tnbarkhouse.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tnbarkhouse.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tnbarkhouse.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tnbarkhouse.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tnbarkhouse.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tnbarkhouse.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tnbarkhouse.wordpress.com/82/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sqlserversleuth.com&amp;blog=6775699&amp;post=82&amp;subd=tnbarkhouse&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sqlserversleuth.com/2009/10/02/taking-stock-of-my-goals-for-the-year/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a662186ae400e1e95ffca05d7b474fd7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tnbarkhouse</media:title>
		</media:content>
	</item>
	</channel>
</rss>
