RATE THIS ANSWER
0
Click to Vote:
0
0
Last Answered:
Feb 20 2008 10:18 PM GMT
by Mrdenny
The records on instance B are supposed to be deleted. That's the default behavior of replication.
If you look inside the database on instance B you should see some funky stored procedures that you didn't create. Edit the delete one(s) for the table(s) that you don't want the data deleted from. After the CREATE PROCEDURE ProcedureName ... AS put a RETURN(0) to break of the procedure before the record is actually deleted. The procedure will look something like this.
CREATE PROCEDURE ProcedureName
@Column1 DataType
...
@LastColumn DataType
AS
RETURN(0)
...
GO