SQL Update problem. Error: 468, Severity: 16, State: 9. Cannot resolve the collation conflict between "SQL_Latin1_General_CP1_CI_AS" and "Polish_CI_AS" in the equal to operation.

Koliński Łukasz 20 Reputation points
2024-08-02T13:22:47.22+00:00

Hi,

details first:

Installed updates:

1.installed updates

edit:

Problematic instance:

2

Others two have the same number.

3

I'm trying to install SQL CU Update SQLsERVER2019-kb5039747-X64.EXE (also tried other version - same result).

After finish got error:

4

locale

Error.log attached: ERRORLOG.LOG

Also tried to uninstall this hotfix 4298 but after deinstall service didnt start

SQL Server
SQL Server
A family of Microsoft relational database management and analysis systems for e-commerce, line-of-business, and data warehousing solutions.
13,828 questions
{count} votes

Accepted answer
  1. CathyJi-MSFT 22,206 Reputation points Microsoft Vendor
    2024-08-05T06:29:10.13+00:00

    Hello,

    According to your error log and MS document, Errors 912 and 3417 are generic errors associated with database upgrade script failures. And the messages preceding error 912 usually provide information on what exactly failed during the execution of these scripts. Troubleshooting and fixing these errors will require you to start SQL Server with trace flag 902 to bypass running the upgrade script. You can add this flag using SSCM as below screenshot, using cmd ;

    NET START MSSQL$INSTANCENAME  /T902
    
    

    5Note: Be sure to remove -T902 from the configuration once you have resolved the issue.

    Please using below T-SQL to check the collation of your server instance and system databases.

    ---check system database 
    SELECT name, collation_name FROM sys.databases WHERE database_id <= 4
    
    ---check server instace 
    SELECT serverproperty('Collation')
    
    

     If the collation is not same, please correct this. We can use alter database command to change this option, refer to this blog Changing SQL Server Collation After Installation to get detail command. https://www.mssqltips.com/sqlservertip/3519/changing-sql-server-collation-after-installation/

     


    If the answer is helpful,  please click "Accept Answer" and kindly upvote it.


0 additional answers

Sort by: Most helpful

Your answer

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