<?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>Jimirig &#187; administration</title>
	<atom:link href="http://jimirig.com/tag/administration/feed/" rel="self" type="application/rss+xml" />
	<link>http://jimirig.com</link>
	<description>SharePoint &#124; Workflow &#124; Web Design&#124; InfoPath &#124; Web Hosting</description>
	<lastBuildDate>Fri, 14 May 2010 18:33:52 +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>STSADM.exe is your friend</title>
		<link>http://jimirig.com/2010/01/stsadm-exe-is-your-friend/</link>
		<comments>http://jimirig.com/2010/01/stsadm-exe-is-your-friend/#comments</comments>
		<pubDate>Tue, 26 Jan 2010 19:58:54 +0000</pubDate>
		<dc:creator>cory</dc:creator>
				<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[administration]]></category>
		<category><![CDATA[stsadm]]></category>

		<guid isPermaLink="false">http://jimirig.com/?p=2343</guid>
		<description><![CDATA[From: http://sharepoint1on1.jimirig.com/2010/01/26/stsadm-exe-is-your-friend/ Managing Sites and Site Collections SharePoint organizes its data in sites and site collections. When you design a site for a client, you must evaluate a number of pros and cons as you choose between a site and a site collection for a particular set of data. Irrespective of what you picked, you&#8217;ll [...]


Related posts:<ol><li><a href='http://jimirig.com/2009/10/fast-backup-and-restore-for-sharepoint/' rel='bookmark' title='Permanent Link: Fast Backup and Restore for SharePoint'>Fast Backup and Restore for SharePoint</a></li>
<li><a href='http://jimirig.com/2009/06/utilize-sharepoint-home/' rel='bookmark' title='Permanent Link: Utilize SharePoint @ Home'>Utilize SharePoint @ Home</a></li>
<li><a href='http://jimirig.com/2009/08/sharepoint-more-than-just-a-technical-solution/' rel='bookmark' title='Permanent Link: SharePoint &#8211; More Than Just a Technical Solution'>SharePoint &#8211; More Than Just a Technical Solution</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>From: <a href="http://sharepoint1on1.jimirig.com/2010/01/26/stsadm-exe-is-your-friend/" target="_blank">http://sharepoint1on1.jimirig.com/2010/01/26/stsadm-exe-is-your-friend/</a></p>
<p><strong><a href="http://jimirig.com/files/2009/09/sharepoint-logo-main_Full1.jpg"><img class="alignnone size-medium wp-image-1965" title="sharepoint-logo-main_Full1" src="http://jimirig.com/files/2009/09/sharepoint-logo-main_Full1-300x75.jpg" alt="sharepoint-logo-main_Full1" width="240" height="60" /></a></strong></p>
<p><strong><a href="http://jimirig.com/files/2009/09/sharepoint-logo-main_Full1.jpg"></a>Managing Sites and Site Collections</strong><br />
SharePoint organizes its data in sites and site collections. When you design a site for a client, you must evaluate a number of pros and cons as you choose between a site and a site collection for a particular set of data. Irrespective of what you picked, you&#8217;ll encounter times where you wished you had picked the other. Or sometimes, you just need to shuffle or move things around because the requirements changed, the databases grew, or any other reason. Stsadm is incredibly helpful in such scenarios.</p>
<p>You may backup a site collection using the following command:</p>
<pre style="font: normal normal normal 12px/18px Consolas, Monaco, 'Courier New', Courier, monospace;"><code>   stsadm -o backup -url
   -filename
</code></pre>
<p>Similarly, you may restore a site collection using the following command:</p>
<pre style="font: normal normal normal 12px/18px Consolas, Monaco, 'Courier New', Courier, monospace;"><code>   stsadm -o restore -url
   -filename  </code></pre>
<p><span style="font-family: monospace; line-height: 18px; font-size: 12px; white-space: pre;"> stsadm -o export -url </span>Now note that I mentioned &#8220;site collection&#8221; and not site. In order to backup a site, you may use the following command:</p>
<pre style="font: normal normal normal 12px/18px Consolas, Monaco, 'Courier New', Courier, monospace;"><code>   -filename
</code></pre>
<p>Similarly, in order to import a site you may use the following command:</p>
<pre style="font: normal normal normal 12px/18px Consolas, Monaco, 'Courier New', Courier, monospace;"><code>   stsadm -o export -url
   -filename
</code></pre>
<p>To import and export single sites need you to pay extra attention to site GUID identifiers, and the versions of items/documents in the site.</p>
<p>Now, this brings up some interesting permutations and combinations. Using the preceding commmands, you could:</p>
<ul>
<li>Move site collections to/from servers, or within the same website.</li>
<li>Move sites up or down in the hierarchy of a site collection.</li>
<li>Convert a site into a site collection.</li>
</ul>
<p>Now, why would you ever want to convert a site into a site collection? Because, you cannot split a site collection between multiple content databases, and sometimes content databases get too huge to manage. As it turns out, Stsadm can also help you manage your content databases.</p>
<p><strong>Managing Content Databases</strong><br />
Sometimes you might land in a project where you have a content database that is bursting its seams. Usually, when a content database grows to over 50GB, a SharePoint architect&#8217;s warning lights should turn yellow. If it crosses 200GB for high I/O sites, or 500GB for read-only sites, the warning lights should glow red. Note that you can tweak these soft limits beyond the numbers I mentioned, but—sooner or later—you&#8217;ll have to face the problem of taking an existing website with numerous sites or site collections, and splitting them up into manageable chunks containing separate content databases.</p>
<p>To do so, use the following command to force the creation of a new site collection in a new content database:</p>
<pre style="font: normal normal normal 12px/18px Consolas, Monaco, 'Courier New', Courier, monospace;"><code>   stsadm -o createsiteinnewdb
   -url
   -owneremail
   -ownerlogin
   -databasename
</code></pre>
<p>After running the preceding command successfully, you may verify under Central Administration → Application Management → Content Databases that a new content database has indeed been added, and that the single site collection specified in the preceding code was created.</p>
<p>You can use the following sequence of commands to move a site collection from &lt;oldUrl&gt; to &lt;newUrl&gt;:</p>
<pre style="font: normal normal normal 12px/18px Consolas, Monaco, 'Courier New', Courier, monospace;"><code>   stsadm -o backup -url
   -filename
   stsadm -o deletesite -url
   stsadm -o restore -url
   -filename  -overwrite
</code></pre>
<p>As you can see, the commands back up the site from the old URL, delete it, and then restore it at the new URL, which exists in a new content database. You accomplished all this with only a few lines usingStsadm, which supports a number of other commands that let you work with content databases.</p>


<p>Related posts:<ol><li><a href='http://jimirig.com/2009/10/fast-backup-and-restore-for-sharepoint/' rel='bookmark' title='Permanent Link: Fast Backup and Restore for SharePoint'>Fast Backup and Restore for SharePoint</a></li>
<li><a href='http://jimirig.com/2009/06/utilize-sharepoint-home/' rel='bookmark' title='Permanent Link: Utilize SharePoint @ Home'>Utilize SharePoint @ Home</a></li>
<li><a href='http://jimirig.com/2009/08/sharepoint-more-than-just-a-technical-solution/' rel='bookmark' title='Permanent Link: SharePoint &#8211; More Than Just a Technical Solution'>SharePoint &#8211; More Than Just a Technical Solution</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://jimirig.com/2010/01/stsadm-exe-is-your-friend/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fast Backup and Restore for SharePoint</title>
		<link>http://jimirig.com/2009/10/fast-backup-and-restore-for-sharepoint/</link>
		<comments>http://jimirig.com/2009/10/fast-backup-and-restore-for-sharepoint/#comments</comments>
		<pubDate>Thu, 29 Oct 2009 07:03:25 +0000</pubDate>
		<dc:creator>cory</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[administration]]></category>
		<category><![CDATA[Backup]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[MOSS]]></category>
		<category><![CDATA[restore]]></category>
		<category><![CDATA[stsadm]]></category>
		<category><![CDATA[WSS]]></category>

		<guid isPermaLink="false">http://jimirig.com/?p=2273</guid>
		<description><![CDATA[For backup and restoration of SharePoint, we have always used the STSADM.exe command for SharePoint. Note: It is highly recommended that a backup is also created for the SQL Database. The STSADM.exe utility is a very simple command line tool used to modify several different parts of SharePoint. Our main use is disaster recover. It [...]


Related posts:<ol><li><a href='http://jimirig.com/2009/06/utilize-sharepoint-home/' rel='bookmark' title='Permanent Link: Utilize SharePoint @ Home'>Utilize SharePoint @ Home</a></li>
<li><a href='http://jimirig.com/2010/01/stsadm-exe-is-your-friend/' rel='bookmark' title='Permanent Link: STSADM.exe is your friend'>STSADM.exe is your friend</a></li>
<li><a href='http://jimirig.com/2009/08/sharepoint-workflow-part-1/' rel='bookmark' title='Permanent Link: SharePoint Workflow &#8211; Part 1'>SharePoint Workflow &#8211; Part 1</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>For backup and restoration of SharePoint, we have always used the STSADM.exe command for SharePoint. Note: It is highly recommended that a backup is also created for the SQL Database. The STSADM.exe utility is a very simple command line tool used to modify several different parts of SharePoint. Our main use is disaster recover. It is very simple. Log on to the SharePoint server or use remote desktop. Open the command prompt, and browse to the following:</p>
<blockquote><p>SharePoint 2007 &#8211; c:\program files\common files\microsoft shared\web server extensions\12\bin\</p></blockquote>
<blockquote><p>SharePoint 2010 &#8211; c:\program files\common files\microsoft shared\web server extensions\14\bin\</p></blockquote>
<p>Now type in the following for a backup:</p>
<blockquote><p>stsadm.exe -o backup -url http://enterurlhere -filename c:\enterbackupnamehere.bak</p></blockquote>
<p>Wait for the operation to complete. Hey look, you have a backup that holds all permissions, settings, content, etc.</p>
<p>Restoring the site is like this:</p>
<blockquote><p>stsadm.exe -o restore -url http://enterurlhere -filename c:\enterbackupnamehere.bak -overwrite</p></blockquote>
<p>Other commands can be used can be <a title="Technet - STSADM.exe Commands" href="http://technet.microsoft.com/en-us/library/cc261956.aspx" target="_blank">found here</a>. (http://technet.microsoft.com/en-us/library/cc261956.aspx)</p>


<p>Related posts:<ol><li><a href='http://jimirig.com/2009/06/utilize-sharepoint-home/' rel='bookmark' title='Permanent Link: Utilize SharePoint @ Home'>Utilize SharePoint @ Home</a></li>
<li><a href='http://jimirig.com/2010/01/stsadm-exe-is-your-friend/' rel='bookmark' title='Permanent Link: STSADM.exe is your friend'>STSADM.exe is your friend</a></li>
<li><a href='http://jimirig.com/2009/08/sharepoint-workflow-part-1/' rel='bookmark' title='Permanent Link: SharePoint Workflow &#8211; Part 1'>SharePoint Workflow &#8211; Part 1</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://jimirig.com/2009/10/fast-backup-and-restore-for-sharepoint/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
