You may know that when you connect to SQL Server, the language for that session is usually determined by your login. When a login is created, it is assigned a default language.
The session language determines the datetime formats and system messages.
While you can certainly change the default language for a login, you can also override the default language within a session if you need to. You can toggle back and forth between languages if required. Or you could even open two separate connections and apply a different language to each of them.
This article explains how to change the language within a session.
Continue reading