<?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>My Place</title>
	<atom:link href="http://myplace.bluecastle.us/feed/" rel="self" type="application/rss+xml" />
	<link>http://myplace.bluecastle.us</link>
	<description>The Sahara of blogs...</description>
	<lastBuildDate>Thu, 16 Feb 2012 17:05:30 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.3</generator>
		<item>
		<title>Schemas and SQL Server 2005</title>
		<link>http://myplace.bluecastle.us/2012/02/16/schemas-and-sql-server-2005/</link>
		<comments>http://myplace.bluecastle.us/2012/02/16/schemas-and-sql-server-2005/#comments</comments>
		<pubDate>Thu, 16 Feb 2012 17:05:30 +0000</pubDate>
		<dc:creator>brass</dc:creator>
				<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://myplace.bluecastle.us/?p=58</guid>
		<description><![CDATA[Here it is 2012 already and I am just starting to play with schemas in SQL 2005. Anyway, follow the directions below to just start using a Schema as a container or namespace for your objects. Create a Role &#8220;schema_owner&#8221; and set the owner to dbo. Create schema &#8220;myschema&#8221; and set the owner to &#8220;schema_owner&#8221;.  [...]]]></description>
			<content:encoded><![CDATA[<p>Here it is 2012 already and I am just starting to play with schemas in SQL 2005.  Anyway, follow the directions below to just start using a Schema as a container or namespace for your objects.</p>
<ol>
<li>Create a Role &#8220;schema_owner&#8221; and set the owner to dbo.</li>
<li>Create schema &#8220;myschema&#8221; and set the owner to &#8220;schema_owner&#8221;.  I personally used the same word for both the schema and the role.   ex:   Role=&#8221;myschema&#8221;;  Schema=&#8221;myschema&#8221;.</li>
</ol>
<p>Now, logged in as SA with default permissions:</p>
<ul>
<li>I can create, alter, select, etc. any objects to the new schema as long as a schema qualify my objects.</li>
<li>Red-Gate&#8217;s SQL Prompt can &#8216;see&#8217; the schema and related objects for proper prompting.</li>
</ul>
<p>At first I started with only a schema that was owned by &#8220;dbo&#8221;.  I could create tables and query tables, but SQL Prompt would not suggest those objects.  After playing around, I tried duplicating one of the other default schemas like db_accessadmin or db_owner.  Once the shema is owned by the role and the role is owned by dbo, then SQL Prompt works as expected.</p>
<p>Bonus:   Name Resolution according to Bob Beauchemin at <a href="http://www.sqlskills.com/BLOGS/BOBB/post/Dude-wheres-my-table.aspx" target="_blank">http://www.sqlskills.com/BLOGS/BOBB/post/Dude-wheres-my-table.aspx</a></p>
<ol>
<li>sys schema</li>
<li>user&#8217;s default schema or the stored procedure schema</li>
<li>dbo schema</li>
</ol>
<p>Go check out Bob&#8217;s post as he has several posts related to schemas that are very informative.</p>
<p>Also, if you havn&#8217;t heard of SQL Prompt, you can learn more <a title="http://www.red-gate.com" href="http://www.red-gate.com/products/sql-development/sql-prompt/" target="_self">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://myplace.bluecastle.us/2012/02/16/schemas-and-sql-server-2005/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Desktop MOTD</title>
		<link>http://myplace.bluecastle.us/2010/02/19/desktop-motd/</link>
		<comments>http://myplace.bluecastle.us/2010/02/19/desktop-motd/#comments</comments>
		<pubDate>Sat, 20 Feb 2010 02:26:55 +0000</pubDate>
		<dc:creator>brass</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[code]]></category>

		<guid isPermaLink="false">http://myplace.bluecastle.us/?p=39</guid>
		<description><![CDATA[&#8220;Try it, You&#8217;ll like it&#8221; says the wife.   &#8220;Download it, use it.&#8221; says the developer &#8220;What is it?  Why should I?&#8221; says the visitor Get it here. Well, it is a small application that I wrote to write messages onto your desktop picture.  I wanted to see bible verses on my desktop that would rotate [...]]]></description>
			<content:encoded><![CDATA[<p>&#8220;Try it, You&#8217;ll like it&#8221; says the wife.  </p>
<p>&#8220;Download it, use it.&#8221; says the developer</p>
<p>&#8220;What is it?  Why should I?&#8221; says the visitor</p>
<p>Get it <a href="http://myplace.bluecastle.us/files/2010/02/BlueCastle.US.exe">here</a>.</p>
<p>Well, it is a small application that I wrote to write messages onto your desktop picture.  I wanted to see bible verses on my desktop that would rotate at some interval. </p>
<p>To Use:</p>
<ol>
<li>Fill the included motd.txt file with the messages you want on your desktop.  One line per message.</li>
<li>run &#8220;DesktopMOTD.exe&#8221;</li>
<li>look at your desktop</li>
<li>run it again.</li>
</ol>
<p>If you like it, then just add a task to your scheduled tasks to run it as often as you like.  Or maybe put a shortcut in your startup folder so every time you login the message is changed.  Feel free to change your wallpaper picture at any time as my app automatically detects the change and starts using the new picture.</p>
<p>Above all, come back and let me know what you think.</p>
]]></content:encoded>
			<wfw:commentRss>http://myplace.bluecastle.us/2010/02/19/desktop-motd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Akismet: The WordPress AntiSpam Solution</title>
		<link>http://myplace.bluecastle.us/2009/11/24/akismet-the-wordpress-antispam-solution/</link>
		<comments>http://myplace.bluecastle.us/2009/11/24/akismet-the-wordpress-antispam-solution/#comments</comments>
		<pubDate>Wed, 25 Nov 2009 04:56:10 +0000</pubDate>
		<dc:creator>brass</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://myplace.bluecastle.us/?p=32</guid>
		<description><![CDATA[I&#8217;ve installed Akismet, then found out for it to work, you need an API key.  Well, I now have the API key, now to see if this thing works. Edit:  Well, it seems to be working.  If a blucastle blogger is interested in it, activate the plugin.  Then go over to wordpress.com and create an [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve installed Akismet, then found out for it to work, you need an API key.  Well, I now have the API key, now to see if this thing works.</p>
<p>Edit:  Well, it seems to be working.  If a blucastle blogger is interested in it, activate the plugin.  Then go over to wordpress.com and create an account.  You don&#8217;t have to create the blog, just the account.  In simplifying thier lives, they are using the wordpress.com site as their registration for akismet and for thier blog site.  Anyway, after you &#8216;activate&#8217; your account, login, and go to your profile page. The API key will be listed at the top of the page.  Happy blogging!</p>
]]></content:encoded>
			<wfw:commentRss>http://myplace.bluecastle.us/2009/11/24/akismet-the-wordpress-antispam-solution/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>YMMV: miles or words</title>
		<link>http://myplace.bluecastle.us/2009/09/24/ymmv-miles-or-words/</link>
		<comments>http://myplace.bluecastle.us/2009/09/24/ymmv-miles-or-words/#comments</comments>
		<pubDate>Fri, 25 Sep 2009 00:10:52 +0000</pubDate>
		<dc:creator>brass</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[bluecastle.us]]></category>

		<guid isPermaLink="false">http://myplace.bluecastle.us/2009/9?p=3</guid>
		<description><![CDATA[A certain somebody has worn out his LifeType blog and needed me to &#39;check&#39; it out.&#160; Well, I&#39;m kicking the tires, checking the radio&#8230;&#160;&#160; seems to be working&#8230;&#160; On the flip side, I have put over7,500 miles on my motorcycle.&#160; Lately I&#39;ve been putting somewhere around 60 to 70 miles on it every day.&#160; On [...]]]></description>
			<content:encoded><![CDATA[<p>A certain somebody has worn out his LifeType blog and needed me to &#39;check&#39; it out.&nbsp; Well, I&#39;m kicking the tires, checking the radio&#8230;&nbsp;&nbsp; seems to be working&#8230;<br />&nbsp;<br /><a id="res_682" href="http://myplace.bluecastle.us/gallery/1/kawasaki_versys.JPG"><img src="http://myplace.bluecastle.us/gallery/1/previews-med/kawasaki_versys.JPG" border="0" alt="2008 Kawasaki Versys" /></a></p>
<p>On the flip side, I have put over7,500 miles on my motorcycle.&nbsp; Lately I&#39;ve been putting somewhere around 60 to 70 miles on it every day.&nbsp; On most days, the roads are wet.&nbsp; I&#39;m starting to grow gills.&nbsp; The good news?&nbsp; I seem to always get around 50.xxx miles per gallon with the midgrade gas.&nbsp; Last night I filled up with low grade as I&#39;m going to try a few tanks.&nbsp; I&#39;ve always used high grade for motorcycles but lately I&#39;ve been using mid-grade due to a few comments my Dad made several months back.&nbsp; He tends to avoid high grade gas because it doesn&#39;t sell and just sits around.&nbsp; The other grades sell a lot faster and the underground tanks are continually being refilled. <br />&nbsp;<br />Untill next year &#8230; </p>
]]></content:encoded>
			<wfw:commentRss>http://myplace.bluecastle.us/2009/09/24/ymmv-miles-or-words/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to tell if Windows XP is activated.</title>
		<link>http://myplace.bluecastle.us/2009/07/24/how-to-tell-if-windows-xp-is-activated/</link>
		<comments>http://myplace.bluecastle.us/2009/07/24/how-to-tell-if-windows-xp-is-activated/#comments</comments>
		<pubDate>Fri, 24 Jul 2009 23:00:02 +0000</pubDate>
		<dc:creator>brass</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://myplace.bluecastle.us/2009/7?p=9</guid>
		<description><![CDATA[&#160; Start, Run, type &#34;oobe/msoobe /a&#34; without quotations, hit Enter. http://www.computing.net/answers/windows-xp/how-to-tell-if-xp-is-activated/61146.html]]></description>
			<content:encoded><![CDATA[<p>&nbsp;</p>
<p>Start, Run, type &quot;oobe/msoobe /a&quot; without quotations, hit Enter.</p>
<p><a href="http://www.computing.net/answers/windows-xp/how-to-tell-if-xp-is-activated/61146.html">http://www.computing.net/answers/windows-xp/how-to-tell-if-xp-is-activated/61146.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://myplace.bluecastle.us/2009/07/24/how-to-tell-if-windows-xp-is-activated/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

