Microsoft sql server 2019 express - how to enable error messages in Polish?

Adam Banach 1 Reputation point
2021-11-27T08:58:34.147+00:00

Hello. I started learning how to create databases in Microsoft SQL Server Express + SQL Server Management Studio (SSMS) (18.10). I had Microsoft SQL Server Express 2017 installed for a short time and the error messages at the bottom of the SSMS were in Polish. When I switched to Microsoft SQL Server Express 2019, the error messages are only in English. I must admit that I know little English and it was a great help for me.

In fact, Microsoft SQL Server Express 2017 was installed under Windows 8.1, and Microsoft SQL Server Express 2019 under Windows 10.

Please do not pay attention to errors, because I am using Google translator here.

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

1 answer

Sort by: Most helpful
  1. Erland Sommarskog 100.9K Reputation points MVP
    2021-11-27T10:29:16.507+00:00

    For your current session, run this command:

    SET LANGUAGE Polish
    

    To have it set once for all:

    ALTER LOGIN [TwojeLogin] WITH DEFAULT_LANGUAGE = Polish
    
    1 person found this answer helpful.
    0 comments No comments