SQl Services not starting after installing CU3 on SQL 2025

Abhishek Gaddam 0 Reputation points
2026-08-26T09:31:21.2866667+00:00

I have installed SQL Pacth on Failover cluster instance for SQL 2025.
After installing , SQL Services are not coming up.

Error
Error message -

Script level upgrade for database 'master' failed because upgrade step 'ISServer_upgrade.sql' encountered error 200, state 4, severity 25. This is a serious error condition which might interfere with regular operation and the database will be taken offline. If the error happened during upgrade of the 'master' database, it will prevent the entire SQL Server instance from starting. Examine the previous errorlog entries for errors, take the appropriate corrective actions and re-start the database so that the script upgrade steps run to completion. For more information, see https://go.microsoft.com/fwlink/?linkid=2322071.

SQL Server Database Engine

1 answer

Sort by: Most helpful
  1. Deepesh Dhake 1,165 Reputation points
    2026-08-26T14:30:10.73+00:00

    Cause: The patch's ISServer_upgrade.sql referenced internal.operation_os_sys_info in your SSISDB and it's missing - your SSISDB schema is out of step with what the SQL 2025 script expects. Not the login (15151) case.

    Fix:

    If SSISDB is not used here:

    Add -T902 to startup params (bring SQL up without the FCI restarting it mid-repair).

    Drop SSISDB.

    Remove -T902, restart normally.

    If SSISDB is used:

    Start with -T902.

    Back up SSISDB + confirm you have the catalog master key password.

    Run the SSIS Catalog Upgrade Wizard against the instance.

    If that can't fix it, drop/recreate the catalog and redeploy from source. Then remove -T902, restart.

    Was this answer helpful?


Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.