Quick Tip: How to Find SQL Server's Current Language
Need to find out what SQL Server's default language is set to? These two quick tips will show you how to find out.
Join the DZone community and get the full member experience.
Join For FreeIn this post, I will show the SQL Query to find SQL Server's Current Language. Write the following Query in the SQL Server and execute.
QUERY I to Find the Current Language of SQL Server
Select @@LANGUAGE as Language
Execute the preceding query and check the output.
QUERY II to Find the Current Language of SQL Server:
Another way we can find the current language of SQL Server is by executing the following script:
select * from sys.syslanguages where langid=@@langid
Execute the preceding query and check the output.
Using this query we can get the current language of SQL Server. I hope this trick is useful to developers.
sql
Opinions expressed by DZone contributors are their own.
Comments