Upgrading your SharePoint databases
If you look at the “Review database status” page under “Upgrade and Migration” in SharePoint 2010 Central Administration, you may see a message in the status column that says something like “Database in compatibility range and an upgrade is recommended”. To do this you need to run the PowerShell command “Upgrade-SPContentDatabase but to do this you need to get the identity of each database you want to upgrade and run this command for each one. I have numerous clients that have more than one content db, and you may also want to upgrade the Central Admin databases too, so I have written a PowerShell function that takes in the Web Application and upgrades all databases attached to it:
Function UpgradeDatabases($webApp)
{
$web = Get-SPWebApplication -Identity $webApp
foreach($contentDB in $web.ContentDatabases)
{
Upgrade-SPContentDatabase -id $contentDB
}
}
A pretty straight forward function. Below is the ps1 file.
Download UpgradeDatabases file
Disclaimer:
Please read the disclaimer if you plan on using anything from this article.
Great Technical Speaker Tips and Help
I have recently been put on notice, by the powers that be at my company, that I may have to present or co-present at a conference next month. The conference is not a small one, it is Share Conference 2012. This is not a small conference, it is the event for SharePoint in terms of business users. Due to the size and reputation of the conference and the level of quality of the presentations.
So I started to panic, then I realised that I follow one of the best technical presenters currently out there: Scott Hanselman. So I did a quick search of his blog and come up with some real gems. He has also done a video called “The art of speaking” which is published by Tekpub. Below are some links I found to posts he has done.
- Podcast 250 – Professional Technical Speakers Tips from Scott with Drew Robbins
- 11 Top Tips for a Successful Technical Presentation
- Tips for Preparing a Technical Presentation
- Technical Presentations: Be Prepared for Absolute Chaos
- The Art of Speaking: Scott Hanselman (Tekpub video)
- Scott’s site: Presentation Tips and Speaking Hacks
I have found these to be great points of reference, but if there is something not on there or you have a question then just contact Scott, he is always prepared to help people out.
So, hopefully now if I have to present at Share Conference, I will survive.
