If you’re using the termstore in SharePoint you might know that these data are stored in the managed metadata service application. If you need to change the managed metadata database for this service application, then you can use one easy Powershell Script. I used it in order to migrate the terms from SharePoint 2013 to SharePoint 2019.
$app = Get-SPServiceApplication -name "Managed Metadata Service"
Set-SPMetadataServiceApplication -Identity $app -Databasename "SP19_INT_Managed_Metadata"
Get-SPDatabase -Identity SP19_INT_Managed_Metadata
The article or information provided here represents completely my own personal view & thought. It is recommended to test the content or scripts of the site in the lab, before making use in the production environment & use it completely at your own risk. The articles, scripts, suggestions or tricks published on the site are provided AS-IS with no warranties or guarantees and confers no rights.
Leave a Reply