Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2005 Forums
 SQL Server Administration (2005)
 How to know if its a 64 bit or a 32 bit SQL2005?

Author  Topic 

zeeshan13
Constraint Violating Yak Guru

347 Posts

Posted - 2009-05-06 : 11:00:03
I want to know that the SQL server 2005 which is installed on the server if it is 64 bit or 32 bit. I dont want to look at the windows explorer directory since the server had some previous version as well.

Please help.

Thanks,

Zee

SwePeso
Patron Saint of Lost Yaks

30421 Posts

Posted - 2009-05-06 : 11:14:07
SELECT @@VERSION


E 12°55'05.63"
N 56°04'39.26"
Go to Top of Page

zeeshan13
Constraint Violating Yak Guru

347 Posts

Posted - 2009-05-06 : 11:18:38
Yes, I already tried SELECT @@VERSION

I got the following:
Microsoft SQL Server 2005 - 9.00.4035.00 (Intel X86) Nov 24 2008 13:01:59 Copyright (c) 1988-2005 Microsoft Corporation Standard Edition on Windows NT 5.2 (Build 3790: Service Pack 2)


I still dont get the information if its a 32 bit or a 64 bit SQL Server 2005.

Any idea how can I get that information.

Thanks,
Go to Top of Page

robvolk
Most Valuable Yak

15732 Posts

Posted - 2009-05-06 : 11:25:05
Intel X86 = 32 bit
Intel X64 = 64 bit

If you don't see "64" or "64 bit" in the version string, then it's 32 bit.
Go to Top of Page

zeeshan13
Constraint Violating Yak Guru

347 Posts

Posted - 2009-05-08 : 17:01:54
Thanks everyone for there help. :)
Go to Top of Page
   

- Advertisement -