all groups > sql server replication > december 2004 >
You're in the

sql server replication

group:

Is it possible to do Replication Manually



Is it possible to do Replication Manually Paul Ibison
12/14/2004 2:36:00 AM
sql server replication: I'm not too sure what you mean, but if replication is set
up then the relevant job can be started using
sp_start_job. Is this what you were looking for?
Rgds,
Paul Ibison SQL Server MVP, www.replicationanswers.com
(recommended sql server 2000 replication book:
http://www.nwsu.com/0974973602p.html)
Re: Is it possible to do Replication Manually Paul Ibison
12/14/2004 4:20:25 AM
It is possible, but not easy. If the data is partitioned,
then it is not too difficult, but if not, you'll have to
consider conflicts and how to deal with them.

First of all, you need to know if a row has changed
(inserted or updated), and triggers are the ideal
mechanism for this - yout edit an extra column, or store
the id of the row in a separate table (a separate table
is especially useful for deletes). This has to be done on
the publisher and subscriber. Then routines created to
parse these tables and do joins to find non-matches
before applying the changes. Do you recognise what is
happening as this is worked through? We are essentially
recreating the procedures used by (merge) replication
itself :).

If you have a very simple business requirement, with
partitioned data and no deletes, then it might be worth
looking at the manual solution, otherwise using the
inbuilt tools will save weeks/months of work.

Rgds,
Paul Ibison SQL Server MVP, www.replicationanswers.com
(recommended sql server 2000 replication book:
http://www.nwsu.com/0974973602p.html)




[quoted text, click to view]
Re: Is it possible to do Replication Manually JD
12/14/2004 10:19:29 AM
Have you looked at Log shipping? We use a home grown version for some of our
SQL servers, with out any problems.


[quoted text, click to view]

Is it possible to do Replication Manually AR
12/14/2004 3:39:49 PM
Hi,
This is a silmple Qn. I know it is possible to Replicate thru Query
Analizer. But i don't know the steps
can anyone help me
An

Re: Is it possible to do Replication Manually AR
12/14/2004 5:34:20 PM
hi,
Thanks Paul. But this is not the one i need, I don't wanna do replication
by creating publishers and all (Not un\sing the EM). But i want to know, is
it possible to do replication manually. i.e .taking the differfences of the
tables and inserting it into the curresponding table.
I think u got it.

regards aneesh

[quoted text, click to view]

AddThis Social Bookmark Button