Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

SQL versions

Status
Not open for further replies.

SQLScholar

Programmer
Aug 21, 2002
2,127
GB
hey all,

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
----------------------------------------
 
Site 1 appears to be the only site running Windows Server 2003 R1. Have you tested your software on that release of windows?

- Paul
- If at first you don't succeed, find out if the loser gets anything.
 
Try running this on each server.

[tt][blue]Select ServerProperty('collation')[/blue][/tt]

As Paul said, it could be an operating system compatibility issue, but I would think the problem has more to do with the configuration settings instead. And, in my experience, collation settings are the most problematic. Good luck.

-George

Strong and bitter words indicate a weak cause. - Fortune cookie wisdom
 
ptheriault,

Yes that is whats happening. Site one is having an issue on testing, we cant work out why?

Does anyone know what the difference will be?

Gmmastros,

Here are the results.

Code:
Site1

Latin1_General_CI_AS

Site2

SQL_Latin1_General_CP1_CI_AS

Site3

Latin1_General_CI_AS

Site4

Latin1_General_CI_AS

So it seems that the only one out of the set, is not the one having problems.

any other ideas?

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
----------------------------------------
 
George,
great idea. I didn't even think about the collation.

Dan,
Can you upgrade site 1 to R2?

What is the error that you are getting?

- Paul
- If at first you don't succeed, find out if the loser gets anything.
 
No unfortunately we dont have a spare 2003 R2 licence.

Issue is shown here by a guy i work with:


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
----------------------------------------
 
Do you have another test box with R1 on it? Is this just a test environment? What is the service pack of your MDAC 2.8 install. Can you upgrade your MDAC to 2.8 sp2? Here is a link to check your MDAC version.



- Paul
- If at first you don't succeed, find out if the loser gets anything.
 
ptheriault,

No we dont have any other R1`s.

Yes it is a test environment (our development one actually :-(

It was MDAC 2.8 RTM - so we updated it to 2.8SP2 and its still doing it.

any other ideas?

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
----------------------------------------
 
Sorry Dan,
The only suggestion that I have now is to upgrade to R2. You know it will work there.
We have a standard config for all our servers. They must all be at the same patch level.
You could also implemant a work around.
Check the server version and based on the version execute the code that will work.

Sorry I can't offer any better advice.

- Paul
- If at first you don't succeed, find out if the loser gets anything.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top