How to find out when SharePoint upgrades have been done to your farm?
First Do a SQL Query to get the last SharePoint Version, the User, and when the upgrade was done.
Select * from [WSS_Content_<yoursitename>].[dbo].[Versions].[dbo].[Versions]
This can be useful in a pinch, if you want a content database onto a farm that is on a lower hotfix/version. Normally when try to attach a site to the database you will get an error that says something like “cannot attach to this content database…. because the version do not match”. You can edit this value to match the farm. This void’s Microsofts support, so only do it in UAT/Test/Dev environments when you don’t have time or for some other reason cannot update the farm.
Also, a useful link to find out what version you are on:
http://www.sharepointdesignerstepbystep.com/Blog/Articles/How%20To%20find%20the%20SharePoint%20version.aspx
Select * from [WSS_Content_<yoursitename>].[dbo].[Versions].[dbo].[Versions]
This can be useful in a pinch, if you want a content database onto a farm that is on a lower hotfix/version. Normally when try to attach a site to the database you will get an error that says something like “cannot attach to this content database…. because the version do not match”. You can edit this value to match the farm. This void’s Microsofts support, so only do it in UAT/Test/Dev environments when you don’t have time or for some other reason cannot update the farm.
Also, a useful link to find out what version you are on:
http://www.sharepointdesignerstepbystep.com/Blog/Articles/How%20To%20find%20the%20SharePoint%20version.aspx
Comments
Post a Comment