<?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>Sytone&#039;s Ramblings &#187; SharePoint</title>
	<atom:link href="http://www.sytone.com/category/sharepoint/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.sytone.com</link>
	<description>Me, Family, Life</description>
	<lastBuildDate>Sun, 20 Nov 2011 05:29:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Setting Max memory usage in SQL Server</title>
		<link>http://www.sytone.com/2010/07/setting-max-memory-usage-in-sql-server/</link>
		<comments>http://www.sytone.com/2010/07/setting-max-memory-usage-in-sql-server/#comments</comments>
		<pubDate>Fri, 30 Jul 2010 03:17:03 +0000</pubDate>
		<dc:creator>Sytone</dc:creator>
				<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://www.sytone.com/?p=247</guid>
		<description><![CDATA[ <p>When running SharePoint locally it is a good idea to control the memory usage of SQL. To do this use the SQL query below.</p> sp_configure 'max server memory', 1024 RECONFIGURE GO <p>A good article that goes through some of the areas you need to look at in relationship to memory is located [...]]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.sytone.com%2F2010%2F07%2Fsetting-max-memory-usage-in-sql-server%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.sytone.com%2F2010%2F07%2Fsetting-max-memory-usage-in-sql-server%2F&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>When running SharePoint locally it is a good idea to control the memory usage of SQL. To do this use the SQL query below.</p>
<pre class="brush: sql; title: ; notranslate">
sp_configure 'max server memory', 1024
RECONFIGURE
GO
</pre>
<p>A good article that goes through some of the areas you need to look at in relationship to memory is located at: <a href="http://www.eraofdata.com/blog/2008/10/sql-server-memory-configuration/">http://www.eraofdata.com/blog/2008/10/sql-server-memory-configuration/</a></p>
<div class="shr-publisher-247"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><div class='shareaholic-like-buttonset' style='float:none;height:30px;'><a class='shareaholic-fblike' data-shr_layout='button_count' data-shr_showfaces='false' data-shr_href='http%3A%2F%2Fwww.sytone.com%2F2010%2F07%2Fsetting-max-memory-usage-in-sql-server%2F' data-shr_title='Setting+Max+memory+usage+in+SQL+Server'></a><a class='shareaholic-fbsend' data-shr_href='http%3A%2F%2Fwww.sytone.com%2F2010%2F07%2Fsetting-max-memory-usage-in-sql-server%2F'></a><a class='shareaholic-googleplusone' data-shr_size='medium' data-shr_count='true' data-shr_href='http%3A%2F%2Fwww.sytone.com%2F2010%2F07%2Fsetting-max-memory-usage-in-sql-server%2F' data-shr_title='Setting+Max+memory+usage+in+SQL+Server'></a></div><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://www.sytone.com/2010/07/setting-max-memory-usage-in-sql-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting the Central Admin URL for a Farm in SharePoint</title>
		<link>http://www.sytone.com/2010/07/getting-the-central-admin-url-for-a-farm-in-sharepoint/</link>
		<comments>http://www.sytone.com/2010/07/getting-the-central-admin-url-for-a-farm-in-sharepoint/#comments</comments>
		<pubDate>Fri, 30 Jul 2010 00:53:55 +0000</pubDate>
		<dc:creator>Sytone</dc:creator>
				<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[PowerShell]]></category>

		<guid isPermaLink="false">http://www.sytone.com/?p=242</guid>
		<description><![CDATA[ <p>I recently needed to get the Url of the CA for a SharePoint farm, after a bit of hunting in the API it was tracked down under the SPAdministrationWebApplication object.</p> C# SPAdministrationWebApplication caWebApp = Microsoft.SharePoint.Administration.SPAdministrationWebApplication.Local; var url = caWebApp.Sites[0].Url; PowerShell $caWebApp = [Microsoft.SharePoint.Administration.SPAdministrationWebApplication]::Local [...]]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.sytone.com%2F2010%2F07%2Fgetting-the-central-admin-url-for-a-farm-in-sharepoint%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.sytone.com%2F2010%2F07%2Fgetting-the-central-admin-url-for-a-farm-in-sharepoint%2F&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><img class="alignright" src="http://farm1.static.flickr.com/5/10700151_e80d4f8b0f_m.jpg" alt="Toy Car" width="101" height="76" />I recently needed to get the Url of the CA for a SharePoint farm, after a bit of hunting in the API it was tracked down under the SPAdministrationWebApplication object.</p>
<h3>C#</h3>
<pre class="brush: csharp; title: ; notranslate">
SPAdministrationWebApplication caWebApp = Microsoft.SharePoint.Administration.SPAdministrationWebApplication.Local;
var url = caWebApp.Sites[0].Url;
</pre>
<h3>PowerShell</h3>
<pre class="brush: powershell; title: ; notranslate">
$caWebApp = [Microsoft.SharePoint.Administration.SPAdministrationWebApplication]::Local
$caWebApp.Sites[0].Url
</pre>
<div class="shr-publisher-242"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><div class='shareaholic-like-buttonset' style='float:none;height:30px;'><a class='shareaholic-fblike' data-shr_layout='button_count' data-shr_showfaces='false' data-shr_href='http%3A%2F%2Fwww.sytone.com%2F2010%2F07%2Fgetting-the-central-admin-url-for-a-farm-in-sharepoint%2F' data-shr_title='Getting+the+Central+Admin+URL+for+a+Farm+in+SharePoint'></a><a class='shareaholic-fbsend' data-shr_href='http%3A%2F%2Fwww.sytone.com%2F2010%2F07%2Fgetting-the-central-admin-url-for-a-farm-in-sharepoint%2F'></a><a class='shareaholic-googleplusone' data-shr_size='medium' data-shr_count='true' data-shr_href='http%3A%2F%2Fwww.sytone.com%2F2010%2F07%2Fgetting-the-central-admin-url-for-a-farm-in-sharepoint%2F' data-shr_title='Getting+the+Central+Admin+URL+for+a+Farm+in+SharePoint'></a></div><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://www.sytone.com/2010/07/getting-the-central-admin-url-for-a-farm-in-sharepoint/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

<!-- Served from: www.sytone.com @ 2012-02-07 04:19:40 by W3 Total Cache -->
