DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports
Events Video Library
Refcards
Trend Reports

Events

View Events Video Library

Related

  • AI Paradigm Shift: Analytics Without SQL
  • Beyond Partitioning and Z-Order: A Deep Dive into Liquid Clustering for Unity Catalog Managed Tables
  • One Query, Four GPUs: Tracing a Distributed Training Stall Across Nodes
  • Why We Chose Iceberg Over Delta After Evaluating Both at Scale

Trending

  • How to Write for DZone Publications: Trend Reports and Refcards
  • Building a Zero-Cost Approval Workflow With AWS Lambda Durable Functions
  • Architecting Zero-Trust AI Agents: How to Handle Data Safely
  • Compliance Automated Standard Solution (COMPASS), Part 10: How OSCAL Mapping Paves the Way for Continuous Compliance Scalability
  1. DZone
  2. Data Engineering
  3. Databases
  4. Quick Tip: How to Find SQL Server's Current Language

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.

By 
Nitin Tyagi user avatar
Nitin Tyagi
·
May. 29, 16 · Tutorial
Likes (1)
Comment
Save
Tweet
Share
15.6K Views

Join the DZone community and get the full member experience.

Join For Free

In 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.

SQL Query to Find Current Language of SQL Server

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.

SQL Query to Find Current Language of SQL Server

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.

Related

  • AI Paradigm Shift: Analytics Without SQL
  • Beyond Partitioning and Z-Order: A Deep Dive into Liquid Clustering for Unity Catalog Managed Tables
  • One Query, Four GPUs: Tracing a Distributed Training Stall Across Nodes
  • Why We Chose Iceberg Over Delta After Evaluating Both at Scale

Partner Resources

×

Comments

The likes didn't load as expected. Please refresh the page and try again.

  • RSS
  • X
  • Facebook

ABOUT US

  • About DZone
  • Support and feedback
  • Community research

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Core Program
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 3343 Perimeter Hill Drive
  • Suite 215
  • Nashville, TN 37211
  • [email protected]

Let's be friends:

  • RSS
  • X
  • Facebook