Hi @SGH ,
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:
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.