<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for Try, Catch... Finally.</title>
	<atom:link href="http://TryCatchFinally.net/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://TryCatchFinally.net</link>
	<description>Some .NET, some SQL, and whatever else</description>
	<lastBuildDate>Mon, 06 Feb 2012 04:14:13 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on Join an Active Directory domain and keep your local profile intact by Ryan</title>
		<link>http://TryCatchFinally.net/2009/04/join-an-active-directory-domain-and-keep-your-local-profile-intact/#comment-240</link>
		<dc:creator>Ryan</dc:creator>
		<pubDate>Mon, 06 Feb 2012 04:14:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.ablogformyboy.com/?p=15#comment-240</guid>
		<description>Ben, that&#039;s usually the biggest concern when I migrate profiles as well, but while I don&#039;t mind setting up applications again, people seem to get concerned when their layouts, background, application settings, and things like that get lost in the move. In particular, I wanted to be able to join the computer to the domain and then have the user sit down and log in again without even noticing, and this let me do that. If the concern is just data backup, then you&#039;re right that it easier to just do the file copying yourself after creating the new profile.

I&#039;ve used this process a couple of times to do a smooth migration from a regular profile to a domain profile, but I&#039;ve only tried it on Windows XP and not on Vista or 7, so I&#039;m not sure what the results would be on a newer version of the OS.</description>
		<content:encoded><![CDATA[<p>Ben, that&#8217;s usually the biggest concern when I migrate profiles as well, but while I don&#8217;t mind setting up applications again, people seem to get concerned when their layouts, background, application settings, and things like that get lost in the move. In particular, I wanted to be able to join the computer to the domain and then have the user sit down and log in again without even noticing, and this let me do that. If the concern is just data backup, then you&#8217;re right that it easier to just do the file copying yourself after creating the new profile.</p>
<p>I&#8217;ve used this process a couple of times to do a smooth migration from a regular profile to a domain profile, but I&#8217;ve only tried it on Windows XP and not on Vista or 7, so I&#8217;m not sure what the results would be on a newer version of the OS.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Join an Active Directory domain and keep your local profile intact by Ben</title>
		<link>http://TryCatchFinally.net/2009/04/join-an-active-directory-domain-and-keep-your-local-profile-intact/#comment-238</link>
		<dc:creator>Ben</dc:creator>
		<pubDate>Sat, 04 Feb 2012 20:27:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.ablogformyboy.com/?p=15#comment-238</guid>
		<description>It&#039;s almost easier just to join the domain and move the files from the old profile to the new, import favorites for IE and re-configure outlook. The biggest concern for 90% of users seems to be that the stuff on their desktop is migrated :)</description>
		<content:encoded><![CDATA[<p>It&#8217;s almost easier just to join the domain and move the files from the old profile to the new, import favorites for IE and re-configure outlook. The biggest concern for 90% of users seems to be that the stuff on their desktop is migrated <img src='http://TryCatchFinally.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Roll your own lightweight SQL Server source control by Ryan</title>
		<link>http://TryCatchFinally.net/2011/06/roll-your-own-lightweight-sql-server-source-control/#comment-225</link>
		<dc:creator>Ryan</dc:creator>
		<pubDate>Sun, 13 Nov 2011 04:20:15 +0000</pubDate>
		<guid isPermaLink="false">http://TryCatchFinally.net/?p=99#comment-225</guid>
		<description>@Michael Miller:

I don&#039;t see why it couldn&#039;t be modified to allow on-demand backup of specific stored procedures. All you&#039;d have to do is modify the CREATE PROC statement to accept a parameter:

CREATE PROC dbo.coSourceControlRefresh
&lt;STRONG&gt;(@ObjectNameToBackup NVARCHAR(1000))&lt;/STRONG&gt;
AS

And then just add the filter to the WHERE clause of the first table in the INSERT statement:

...
FROM sys.objects (NOLOCK)
WHERE object_id &gt; 0
  AND OBJECTPROPERTY(object_id, &#039;&#039;IsMSShipped&#039;&#039;) = 0
  AND object_definition(object_id) IS NOT NULL
  &lt;STRONG&gt;AND object_name(object_id) LIKE @ObjectNameToBackup&lt;/STRONG&gt;) s0
...

However, the existing script would accomplish the same goal - instead of backing up on demand (and leaving it up to the developer or DBA to remember to do so), it would automatically detect and record changes as they happen. While you might end up with some additional copies of the SP while development is in-progress, they&#039;d be easily identifiable because you&#039;d see that another version was created not long afterwards.

I could see the desire to have an on-demand backup scheme though for just certain procs, and this change would definitely meet that need.</description>
		<content:encoded><![CDATA[<p>@Michael Miller:</p>
<p>I don&#8217;t see why it couldn&#8217;t be modified to allow on-demand backup of specific stored procedures. All you&#8217;d have to do is modify the CREATE PROC statement to accept a parameter:</p>
<p>CREATE PROC dbo.coSourceControlRefresh<br />
<strong>(@ObjectNameToBackup NVARCHAR(1000))</strong><br />
AS</p>
<p>And then just add the filter to the WHERE clause of the first table in the INSERT statement:</p>
<p>&#8230;<br />
FROM sys.objects (NOLOCK)<br />
WHERE object_id > 0<br />
  AND OBJECTPROPERTY(object_id, &#8221;IsMSShipped&#8221;) = 0<br />
  AND object_definition(object_id) IS NOT NULL<br />
  <strong>AND object_name(object_id) LIKE @ObjectNameToBackup</strong>) s0<br />
&#8230;</p>
<p>However, the existing script would accomplish the same goal &#8211; instead of backing up on demand (and leaving it up to the developer or DBA to remember to do so), it would automatically detect and record changes as they happen. While you might end up with some additional copies of the SP while development is in-progress, they&#8217;d be easily identifiable because you&#8217;d see that another version was created not long afterwards.</p>
<p>I could see the desire to have an on-demand backup scheme though for just certain procs, and this change would definitely meet that need.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Roll your own lightweight SQL Server source control by Michael Miller</title>
		<link>http://TryCatchFinally.net/2011/06/roll-your-own-lightweight-sql-server-source-control/#comment-223</link>
		<dc:creator>Michael Miller</dc:creator>
		<pubDate>Tue, 08 Nov 2011 18:28:04 +0000</pubDate>
		<guid isPermaLink="false">http://TryCatchFinally.net/?p=99#comment-223</guid>
		<description>Could this be modified to allow a single developer to update changes to an individual stored procedure?   Like: fn_UpdateMySp(&#039;MyStoredProcedureName&#039;)?</description>
		<content:encoded><![CDATA[<p>Could this be modified to allow a single developer to update changes to an individual stored procedure?   Like: fn_UpdateMySp(&#8216;MyStoredProcedureName&#8217;)?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Roll your own lightweight SQL Server source control by Caffiney</title>
		<link>http://TryCatchFinally.net/2011/06/roll-your-own-lightweight-sql-server-source-control/#comment-220</link>
		<dc:creator>Caffiney</dc:creator>
		<pubDate>Fri, 07 Oct 2011 13:01:36 +0000</pubDate>
		<guid isPermaLink="false">http://TryCatchFinally.net/?p=99#comment-220</guid>
		<description>Quick and elegant.  Very nice solution to exactly the issue I was researching.  Thank you!</description>
		<content:encoded><![CDATA[<p>Quick and elegant.  Very nice solution to exactly the issue I was researching.  Thank you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Roll your own lightweight SQL Server source control by Rex</title>
		<link>http://TryCatchFinally.net/2011/06/roll-your-own-lightweight-sql-server-source-control/#comment-199</link>
		<dc:creator>Rex</dc:creator>
		<pubDate>Thu, 21 Jul 2011 16:52:38 +0000</pubDate>
		<guid isPermaLink="false">http://TryCatchFinally.net/?p=99#comment-199</guid>
		<description>Very cool.  Clean and convenient.  Thanks!</description>
		<content:encoded><![CDATA[<p>Very cool.  Clean and convenient.  Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Resolving &#8220;STOP 0x0000007B INACCESSIBLE_BOOT_DEVICE&#8221; after you make changes to your hard drive configuration by Martin</title>
		<link>http://TryCatchFinally.net/2009/04/resolving-stop-0x0000007b-inaccessible_boot_device-after-you-make-changes-to-your-hard-drive-configuration/#comment-184</link>
		<dc:creator>Martin</dc:creator>
		<pubDate>Thu, 16 Jun 2011 15:52:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.ablogformyboy.com/?p=19#comment-184</guid>
		<description>Thank you!!!

I changed ACHI to IDE and it works!</description>
		<content:encoded><![CDATA[<p>Thank you!!!</p>
<p>I changed ACHI to IDE and it works!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Visual Studio solutions don’t load when you double-click on them by Andy</title>
		<link>http://TryCatchFinally.net/2010/03/visual-studio-solutions-dont-load-when-you-double-click-on-them/#comment-180</link>
		<dc:creator>Andy</dc:creator>
		<pubDate>Mon, 25 Apr 2011 21:56:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.ablogformyboy.com/?p=41#comment-180</guid>
		<description>Thanks for that.  I knew the selector was the problem, because I had set both vs2008 and vs2010 to always run as admin but they still wouldn&#039;t open.  The tricky bit was figuring out where the selector executable was, and you provided that :-)

Cheers!</description>
		<content:encoded><![CDATA[<p>Thanks for that.  I knew the selector was the problem, because I had set both vs2008 and vs2010 to always run as admin but they still wouldn&#8217;t open.  The tricky bit was figuring out where the selector executable was, and you provided that <img src='http://TryCatchFinally.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Cheers!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Accessing a clustered SQL Server instance without the instance name by senthil chinnappan</title>
		<link>http://TryCatchFinally.net/2009/05/accessing-a-clustered-sql-server-instance-without-the-instance-name/#comment-176</link>
		<dc:creator>senthil chinnappan</dc:creator>
		<pubDate>Fri, 15 Apr 2011 04:31:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.ablogformyboy.com/?p=24#comment-176</guid>
		<description>this is great, it solved my nightmare.</description>
		<content:encoded><![CDATA[<p>this is great, it solved my nightmare.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Join an Active Directory domain and keep your local profile intact by Hector</title>
		<link>http://TryCatchFinally.net/2009/04/join-an-active-directory-domain-and-keep-your-local-profile-intact/#comment-162</link>
		<dc:creator>Hector</dc:creator>
		<pubDate>Wed, 23 Feb 2011 19:50:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.ablogformyboy.com/?p=15#comment-162</guid>
		<description>Yeah, I don&#039;t understand why MS has not make this migration process a snap, after all, we are not the only onces that wants to do this. Surely they has to be millions of people need to migrate their setup to a &quot;new OS&#039; and Active directory.  I just installed a AD machine and with an unused machine I had it join the domain, and wanted to see how to restore the profile because for real user machines they are going to want that.  Oh well, I thought this find was great until I read you post Moha.  I&#039;m going to get the steps a try to see if I get successful results.</description>
		<content:encoded><![CDATA[<p>Yeah, I don&#8217;t understand why MS has not make this migration process a snap, after all, we are not the only onces that wants to do this. Surely they has to be millions of people need to migrate their setup to a &#8220;new OS&#8217; and Active directory.  I just installed a AD machine and with an unused machine I had it join the domain, and wanted to see how to restore the profile because for real user machines they are going to want that.  Oh well, I thought this find was great until I read you post Moha.  I&#8217;m going to get the steps a try to see if I get successful results.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

