<?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 sharepoint 2007 and rails quick notes</title>
	<atom:link href="http://roadburn.audioreload.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://roadburn.audioreload.com</link>
	<description>Useful MOSS 2007 and Ruby and Rails stuff</description>
	<lastBuildDate>Fri, 29 May 2009 15:10:14 -0500</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on ECTS &#8211; An unexpected error has occurred. by Dan Blake</title>
		<link>http://roadburn.audioreload.com/2008/06/05/ects-an-unexpected-error-has-occurred/comment-page-1/#comment-451</link>
		<dc:creator>Dan Blake</dc:creator>
		<pubDate>Fri, 29 May 2009 15:10:14 +0000</pubDate>
		<guid isPermaLink="false">http://roadburn.audioreload.com/?p=82#comment-451</guid>
		<description>Angela,
Thanks so much for publishing this troubleshooting guidance.  It helped me to solve a problem with FBA in WSS.  Just wanted to recognize your contributions.
Thanks,
Dan Blake</description>
		<content:encoded><![CDATA[<p>Angela,<br />
Thanks so much for publishing this troubleshooting guidance.  It helped me to solve a problem with FBA in WSS.  Just wanted to recognize your contributions.<br />
Thanks,<br />
Dan Blake</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Sharepoint 2007 Unknown Error when deleting list columns by Error when deleting list columns in SharePoint&#160;&#124;&#160;Of Ones and Zeros</title>
		<link>http://roadburn.audioreload.com/2008/12/03/sharepoint-2007-unknown-error-when-deleting-list-columns/comment-page-1/#comment-428</link>
		<dc:creator>Error when deleting list columns in SharePoint&#160;&#124;&#160;Of Ones and Zeros</dc:creator>
		<pubDate>Wed, 06 May 2009 12:58:52 +0000</pubDate>
		<guid isPermaLink="false">http://roadburn.audioreload.com/?p=238#comment-428</guid>
		<description>[...] to Angela Chng for the solution: Did you customize your application master pages and get this error while trying to delete list [...]</description>
		<content:encoded><![CDATA[<p>[...] to Angela Chng for the solution: Did you customize your application master pages and get this error while trying to delete list [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Sharepoint 2007 Unknown Error when deleting list columns by .. of ones and zeros .. &#187; Blog Archive &#187; Error when deleting list columns in SharePoint</title>
		<link>http://roadburn.audioreload.com/2008/12/03/sharepoint-2007-unknown-error-when-deleting-list-columns/comment-page-1/#comment-426</link>
		<dc:creator>.. of ones and zeros .. &#187; Blog Archive &#187; Error when deleting list columns in SharePoint</dc:creator>
		<pubDate>Tue, 28 Apr 2009 17:13:24 +0000</pubDate>
		<guid isPermaLink="false">http://roadburn.audioreload.com/?p=238#comment-426</guid>
		<description>[...] to Angela Chng for the solution: Did you customize your application master pages and get this error while trying to delete list [...]</description>
		<content:encoded><![CDATA[<p>[...] to Angela Chng for the solution: Did you customize your application master pages and get this error while trying to delete list [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ruby strftime Reference by ImNotQuiteJack</title>
		<link>http://roadburn.audioreload.com/2008/09/11/ruby-strftime-reference/comment-page-1/#comment-387</link>
		<dc:creator>ImNotQuiteJack</dc:creator>
		<pubDate>Thu, 29 Jan 2009 15:52:22 +0000</pubDate>
		<guid isPermaLink="false">http://roadburn.audioreload.com/?p=147#comment-387</guid>
		<description>Awesome!  Here are some more helpful codes:

%e - day of the month without leading zeros
%l - hour in 12-hour format, without a leading zero</description>
		<content:encoded><![CDATA[<p>Awesome!  Here are some more helpful codes:</p>
<p>%e &#8211; day of the month without leading zeros<br />
%l &#8211; hour in 12-hour format, without a leading zero</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Move Sharepoint 2007 Content Database by Steven Oberholzer</title>
		<link>http://roadburn.audioreload.com/2007/04/10/move-sharepoint-2007-content-database/comment-page-1/#comment-377</link>
		<dc:creator>Steven Oberholzer</dc:creator>
		<pubDate>Wed, 19 Nov 2008 13:15:04 +0000</pubDate>
		<guid isPermaLink="false">http://audioreload.com/roadburn/?p=3#comment-377</guid>
		<description>We sat with issues in our Production Environment and had to get a Development environment up that was identical to the Production environment. Identical because there were potentially issues with the database as people had gone into the database and made direct database changes, something which you should never do...

Quick way to do it:
1. Take a backup of your production content db.
2. Take a backup of your dev content db.
2.1. Make sure that you get the GUID of the SiteID of the Sites table in the original content database. This is at this moment referenced by the Config database in the SiteMap (and potentially the Sites) table.
3. Restore the production db backup over the dev content db.
4. In SQL Enterprise Manager:
4.1. Get the GUID of the site record in the Sites table in the Content DB - the new content db that you&#039;ve just restored. This will definitely differ from the GUID in the Config DB.
4.2. Update the Config DB&#039;s SiteMap (and maybe Sites) table where the ID is equal to the previous ID, to the new Site ID.
5. Perform an IISRESET.

WARNING:
1. It is not wise to play around in the SQL Databases.
2. Be careful that you don&#039;t have references in lets say document libraries, to the Production document libraries, as you might inadvertently update or delete these documents.</description>
		<content:encoded><![CDATA[<p>We sat with issues in our Production Environment and had to get a Development environment up that was identical to the Production environment. Identical because there were potentially issues with the database as people had gone into the database and made direct database changes, something which you should never do&#8230;</p>
<p>Quick way to do it:<br />
1. Take a backup of your production content db.<br />
2. Take a backup of your dev content db.<br />
2.1. Make sure that you get the GUID of the SiteID of the Sites table in the original content database. This is at this moment referenced by the Config database in the SiteMap (and potentially the Sites) table.<br />
3. Restore the production db backup over the dev content db.<br />
4. In SQL Enterprise Manager:<br />
4.1. Get the GUID of the site record in the Sites table in the Content DB &#8211; the new content db that you&#8217;ve just restored. This will definitely differ from the GUID in the Config DB.<br />
4.2. Update the Config DB&#8217;s SiteMap (and maybe Sites) table where the ID is equal to the previous ID, to the new Site ID.<br />
5. Perform an IISRESET.</p>
<p>WARNING:<br />
1. It is not wise to play around in the SQL Databases.<br />
2. Be careful that you don&#8217;t have references in lets say document libraries, to the Production document libraries, as you might inadvertently update or delete these documents.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Reporting Services with on sharepoint list as data source by Therese</title>
		<link>http://roadburn.audioreload.com/2007/10/12/reporting-services-with-on-sharepoint-list-as-data-source/comment-page-1/#comment-342</link>
		<dc:creator>Therese</dc:creator>
		<pubDate>Tue, 23 Sep 2008 11:44:50 +0000</pubDate>
		<guid isPermaLink="false">http://roadburn.audioreload.com/2007/10/12/reporting-services-with-on-sharepoint-list-as-data-source/#comment-342</guid>
		<description>Do you have a work around for jump to URL in Sharepoint?</description>
		<content:encoded><![CDATA[<p>Do you have a work around for jump to URL in Sharepoint?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Useful Sharepoint Designer Custom Workflow Activities by Tom Cairy</title>
		<link>http://roadburn.audioreload.com/2007/11/30/useful-sharepoint-designer-custom-workflow-activities/comment-page-1/#comment-328</link>
		<dc:creator>Tom Cairy</dc:creator>
		<pubDate>Tue, 02 Sep 2008 14:05:42 +0000</pubDate>
		<guid isPermaLink="false">http://roadburn.audioreload.com/2007/11/30/useful-sharepoint-designer-custom-workflow-activities/#comment-328</guid>
		<description>Hi - I am looking for a workflow activity that will detach a file (files) from a document list item .. do you know if something like this exists? (free or purchasable) ..</description>
		<content:encoded><![CDATA[<p>Hi &#8211; I am looking for a workflow activity that will detach a file (files) from a document list item .. do you know if something like this exists? (free or purchasable) ..</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Optimize and make MOSS (Sharepoint 2007) faster by Shookjobibia</title>
		<link>http://roadburn.audioreload.com/2008/03/11/optimize-and-make-moss-sharepoint-2007-faster/comment-page-1/#comment-303</link>
		<dc:creator>Shookjobibia</dc:creator>
		<pubDate>Sun, 03 Aug 2008 07:52:18 +0000</pubDate>
		<guid isPermaLink="false">http://roadburn.audioreload.com/2008/03/11/optimize-and-make-moss-sharepoint-2007-faster/#comment-303</guid>
		<description>Tahnks for posting</description>
		<content:encoded><![CDATA[<p>Tahnks for posting</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Wordpress for iPhone by roadburn</title>
		<link>http://roadburn.audioreload.com/2008/07/26/wordpress-for-iphone/comment-page-1/#comment-302</link>
		<dc:creator>roadburn</dc:creator>
		<pubDate>Sat, 26 Jul 2008 12:03:37 +0000</pubDate>
		<guid isPermaLink="false">http://roadburn.audioreload.com/2008/07/26/wordpress-for-iphone/#comment-302</guid>
		<description>iPhone rocks :) now if only i had one</description>
		<content:encoded><![CDATA[<p>iPhone rocks <img src='http://roadburn.audioreload.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  now if only i had one</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Error: 18456, Severity: 14, State: 16 by Kendra Thorpe&#8217;s VU Blog &#187; Blog Archive &#187; March 2008 MAR</title>
		<link>http://roadburn.audioreload.com/2007/11/29/error-18456-severity-14-state-16/comment-page-1/#comment-240</link>
		<dc:creator>Kendra Thorpe&#8217;s VU Blog &#187; Blog Archive &#187; March 2008 MAR</dc:creator>
		<pubDate>Mon, 24 Mar 2008 21:42:00 +0000</pubDate>
		<guid isPermaLink="false">http://roadburn.audioreload.com/2007/11/29/error-18456-severity-14-state-16/#comment-240</guid>
		<description>[...] Failure Audit for Cluster Service Account: Receive the following Event in the Application Log of the test and production SQL 2005 cluster. It turns out the SharePoint install left some old timer jobs. Once those jobs were deleted, the failure audit is gone. Thanks to http://roadburn.audioreload.com/2007/11/29/error-18456-severity-14-state-16/. [...]</description>
		<content:encoded><![CDATA[<p>[...] Failure Audit for Cluster Service Account: Receive the following Event in the Application Log of the test and production SQL 2005 cluster. It turns out the SharePoint install left some old timer jobs. Once those jobs were deleted, the failure audit is gone. Thanks to <a href="http://roadburn.audioreload.com/2007/11/29/error-18456-severity-14-state-16/" rel="nofollow">http://roadburn.audioreload.com/2007/11/29/error-18456-severity-14-state-16/</a>. [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
