How to change your default MS SQL language / locale.

By default all MS SQL database users you create in our control panel are set to British - English as we are a British company.

Sometimes clients may experience issues with date formats due to the difference between country date formats and the fact that many free or commercial applications are designed for US date formats.

You can change the Default Language of your database user by running the following SQL queries against your database.

We recommend you use SQL Server Management Studio (SSMS) to do this.

Simply change [UserLogin] to your MS SQL database username.

Change to US format Default Language:

ALTER LOGIN [UserLogin] WITH DEFAULT_LANGUAGE=[us_english]

Change back to British / UK format Default Language:

ALTER LOGIN [UserLogin] WITH DEFAULT_LANGUAGE=[British]

 

  • language, ms sql language, locale, region, uk, us
  • 5 Utenti hanno trovato utile questa risposta
Hai trovato utile questa risposta?

Articoli Correlati

SQL Server Management Studio error: Saving changes is not permitted ....

If you receive the following error in SQL Server Management Studio please see the link below:...

Upgrade your database to new MS SQL Server version

If you would like to have your MS SQL database upgraded to a new MS SQL Server version please...

Error trying to login to SQL Server Management Studio - The server principal ...

If you get the following error when trying to login to Microsoft SQL Server Management Studio...

What tool do I use to manage SQL Server databases, and where do I get it?

The tools you need to develop MS SQL databases and to connect to our servers are available free...

How to create an MS SQL database.

You can create new blank MS SQL databases in your hosting control panel by following the...