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.
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" |
 |
|
zeeshan13
Constraint Violating Yak Guru
347 Posts |
Posted - 2009-05-06 : 11:18:38
|
Yes, I already tried SELECT @@VERSIONI 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, |
 |
|
robvolk
Most Valuable Yak
15732 Posts |
Posted - 2009-05-06 : 11:25:05
|
Intel X86 = 32 bitIntel X64 = 64 bitIf you don't see "64" or "64 bit" in the version string, then it's 32 bit. |
 |
|
zeeshan13
Constraint Violating Yak Guru
347 Posts |
Posted - 2009-05-08 : 17:01:54
|
Thanks everyone for there help. :) |
 |
|
|
|
|