Database is up to date, but some sites are not completely upgraded

Sajith Gopalakrishnan Hema 1,226 Reputation points
2021-02-20T08:15:25.393+00:00

My Site is customized a lot and the my site database shows the below error.

Database is up to date, but some sites are not completely upgraded

70272-69591-mysite.png

SharePoint Server Management
SharePoint Server Management
SharePoint Server: A family of Microsoft on-premises document management and storage systems.Management: The act or process of organizing, handling, directing or controlling something.
2,900 questions
0 comments No comments
{count} votes

Accepted answer
  1. Li Zhang_MSFT 1,566 Reputation points
    2021-02-22T08:09:54.277+00:00

    Hi @Sajith Gopalakrishnan Hema ,

    Please try following script to fix database upgrade status:

    Run SharePoint Management Shell as administrator, type following PowerShell:

    Add-PSSnapin Microsoft.SharePoint.PowerShell -ErrorAction SilentlyContinue  
      
    #Set this variable value accordingly  
    $DatabaseName = "content_database_name_here"  
      
    #Get the Database ID  
    $DatabaseID = (Get-SPContentDatabase -identity $DatabaseName).ID  
      
    #Update Content Database  
    Upgrade-SPContentDatabase -id $DatabaseID -Confirm:$false  
    

    Reference:

    https://www.sharepointdiary.com/2014/05/database-is-up-to-date-but-some-sites-are-not-completely-upgraded.html

    Note: Microsoft is providing this information as a convenience to you. The sites are not controlled by Microsoft. Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information found there. Please make sure that you completely understand the risk before retrieving any suggestions from the above link.

    ---------------------------------------------------------------------------------------------------------------------------------------------------------------

    If an Answer is helpful, please click "Accept Answer" and upvote it.
    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.


0 additional answers

Sort by: Most helpful