I am not using a SAN to setup Win2003 CLusters, two nodes.
How can I share the hard disk in order to make this work for both nodes ?
All documentation I read states that I must have shared hard disk common to
the two servers and that's not clear to me when all I have is that hard
drive on the respective servers.
You can use SCSI disks. Just make sure whatever you get is on the catalog:
http://www.microsoft.com/windows/cat...5-23e9cd3ae95b
Cheers,
Rod
MVP - Windows Server - Clustering
http://www.nw-america.com - Clustering
"Marlon Brown" <marlon_brown@.hotmail.com> wrote in message
news:OEEkMpCdEHA.3016@.tk2msftngp13.phx.gbl...
> I am not using a SAN to setup Win2003 CLusters, two nodes.
> How can I share the hard disk in order to make this work for both nodes ?
> All documentation I read states that I must have shared hard disk common
to
> the two servers and that's not clear to me when all I have is that hard
> drive on the respective servers.
>
Showing posts with label documentation. Show all posts
Showing posts with label documentation. Show all posts
Monday, March 26, 2012
Friday, March 23, 2012
How to SETUP MSDTC on Win2k3
I have documentation for Win2K which says run
comclust.exe to add MSDTC . Running the same brings up
the Admin window.
Please point me to some documentation which clearly
describes on how to setup MSDTC on win3K cluster
Thanks
http://msmvps.com/clustering/archive.../25/16672.aspx
Cheers,
Rod
MVP - Windows Server - Clustering
http://www.nw-america.com - Clustering
http://msmvps.com/clustering - Blog
"Alfred" <anonymous@.discussions.microsoft.com> wrote in message
news:1a9a01c4bb81$6c5ac5c0$a301280a@.phx.gbl...
>I have documentation for Win2K which says run
> comclust.exe to add MSDTC . Running the same brings up
> the Admin window.
> Please point me to some documentation which clearly
> describes on how to setup MSDTC on win3K cluster
> Thanks
|||Hello Alfred,
Here are the two Microsoft Knowledge Base articles that you need to setup MSDTC on a Win2K3 cluster
How to configure Microsoft Distributed Transaction Coordinator (MSDTC)on a Windows Server 2003
http://support.microsoft.com/?kbid=301600
How to enable network DTC access in Windows Server 2003
http://support.microsoft.com/default.aspx?kbid=817064
HTH,
Best Regards,
Uttam Parui
Microsoft Corporation
This posting is provided "AS IS" with no warranties, and confers no rights.
Are you secure? For information about the Strategic Technology Protection Program and to order your FREE Security Tool Kit, please visit
http://www.microsoft.com/security.
Microsoft highly recommends that users with Internet access update their Microsoft software to better protect against viruses and security vulnerabilities. The easiest way
to do this is to visit the following websites: http://www.microsoft.com/protect
http://www.microsoft.com/security/guidance/default.mspx
comclust.exe to add MSDTC . Running the same brings up
the Admin window.
Please point me to some documentation which clearly
describes on how to setup MSDTC on win3K cluster
Thanks
http://msmvps.com/clustering/archive.../25/16672.aspx
Cheers,
Rod
MVP - Windows Server - Clustering
http://www.nw-america.com - Clustering
http://msmvps.com/clustering - Blog
"Alfred" <anonymous@.discussions.microsoft.com> wrote in message
news:1a9a01c4bb81$6c5ac5c0$a301280a@.phx.gbl...
>I have documentation for Win2K which says run
> comclust.exe to add MSDTC . Running the same brings up
> the Admin window.
> Please point me to some documentation which clearly
> describes on how to setup MSDTC on win3K cluster
> Thanks
|||Hello Alfred,
Here are the two Microsoft Knowledge Base articles that you need to setup MSDTC on a Win2K3 cluster
How to configure Microsoft Distributed Transaction Coordinator (MSDTC)on a Windows Server 2003
http://support.microsoft.com/?kbid=301600
How to enable network DTC access in Windows Server 2003
http://support.microsoft.com/default.aspx?kbid=817064
HTH,
Best Regards,
Uttam Parui
Microsoft Corporation
This posting is provided "AS IS" with no warranties, and confers no rights.
Are you secure? For information about the Strategic Technology Protection Program and to order your FREE Security Tool Kit, please visit
http://www.microsoft.com/security.
Microsoft highly recommends that users with Internet access update their Microsoft software to better protect against viruses and security vulnerabilities. The easiest way
to do this is to visit the following websites: http://www.microsoft.com/protect
http://www.microsoft.com/security/guidance/default.mspx
Wednesday, March 7, 2012
How to set loopback detection in SQL7
I am doing bi-directional replication between SQL2k and SQL7. How can I turn
loopback detection on? I have been looking for documentation and found
sp_replsetoriginator, but it doesn't talk about how it can be setup.
Thanks.
-A
You're probably not going to be able to do this. You can hardcode it though.
Add a column to each table with a default of @.@.servername. In the procs do
an existence check to see if the value of the servername column matches the
value of @.@.servername. If so don't do your DML as its looping back.
Hilary Cotter
Looking for a SQL Server replication book?
http://www.nwsu.com/0974973602.html
Looking for a FAQ on Indexing Services/SQL FTS
http://www.indexserverfaq.com
"Adam" <Adam@.discussions.microsoft.com> wrote in message
news:B0151D50-DD9D-4121-973D-49B6D4A5711C@.microsoft.com...
> I am doing bi-directional replication between SQL2k and SQL7. How can I
turn
> loopback detection on? I have been looking for documentation and found
> sp_replsetoriginator, but it doesn't talk about how it can be setup.
> Thanks.
> -A
>
|||Thank you so much.
"Hilary Cotter" wrote:
> You're probably not going to be able to do this. You can hardcode it though.
> Add a column to each table with a default of @.@.servername. In the procs do
> an existence check to see if the value of the servername column matches the
> value of @.@.servername. If so don't do your DML as its looping back.
> --
> Hilary Cotter
> Looking for a SQL Server replication book?
> http://www.nwsu.com/0974973602.html
> Looking for a FAQ on Indexing Services/SQL FTS
> http://www.indexserverfaq.com
> "Adam" <Adam@.discussions.microsoft.com> wrote in message
> news:B0151D50-DD9D-4121-973D-49B6D4A5711C@.microsoft.com...
> turn
>
>
loopback detection on? I have been looking for documentation and found
sp_replsetoriginator, but it doesn't talk about how it can be setup.
Thanks.
-A
You're probably not going to be able to do this. You can hardcode it though.
Add a column to each table with a default of @.@.servername. In the procs do
an existence check to see if the value of the servername column matches the
value of @.@.servername. If so don't do your DML as its looping back.
Hilary Cotter
Looking for a SQL Server replication book?
http://www.nwsu.com/0974973602.html
Looking for a FAQ on Indexing Services/SQL FTS
http://www.indexserverfaq.com
"Adam" <Adam@.discussions.microsoft.com> wrote in message
news:B0151D50-DD9D-4121-973D-49B6D4A5711C@.microsoft.com...
> I am doing bi-directional replication between SQL2k and SQL7. How can I
turn
> loopback detection on? I have been looking for documentation and found
> sp_replsetoriginator, but it doesn't talk about how it can be setup.
> Thanks.
> -A
>
|||Thank you so much.
"Hilary Cotter" wrote:
> You're probably not going to be able to do this. You can hardcode it though.
> Add a column to each table with a default of @.@.servername. In the procs do
> an existence check to see if the value of the servername column matches the
> value of @.@.servername. If so don't do your DML as its looping back.
> --
> Hilary Cotter
> Looking for a SQL Server replication book?
> http://www.nwsu.com/0974973602.html
> Looking for a FAQ on Indexing Services/SQL FTS
> http://www.indexserverfaq.com
> "Adam" <Adam@.discussions.microsoft.com> wrote in message
> news:B0151D50-DD9D-4121-973D-49B6D4A5711C@.microsoft.com...
> turn
>
>
Labels:
bi-directional,
database,
detection,
documentation,
loopback,
microsoft,
mysql,
oracle,
replication,
server,
sql,
sql2k,
sql7,
turnloopback
Subscribe to:
Posts (Atom)