How to know whether SQL Server is 32-bit or 64-bit

Simple way to know whether SQL Server is 32-bit or 64-bit is by executing the following script:

select SERVERPROPERTY(‘edition’)

It will then return the Edition of SQL Server installed. If it’s 32-bit it will just return the Edition name.

image

If it’s 64-bit then it will have (64-bit) added after the Edition name.

image


Posted

in

by

Tags:

Comments

3 responses to “How to know whether SQL Server is 32-bit or 64-bit”

  1. […] Ferry Meidianto – How to know whether SQL Server is 32-bit or 64-bit Pin ItMorePrintEmailDiggShare on TumblrPocketGoogle+ Ying Kit YuenLike this:Like Loading… This entry was posted in Database and tagged MSSQL, SQL Server on October 11, 2013 by Ying Kit Yuen. […]

  2. J Avatar
    J

    Thanks! Worked perfectly.

  3. Chris Avatar
    Chris

    Thanks! it worked.

Leave a Reply

Your email address will not be published. Required fields are marked *