you do not need the Enterprise Edition of SQL Server for log shipping. This
is a mistake in BOL.
Ideally what you want is automatic failover which means hardware or software
data mirroring - however it can be accomplished using log shipping, but you
will have to redirect your clients to the failed over server. You can then
log ship back to the original primary.
If you choose to use replication - I would use bi-directional transactional
replication keeping in mind
1) that every table you are replicating needs a pk
2) system objects and logins are not replicated
3) bi-directional transactional replication is not resilient to schema
changes (i.e. you have to drop your subscriptions and publication when you
want to make schema changes). Other replication types support partial schema
changes using sp_repladdcolumn and sp_repldropcolumn.
For log shipping you will find that
1) its not really scalable - I think you will find the logistical burden log
shipping 70 databases to be a bit overwhelming
2) your standby servers' databases will be read only
For replication you would be using a single publisher and subscriber. It is
a central publisher with one subscriber.
[quoted text, click to view] "David Gresham" <gresham@panix.com> wrote in message
news:d50tct$5je$1@reader1.panix.com...
>I have been asked to set-up replication in the current two server
>
> enviornment. My understanding is that Log-Shipping requires
>
> the Enterprise version of Sql Server 2000 (Which they do not
>
> have the budget for).
>
>
>
> They have 70 Databases that have a total space of aprox 30gb.
>
> They want to replicate the data to the standby server so that
>
> in the case of a failure they can redirect their Web Sites
>
> to the standby Server.
>
>
>
> Both servers will be in a co-lo facility so bandwidth between
>
> the servers should be adequate.
>
>
>
> Do I do central publisher with the distributor on the standby
>
> server? I am not sure what kind of load this will have. I
>
> understand that people recommend to put it on the publisher
>
> server and only move it if load becomes an issue.
>
>
>
> I understand that security (ie, users and permissions) will
>
> not replicate. Other than having to set things up twice is
>
> their other solutions to minimize this?
>
>
>
> Sincerely,
>
>
>
>
>
> Dave
>
>