<?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>Send Me Your Stuff</title>
	<atom:link href="http://sendmeyourstuff.com/wp/feed/" rel="self" type="application/rss+xml" />
	<link>http://sendmeyourstuff.com/wp</link>
	<description>So many interests, so little time...</description>
	<lastBuildDate>Thu, 03 Jun 2010 16:08:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>SQL 2008: Querying query plans</title>
		<link>http://sendmeyourstuff.com/wp/2010/06/sql-2008-querying-query-plans/</link>
		<comments>http://sendmeyourstuff.com/wp/2010/06/sql-2008-querying-query-plans/#comments</comments>
		<pubDate>Thu, 03 Jun 2010 16:08:21 +0000</pubDate>
		<dc:creator>kdevine</dc:creator>
				<category><![CDATA[MS SQL Server]]></category>

		<guid isPermaLink="false">http://sendmeyourstuff.com/wp/?p=281</guid>
		<description><![CDATA[Say that 5 times fast&#8230; Sometimes, you have checked all the tables and views and you cannot find the information you are looking for. You know someone ran a command that messed things up, you don&#8217;t want to place blame, you just want to know WHEN it happened. Your last resort is searching the cached [...]]]></description>
			<content:encoded><![CDATA[<p>Say that 5 times fast&#8230;<br />
Sometimes, you have checked all the tables and views and you cannot find the information you are looking for.  You know someone ran a command that messed things up, you don&#8217;t want to place blame, you just want to know WHEN it happened.  Your last resort is searching the cached query plans.  You are hoping this was an ad-hoc plan.  Here is a quick way to find a value in the query plans:</p>
<pre>SELECT top 10 *,
p.query_plan.value('
 declare namespace SHPL="http://schemas.microsoft.com/sqlserver/2004/07/showplan";
   (/SHPL:ShowPlanXML/SHPL:BatchSequence/SHPL:Batch/SHPL:Statements/SHPL:StmtSimple/@StatementText)[1]
','varchar(max)') as StatementText
FROM sys.dm_exec_query_stats s
   CROSS APPLY sys.dm_exec_query_plan(s.plan_handle) AS p
WHERE
p.query_plan.value('
 declare namespace SHPL="http://schemas.microsoft.com/sqlserver/2004/07/showplan";
   (/SHPL:ShowPlanXML/SHPL:BatchSequence/SHPL:Batch/SHPL:Statements/SHPL:StmtSimple/@StatementText)[1]
','varchar(max)')
like '%CREATE TABLE%'
ORDER BY s.creation_time DESC</pre>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://sendmeyourstuff.com/wp/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://sendmeyourstuff.com/wp/2010/06/sql-2008-querying-query-plans/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Facebook game: Cavern Hunter</title>
		<link>http://sendmeyourstuff.com/wp/2010/05/facebook-game-cavern-hunter/</link>
		<comments>http://sendmeyourstuff.com/wp/2010/05/facebook-game-cavern-hunter/#comments</comments>
		<pubDate>Fri, 14 May 2010 16:01:30 +0000</pubDate>
		<dc:creator>kdevine</dc:creator>
				<category><![CDATA[Facebook Development]]></category>
		<category><![CDATA[facebook]]></category>

		<guid isPermaLink="false">http://sendmeyourstuff.com/wp/2010/05/facebook-game-cavern-hunter/</guid>
		<description><![CDATA[I am working on my Facebook game, I am currently working with the title &#8220;Cavern Hunter&#8221;, but this might change to &#8220;Dungeon Designer&#8221; or something like that. It is roughly modeled on the mechanics of another Facebook game called Exile Gods. I plan to use the same card game crafting type system but it will [...]]]></description>
			<content:encoded><![CDATA[<p>I am working on my Facebook game, I am currently working with the title &#8220;Cavern Hunter&#8221;, but this might change to &#8220;Dungeon Designer&#8221; or something like that.  It is roughly modeled on the mechanics of another Facebook game called Exile Gods.  I plan to use the same card game crafting type system but it will be different enough that I while similarities can be discussed, it will have totally different gameplay.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://sendmeyourstuff.com/wp/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://sendmeyourstuff.com/wp/2010/05/facebook-game-cavern-hunter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL: Validate your Stored Procedures</title>
		<link>http://sendmeyourstuff.com/wp/2010/03/sql-validate-your-stored-procedures/</link>
		<comments>http://sendmeyourstuff.com/wp/2010/03/sql-validate-your-stored-procedures/#comments</comments>
		<pubDate>Mon, 15 Mar 2010 14:01:17 +0000</pubDate>
		<dc:creator>kdevine</dc:creator>
				<category><![CDATA[MS SQL Server]]></category>

		<guid isPermaLink="false">http://sendmeyourstuff.com/wp/?p=273</guid>
		<description><![CDATA[Do you have a server that has been a repository for stored procedures for more than 10 years&#8230;  Do you even know if all the procs are used, let alone whether they still work after databases have moved, changed names/schemas, had columns refactored and renamed?  Here is a handy little program for you.  I called [...]]]></description>
			<content:encoded><![CDATA[<p>Do you have a server that has been a repository for stored procedures for more than 10 years&#8230;  Do you even know if all the procs are used, let alone whether they still work after databases have moved, changed names/schemas, had columns refactored and renamed?  Here is a handy little program for you.  I called it DbValidator and essentially what it does is run through all of the stored procedures and views of a database and spit out errors on those that do not compile.  It makes use of the T-SQL feature: &#8220;SET NOEXEC ON&#8221; to re-compile each proc and view and give you the results.  I made this into a console application that is run like this:</p>
<p>dbvalidator.exe @Server @Database &gt; @Output File as Text</p>
<p>Give it try and leave me comments, thanks.</p>
<p>Download <a href="http://sendmeyourstuff.com/wp/wp-content/uploads/2010/03/DbValidator.zip">DbValidator</a>.zip</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://sendmeyourstuff.com/wp/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://sendmeyourstuff.com/wp/2010/03/sql-validate-your-stored-procedures/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Photo Gallery: Kids at Christmas</title>
		<link>http://sendmeyourstuff.com/wp/2010/03/photo-gallery-kids-at-christmas/</link>
		<comments>http://sendmeyourstuff.com/wp/2010/03/photo-gallery-kids-at-christmas/#comments</comments>
		<pubDate>Sat, 06 Mar 2010 15:55:54 +0000</pubDate>
		<dc:creator>kdevine</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://sendmeyourstuff.com/wp/?p=270</guid>
		<description><![CDATA[Kids at Christmas &#160;]]></description>
			<content:encoded><![CDATA[<div class="kb-inlinePicasa"><h3><a href="http://picasaweb.google.com/kdevine7800/KidsAtChristmas">Kids at Christmas</a></h3>
				<div class="kb-inlinePicasa-wrap alt" style="width:410px">
					<div class="wp-caption">
						<img src="http://lh4.ggpht.com/-JhMjWS-S3uE/S5J63D2RnxI/AAAAAAAAFnw/hMixI9g13nY/s400/100_1539.JPG" alt="" height="300" width="400" />
						<p class="kb-inlinePicasa-caption wp-caption-text">&nbsp;</p>
					</div>
				</div>
			</div><div class="kb-inlinePicasa-end"></div>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://sendmeyourstuff.com/wp/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://sendmeyourstuff.com/wp/2010/03/photo-gallery-kids-at-christmas/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Photo Gallery: Arthur at Halloween</title>
		<link>http://sendmeyourstuff.com/wp/2010/03/photo-gallery-arthur-at-halloween/</link>
		<comments>http://sendmeyourstuff.com/wp/2010/03/photo-gallery-arthur-at-halloween/#comments</comments>
		<pubDate>Sat, 06 Mar 2010 15:52:40 +0000</pubDate>
		<dc:creator>kdevine</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://sendmeyourstuff.com/wp/?p=266</guid>
		<description><![CDATA[I am testing a Picasa plug-in: Arthur at Halloween &#160;]]></description>
			<content:encoded><![CDATA[<p>I am testing a Picasa plug-in:</p>
<div class="kb-inlinePicasa"><h3><a href="http://picasaweb.google.com/kdevine7800/Public">Arthur at Halloween</a></h3>
				<div class="kb-inlinePicasa-wrap alt" style="width:410px">
					<div class="wp-caption">
						<img src="http://lh4.ggpht.com/-XvUUta-DBi4/S5J4RpdPkHI/AAAAAAAAFnU/l4AMQC6yWEc/s400/100_0796.jpg" alt="" height="300" width="400" />
						<p class="kb-inlinePicasa-caption wp-caption-text">&nbsp;</p>
					</div>
				</div>
			</div><div class="kb-inlinePicasa-end"></div>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://sendmeyourstuff.com/wp/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://sendmeyourstuff.com/wp/2010/03/photo-gallery-arthur-at-halloween/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Project: Basement Step One</title>
		<link>http://sendmeyourstuff.com/wp/2010/03/project-basement-step-one/</link>
		<comments>http://sendmeyourstuff.com/wp/2010/03/project-basement-step-one/#comments</comments>
		<pubDate>Wed, 03 Mar 2010 22:11:36 +0000</pubDate>
		<dc:creator>kdevine</dc:creator>
				<category><![CDATA[Lifehacking]]></category>

		<guid isPermaLink="false">http://sendmeyourstuff.com/wp/?p=263</guid>
		<description><![CDATA[Step One was organizing what room is what.  Here is a crude (sorry it isn&#8217;t to scale) diagram of my basement.  I have labeled each room.  One thing I have also decided is to put all tools in the garage and not have any tools inside the house.  This frees up the work room for [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://sendmeyourstuff.com/wp/wp-content/uploads/2010/03/Basement_Layout.png"><img class="aligncenter size-full wp-image-264" title="Basement_Layout" src="http://sendmeyourstuff.com/wp/wp-content/uploads/2010/03/Basement_Layout.png" alt="" width="614" height="460" /></a>Step One was organizing what room is what.  Here is a crude (sorry it isn&#8217;t to scale) diagram of my basement.  I have labeled each room.  One thing I have also decided is to put all tools in the garage and not have any tools inside the house.  This frees up the work room for other things.</p>
<p>One of them currently being storage for over thirty boxes of comic books I am trying to sell.  If you are interested, <a title="Kevin's Comics for Sale" href="http://www.atomicavenue.com/atomic/SellerIssues.aspx?name=kdevine" target="_blank">look on Atomic Avenue</a>.</p>
<p>Another is to set up a workstation for designing chainmaille jewelry, a small hobby that I picked up that I want to pursue.  Again, you can see some of this over at <a title="Chainmaille Jewelry at Quinn's Emporium" href="http://quinnsemporium.com/index.php?main_page=index&amp;cPath=16" target="_blank">Quinn&#8217;s Emporium</a>.  This workstation might also double as a painting station for miniature painting.  The room has a single small window for ventilation, so I should be okay for that.</p>
<p>The pantry room is probably the most problematic to figure out.  It has shelving on two walls that make it work as a pantry, but a lot of open space (once the comic books are removed), so I am not sure what to do about this open space, perhaps some cheap shelving units?</p>
<p>Anyways, next post I will have pictures of each room to show the mess and what I am currently trying to tackle&#8230;</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://sendmeyourstuff.com/wp/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://sendmeyourstuff.com/wp/2010/03/project-basement-step-one/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Status of New Year&#8217;s Resolutions 3/1/2010</title>
		<link>http://sendmeyourstuff.com/wp/2010/03/status-of-new-years-resolutions-312010/</link>
		<comments>http://sendmeyourstuff.com/wp/2010/03/status-of-new-years-resolutions-312010/#comments</comments>
		<pubDate>Mon, 01 Mar 2010 21:39:42 +0000</pubDate>
		<dc:creator>kdevine</dc:creator>
				<category><![CDATA[Lifehacking]]></category>

		<guid isPermaLink="false">http://sendmeyourstuff.com/wp/?p=261</guid>
		<description><![CDATA[Blog daily &#8211; Not really doing well here, missed all of February&#8230; While blogging, try to ignore that someone else may have already done an article about this topic &#8211; Still having trouble with this one.  I need to just post cool stuff that I did&#8230; Make a calendar of daily, weekly, monthly and yearly [...]]]></description>
			<content:encoded><![CDATA[<ol>
<li><span style="text-decoration: underline;">Blog daily</span> &#8211; Not really doing well here, missed all of February&#8230;</li>
<li><span style="text-decoration: underline;">While blogging, try to ignore that someone else may have already done an article about this topic</span> &#8211; Still having trouble with this one.  I need to just post cool stuff that I did&#8230;</li>
<li><span style="text-decoration: underline;">Make a calendar of daily, weekly, monthly and yearly chores and try to stick to it</span>.  I half made this list, but it is being worked on.</li>
<li><span style="text-decoration: underline;">Play at least two new boardgames a month</span>.  Didn&#8217;t get this done in January or February, here&#8217;s hoping for March!</li>
<li><span style="text-decoration: underline;">Post at least one SQL article a week about something I have worked on or think is cool</span>.  Once a week, not so much, but I do have some articles in planning stages&#8230;</li>
<li><span style="text-decoration: underline;">Read a book a week and a book a day to the kids</span>.  Reading to the kids is going ok, more like a book a week to the kids and a book a month for me (I read the Percy Jackson books&#8230;)</li>
<li><span style="text-decoration: underline;">Develop two boardgames this year</span>.  This one is going okay.  I have two prototypes and about six designs on paper.  This one may actually happen!</li>
<li><span style="text-decoration: underline;">Develop a Facebook app even if it is only for my enjoyment</span>.  This might be a mid-season drop from my resolutions, but I am hoping to collaborate with my brother-in-law on this one&#8230;</li>
</ol>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://sendmeyourstuff.com/wp/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://sendmeyourstuff.com/wp/2010/03/status-of-new-years-resolutions-312010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Project: Basement</title>
		<link>http://sendmeyourstuff.com/wp/2010/03/project-basement/</link>
		<comments>http://sendmeyourstuff.com/wp/2010/03/project-basement/#comments</comments>
		<pubDate>Mon, 01 Mar 2010 14:55:33 +0000</pubDate>
		<dc:creator>kdevine</dc:creator>
				<category><![CDATA[Lifehacking]]></category>

		<guid isPermaLink="false">http://sendmeyourstuff.com/wp/?p=258</guid>
		<description><![CDATA[Inspired by this Unclutter post, I thought I would start a Project: Basement of my own. I am giving myself to the end of the month to achieve the same goal that Erin is giving a week. My first tasks mirror those in the article: List of what is in each room (my basement consists [...]]]></description>
			<content:encoded><![CDATA[<p>Inspired by <a title="Project Basement" href="http://unclutterer.com/2010/03/01/project-basement/" target="_blank">this Unclutter post</a>, I thought I would start a Project: Basement of my own.  I am giving myself to the end of the month to achieve the same goal that Erin is giving a week.  My first tasks mirror those in the article:</p>
<ol>
<li>List of what is in each room (my basement consists of five distinct rooms + garage)</li>
<li>Goal for each room (what do I want each room&#8217;s function to be at the end)</li>
<li>Assemble boxes for donation/sale/consignment</li>
<li>Make a list of simple chores to get the ball rolling.</li>
</ol>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://sendmeyourstuff.com/wp/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://sendmeyourstuff.com/wp/2010/03/project-basement/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL: When doing maintenance disable all jobs&#8230;</title>
		<link>http://sendmeyourstuff.com/wp/2010/01/sql-when-doing-maintenance-disable-all-jobs/</link>
		<comments>http://sendmeyourstuff.com/wp/2010/01/sql-when-doing-maintenance-disable-all-jobs/#comments</comments>
		<pubDate>Fri, 08 Jan 2010 22:00:56 +0000</pubDate>
		<dc:creator>kdevine</dc:creator>
				<category><![CDATA[MS SQL Server]]></category>

		<guid isPermaLink="false">http://sendmeyourstuff.com/wp/?p=255</guid>
		<description><![CDATA[One of the things we have found when doing maintenance is to make sure no jobs kick off in the middle of our manual maintenance tasks. SELECT * INTO msdb.dbo.sysjobs_temp FROM msdb.dbo.sysjobs UPDATE msdb.dbo.sysjobs SET enabled = 0 Then, when you are finished: update sj set sj.enabled = sjt.enabled from msdb.dbo.sysjobs sj join msdb.dbo.sysjobs_temp sjt [...]]]></description>
			<content:encoded><![CDATA[<p>One of the things we have found when doing maintenance is to make sure no jobs kick off in the middle of our manual maintenance tasks.<br />
<code></p>
<p>	SELECT * INTO msdb.dbo.sysjobs_temp FROM msdb.dbo.sysjobs<br />
	UPDATE msdb.dbo.sysjobs SET enabled = 0<br />
</code><br />
Then, when you are finished:<br />
<code><br />
update sj<br />
set sj.enabled = sjt.enabled<br />
from msdb.dbo.sysjobs sj join msdb.dbo.sysjobs_temp sjt<br />
  on sj.job_id = sjt.job_id<br />
</code></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://sendmeyourstuff.com/wp/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://sendmeyourstuff.com/wp/2010/01/sql-when-doing-maintenance-disable-all-jobs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL: Quick SQL 2008 upgrade tip</title>
		<link>http://sendmeyourstuff.com/wp/2010/01/sql-quick-sql-2008-upgrade-tip/</link>
		<comments>http://sendmeyourstuff.com/wp/2010/01/sql-quick-sql-2008-upgrade-tip/#comments</comments>
		<pubDate>Fri, 08 Jan 2010 21:58:42 +0000</pubDate>
		<dc:creator>kdevine</dc:creator>
				<category><![CDATA[MS SQL Server]]></category>
		<category><![CDATA[sql]]></category>
		<category><![CDATA[SQL 2008]]></category>
		<category><![CDATA[Upgrade]]></category>

		<guid isPermaLink="false">http://sendmeyourstuff.com/wp/?p=253</guid>
		<description><![CDATA[If you are re-attaching databases after a SQL 2008 upgrade, here is a quick n dirty T-SQL command to upgrade to the the correct compatibility level, just run, copy the results and run those: select 'ALTER DATABASE [' + [name] + '] SET COMPATIBILITY_LEVEL = 100' from master.dbo.sysdatabases]]></description>
			<content:encoded><![CDATA[<p>If you are re-attaching databases after a SQL 2008 upgrade, here is a quick n dirty T-SQL command to upgrade to the the correct compatibility level, just run, copy the results and run those:</p>
<p><code><br />
select 'ALTER DATABASE [' + [name] + '] SET COMPATIBILITY_LEVEL = 100'<br />
from master.dbo.sysdatabases<br />
</code></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://sendmeyourstuff.com/wp/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://sendmeyourstuff.com/wp/2010/01/sql-quick-sql-2008-upgrade-tip/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

