Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Change language of error messages in SQL Server Management Studio

I'm using SQL Server Management Studio 2008 to write a bunch of queries. I have installed French versions of Windows XP and SQL Server thus all SQL error messages appear in French. I would prefer to see the error messages in English. Any idea how to change the language of the error messages? I won't reinstall the machine.

Patrick

like image 706
Patrick J Collins Avatar asked Jun 04 '09 08:06

Patrick J Collins


2 Answers

I found the solution 1 minute later :

SET LANGUAGE ENGLISH
like image 54
Patrick J Collins Avatar answered Oct 14 '22 21:10

Patrick J Collins


You must pay attention to case, depending your server configuration. In "case sensitive" servers:

SET LANGUAGE English
like image 23
ercan Avatar answered Oct 14 '22 21:10

ercan