1) Yes, but you have to create the objects in advance on both sides and use
the not for replication switch on the identity colummns. You must also set
the identity increments and seeds. Then you must run dbcc
checkident(tablename, reseed, correctvalue) to fix everything.
2) replication doesn't throw up per se. Basically when you create your
publication and get to the specify articles dialog box, click on the browse
button to the right of the table, and in the snapshot section, select keep
existing table unchanged. Run the checkident to ensure that you are getting
odds on the correct sides, and evens on the other.
3) Standard merge is simpler to set up. It have typically 1 to 2 minutes of
latency whereas with bi-directional transactional on a system under load you
are looking at about 10-20s. Merge replication is harder to troubleshoot and
recover from.

Signature
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
> Let's say TableA on a 2000 ServerA.DatabaseA has an identity key and I
> want
[quoted text clipped - 26 lines]
>
> Any tips on how I might do this would be much appreciated.
CLM - 29 Nov 2005 20:46 GMT
Thx. I'll try this and see if I can get it to work.
> 1) Yes, but you have to create the objects in advance on both sides and use
> the not for replication switch on the identity colummns. You must also set
[quoted text clipped - 42 lines]
> >
> > Any tips on how I might do this would be much appreciated.