<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>SQL in the Wild &#187; Conferences</title>
	<atom:link href="http://sqlinthewild.co.za/index.php/category/conferences/feed/" rel="self" type="application/rss+xml" />
	<link>http://sqlinthewild.co.za</link>
	<description>A discussion on SQL Server</description>
	<lastBuildDate>Wed, 25 Apr 2012 14:45:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>All about Execution Plans</title>
		<link>http://sqlinthewild.co.za/index.php/2011/08/09/all-about-execution-plans/</link>
		<comments>http://sqlinthewild.co.za/index.php/2011/08/09/all-about-execution-plans/#comments</comments>
		<pubDate>Tue, 09 Aug 2011 14:30:55 +0000</pubDate>
		<dc:creator>Gail</dc:creator>
				<category><![CDATA[Conferences]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Syndication]]></category>

		<guid isPermaLink="false">http://sqlinthewild.co.za/?p=1262</guid>
		<description><![CDATA[Coming to the PASS Summit in October this year? Excellent! I say excellent, because Grant (blog&#124;twitter) and I are presenting a full-day seminar on the Monday, all about execution plans. Excited already? If not, let me give you a taste of what we&#8217;ll be discussing. Grant will be kicking things off with a look at [...]]]></description>
			<content:encoded><![CDATA[<p>Coming to the <a href="http://www.sqlpass.org/summit/2011/">PASS Summit</a> in October this year? Excellent!</p>
<p>I say excellent, because Grant (<a href="http://www.scarydba.com/">blog</a>|<a href="http://twitter.com/GFritchey">twitter</a>) and I are presenting a full-day seminar on the Monday, <a href="http://www.sqlpass.org/summit/2011/Speakers/CallForSpeakers/SessionDetail.aspx?sid=1245">all about execution plans</a>. Excited already? If not, let me give you a taste of what we&#8217;ll be discussing.</p>
<p>Grant will be kicking things off with a look at how the optimiser works. Not 500 level deep internals (that&#8217;d take all day by itself), but an overview of how the optimiser turns this</p>
<pre class="brush: sql; title: ; notranslate">SELECT t.Title, u.UserName, u.UserLevel, t.LastModified, t.LastPoster
FROM Threads t
INNER JOIN Posts p on t.ThreadID = p.ThreadID
INNER JOIN Users u on p.Poster = u.UserID
WHERE t.ThreadID = 42</pre>
<p>into this</p>
<p><a href="http://sqlinthewild.co.za/wp-content/uploads/2011/08/QueryIntoExecPlan.png"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="QueryIntoExecPlan" src="http://sqlinthewild.co.za/wp-content/uploads/2011/08/QueryIntoExecPlan_thumb.png" border="0" alt="QueryIntoExecPlan" width="484" height="180" /></a></p>
<p>as well as some DMVs that give a view on what the optimiser is doing.</p>
<p>After that, I&#8217;ll be digging into what the plan cache is, how it&#8217;s structured and how plans are matched to incoming queries. I&#8217;ll also cover how you might go about monitoring SQL&#8217;s usage of the cache.</p>
<p>After that we&#8217;ll discuss the myriad and varied ways to get execution plans out of SQL and what the various different options for that return and what some of the terms involved really mean (estimated execution plans anyone?).</p>
<p>Once all that&#8217;s out there (which will probably take the entire morning) it&#8217;ll be onto the fun of reading the execution plans, what those various icons represent and what all their arcane properties are telling you. Maybe, just maybe we&#8217;ll also have a look at the raw XML form of the plan, just for fun.</p>
<p>And because theory&#8217;s not very useful without something to apply it to, we&#8217;ll be ending off the day by seeing how you can use the information from the execution plan to tune your queries. After all, everyone wants better performance, right?</p>
<p>Still not completely convinced? Then check out the <a href="http://www.sqlpass.org/24hours/fall2011/">24 hours of PASS</a> coming in September. Both Grant and I are doing a pre-con preview. I&#8217;m doing <a href="http://www.sqlpass.org/24hours/fall2011/SessionsbySchedule/ExtractingExecutionplans.aspx">extracting execution plans</a> and Grant&#8217;s doing a portion of the <a href="http://www.sqlpass.org/24hours/fall2011/SessionsbySchedule/AllAboutExecutionPlansReadingExecutionPlans.aspx">reading execution plans</a> section.</p>
<p>Right, now that everyone&#8217;s dying to attend this, I&#8217;m going to toss out a little bit of a challenge. If you&#8217;re coming to our precon and you have an execution plan that you don&#8217;t understand (maybe a strange operator, maybe a property with a value you&#8217;ve never seen), mail it to me (gail@&lt;blog domain&gt;) with a note as to what you want clarifying and we might discuss it during the pre-con. Some rules, just to keep things sane</p>
<ul>
<li>No confidential stuff. I don&#8217;t want legal trouble, neither do you.</li>
<li>If the exec plan takes 5 minutes to open in SSMS, I&#8217;m deleting it.</li>
<li>If it&#8217;s multiple pages in SSMS, I&#8217;m deleting it.</li>
<li>I don&#8217;t promise to look at anyone&#8217;s plans, it depends how we&#8217;re doing on time.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://sqlinthewild.co.za/index.php/2011/08/09/all-about-execution-plans/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>PASS Summit Session Votes</title>
		<link>http://sqlinthewild.co.za/index.php/2011/05/18/pass-summit-session-votes/</link>
		<comments>http://sqlinthewild.co.za/index.php/2011/05/18/pass-summit-session-votes/#comments</comments>
		<pubDate>Wed, 18 May 2011 14:30:00 +0000</pubDate>
		<dc:creator>Gail</dc:creator>
				<category><![CDATA[Community]]></category>
		<category><![CDATA[Conferences]]></category>
		<category><![CDATA[Syndication]]></category>

		<guid isPermaLink="false">http://sqlinthewild.co.za/?p=1047</guid>
		<description><![CDATA[I blogged a week ago about the sessions that I submitted for the PASS Summit this year. At the point that I scheduled the post I hadn&#8217;t seen the announcement from PASS, hence a second post on the same topic. This year, you can vote for sessions that you want to see. How much influence [...]]]></description>
			<content:encoded><![CDATA[<p>I <a href="http://sqlinthewild.co.za/index.php/2011/05/10/pass-summit-abstracts/">blogged a week ago</a> about the sessions that I submitted for the <a href="http://www.sqlpass.org/summit/2011/">PASS Summit</a> this year. At the point that I scheduled the post I hadn&#8217;t seen the announcement from PASS, hence a second post on the same topic.</p>
<p>This year, you can vote for sessions that you want to see. How much influence this will have over the Program Committee isn&#8217;t defined anywhere, but anything is better than nothing.</p>
<p>Voting closes on the 20th May (Friday), so if you have any interest in what gets presented at PASS Summit this year, go over to the <a href="http://www.sqlpass.org/summit/2011/Speakers/SessionPreferencing.aspx?p=62&amp;preferred=False">speaker preference survey</a> and vote.</p>
<p>Oh, and to make things easier, if you want to vote for any of my sessions, they&#8217;re <a href="http://www.sqlpass.org/summit/2011/Speakers/SessionPreferencing.aspx?spid=309&amp;p=1&amp;preferred=False">here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://sqlinthewild.co.za/index.php/2011/05/18/pass-summit-session-votes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pass summit abstracts</title>
		<link>http://sqlinthewild.co.za/index.php/2011/05/10/pass-summit-abstracts/</link>
		<comments>http://sqlinthewild.co.za/index.php/2011/05/10/pass-summit-abstracts/#comments</comments>
		<pubDate>Tue, 10 May 2011 14:30:27 +0000</pubDate>
		<dc:creator>Gail</dc:creator>
				<category><![CDATA[Community]]></category>
		<category><![CDATA[Conferences]]></category>
		<category><![CDATA[Syndication]]></category>

		<guid isPermaLink="false">http://sqlinthewild.co.za/?p=1011</guid>
		<description><![CDATA[I missed the Pass summit last November for a number of reasons, but I&#8217;m hoping I can attend this year. Given that, I submitted a number of abstracts for consideration. The limits on number were as follows: Up to 4 abstracts for regular, spotlight or half-day sessions (ie main conference sessions) plus, providing some requirements [...]]]></description>
			<content:encoded><![CDATA[<p>I missed the Pass summit last November for a number of reasons, but I&#8217;m hoping I can attend this year. Given that, I submitted a number of abstracts for consideration.</p>
<p>The limits on number were as follows: Up to 4 abstracts for regular, spotlight or half-day sessions (ie main conference sessions) plus, providing some <a href="http://www.sqlpass.org/Community/SpeakerResource/PrePostConferencePrerequisites.aspx">requirements</a> are met, up to 2 abstracts for pre-con sessions.</p>
<p>I submitted five abstracts, four were ones I&#8217;ve been thinking about for some time, the last was a <a href="http://www.allenkinsel.com/archive/2011/05/further-promoting-the-growth-of-speakers/">last minute surprise</a>.</p>
<h3>Bad plan! Sit!</h3>
<blockquote><p>Bad execution plans are the bane of database performance everywhere they crop up. But what is a bad execution plan? How do you identify one in your system and, once identified how do you go about fixing it?</p>
<p>In this top-rated session from the 24 Hours of PASS we’ll look at some things that make a plan ‘bad’, how you might detect such plans and various methods of fixing the problem, both immediately and long-term.</p></blockquote>
<p>I wasn&#8217;t planning on submitting this one to be honest. It&#8217;s one I did for the <a href="http://www.sqlpass.org/24hours/spring2011/default.aspx">24 hours of Pass back in February</a>, and I didn&#8217;t think it appropriate to redo at the Summit the same year. Some people at Pass disagreed with me on that. The session was one of the top 3 from 24 hours of Pass and as such got a guaranteed slot at Pass summit, and a chance for a Spotlight slot.</p>
<h3>Is that a parameter I smell?</h3>
<blockquote><p>All too often a forum post on erratic query performance is met with a reply ‘Oh, it’s parameter sniffing. You can fix it with .’ The problem with that answer, even if it has identified the cause, is that it’s only part true. Parameter sniffing is not simply a problem that needs fixing, it&#8217;s an essential part of well-performing queries. In most cases.</p>
<p>Come to this session to learn what Parameter Sniffing really is and why it’s a good thing, most of the time. Learn how to identify the scenarios where it’s not good, why a feature that is supposed to improve query performance sometimes degrades it, and what your options are for resolving the problems when they do occur.</p></blockquote>
<h3>Performance improvements in 60 min or less. Guaranteed</h3>
<blockquote><p>The system is slow, users cry<br />
It&#8217;s impacting our bottom line<br />
In meetings the curses fly<br />
The situation is far from fine</p>
<p>While up on the IT floor<br />
The DBA tears his hair<br />
He&#8217;ll soon be shown the door<br />
If he cannot the performance repair,</p>
<p>It often seems, from looking at forum posts and client requests, that the steady-state of databases is &#8216;too slow&#8217; and all too often the people who are tasked with resolving performance problems are overwhelmed by the shear scope of the problem, and aren&#8217;t really sure where to start.</p>
<p>In this demo-heavy session, we&#8217;ll look at a fictional company&#8217;s database and website and work through finding the worst offenders in terms of poor performance, identifying the causes of the problems and at least starting to get the queries to perform better and the users to stop phoning and complaining.</p></blockquote>
<p>Yes, part of the abstract is written in verse. It&#8217;s something I was threatening to do since last year, and I decided that it shouldn&#8217;t harm my chances, much.</p>
<h3>Dos and don’ts of database corruption</h3>
<blockquote><p>Database corruption is one of the worst things you can encounter as a DBA. It can result in downtime, data loss, and unhappy users. What’s scary about corruption is that it can strike out of the blue and with no warning. If maintenance is not being done regularly on the database it&#8217;s easy for corruption to go unnoticed until it&#8217;s too late to repair without losing data.<br />
In this session we’ll look at</p>
<ul>
<li>Easy maintenance operations you should be running right now to ensure the fastest possible identification and resolution of corruption</li>
<li>Best practices for handling a database that you suspect may be corrupted</li>
<li>Common actions that can worsen the problem.</li>
<li>Appropriate steps to take and methods of recovery</li>
</ul>
</blockquote>
<p>I did this session initially for Quest, for their Pain of the Week webcast back in February. I enjoyed doing it a lot, and it got some good feedback, so I decided to submit it for Summit as a contrast to my usual performance-related presentations.</p>
<h3>All about Execution Plans</h3>
<p>Last, but far from least&#8230;</p>
<p>Grant Fritchey (<a href="http://www.scarydba.com/">blog</a> | <a href="https://twitter.com/#!/GFritchey">twitter</a>) and I submitted a join pre-con session on execution  plans. This is an area Grant is a well-known expert on, having written a  book on it, and we&#8217;re hoping that we&#8217;ll be given the chance to devote a  full day to this topic.</p>
<blockquote><p>The key to understanding how SQL Server is processing your queries is the execution plan.</p>
<p>This full day session focuses on the execution plan. We will start right at the beginning and talk about the compile process. We’ll also go over how, and more importantly, why, plans are stored in cache and how they are removed.</p>
<p>We’ll spend time exploring the key differences between actual and estimated plans, and why those descriptions are more than a little misleading. We’ll also show you assorted methods to obtain a query&#8217;s execution plan and what the differences and tradeoffs of each are.</p>
<p>A full day class on execution plans would not be complete without spending time learning to reading them. You’ll learn where to find useful information in execution plans, what the common operators are and how to decipher the sometimes cryptic messages the plans are sending to you. We&#8217;ll also debunk some myths surrounding query operators and execution plans.</p>
<p>All of this is meant to further your understanding of how queries work in order to improve the queries you’re responsible for. With this in mind, we’ll show how you can use execution plans to tune queries. All of the information presented will be taken from real world examples. We’ll build on the information through the day so that at the end, after following us through multiple examples at your own computer, you’ll have a stronger understanding of how to read, interpret and actually use execution plans in your day-to-day job.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://sqlinthewild.co.za/index.php/2011/05/10/pass-summit-abstracts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL Pass session evaluations</title>
		<link>http://sqlinthewild.co.za/index.php/2010/01/13/sql-pass-session-evaluations/</link>
		<comments>http://sqlinthewild.co.za/index.php/2010/01/13/sql-pass-session-evaluations/#comments</comments>
		<pubDate>Wed, 13 Jan 2010 14:43:20 +0000</pubDate>
		<dc:creator>Gail</dc:creator>
				<category><![CDATA[Conferences]]></category>
		<category><![CDATA[Pass 2009]]></category>
		<category><![CDATA[Syndication]]></category>

		<guid isPermaLink="false">http://sqlinthewild.co.za/index.php/2010/01/13/sql-pass-session-evaluations/</guid>
		<description><![CDATA[I finally got the last of my PASS Summit session evals and so, like some other people, I thought I’d make them public. Lies, damned lies and statistics (DBA-388-S) This session went very well. I was comfortable with the material, it’s a topic I really like and in general it felt, to me at least, [...]]]></description>
			<content:encoded><![CDATA[<p>I finally got the last of my PASS Summit session evals and so, like <a href="http://scarydba.wordpress.com/2010/01/06/pass-summit-evaluations/">some</a> <a href="http://sqlblog.com/blogs/louis_davidson/archive/2010/01/08/the-reviews-are-in-and-i-still-have-things-to-improve.aspx">other</a> <a href="http://sqlblog.com/blogs/andy_leonard/archive/2010/01/07/pass-summit-evaluations.aspx">people</a>, I thought I’d make them public.</p>
<h3>Lies, damned lies and statistics (DBA-388-S)</h3>
<p>This session went very well. I was comfortable with the material, it’s a topic I really like and in general it felt, to me at least, like a good session. The ratings seem to agree with that.</p>
<table border="1" cellspacing="0" cellpadding="2" width="495">
<tbody>
<tr>
<td width="157" valign="top"></td>
<td width="65" align="center">Very Poor</td>
<td width="65" align="center">Poor</td>
<td width="65" align="center">Average</td>
<td width="65" align="center">Good</td>
<td width="65" align="center">Excellent</td>
</tr>
<tr>
<td width="157" valign="top">How would you rate the usefulness of the session information in your day-to-day environment?</td>
<td width="65" valign="top"></td>
<td width="65" valign="top"></td>
<td width="65" align="center">1</td>
<td width="65" align="center">7</td>
<td width="65" align="center">36</td>
</tr>
<tr>
<td width="157" valign="top">How would you rate the Speaker&#8217;s presentation skills?</td>
<td width="65" valign="top"></td>
<td width="65" valign="top"></td>
<td width="65" align="center">3</td>
<td width="65" align="center">5</td>
<td width="65" align="center">36</td>
</tr>
<tr>
<td width="157" valign="top">How would you rate the Speaker&#8217;s knowledge of the subject?</td>
<td width="65" valign="top"></td>
<td width="65" valign="top"></td>
<td width="65" valign="top"></td>
<td width="65" align="center">4</td>
<td width="65" align="center">40</td>
</tr>
<tr>
<td width="157" valign="top">How would you rate the accuracy of the session title, description, and experience level to the actual session?</td>
<td width="65" valign="top"></td>
<td width="65" valign="top"></td>
<td width="65" valign="top"></td>
<td width="65" align="center">5</td>
<td width="65" align="center">39</td>
</tr>
<tr>
<td width="157" valign="top">How would you rate the amount of time allocated to cover the topic/session?</td>
<td width="65" valign="top"></td>
<td width="65" valign="top"></td>
<td width="65" valign="top"></td>
<td width="65" align="center">11</td>
<td width="65" align="center">33</td>
</tr>
<tr>
<td width="157" valign="top">How would you rate the quality of the presentation materials?</td>
<td width="65" valign="top"></td>
<td width="65" valign="top"></td>
<td width="65" align="center">1</td>
<td width="65" align="center">7</td>
<td width="65" align="center">36</td>
</tr>
</tbody>
</table>
<p>If I make Very Poor = 1 and Excellent = 5 then, averaging all the scores over all the questions, overall that session rated at 4.82/5</p>
<p>Not bad at all.</p>
<p>Edit: The overall <a href="http://www.sqlpass.org/Events/BestOfSummit.aspx">PASS Summit session ratings</a> are out and this session came in at 7th overall (all sessions including pre/post cons, all tracks) and 5th in the DBA track, behind only <a href="http://blogs.msdn.com/buckwoody/">Buck Woody</a>, <a href="http://sqlskills.com/blogs/kimberly/">Kimberly Tripp</a> and <a href="http://sqlskills.com/blogs/paul/">Paul Randal</a> I am extremely surprised to have come in that high at a conference like the PASS Summit.</p>
<h3>Insight into Indexes (DBA-315)</h3>
<p>This session was a whole different story. It did not go well at all, and I didn’t need the ratings to tell me that.</p>
<p>I wasn’t overly comfortable with the material. This is not to say that I didn’t know it, I did, but I wasn’t comfortable with it. In retrospect, I should have scrapped the entire presentation and done it over from scratch in a different way, even if that meant doing it the night before. Lesson learnt there.</p>
<p>To add to that, I broke my own rules for presentations. Usually I’m at the session room at least 5 minutes before the previous session finishes, with my laptop booted, the presentation loaded, management studio (and profiler if necessary) open and any pre-demo scripts already run. That way, as soon as the speaker who’s presenting in the session before mine finishes, I can get on stage, plug the laptop in, get the projector online and then relax.</p>
<p>In this case, I was late. The previous speaker had already left and my laptop was still switched off. Hence I rushed to get everything loaded and ready, and Windows, sensing the urgency, promptly crashed hard.</p>
<p>Cue 2 minutes of frantically trying to reboot laptop (it was ignoring all shut down requests) and load presentation onto the desktop in case my laptop didn’t reboot. All while the AV guy’s trying to get the audio on and the recording started.</p>
<p>Let’s just say it went downhill from there.</p>
<p>So, ratings for that one.</p>
<table border="1" cellspacing="0" cellpadding="2" width="495">
<tbody>
<tr>
<td width="157" valign="top"></td>
<td width="65" align="center">Very poor</td>
<td width="65" align="center">Poor</td>
<td width="65" align="center">Average</td>
<td width="65" align="center">Good</td>
<td width="65" align="center">Excellent</td>
</tr>
<tr>
<td width="157" valign="top">How would you rate the usefulness of the session information in your day-to-day environment?</td>
<td width="65" align="center">2</td>
<td width="65" align="center">1</td>
<td width="65" align="center">7</td>
<td width="65" align="center">23</td>
<td width="65" align="center">51</td>
</tr>
<tr>
<td width="157" valign="top">How would you rate the Speaker&#8217;s presentation skills?</td>
<td width="65" valign="top"></td>
<td width="65" valign="top"></td>
<td width="65" align="center">5</td>
<td width="65" align="center">29</td>
<td width="65" align="center">50</td>
</tr>
<tr>
<td width="157" valign="top">How would you rate the Speaker&#8217;s knowledge of the subject?</td>
<td width="65" valign="top"></td>
<td width="65" valign="top"></td>
<td width="65" align="center">1</td>
<td width="65" align="center">11</td>
<td width="65" align="center">72</td>
</tr>
<tr>
<td width="157" valign="top">How would you rate the accuracy of the session title, description, and experience level to the actual session?</td>
<td width="65" valign="top"></td>
<td width="65" align="center">1</td>
<td width="65" align="center">4</td>
<td width="65" align="center">31</td>
<td width="65" align="center">48</td>
</tr>
<tr>
<td width="157" valign="top">How would you rate the amount of time allocated to cover the topic/session?</td>
<td width="65" valign="top"></td>
<td width="65" valign="top"></td>
<td width="65" align="center">6</td>
<td width="65" align="center">31</td>
<td width="65" align="center">47</td>
</tr>
<tr>
<td width="157" valign="top">How would you rate the quality of the presentation materials?</td>
<td width="65" valign="top"></td>
<td width="65" valign="top"></td>
<td width="65" align="center">4</td>
<td width="65" align="center">33</td>
<td width="65" align="center">47</td>
</tr>
</tbody>
</table>
<p>If I do the same averaging as for the first one, that comes out at 4.55. Not the worst I’ve ever had, though not by much. Lessons learnt.</p>
]]></content:encoded>
			<wfw:commentRss>http://sqlinthewild.co.za/index.php/2010/01/13/sql-pass-session-evaluations/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Photos from PASS</title>
		<link>http://sqlinthewild.co.za/index.php/2009/11/14/photos-from-pass/</link>
		<comments>http://sqlinthewild.co.za/index.php/2009/11/14/photos-from-pass/#comments</comments>
		<pubDate>Sat, 14 Nov 2009 21:41:24 +0000</pubDate>
		<dc:creator>Gail</dc:creator>
				<category><![CDATA[Conferences]]></category>
		<category><![CDATA[Pass 2009]]></category>

		<guid isPermaLink="false">http://sqlinthewild.co.za/index.php/2009/11/14/photos-from-pass/</guid>
		<description><![CDATA[Finally finished sorting out my photos from PASS. All the good ones are up in my Picassa album, just highlighting the best ones. The lineup for the quiz bowl Eh, what? He actually knew that? sys.dm.db… what was it again? Blackjack at the SSC party Brad reading out Josef&#8217;s speech for the Exceptional DBA competition [...]]]></description>
			<content:encoded><![CDATA[<p>Finally finished sorting out my photos from PASS. All the good ones are up in my <a href="http://picasaweb.google.com/GilaMonster.za/PASS2009#">Picassa album</a>, just highlighting the best ones.</p>
<p><a href="http://sqlinthewild.co.za/wp-content/uploads/2009/11/Blyth.jpg"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="Blyth" src="http://sqlinthewild.co.za/wp-content/uploads/2009/11/Blyth_thumb.jpg" border="0" alt="Blyth" width="184" height="244" /></a></p>
<p><a href="http://sqlinthewild.co.za/wp-content/uploads/2009/11/Quizbowl.jpg"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="Quizbowl" src="http://sqlinthewild.co.za/wp-content/uploads/2009/11/Quizbowl_thumb.jpg" border="0" alt="Quizbowl" width="244" height="184" /></a><br />
The lineup for the quiz bowl<span id="more-479"></span></p>
<p><a href="http://sqlinthewild.co.za/wp-content/uploads/2009/11/Quizbowl31.jpg"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="Quizbowl3" src="http://sqlinthewild.co.za/wp-content/uploads/2009/11/Quizbowl3_thumb1.jpg" border="0" alt="Quizbowl3" width="244" height="184" /></a><br />
Eh, what?</p>
<p><a href="http://sqlinthewild.co.za/wp-content/uploads/2009/11/Quizbowl41.jpg"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="Quizbowl4" src="http://sqlinthewild.co.za/wp-content/uploads/2009/11/Quizbowl4_thumb1.jpg" border="0" alt="Quizbowl4" width="244" height="184" /></a><br />
He actually knew that?</p>
<p><a href="http://sqlinthewild.co.za/wp-content/uploads/2009/11/Quizbowl5.jpg"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="Quizbowl5" src="http://sqlinthewild.co.za/wp-content/uploads/2009/11/Quizbowl5_thumb.jpg" border="0" alt="Quizbowl5" width="244" height="184" /></a><br />
sys.dm.db… what was it again?</p>
<p><a href="http://sqlinthewild.co.za/wp-content/uploads/2009/11/SSCParty.jpg"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="SSCParty" src="http://sqlinthewild.co.za/wp-content/uploads/2009/11/SSCParty_thumb.jpg" border="0" alt="SSCParty" width="244" height="184" /></a><br />
Blackjack at the SSC party</p>
<p><a href="http://sqlinthewild.co.za/wp-content/uploads/2009/11/BradSpeech.jpg"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="BradSpeech" src="http://sqlinthewild.co.za/wp-content/uploads/2009/11/BradSpeech_thumb.jpg" border="0" alt="BradSpeech" width="184" height="244" /></a><br />
Brad reading out Josef&#8217;s speech for the Exceptional DBA competition</p>
<p><a href="http://sqlinthewild.co.za/wp-content/uploads/2009/11/ItDepends.jpg"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="ItDepends" src="http://sqlinthewild.co.za/wp-content/uploads/2009/11/ItDepends_thumb.jpg" border="0" alt="ItDepends" width="184" height="244" /></a><br />
Do we know this crazy person?</p>
<p><a href="http://sqlinthewild.co.za/wp-content/uploads/2009/11/SQLQuilt.jpg"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="SQLQuilt" src="http://sqlinthewild.co.za/wp-content/uploads/2009/11/SQLQuilt_thumb.jpg" border="0" alt="SQLQuilt" width="184" height="244" /></a><br />
A quilt of SQL T-shirts. And people call me a geek…</p>
<p><a href="http://sqlinthewild.co.za/wp-content/uploads/2009/11/BookScore.jpg"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="BookScore" src="http://sqlinthewild.co.za/wp-content/uploads/2009/11/BookScore_thumb.jpg" border="0" alt="BookScore" width="244" height="184" /></a><br />
The books I came home with. Somehow I was within weight limits for the flights.</p>
]]></content:encoded>
			<wfw:commentRss>http://sqlinthewild.co.za/index.php/2009/11/14/photos-from-pass/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>PASS Day 3 and post-con</title>
		<link>http://sqlinthewild.co.za/index.php/2009/11/08/pass-day-3-and-post-con/</link>
		<comments>http://sqlinthewild.co.za/index.php/2009/11/08/pass-day-3-and-post-con/#comments</comments>
		<pubDate>Sun, 08 Nov 2009 05:19:03 +0000</pubDate>
		<dc:creator>Gail</dc:creator>
				<category><![CDATA[Conferences]]></category>
		<category><![CDATA[Pass 2009]]></category>

		<guid isPermaLink="false">http://sqlinthewild.co.za/index.php/2009/11/08/pass-day-3-and-post-con/</guid>
		<description><![CDATA[Once the pre-con was done I dropped into the SQLCAT sessions on consolidation and virtualisation. Late, because I was cleaning up at the blogger&#8217;s table (Adam wasn&#8217;t there that day). Interesting session, the best-practices were worth noting down and their graphs on performance were encouraging. After lunch I was intending to go to Allen&#8217;s clustering [...]]]></description>
			<content:encoded><![CDATA[<p>Once the pre-con was done I dropped into the SQLCAT sessions on consolidation and virtualisation. Late, because I was cleaning up at the blogger&#8217;s table (Adam wasn&#8217;t there that day). Interesting session, the best-practices were worth noting down and their graphs on performance were encouraging.</p>
<p>After lunch I was intending to go to Allen&#8217;s clustering session, but it was over my head, so I switched to Buck&#8217;s SQL manageability presentation</p>
<p>Buck Woody&#8217;s session is a laugh-riot. Anyone he knows within view gets picked on. and various groups are getting insulted. Insulted in that session</p>
<ul>
<li>Me</li>
<li>British people</li>
<li>South Africans</li>
<li>Developers</li>
<li>U2 fans</li>
<li>Baptists</li>
<li>Microsoft</li>
<li>Elderly people</li>
</ul>
<p>All in good humour, no serious insult intended.</p>
<p>I missed the next session, chatted with Brent Ozar. Last of the day was my session on statistics. Audience was a little tired, but the session went quite well. I asked about table sizes and someone claimed a 100 billion row table. I really do want to know what kind of data they&#8217;re storing that generates a table that size.</p>
<p>The post-con day was quiet, in comparison with the days before. I split time between a post-con on semi-structured and unstructured data and some insider sessions. Some cool stuff under discussion in the insider sessions and lots of good debate. The post-con was useful, the part on full-text the most. It&#8217;s not something I&#8217;ve played much with in the past.</p>
<p>That&#8217;s PASS over and done for another year. Same time, same place, next year.</p>
]]></content:encoded>
			<wfw:commentRss>http://sqlinthewild.co.za/index.php/2009/11/08/pass-day-3-and-post-con/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>PASS Keynote &#8211; Day 3</title>
		<link>http://sqlinthewild.co.za/index.php/2009/11/05/pass-keynote-day-3/</link>
		<comments>http://sqlinthewild.co.za/index.php/2009/11/05/pass-keynote-day-3/#comments</comments>
		<pubDate>Thu, 05 Nov 2009 18:33:24 +0000</pubDate>
		<dc:creator>Gail</dc:creator>
				<category><![CDATA[Conferences]]></category>
		<category><![CDATA[Pass 2009]]></category>

		<guid isPermaLink="false">http://sqlinthewild.co.za/index.php/2009/11/05/pass-keynote-day-3/</guid>
		<description><![CDATA[Keynote opened with announcements regarding the PASS board. There was a very emotional speech from Wayne Snyder as the board said goodbye to Kevin Kline, as he steps down from the PASS board after 10 years. I first met Kevin when I attended the European conference in 2005 (in Munich). I didn&#8217;t know anyone and [...]]]></description>
			<content:encoded><![CDATA[<p>Keynote opened with announcements regarding the PASS board. There was a very emotional speech from Wayne Snyder as the board said goodbye to Kevin Kline, as he steps down from the PASS board after 10 years.</p>
<p>I first met Kevin when I attended the European conference in 2005 (in Munich). I didn&#8217;t know anyone and I didn&#8217;t know very much. Kevin was at the opening party and he was talking to everyone there, making sure that they felt welcome and that they were engaged in the conversation. There was no feeling that he was faking interest, he was genuinely interested in what people were doing with SQL.</p>
<p>The changes to the board are, as well as the new board members, Wayne Snyder becomes &quot;Immediate past president&quot; and Rushabh Metah takes the role of President. </p>
<p>After the board announcement we get the keynote &#8216;tax&#8217;, long, boring discussion by a Del person. Configuration management, consolidation. Some waffle about disaster recovery, but without any meat. Or maybe consolidation. Haven&#8217;t quite worked it out. If this was a session, he&#8217;d be talking to an empty room.</p>
<p>David DeWitt&#8217;s presentation is looking at the historical and future trends of database platform changes. The improvement in CPU power way outstrips the improvement in disk speed. Hopefully SSDs will fix that.</p>
<p>The disk trends that he&#8217;s discussing are scary. Relatively speaking (considering the size of the disks today), drives are much slower than they were 20 or so years ago. Sequential reads are faster than random by a greater factor than some years back. Random reads hurt.</p>
<p>CPUs are faster, waay faster than they were years ago. Accessing memory takes more cycles than historically, like 30x more.</p>
<p>The way databases are currently designed, they incur lots of L1 and L2 cache misses. L2 cache miss can stall the CPU entirely for 200 cycles. This is why it&#8217;s so hard to max out modern processors. They spend so much of their time waiting. What makes it worse is that the cache lines are only 64 bytes wide. If a row is more than 64 bytes wide, moving a row from one cache to another will require more than one cycle and potentially more than one cache-miss. Changing database architecture to a column-store may alleviate this.</p>
<p>Compression is a CPU/disk tradeoff and that&#8217;s fine. CPUs are 1000x faster now and disk only 65x faster. Hence use some of those CPU cycles to help the poor disks along.</p>
<p>Some very interesting discussions on compression with column-stores. Store the data multiple times in different orders. David: &quot;After all, we need to do something with those terabyte drives&quot;</p>
<p>Run-length encoding works so well with a column store, especially if the columns are stored &#8216;in order&#8217;. Dictionary compression is good if the columns are not in order.</p>
<p>Hybrid model is also an option. Some of the benefits of the two, some downsides of the two. Lot of academic papers on those options. Search <a href="http://scholar.google.com/">Google Scholar</a> if interested</p>
<p>Some photos from David&#8217;s presentation</p>
<p><a href="http://sqlinthewild.co.za/wp-content/uploads/2009/11/DiskTrends.jpg"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="DiskTrends" border="0" alt="DiskTrends" src="http://sqlinthewild.co.za/wp-content/uploads/2009/11/DiskTrends_thumb.jpg" width="244" height="184" /></a> </p>
<p><a href="http://sqlinthewild.co.za/wp-content/uploads/2009/11/DiskChanges.jpg"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="DiskChanges" border="0" alt="DiskChanges" src="http://sqlinthewild.co.za/wp-content/uploads/2009/11/DiskChanges_thumb.jpg" width="244" height="184" /></a> </p>
<p><a href="http://sqlinthewild.co.za/wp-content/uploads/2009/11/CPUArchitecture.jpg"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="CPUArchitecture" border="0" alt="CPUArchitecture" src="http://sqlinthewild.co.za/wp-content/uploads/2009/11/CPUArchitecture_thumb.jpg" width="244" height="184" /></a>&#160; </p>
<p><a href="http://sqlinthewild.co.za/wp-content/uploads/2009/11/DSCF0231.jpg"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="DSCF0231" border="0" alt="DSCF0231" src="http://sqlinthewild.co.za/wp-content/uploads/2009/11/DSCF0231_thumb.jpg" width="244" height="184" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://sqlinthewild.co.za/index.php/2009/11/05/pass-keynote-day-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PASS Main conference – Day 2</title>
		<link>http://sqlinthewild.co.za/index.php/2009/11/05/pass-main-conference-%e2%80%93-day-2/</link>
		<comments>http://sqlinthewild.co.za/index.php/2009/11/05/pass-main-conference-%e2%80%93-day-2/#comments</comments>
		<pubDate>Thu, 05 Nov 2009 06:24:13 +0000</pubDate>
		<dc:creator>Gail</dc:creator>
				<category><![CDATA[Conferences]]></category>
		<category><![CDATA[Pass 2009]]></category>

		<guid isPermaLink="false">http://sqlinthewild.co.za/?p=446</guid>
		<description><![CDATA[Too tired to post much right now. I skipped the keynote this morning, the BI just doesn&#8217;t interest me that much. Also missed the morning session to hit the vendor hall, since I couldn&#8217;t last night. The MVP book signing occurred around midday. Must have been around 200 books to sign. Funniest part was the [...]]]></description>
			<content:encoded><![CDATA[<p>Too tired to post much right now.</p>
<p>I skipped the keynote this morning, the BI just doesn&#8217;t interest me that much. Also missed the morning session to hit the vendor hall, since I couldn&#8217;t last night.</p>
<p>The MVP book signing occurred around midday. Must have been around 200 books to sign. Funniest part was the comments from the other authors, putting a sql-related spin on the long queue and pile of books. Overheard &#8220;Looks like the input buffer&#8217;s filling up down there&#8221;</p>
<p>Also skipped the first of the afternoon sessions to sit in the &#8220;Ask the Experts&#8221; area and chat with a couple of the devs on topics around statistics. There was something I needed to clarify before my session tomorrow. Unfortunately the dev who worked on that are wasn&#8217;t there. Hopefully there&#8217;ll be some mail around lunchtime tomorrow with the answer.</p>
<p>My session on indexing went ok. Not fantastic, but ok. Will see if stats goes better tomorrow.</p>
<p>For the last session I sat in on a discussion on xquery. Starting to understand how that works, need to play more though. Don&#8217;t really agree on the &#8216;use xml for tables with changing column definitions&#8217; though.</p>
<p>Photos tomorrow.</p>
]]></content:encoded>
			<wfw:commentRss>http://sqlinthewild.co.za/index.php/2009/11/05/pass-main-conference-%e2%80%93-day-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PASS Main conference &#8211; Day 1</title>
		<link>http://sqlinthewild.co.za/index.php/2009/11/04/pass-main-conference-day-1/</link>
		<comments>http://sqlinthewild.co.za/index.php/2009/11/04/pass-main-conference-day-1/#comments</comments>
		<pubDate>Wed, 04 Nov 2009 07:43:12 +0000</pubDate>
		<dc:creator>Gail</dc:creator>
				<category><![CDATA[Conferences]]></category>
		<category><![CDATA[Pass 2009]]></category>

		<guid isPermaLink="false">http://sqlinthewild.co.za/?p=444</guid>
		<description><![CDATA[So, today was the first day of the main conference and suddenly there&#8217;s 4x the number of people around. One thing I do have to say straight off, congrats to the conference centre for actually having the wireless network working on the 1st day of the conference. Has to be the first time this has [...]]]></description>
			<content:encoded><![CDATA[<p>So, today was the first day of the main conference and suddenly there&#8217;s 4x the number of people around.</p>
<p>One thing I do have to say straight off, congrats to the conference centre for actually having the wireless network working on the 1st day of the conference. Has to be the first time this has happened in the years I&#8217;ve been attending.</p>
<p>The keynote wasn&#8217;t as interesting as it could be. No real surprise, there&#8217;s no product announcements, no astounding features to demo (other than stuff that&#8217;s been seen before), no launch to be done. It was a discussion of where we&#8217;ve come from and where we&#8217;re going (including into the cloud) and then some demos of R2.</p>
<p>Bob&#8217;s level 500 session was a good way to start the conference. Maybe not as deep as the memory internals last year, but good, solid info. Useful stuff there.</p>
<p>The &#8220;Birds of a feather&#8221; lunch seemed to go down well. I chatted about execution plans for over an hour. Didn&#8217;t really get too deep into exec plans, other than discussing the difference between estimated and actual plans (none other than the run-time information) how statistics affect plans (I&#8217;m doing a full hour-long session on that on Thursday). Anyone interested in reading exec plans, see my blog series here or Grant&#8217;s e-book (available from SQLServerCentral)</p>
<p>After lunch there was a session on PowerPivot (formerly known as Gemini) and on scaling SQL beyond 64 processors. Interesting to see what kind of changes were needed to the SQLOS to handle that.</p>
<p>How&#8217;s these for servers?</p>
<p><a href="http://sqlinthewild.co.za/wp-content/uploads/2009/11/ScalabilityProof.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="ScalabilityProof" src="http://sqlinthewild.co.za/wp-content/uploads/2009/11/ScalabilityProof_thumb.jpg" border="0" alt="ScalabilityProof" width="244" height="184" /></a></p>
<p><a href="http://sqlinthewild.co.za/wp-content/uploads/2009/11/BigServer.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Big Server" src="http://sqlinthewild.co.za/wp-content/uploads/2009/11/BigServer_thumb.jpg" border="0" alt="Big Server" width="244" height="184" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://sqlinthewild.co.za/index.php/2009/11/04/pass-main-conference-day-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PASS 2009 &#8211; Pre-con</title>
		<link>http://sqlinthewild.co.za/index.php/2009/11/03/pass-2009-pre-con/</link>
		<comments>http://sqlinthewild.co.za/index.php/2009/11/03/pass-2009-pre-con/#comments</comments>
		<pubDate>Tue, 03 Nov 2009 07:16:57 +0000</pubDate>
		<dc:creator>Gail</dc:creator>
				<category><![CDATA[Conferences]]></category>
		<category><![CDATA[Pass 2009]]></category>

		<guid isPermaLink="false">http://sqlinthewild.co.za/?p=435</guid>
		<description><![CDATA[PASS 2009 is underway! It’s getting to the point that these conferences feel like a family reunion (where the family members are people that you like). Last night, coming to registration there was a whole crowd of people that I know from previous conferences, newsgroups, blogs and forums. I’m not going to name everyone I [...]]]></description>
			<content:encoded><![CDATA[<p>PASS 2009 is underway!</p>
<p>It’s getting to the point that these conferences feel like a family reunion (where the family members are people that you like). Last night, coming to registration there was a whole crowd of people that I know from previous conferences, newsgroups, blogs and forums. I’m not going to name everyone I ran into last night, simply because I’ll forget someone.</p>
<p>There were a lot of insider sessions today, but the only one that I attended was the introduction. Most of the topics were ones I wasn’t overly interested in. Rather spent the day at  Adam’s CLR pre-con. CLR is an area that I’ve barely looked at and have little experience with, so it was a good choice.</p>
<p>Some very interesting info on CLR table valued functions. Apparently there’s no temp table/table variable involved. The CLR function streams the values back one row at a time. Might well remove the impact that the multi-statement table valued function has. Needs testing.</p>
<p>Late morning was spent at a Chapter Leaders meeting. Some of the resources available I didn’t know about. Things to look at when I get home. Also need, next month, to write up a report for the regional mentors on the meetings that we’ve had and what the attendance numbers look like. Something else to add to the to-do list.</p>
<p>Jack Corbett was at the meeting. One more person that I’ve chatted with online located. Ran into Steve and Bob right after lunch. Good to see Steve again. Will run into Bob later today and chat.</p>
<p>Some of the comments on CLR and Attention events was interesting. Basically, the CLR doesn’t receive attention events, so a timeout or a SSMS stop can result in orphaned CLR objects that will hang around for a while until the garbage collector comes across the object and collects it.</p>
<p>Very interesting sample code for collecting system performance counters using a CLR proc (unsafe CLR proc because it uses dlls that aren’t on the safe list.)</p>
<p>CLR Triggers. Just say no. Well, if it’s a ddl trigger with xml manipulation of the EventDate() maybe. Possibly. Perhaps.</p>
<p>Or maybe not. SQL DDL trigger with a CLR function to do the xml manipulation.</p>
<p>Some very interesting discussion of Code Access Security, Host Protection Attributes, Trustworthy and signed assemblies. It’s possible to have safe assemblies calling unsafe (external access) assemblies with the minimum amount of code marked unsafe (external access), have the database untrustworthy and still have everything working. Lots and lots of work though.</p>
<p>Day ended with the opening party (and the quiz bowl) followed by the SSC party. Good fun all.</p>
<p>Some photos from the day</p>
<p><a href="http://sqlinthewild.co.za/wp-content/uploads/2009/11/Blythecookies.jpg"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="Blythe cookies" src="http://sqlinthewild.co.za/wp-content/uploads/2009/11/Blythecookies_thumb.jpg" border="0" alt="Blythe cookies" width="184" height="244" /></a></p>
<p><a href="http://sqlinthewild.co.za/wp-content/uploads/2009/11/WeirdPerson.jpg"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="WeirdPerson" src="http://sqlinthewild.co.za/wp-content/uploads/2009/11/WeirdPerson_thumb.jpg" border="0" alt="WeirdPerson" width="244" height="184" /></a></p>
<p><a href="http://sqlinthewild.co.za/wp-content/uploads/2009/11/Quizbowl1.jpg"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="Quizbowl 1" src="http://sqlinthewild.co.za/wp-content/uploads/2009/11/Quizbowl1_thumb.jpg" border="0" alt="Quizbowl 1" width="244" height="184" /></a></p>
<p><a href="http://sqlinthewild.co.za/wp-content/uploads/2009/11/QuizBowl2.jpg"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="QuizBowl 2" src="http://sqlinthewild.co.za/wp-content/uploads/2009/11/QuizBowl2_thumb.jpg" border="0" alt="QuizBowl 2" width="244" height="184" /></a></p>
<p><a href="http://sqlinthewild.co.za/wp-content/uploads/2009/11/Quizbowl3.jpg"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="Quizbowl 3" src="http://sqlinthewild.co.za/wp-content/uploads/2009/11/Quizbowl3_thumb.jpg" border="0" alt="Quizbowl 3" width="244" height="184" /></a></p>
<p><a href="http://sqlinthewild.co.za/wp-content/uploads/2009/11/QuizBowl4.jpg"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="QuizBowl 4" src="http://sqlinthewild.co.za/wp-content/uploads/2009/11/QuizBowl4_thumb.jpg" border="0" alt="QuizBowl 4" width="244" height="184" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://sqlinthewild.co.za/index.php/2009/11/03/pass-2009-pre-con/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

