Check if the MSSQL Server is 32-bit or 64-bit

Run the following SQL to get the info of the installed SQL Server.

SELECT @@Version

 

Result:
check-mssql-server-version-32-or-64
 

You can also try this.

SELECT serverproperty('edition')

 

Done =)

Reference:

Leave a comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.