It appears that you're facing an issue while upgrading the encryption for multidimensional analysis services databases in SQL Server 2022. Based on the information you provided I am assuming the following :
First, ensure that you have a proper backup of the database in question. Since the GUI might not be showing the EnsureProperEncryption
option, consider using T-SQL or PowerShell to perform the restore with the required options.
Using SQL Server Management Studio (SSMS), you might write a T-SQL script like this to restore the database with the EnsureProperEncryption
option:
RESTORE DATABASE YourDatabaseName
FROM DISK = 'path_to_your_backup.bak'
WITH EnsureProperEncryption;
Make sure that you have the required permissions to perform the restore operation with the EnsureProperEncryption
option. You might need to be a system admin or have a special role to enable this option.