- Community Home
- >
- Servers and Operating Systems
- >
- Legacy
- >
- Windows Server 2003
- >
- Clustering SQL Server 2000 (different versions)
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-19-2003 09:37 PM
10-19-2003 09:37 PM
What I want to do is take a number of SQL Server 2000 instances currently running on different Windows 2000 systems with the SQL server instances on different patch levels and consolidate them onto a cluster running on Windows Server 2003.
My question is, can I have different instances of SQL Server in the cluster entirely independent of each other running different SP levels?
Thanks
Duncan
I am an HPE Employee

Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-19-2003 09:59 PM
10-19-2003 09:59 PM
Re: Clustering SQL Server 2000 (different versions)
hth
J
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-19-2003 10:35 PM
10-19-2003 10:35 PM
Re: Clustering SQL Server 2000 (different versions)
Thanks
Duncan
I am an HPE Employee

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-19-2003 10:46 PM
10-19-2003 10:46 PM
Re: Clustering SQL Server 2000 (different versions)
If you pass only queries that are to be interpreted the same way by the different instances, then you shouldn't face problem.
But if you pass a query that will be interpreted differently by the different instances / associated SP, then you will face the risk that the query is spread to 2 different instances interpreting and getting result back differently... which'll make the whole stuff hang.
There are so many compatibility problems in importing and exporting from different SP on SQL server 2k (not talking on getting from 7.0 to 2k) that I wouldn't take that risk.
Wouldn't it be easier to upgrade all versions to same SP ?
J
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-19-2003 10:55 PM
10-19-2003 10:55 PM
Re: Clustering SQL Server 2000 (different versions)
Thanks
Duncan
I am an HPE Employee

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-19-2003 11:53 PM
10-19-2003 11:53 PM
Re: Clustering SQL Server 2000 (different versions)
We didn't take this feature into consideration, up to the time we had a crash on that. A script we were running, for safety reasons, was to address the server on that port, and that one only. Turning network down for IP address management on some servers just turned them off as we hadn't re-started sql service afterward. All the 8 servers were responding to the heartbeats, but only five were 1434 opened. Queris were sent to 3 servers, that were not responding, though they were considered as alive. Result was that query result was incoherent. It took to us hours to discover the source of the trouble (network works, hearbeats say 8 nodes, 5 replies only... ??)
That's an example of SP impact. If all our servers had been updated with SP3, we wouldn't have got any answer, and would have guessed network impact on the server and, most important of all, we wouldn't have received any answer, which is better than partail replies (false) as you guess...
Do you see what I mean ?
J
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-20-2003 12:11 AM
10-20-2003 12:11 AM
Re: Clustering SQL Server 2000 (different versions)
1. I have two nodes nodeA and nodeB, both with a local C: and D: drive
2. I have some shared storage - seperate disks seen as X: and Y: drive
3. I have 2 SQL Server instances mydbA and mydbB. mydbA is on SQL Server 2000 SP3, mydbB is on SQL Server 2000 SP2
4. I install SQL Server so that:
-mydbA has its binaries in C:\Program Files\sql server\ and its data files on X:
-mydbB has its binaries in D:\Program files\sql server\ and its data files on Y:
And then I apply the relevant SPs to the instances?
And as long as I am aware of the differences between these versions I should have no problem.
Thanks
Duncan
I am an HPE Employee

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-20-2003 01:18 AM
10-20-2003 01:18 AM
SolutionX and Y should be different disks, and, as you certainly know, logs from mydbA should preferably not be on X, nor logs for mydbb on Y (for performance reasons).
Once SP applied, and as long that you know paths, there shouldn't be any problem.
Have fun !
J