<?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 SharePoint of View &#187; Enterprise</title>
	<atom:link href="http://mysharepointofview.com/category/enterprise/feed/" rel="self" type="application/rss+xml" />
	<link>http://mysharepointofview.com</link>
	<description>Thoughs from the field in SharePoint land</description>
	<lastBuildDate>Tue, 07 Dec 2010 17:04:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Database statistics timer job &#8211; for good and for bad?</title>
		<link>http://mysharepointofview.com/2010/02/database-statistics-timer-job-for-good-and-for-bad/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=database-statistics-timer-job-for-good-and-for-bad</link>
		<comments>http://mysharepointofview.com/2010/02/database-statistics-timer-job-for-good-and-for-bad/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 12:59:44 +0000</pubDate>
		<dc:creator>Mattias Karlsson</dc:creator>
				<category><![CDATA[Enterprise]]></category>
		<category><![CDATA[Operation]]></category>
		<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[MOSS]]></category>
		<category><![CDATA[SP2]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[Timer Job]]></category>
		<category><![CDATA[WSS]]></category>

		<guid isPermaLink="false">http://mysharepointofview.com/?p=754</guid>
		<description><![CDATA[When SP2 was released almost a year ago there was an update to the Database Statistics Job. What was updated was a rebuild of the database reindex. This was introduced as one of the main improvements in the SP2 and it is. But in some cases the job might not always be as good as it [...]]]></description>
			<content:encoded><![CDATA[<p>When SP2 was released almost a year ago there was an update to the Database Statistics Job. What was updated was a rebuild of the database reindex. This was introduced as one of the main improvements in the SP2 and it is. But in some cases the job might not always be as good as it sounds for your environment.</p>
<p>The reason for that is that the rebuild of the index is quite aggressive in it&#8217;s nature and does not have any logic built in to it. It simply rebuilds the whole index daily.</p>
<p>If you look at the information from Microsoft at technet (<a href="http://technet.microsoft.com/en-us/library/cc678870.aspx"><em>http://technet.microsoft.com/en-us/library/cc678870.aspx</em></a>) about the job it says:</p>
<p><em>If you have installed Office SharePoint Server 2007 with SP2:</em></p>
<ul>
<li><em>The job updates the query optimization statistics by sampling key tables every time that it runs, instead of performing a full scan.</em></li>
<li><em>If you are running SQL Server 2005 or SQL Server 2008, the job rebuilds all indexes in the content databases every time that it runs.</em></li>
<li><em>If you are running an Enterprise edition of SQL Server 2005 or SQL Server 2008, the job rebuilds most indexes online.</em></li>
<li><em>If you are running a Standard edition of SQL Server 2005 or SQL Server 2008, the job rebuilds the indexes offline.</em></li>
<li><em>If you are running SQL Server 2000, the job does not rebuild any indexes.</em></li>
</ul>
<p>It actually also specifies that the job should only run weekly if you are running MOSS and daily if your using WSS. I assume that this is just a mistake in the documentation because in all environments I looked in it&#8217;s set to daily no matter if you are using Moss or WSS with SP2.</p>
<p>So what happens if you have a large environment where your have backups, or maybe a crawl running at the same time. Or maybe your SQL DBA&#8217;s have done their job and have their own reindex and update statistics job put directly in SQL? Well, you could run in to performance problems and extreme slow environments together with backups taking longer time then they should, error messages and maybe even corrupt databases. The later I have not seen but potentially it&#8217;s possible.</p>
<p>I&#8217;m not saying that bad things will happen to your environment with this job, but more of be aware and have a look at how this is configured in your environment. Maybe you should reschedule it if it&#8217;s in conflict with any other SQL job. And if you are not the SQL DBA talk to the DBAs and make sure that they don&#8217;t have any similar already in place. If they have, is it better with built in logic where they look at the fragmentation level? Then maybe you should disable the SharePoint Timer Job and only run the job put on the SQL server.</p>
<p>If you want to find out what settings you have you could first look in Central <a href="http://mysharepointofview.com/wp-content/uploads/2010/02/GlobalConfiguration.jpg"><img class="size-full wp-image-758 alignright" style="margin: 10px;" title="GlobalConfiguration" src="http://mysharepointofview.com/wp-content/uploads/2010/02/GlobalConfiguration.jpg" alt="" width="142" height="74" /></a>Administration. You have one Database Statistics job for each Web Application and you can see that under Operations and Timer Job Status. In the Timer Job Definition, found at the same place in Central administration, you can see if the job is run weekly or daily.<br />
The best  way is however to use STSADM or <a href="http://technet.microsoft.com/en-us/library/dd745013.aspx" target="_self">SPDiag</a> to get the information on when it&#8217;s scheduled. To reschedule jobs you need to use STSADM.</p>
<p>This is how you get the settings you have using STSADM:</p>
<p><em>stsadm -o getproperty -pn job-database-statistics -url <a href="http://YourSPSite">http://YourSPSite</a></em></p>
<p>And to set a new value you do like this:</p>
<p><em>stsadm -o setproperty -pn job-database-statistics -pv &#8220;Weekly between Fri 22:00:00 and Sun 06:00:00&#8243; -url <a href="http://YourSPSite">http://YourSPSite</a></em></p>
<p>Here you have the STSADM reference for this particular task: <a href="http://technet.microsoft.com/en-us/library/cc424963.aspx">http://technet.microsoft.com/en-us/library/cc424963.aspx</a></p>
]]></content:encoded>
			<wfw:commentRss>http://mysharepointofview.com/2010/02/database-statistics-timer-job-for-good-and-for-bad/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Governance Planning and Implementation</title>
		<link>http://mysharepointofview.com/2009/10/governance-planning-and-implementation/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=governance-planning-and-implementation</link>
		<comments>http://mysharepointofview.com/2009/10/governance-planning-and-implementation/#comments</comments>
		<pubDate>Wed, 21 Oct 2009 18:38:31 +0000</pubDate>
		<dc:creator>Mattias Karlsson</dc:creator>
				<category><![CDATA[Enterprise]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Governance]]></category>
		<category><![CDATA[SharePoint 2010]]></category>
		<category><![CDATA[SharePoint Conference 2009]]></category>

		<guid isPermaLink="false">http://mysharepointofview.com/?p=646</guid>
		<description><![CDATA[This morning I listened to a session called: SharePoint 2010 Governance: Planning and Implementation with Scott Jamison and Susan Hanley. It was a good session but for all of you that has read a lot about Governance it was not that much new. It is however a very important part of an implementation and the say [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://mysharepointofview.com/wp-content/uploads/2009/10/IMG_3795.JPG"><img class="size-thumbnail wp-image-632 alignright" title="IMG_3795" src="http://mysharepointofview.com/wp-content/uploads/2009/10/IMG_3795-150x150.jpg" alt="IMG_3795" width="150" height="150" /></a></p>
<p>This morning I listened to a session called: SharePoint 2010 Governance: Planning and Implementation with Scott Jamison and Susan Hanley. It was a good session but for all of you that has read a lot about Governance it was not that much new. It is however a very important part of an implementation and the say that 20% of an implementation is techniqe. What will be new and that needs to be handled specifically in 2010 deployments is the handling of search, key words and social tagging.</p>
<p>They had a lot of full slides so I put some pictures here for this session:</p>
<p><a href="http://mysharepointofview.com/wp-content/uploads/2009/10/IMG_3796.JPG"><img class="alignnone size-thumbnail wp-image-633" title="IMG_3796" src="http://mysharepointofview.com/wp-content/uploads/2009/10/IMG_3796-150x150.jpg" alt="IMG_3796" width="150" height="150" /></a> <a href="http://mysharepointofview.com/wp-content/uploads/2009/10/IMG_3797.JPG"><img class="alignnone size-thumbnail wp-image-634" title="IMG_3797" src="http://mysharepointofview.com/wp-content/uploads/2009/10/IMG_3797-150x150.jpg" alt="IMG_3797" width="150" height="150" /></a> <a href="http://mysharepointofview.com/wp-content/uploads/2009/10/IMG_3798.JPG"><img class="alignnone size-thumbnail wp-image-635" title="IMG_3798" src="http://mysharepointofview.com/wp-content/uploads/2009/10/IMG_3798-150x150.jpg" alt="IMG_3798" width="150" height="150" /></a> <a href="http://mysharepointofview.com/wp-content/uploads/2009/10/IMG_3799.JPG"><img class="alignnone size-thumbnail wp-image-636" title="IMG_3799" src="http://mysharepointofview.com/wp-content/uploads/2009/10/IMG_3799-150x150.jpg" alt="IMG_3799" width="150" height="150" /></a>  <a href="http://mysharepointofview.com/wp-content/uploads/2009/10/IMG_3800.JPG"><img class="alignnone size-thumbnail wp-image-637" title="IMG_3800" src="http://mysharepointofview.com/wp-content/uploads/2009/10/IMG_3800-150x150.jpg" alt="IMG_3800" width="150" height="150" /></a> <a href="http://mysharepointofview.com/wp-content/uploads/2009/10/IMG_3801.JPG"><img class="alignnone size-thumbnail wp-image-638" title="IMG_3801" src="http://mysharepointofview.com/wp-content/uploads/2009/10/IMG_3801-150x150.jpg" alt="IMG_3801" width="150" height="150" /></a> <a href="http://mysharepointofview.com/wp-content/uploads/2009/10/IMG_3802.JPG"><img class="alignnone size-thumbnail wp-image-639" title="IMG_3802" src="http://mysharepointofview.com/wp-content/uploads/2009/10/IMG_3802-150x150.jpg" alt="IMG_3802" width="150" height="150" /></a> <a href="http://mysharepointofview.com/wp-content/uploads/2009/10/IMG_3803.JPG"><img class="alignnone size-thumbnail wp-image-640" title="IMG_3803" src="http://mysharepointofview.com/wp-content/uploads/2009/10/IMG_3803-150x150.jpg" alt="IMG_3803" width="150" height="150" /></a> <a href="http://mysharepointofview.com/wp-content/uploads/2009/10/IMG_3804.JPG"><img class="alignnone size-thumbnail wp-image-641" title="IMG_3804" src="http://mysharepointofview.com/wp-content/uploads/2009/10/IMG_3804-150x150.jpg" alt="IMG_3804" width="150" height="150" /></a> <a href="http://mysharepointofview.com/wp-content/uploads/2009/10/IMG_3805.JPG"><img class="alignnone size-thumbnail wp-image-642" title="IMG_3805" src="http://mysharepointofview.com/wp-content/uploads/2009/10/IMG_3805-150x150.jpg" alt="IMG_3805" width="150" height="150" /></a> <a href="http://mysharepointofview.com/wp-content/uploads/2009/10/IMG_3806.JPG"><img class="alignnone size-thumbnail wp-image-643" title="IMG_3806" src="http://mysharepointofview.com/wp-content/uploads/2009/10/IMG_3806-150x150.jpg" alt="IMG_3806" width="150" height="150" /></a> <a href="http://mysharepointofview.com/wp-content/uploads/2009/10/IMG_3807.JPG"><img class="alignnone size-thumbnail wp-image-644" title="IMG_3807" src="http://mysharepointofview.com/wp-content/uploads/2009/10/IMG_3807-150x150.jpg" alt="IMG_3807" width="150" height="150" /></a> <a href="http://mysharepointofview.com/wp-content/uploads/2009/10/IMG_3808.JPG"><img class="alignnone size-thumbnail wp-image-645" title="IMG_3808" src="http://mysharepointofview.com/wp-content/uploads/2009/10/IMG_3808-150x150.jpg" alt="IMG_3808" width="150" height="150" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://mysharepointofview.com/2009/10/governance-planning-and-implementation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SharePoint Software limitations</title>
		<link>http://mysharepointofview.com/2009/09/sharepoint-software-limitations/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=sharepoint-software-limitations</link>
		<comments>http://mysharepointofview.com/2009/09/sharepoint-software-limitations/#comments</comments>
		<pubDate>Tue, 22 Sep 2009 19:19:43 +0000</pubDate>
		<dc:creator>Mattias Karlsson</dc:creator>
				<category><![CDATA[Enterprise]]></category>
		<category><![CDATA[Limitations]]></category>

		<guid isPermaLink="false">http://mysharepointofview.com/?p=518</guid>
		<description><![CDATA[Recently I discussed the software limitations within SharePoint with a Microsoft technician and he reminded me about this great Technet article that I almost had forgot about or looked at for quite some time: http://technet.microsoft.com/en-us/library/cc262787.aspx If you have not seen it before I recommend you to read it. It&#8217;s worth a look each time you [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I discussed the software limitations within SharePoint with a Microsoft technician and he reminded me about this great Technet article that I almost had forgot about or looked at for quite some time:</p>
<p><a href="http://technet.microsoft.com/en-us/library/cc262787.aspx">http://technet.microsoft.com/en-us/library/cc262787.aspx</a></p>
<p>If you have not seen it before I recommend you to read it. It&#8217;s worth a look each time you design a new environment. I especially like the diagrams MS have made for us.</p>
]]></content:encoded>
			<wfw:commentRss>http://mysharepointofview.com/2009/09/sharepoint-software-limitations/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Problem creating My Site</title>
		<link>http://mysharepointofview.com/2009/08/problem-creating-my-site/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=problem-creating-my-site</link>
		<comments>http://mysharepointofview.com/2009/08/problem-creating-my-site/#comments</comments>
		<pubDate>Fri, 21 Aug 2009 06:46:21 +0000</pubDate>
		<dc:creator>Mattias Karlsson</dc:creator>
				<category><![CDATA[Enterprise]]></category>
		<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[AD]]></category>
		<category><![CDATA[MOSS]]></category>
		<category><![CDATA[My site]]></category>
		<category><![CDATA[Policy]]></category>

		<guid isPermaLink="false">http://mysharepointofview.com/?p=433</guid>
		<description><![CDATA[Have you ever received the error message: There has been an error creating the personal site. Contact your site administrator for more information. when you open up My Site for the first time? I have heard about this before and also read the solution (for instance found here). This is usually related to permissions not [...]]]></description>
			<content:encoded><![CDATA[<p>Have you ever received the error message:</p>
<p>There has been an error creating the personal site. Contact your site administrator for more information.</p>
<p>when you open up My Site for the first time? I have heard about this before and also read the solution (for instance found <a href="http://social.technet.microsoft.com/Forums/en-US/sharepointsocialcomputing/thread/c731ce02-f219-4356-985b-baf83a475c28" target="_blank">here</a>). This is usually related to permissions not set up the right way but the other day I found out that it can happen during other circumstances. It&#8217;s likely that you will not get it but I thought that it would be good to share the knowledge.</p>
<p>The strange thing this time was that it only happened to one user and not everyone. That indicates that it&#8217;s not a permission problem, or most likely not.</p>
<p>I looked in the SSP and the user was imported in the profile import and the info from the AD was there. I decided to delete the site collection and found out that there was already another My Site Site collection there but with another name. It turns out that a former employee had the same AD account name. The account had been deleted from the AD since it was a long time ago but the My Site was still there. So SharePoint were not able to create the My Site because it already had Site Collection with that name.</p>
<p>Lesson learned. An updated routine for when deleting AD accounts on former employees. Best practise would be to never delete AD accounts in terms of traceability but it might also be a good thing to have a policy for how long My Sites should be stored. A suggestion is to have a retention period for when you delete the content and then have a Custom Property connected to AD where you manage the employment status like “full time”, “contractor”, “Parental leave” and Left the company yy-mm-dd etc.</p>
]]></content:encoded>
			<wfw:commentRss>http://mysharepointofview.com/2009/08/problem-creating-my-site/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>SharePoint part of the common infrastructure</title>
		<link>http://mysharepointofview.com/2009/08/sharepoint-part-of-the-common-infrastructure/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=sharepoint-part-of-the-common-infrastructure</link>
		<comments>http://mysharepointofview.com/2009/08/sharepoint-part-of-the-common-infrastructure/#comments</comments>
		<pubDate>Wed, 19 Aug 2009 07:02:43 +0000</pubDate>
		<dc:creator>Mattias Karlsson</dc:creator>
				<category><![CDATA[Enterprise]]></category>
		<category><![CDATA[Gartner]]></category>
		<category><![CDATA[Joel Oleson]]></category>
		<category><![CDATA[SharePoint 2010]]></category>
		<category><![CDATA[Zipper]]></category>

		<guid isPermaLink="false">http://mysharepointofview.com/?p=416</guid>
		<description><![CDATA[Back from vacation, and it&#8217;s been lovely with a couple of weeks of. On in beautiful Italy, a couple of days in Copenhagen and a trip to southern Sweden, all together that makes it actually quite good to be back. And since we will have a very exiting and interesting autumn with the SharePoint Conference [...]]]></description>
			<content:encoded><![CDATA[<p>Back from vacation, and it&#8217;s been lovely with a couple of weeks of. On in beautiful Italy, a couple of days in Copenhagen and a trip to southern Sweden, all together that makes it actually quite good to be back. And since we will have a very exiting and interesting autumn with the SharePoint Conference in October as the guiding star, I’m actually happy to be back.</p>
<p>Two weeks ago Joel Oleson wrote an excellent post about &#8220;<a href="http://www.sharepointjoel.com/Lists/Posts/Post.aspx?ID=246" target="_blank">SharePoint is Now core enterprise infrastructure</a>&#8220;. This post is about the same topic and is a translation of a chronicle I wrote in Swedish for zipper.se.</p>
<p>During the summer, the Technical Preview of next SharePoint version, SharePoint 2010 and SharePoint Server 2010 was released to TAP (Technology Adoption Program) members and MVP:s.</p>
<p>In October during the SharePoint Conference in Las Vegas a public beta will be available, but there is already a lot of buzz going on and a huge interest in what it will contain.</p>
<p>On the other hand, I often talk to customers that are quite sceptic and somewhat tired of the hole thing. This is often since they believe that it&#8217;s first now, after the SP2 (released during the spring) they have got stable environment. -&#8221;When we now finally have a stable environment and are finished with our migration, it&#8217;s time to start all over again.&#8221;</p>
<p>There are three interesting things about such a comment. The first thing is that SharePoint 2010 will not be released until the first half of 2010 (hopefully beginning of Q2), this means that if you have a very large environment you are probably not one of those early adopters and might not do any upgrade until the first Service Pack and that will probably be in 2011 (my own speculations).</p>
<p>So from that point of view you don&#8217;t have to stress and can just follow the info being released on what will be shipped with the next version.</p>
<p>However it is very likely that what you see will make you want to upgrade and that fast, because it will be very easy to build new business cases around the new features it contains. In Addition to that, a migration or upgrade will cause much less pain this time then when we moved from Version 2 to version 3.</p>
<p>The third and maybe the most interesting from a SharePoint product point of view is that an upgrade to SharePoint 2010 is taken for granted and seen as mandatory in such a comment. Collaboration platforms, whether it is SharePoint or not is now something that is taken for granted in the same way as the operating system, emails and Office applications.</p>
<p>There are Gartner reports that show that companies often upgrade their Office application to each new version but when it comes to operating systems they tend to more often skip one version. There are of course many different reasons for that, one is that a client migration is a more complex task then upgrading the Office Application. But if an upgrade to SharePoint 2010 is taken for granted, doesn&#8217;t that mean that collaboration platforms and in particular SharePoint is a part of the common IT infrastructure?</p>
<p>I very much agree with Joel Oleson that it is! But that also means that SharePoint should be seen, and managed as a part of the common IT infrastructure. If you have departments/groups that handle, policies, roadmaps and other stakeholder groups and forums to manage you client, well, then it’s time to start build your organization to support the latest kid in the family.</p>
]]></content:encoded>
			<wfw:commentRss>http://mysharepointofview.com/2009/08/sharepoint-part-of-the-common-infrastructure/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>5 things running Marathon and implementing SharePoint has in common</title>
		<link>http://mysharepointofview.com/2009/06/5-things-running-marathon-and-implementing-sharepoint-has-in-common/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=5-things-running-marathon-and-implementing-sharepoint-has-in-common</link>
		<comments>http://mysharepointofview.com/2009/06/5-things-running-marathon-and-implementing-sharepoint-has-in-common/#comments</comments>
		<pubDate>Thu, 18 Jun 2009 17:00:29 +0000</pubDate>
		<dc:creator>Mattias Karlsson</dc:creator>
				<category><![CDATA[Enterprise]]></category>
		<category><![CDATA[Fivelist]]></category>
		<category><![CDATA[Implementation]]></category>
		<category><![CDATA[Running for 2010]]></category>
		<category><![CDATA[SharePoint 2010]]></category>
		<category><![CDATA[Training]]></category>

		<guid isPermaLink="false">http://mysharepointofview.com/?p=335</guid>
		<description><![CDATA[I did something stupid today, some might even say idiotic. I registered for Stockholm Marathon 2010! It is part of a long-term plan were NY Marathon is the goal and dream I had for quite some time. I should say that I do run quite much but the longest races has so fare only been [...]]]></description>
			<content:encoded><![CDATA[<p>I did something stupid today, some might even say idiotic. I registered for Stockholm Marathon 2010! It is part of a long-term plan were NY Marathon is the goal and dream I had for quite some time. I should say that I do run quite much but the longest races has so fare only been a couple half-marathons. I&#8217;m quite sure you will here more from be about this and I&#8217;m planning to do a &#8220;Running for 2010&#8243; thing, where SharePoint 2010 will be a part of the program.<br />
For now, I will post a new Fivelist with 5 things running a marathon and implementing SharePoint has in common.</p>
<p><strong>Decision/Business Case</strong><br />
42 km is quite long and for me it&#8217;s a milestone to achieve the NY Marathon. When you start consider to implement SharePoint within your company or organization you should ask yourself why. I know a million reasons were SharePoint can increase productivity and where SharePoint will do good for the Information Workers, but the question is do you. What do you want to achive and I&#8217;m not saying this in a negative tone. Start with one thing where you want to use SharePoint and go from there. My goal is not winning the Marathon, your goal should not be using all of the SharePoint functionalities from day one and it simply doesn&#8217;t work.<br />
<strong>Equipment/Team</strong><br />
At least in Sweden running has become very popular during the last couple of years, this have made the sport more of a equipment sport with lightweight shoes, Gore-tex jackets and GPS watches. Well a GPS-watch will probably not do the implement of SharePoint for you but you certainly need a good team and hardware to do the job. Make sure you have a mixture of people with different knowledge. You will not only have SharePoint knowledge, invite someone from the SQL group, the AD and exchange guys and not to forget, people from the business, someone that knows what the business need.<br />
<strong>Exercise/Testing</strong><br />
Running a marathon will not be like running to a meeting. I will probably need to do a +1000 km within the next year to be able to finish within a reasonable time. When you set up a SharePoint environment you will need to do a lot of testing, in most of the cases the setup includes some custom web part or workflow. Test again and again. If you plan for using it on many sites, test on many sites. The result will look the same if you use it on 1000 sites as it does on your small test site. If you have a lot of users you will need to do a lot of performance tests. They say that you never get a second change to make a first impression, well, if you launch day makes the server crash or act slow your installation will be synonym with bad things for a long time.<br />
<strong>Preparations/Training<br />
</strong>When the marathon (May 30, 2010) is around the corner I will need to plan my weeks, not only with the exercise but with food and sleep. In the same way you need to prepare your end users with training. I have a separate Fivelist regarding end user training. Make sure they know how to use the system, do you have different end user groups like editors and site collection owners make sure they know their responsibility.<br />
<strong>Run/Implement</strong><br />
One of the most common mistake people do when running is to start too fast. Plan your run, calculate what time you are aiming for and keep track of you progress through the kilometres. Like the Decision/business case don&#8217;t go forward too fast. It takes time to incorporate SharePoint within business and to replace tools earlier used in day-to-day activities, so plan your implementation, talk to the business during the journey and don&#8217;t push it to fast, that could cause you to not finish the lap at all.</p>
]]></content:encoded>
			<wfw:commentRss>http://mysharepointofview.com/2009/06/5-things-running-marathon-and-implementing-sharepoint-has-in-common/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>5 ways to secure you SharePoint environment</title>
		<link>http://mysharepointofview.com/2009/02/5-ways-to-secure-you-sharepoint-environment/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=5-ways-to-secure-you-sharepoint-environment</link>
		<comments>http://mysharepointofview.com/2009/02/5-ways-to-secure-you-sharepoint-environment/#comments</comments>
		<pubDate>Mon, 09 Feb 2009 21:49:43 +0000</pubDate>
		<dc:creator>Mattias Karlsson</dc:creator>
				<category><![CDATA[Enterprise]]></category>
		<category><![CDATA[Fivelist]]></category>
		<category><![CDATA[Governance]]></category>
		<category><![CDATA[MOSS]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">http://mysharepointofview.com/?p=161</guid>
		<description><![CDATA[Today I read an article on the CIO Sweden website (http://cio.idg.se/2.1782/1.210276/trend-micro-varnar-for-sakerhetsrisker-med-sharepoint) about that Trend Micro is warning for security risks with SharePoint. I agree with Kudret Karan, at Trend Micro that SharePoint sometimes if forgotten when it comes to secure the company network and its information. If you read my blog before you know that [...]]]></description>
			<content:encoded><![CDATA[<p>Today I read an article on the CIO Sweden website (<a href="http://cio.idg.se/2.1782/1.210276/trend-micro-varnar-for-sakerhetsrisker-med-sharepoint">http://cio.idg.se/2.1782/1.210276/trend-micro-varnar-for-sakerhetsrisker-med-sharepoint</a>) about that Trend Micro is warning for security risks with SharePoint. I agree with Kudret Karan, at Trend Micro that SharePoint sometimes if forgotten when it comes to secure the company network and its information. If you read my blog before you know that I have talked about the importance of proper governance and I would say that much of this actually falls back on this as well.</p>
<p>It should however be clear that this is not about security holes in SharePoint but rather a question about architecture and security pitfalls. Because, if you plan your deployment well, you can secure you Environment quite easy.  Here are 5 things to consider when securing SharePoint.</p>
<p><strong>Antivirus<br />
</strong>Even if you have antivirus software on your clients and servers you should seriously consider to install an antivirus software on your SharePoint Servers. Every well known antivirus software vendor has a version for SharePoint today. I have used Microsoft Forefront a couple of times and it works perfect. What&#8217;s also good with this one is that if you have enterprise CAL&#8217;s you probably have this already in some kind of SA agreement or likewise. <strong></strong></p>
<p><strong>Allowed file types<br />
</strong>From the Central Administration you can set up what kind of files are allowed to upload or not. By default file types like .exe and .bat is not allowed but you should review this list so that it match your policies.</p>
<p><strong>Secure external access</strong><br />
If your SharePoint environment is available to your end users via an extranet, you should really make sure that it&#8217;s properly secured. The most classified information you have should not be stored in an environment that is accessible from internet at all. If you have information that you want to have accessible from internet you should look in to Zones and proper set up of your Web applications to secure your environment.</p>
<p><strong>Security Review<br />
</strong>One thing that is missing out of the box in both WSS and Moss is a good way to do a security review. You should in you governance plan have at least an annual security review. There are a couple of tools available and it might be fairly easy to build something that might work for a smaller set up. In a coming post I will talk about Sushi, a codeplex project that could get you started.</p>
<p><strong>IRM (Information Rights Management)<br />
</strong>Finally I would like to mention the IRM. It&#8217;s not anything that protects you from viruses or threats but it helps you secure the content and even if your environment is only accessible from inside, you might want to secure some high confidential information with IRM. In that way you can encrypt the information with RSA 1024 bit encryption and you can then decide what the reader can do with the document e.g. save it, print it, forward it etc.</p>
]]></content:encoded>
			<wfw:commentRss>http://mysharepointofview.com/2009/02/5-ways-to-secure-you-sharepoint-environment/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>PerformancePoint will be Part of SharePoint</title>
		<link>http://mysharepointofview.com/2009/01/performancepoint-will-be-part-of-sharepoint/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=performancepoint-will-be-part-of-sharepoint</link>
		<comments>http://mysharepointofview.com/2009/01/performancepoint-will-be-part-of-sharepoint/#comments</comments>
		<pubDate>Fri, 30 Jan 2009 16:00:31 +0000</pubDate>
		<dc:creator>Mattias Karlsson</dc:creator>
				<category><![CDATA[Enterprise]]></category>
		<category><![CDATA[BI]]></category>
		<category><![CDATA[MOSS]]></category>
		<category><![CDATA[PerformancePoint]]></category>

		<guid isPermaLink="false">http://mattiaskarlsson.wordpress.com/?p=111</guid>
		<description><![CDATA[This week Microsoft announced that there will be no SP2 for the PerformancePoint Server and that it will be an integrated part of coming MOSS. They Also announced that it will be a part of the the SharePoint Enterprise CAL or available for customers with SharePoint SA. Everyone that has worked with the KPI&#8217;s in [...]]]></description>
			<content:encoded><![CDATA[<p>This week Microsoft announced that there will be no SP2 for the PerformancePoint Server and that it will be an integrated part of coming MOSS. They Also announced that it will be a part of the the SharePoint Enterprise CAL or available for customers with SharePoint SA.</p>
<p>Everyone that has worked with the KPI&#8217;s in Moss knows that it has a lot of limitations so this comes a really great news. We can now look forward to a better and more complete BI product in the &#8220;SharePoint 14&#8243; (in lack of other name for it) version.</p>
<p>I will in a coming post write about the capabilities that PerformancePoint and MOSS offers so stay tuned.</p>
<p>Microsoft article: <a href="http://www.microsoft.com/presspass/features/2009/jan09/01-27KurtDelbeneQA.mspx">http://www.microsoft.com/presspass/features/2009/jan09/01-27KurtDelbeneQA.mspx</a></p>
<p>Swedish IDG news article:  <a href="http://www.idg.se/2.1085/1.208802/microsoft-andrar-strategi-for-beslutsstod">http://www.idg.se/2.1085/1.208802/microsoft-andrar-strategi-for-beslutsstod</a></p>
]]></content:encoded>
			<wfw:commentRss>http://mysharepointofview.com/2009/01/performancepoint-will-be-part-of-sharepoint/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>5 steps to a successful SharePoint deployment</title>
		<link>http://mysharepointofview.com/2009/01/5-steps-to-a-successful-sharepoint-deployment/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=5-steps-to-a-successful-sharepoint-deployment</link>
		<comments>http://mysharepointofview.com/2009/01/5-steps-to-a-successful-sharepoint-deployment/#comments</comments>
		<pubDate>Mon, 05 Jan 2009 12:44:43 +0000</pubDate>
		<dc:creator>Mattias Karlsson</dc:creator>
				<category><![CDATA[Enterprise]]></category>
		<category><![CDATA[Education]]></category>
		<category><![CDATA[Fivelist]]></category>
		<category><![CDATA[Governance]]></category>
		<category><![CDATA[Implementation]]></category>
		<category><![CDATA[MOSS]]></category>
		<category><![CDATA[Navigation]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Structure]]></category>
		<category><![CDATA[Taxonomy]]></category>

		<guid isPermaLink="false">http://mattiaskarlsson.wordpress.com/?p=65</guid>
		<description><![CDATA[ I recently read an article about the difficulties in implementing SharePoint and thought that I should share some of my experience on what to consider and what I think are the key success factors in a Successful SharePoint implementation. If you have thoughts and findings on the subject I would love to hear about them. [...]]]></description>
			<content:encoded><![CDATA[<p> I recently read an article about the difficulties in implementing SharePoint and thought that I should share some of my experience on what to consider and what I think are the key success factors in a Successful SharePoint implementation.</p>
<p>If you have thoughts and findings on the subject I would love to hear about them.<strong></strong></p>
<p><strong>Think big, start small</strong><br />
I have written about it before, SharePoint is a huge platform with endless of possibilities, but all the possibilities often tends to be SharePoint&#8217;s biggest opponent. Don&#8217;t try to implement everything at the same time, that will lead to that your project never will be finished. Find out what&#8217;s most important, what does the business crave for? What is the most urgent issue? If you can start solving that you will not only take the first step towards a successful deployment but you will also make it easier to get &#8220;buy-in&#8221; from your end users with your next step in you bigger implementation. So start small and build from there.</p>
<p><strong>Education and Communication</strong><br />
Microsoft are very good at making user friendly application but SharePoint is not that easy to everyone. Maybe your end users can figure out how to upload a document but to really gain anything from you SharePoint implementation you need to educate them with more than just uploading documents. You need to introduce them to the navigation, to views, version history, the importance of metadata, search and what and where to store their information. You should also consider having a role based education since there will be employees with different roles. Some will only contribute and use information, others will be site or site collection owners and need a broader education.</p>
<p>But education is not the only thing that needs to be handled, you also need to put a lot of effort in communicating you implementation. Why, What, Who, When? There are a lot of questions that could lead to resistance among the end users if they are answered. If the end users are not on the same page, understands the importance of the implementation and what is expected from them they will not likely be interested in start using SharePoint.</p>
<p>So, build your education in modules and create a communication plan!</p>
<p><strong>Governance, roles and responsibility</strong><strong><br />
</strong>It is probably the biggest buzzword in the SharePoint community right now but there is a reason for why there is so much talk about it. As I mentioned in the first section SharePoint offers a lot of possibilities and SharePoint is built in such a way that much of the customization and in some way the administration are handled by the business itself. If there is no group (Governance) that can close the gap between IT and the business needs, set up roles, responsibilities, best practices and so forth you will end up in chaos.<br />
There is unfortunately no predefined way or magic trick to put up a successful Governance group since every business is unique and has different company structure. But start small, include people from the different business units, IT and the Communication department. You should probably don&#8217;t have much more than 10 people, meet often in the beginning to set the framework and go on from there.</p>
<p><strong>Structure, navigation and Taxonomy</strong><strong><br />
</strong>If your end users don&#8217;t know where to store or find information you probably need to rethink your structure. It has to be easy to find and navigate through your SharePoint Environment. Organizations tend to change over time so prepare for changes in the business structure. Before you start migrating documents into your environment, investigate what kind of information you are using today. From that, build up a taxonomy structure with Content Types and Site Columns. If your company has problems with Office templates not being used correctly or wrongly (or you don&#8217;t have any at all), take the opportunity to clean that up and to put templates to your Content Types. When you educate the sales people about how easy it is to start creating a new contract or sales order built on the correct Office Template they will be thrilled! Well, maybe not the sales people but everyone else will&#8230;</p>
<p><strong>Architect and create services for you business</strong><strong><br />
</strong>SharePoint is vary scalable and I will therefore not talk about how to set up your environment, just make sure that you have room for scaling up or scaling out.<br />
If you have built up an intranet portal maybe the intranet part should be more strictly controlled and then you set up a separate &#8220;play ground&#8221; for collaboration between teams with team sites and meeting workspaces. You should also consider having this delivered as services to your business units. Maybe they have different demands on up time, availability, security, storage etc. Therefore you might create different SLAs to meet those needs.</p>
]]></content:encoded>
			<wfw:commentRss>http://mysharepointofview.com/2009/01/5-steps-to-a-successful-sharepoint-deployment/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>What&#8217;s the Point?</title>
		<link>http://mysharepointofview.com/2008/12/whats-the-point/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=whats-the-point</link>
		<comments>http://mysharepointofview.com/2008/12/whats-the-point/#comments</comments>
		<pubDate>Mon, 22 Dec 2008 14:51:55 +0000</pubDate>
		<dc:creator>Mattias Karlsson</dc:creator>
				<category><![CDATA[Enterprise]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Governance]]></category>
		<category><![CDATA[Implementation]]></category>
		<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">http://mattiaskarlsson.wordpress.com/?p=23</guid>
		<description><![CDATA[This is a translation/cross-posting from my chronicle at zipper.se SharePoint is, as you might know, the fastest growing server product in the history of Microsoft, but still, I very often get the question from customers: What shall we use SharePoint for? The question is as justified as correct put. Why should we use SharePoint? What&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>This is a translation/cross-posting from my chronicle at zipper.se<br />
SharePoint is, as you might know, the fastest growing server product in the history of Microsoft, but still, I very often get the question from customers: What shall we use SharePoint for? The question is as justified as correct put. Why should we use SharePoint? What&#8217;s the business use?</p>
<p>Let&#8217;s skip the tech-talk for a while, after all the technique is not the tricky part here (or am I just getting spoiled from all great tech-guys that solves all the tricky things for me?)</p>
<p>One of SharePoint&#8217;s strengths tends often to be its weakness. What I mean is that SharePoint as a platform offers so many different possibilities that the business (or IT for that matter) doesn&#8217;t know where to start. By experience, I&#8217;m fully convinced that in more or less every department within a company, no matter what kind of business or size, can improve processes, routines or their way of working with help from a solution built on SharePoint and by that increase the productivity. Because that&#8217;s what it&#8217;s all about. Increased productivity.</p>
<p>When the IT department decides to change from Windows XP to Windows Vista or to upgrade the Office suite t 2007, the business case is often built on, more secured and stable environment, standardizing or the maintenance agreement from Microsoft or third-party vendors is about to end. But it&#8217;s very unusually built on better productivity for the Information Workers, people like you and me.</p>
<p>So, how can SharePoint contribute to increased productivity?<br />
That&#8217;s a question with many answers. The first thing we need to do is to listen to the business and understand what causes frustration in their daily work and after that we can look at how best use SharePoint to support their needs.<br />
Is it simpler sharing and access to information or the document management that needs to be better, is it a place to collaborate in projects and work with task lists, calendars and issue tracking? Is it an intranet or extranet solution with possibilities to approve the information with an automated workflow process before it&#8217;s released? Maybe the search needs to be improved?</p>
<p>There are surveys that indicates that Information Workers spend as much as 9 hours a week to search for the right information and that 75% of the information is semi or completely unstructured. This is where the productivity can be improved, but the business needs help. They need help to shape their SharePoint environment so that it supports their needs and this is where it so often fails.</p>
<p>What happens is that it creates a gap between IT and the Information Workers. SharePoint is a relatively easy to learn as end user but what&#8217;s needed is a common way of working, an overall structure and guideline for how to work with and use the SharePoint environment.</p>
<p>The gap has to be closed and the solution is spelled Governance. A governance function needs to be involved from day on if not your implementation should end up in the same information and structure chaos that you came from.<br />
Another common mistake when implementing a collaboration platform like SharePoint is that the implementation project is compared with how you implement a new application or roll out a new standard client. It does not necessarily have to be more difficult but it is a couple of different questions that needs to be handled. But whenever that is done there is no end to the possibilities, the productivity and the quality will increase.</p>
<p>Hopefully we will see a first beta of the next SharePoint during the end of the first quarter next year. What happens then is left to find out but SharePoint is for sure here to stay.</p>
]]></content:encoded>
			<wfw:commentRss>http://mysharepointofview.com/2008/12/whats-the-point/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

