all groups > sql server replication > july 2007 >
You're in the

sql server replication

group:

SQL 2000 Server Replication


SQL 2000 Server Replication Bob
7/6/2007 12:43:41 PM
sql server replication:
Good afternoon,

We have a full SQL server that has been running for many years now, we
are getting ready to add a new SQL server and would like to be able to
replicate the information from the old one to the new one. And then
use the old one as a warm-backup

I know there are 3 types of replication, I know I don't want to do
snapshot, but I don't know the major difference between Transactional
and Merge, I would like to keep my 2 databases in as close of a sync
as possible, without loosing alot in the lag.

If someone could help me configure this it would be great
RE: SQL 2000 Server Replication Jason Shehane
7/6/2007 1:38:04 PM
Database Mirroring or Log Shipping would be the best bet; however they
require 2 intances of 2005.

Transactional Replication sounds like it would be the best replication
solution for your instance, it makes a copy of the database(or initial
snapshot) at the subscriber, then replicates just the "transactions" to the
subscriber. But transaction replication does not allow for easy data
modification at the subscriber, where as Merge Replication does. So if you
only plan to modify data at the publisher then transaction would be best for
you. Hope this helps.

[quoted text, click to view]
Re: SQL 2000 Server Replication Bob
7/6/2007 1:57:44 PM
If the publisher goes down I need to be able to make the warm back up
the main server, so how would that affect my scheme?

Also, can you point me to some decent documentation on how to set this
up on an existing database?

Re: SQL 2000 Server Replication Hilary Cotter
7/9/2007 8:55:49 AM
use bi-directional transactional replication or log shipping for something
like this. bi-directional transactional replication will have a lower
latency that log shipping but it is more complex to set up.

--
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
[quoted text, click to view]

Re: SQL 2000 Server Replication Hilary Cotter
7/9/2007 8:57:24 AM
You can log ship databases on the same server, or between two different
servers as long as they are the same version. Log shipping has been
available since the earliest version of SQL Server, but you have to roll it
yourself. The wizard ships in all versions of SQL Server 2005 (above
Express), and is present in the EE version of SQL 2000.



--
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
[quoted text, click to view]

AddThis Social Bookmark Button