January 31, 2006 at 11:10 am
How can you find out what version of SQL Server software you are running as far as 32-bit ot 64-bit edition is concerned.
January 31, 2006 at 11:36 am
Hello David,
Go through one of the earlier thread.
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=9&messageid=252302#bm252343
Thanks and have a nice day!!!
Lucky
January 31, 2006 at 11:47 am
Thank you for your post. Your post and KB info says to execute:
SELECT 'productversion = ', SERVERPROPERTY('productversion')
SELECT 'productlevel = ', SERVERPROPERTY('productlevel')
SELECT 'edition = ', SERVERPROPERTY('edition')
Which returns:
productversion = 8.00.760
productlevel = SP3
edition = Enterprise Edition
What I need to know is whether the software is for 32-bit or 64-bit.
January 31, 2006 at 12:11 pm
run select @@version
in the output you can observe X86 --means 32-bit
if the out is IA64 -means 64- bitcheers
Viewing 4 posts - 1 through 4 (of 4 total)
You must be logged in to reply to this topic. Login to reply