It seems you are encountering an error during the upgrade process of SQL Server 2025, specifically related to a null parameter issue. This could be due to several factors, including the presence of Data Quality Services, which you are already addressing with the /IACCEPTDQUNINSTALL parameter.
Here are a few suggestions to troubleshoot this issue:
- Check for Missing Assemblies: The error message you are receiving may indicate that some required assemblies are missing. Ensure that your SQL Server instance has all necessary components installed before the upgrade.
- Review Logs: Although you mentioned that you cannot find the
summary.txtlog, it is crucial to locate it as it may contain detailed information about the error. Check the default installation path for SQL Server logs, typically found inC:\Program Files\Microsoft SQL Server\[InstanceName]\Setup Bootstrap\Log. - Run with Elevated Permissions: Make sure that you are running the command prompt with administrative privileges, as this can sometimes resolve permission-related issues during installation.
- Validate Cluster Configuration: Since you are upgrading in a Failover Cluster setup, ensure that the cluster configuration is valid and that there are no underlying issues with the cluster nodes.
- Use the Correct Command-Line Parameters: Double-check the command-line parameters you are using. Ensure that all parameters are correctly formatted and that there are no typos.
If the problem persists, consider reaching out to Microsoft Customer Support Services for more specialized assistance.
References: