Hi @ChrisEaker ,
Good days, thanks for querying in this forum. We’re happy to help you.
To resolve the upgrade failure in SharePoint 2019 due to SQL owner issues, it's essential to ensure that the account you are using has the appropriate permissions. Specifically, the account should be a member of the db_owner
fixed database role for all SharePoint databases. If the databases have different owners, you may need to standardize the ownership to avoid permission issues during the upgrade process.
Here are some recommended best practices:
- Verify Database Owners: Check the owners of your SharePoint databases and ensure they are consistent. You can use SQL Server Management Studio (SSMS) to view and modify the database owners.
- Set the Correct Owner: If necessary, change the database owner to a service account that has the required permissions. You can do this using the following SQL command:
ALTER AUTHORIZATION ON DATABASE::[YourDatabaseName] TO [YourServiceAccount]
- Ensure Proper Permissions: Make sure that the account used for the upgrade has the
db_owner
role on all relevant databases. This is crucial for the upgrade process to succeed. - Review Upgrade Logs: After making changes, review the upgrade logs for any additional errors or warnings that may indicate further issues.
Following these steps should help you resolve the upgrade failure related to SQL owner permissions.
Reference: Upgrade content databases to SharePoint Server 2019
Hope this helps.
Please do let us know if you have any further queries.
Kindly consider accepting the answer if the information provided is helpful. This can assist other community members in resolving similar issues.