SQLScholar
Programmer
hey all,
I am a tad confused (no change there). At each SQL server we have i ran the below code
Ok - so my main question is why the difference in @@Version and the other code? We seem to be having odd compatability issues with our software and site 1.
Any clues to these differences is really appreciated.
Dan
----------------------------------------
Be who you are and say what you feel, because those who mind don't matter and those who matter don't mind - Dr. Seuss
Computer Science is no more about computers than astronomy is about telescopes - EW Dijkstra
----------------------------------------
I am a tad confused (no change there). At each SQL server we have i ran the below code
Code:
select @@VERSION
SELECT SERVERPROPERTY('productversion'), SERVERPROPERTY ('productlevel'), SERVERPROPERTY ('edition')
SITE 1
R3 - running Windows Server 2003 R1
Microsoft SQL Server 2000 - 8.00.2039 (Intel X86)
May 3 2005 23:18:38
Copyright (c) 1988-2003 Microsoft Corporation
Standard Edition on Windows NT 5.2 (Build 3790: )
8.00.2039,SP4,Standard Edition
SITE 2 - Running Windows Server 2000
Microsoft SQL Server 2000 - 8.00.2039 (Intel X86)
May 3 2005 23:18:38
Copyright (c) 1988-2003 Microsoft Corporation
Standard Edition on Windows NT 5.0 (Build 2195: Service Pack 4)
8.00.2039,SP4,Standard Edition
SITE 3 - Running Windows Server 2003 R2
Microsoft SQL Server 2000 - 8.00.2039 (Intel X86)
May 3 2005 23:18:38
Copyright (c) 1988-2003 Microsoft Corporation
Standard Edition on Windows NT 5.2 (Build 3790: Service Pack 1)
8.00.2039,SP4,Standard Edition
SITE 4 - Running Windows Server 2000
Microsoft SQL Server 2000 - 8.00.760 (Intel X86)
Dec 17 2002 14:22:05
Copyright (c) 1988-2003 Microsoft Corporation
Standard Edition on Windows NT 5.0 (Build 2195: Service Pack 4)
8.00.760,SP3,Standard Edition
Ok - so my main question is why the difference in @@Version and the other code? We seem to be having odd compatability issues with our software and site 1.
Any clues to these differences is really appreciated.
Dan
----------------------------------------
Be who you are and say what you feel, because those who mind don't matter and those who matter don't mind - Dr. Seuss
Computer Science is no more about computers than astronomy is about telescopes - EW Dijkstra
----------------------------------------