0

I wanted to replicate my database across 2 servers both using sql server 2005. The problem is that the main server have both 'User' and 'Admin' data in a table. At the other end , I want to replicate the entire database but the 'Admin' data should not be replicated.

Is there a way to solve this problem ? Either by configuring the replication or by manual tweaks.

Any help is appreciated.

Thanks

Hakim
  • 37
  • 1
  • 6

1 Answers1

1

Walk through the replication setup wizard. After you select the tables you want to publish, there is an entire screen dedicated to filtering your data.

alt text

Click Add, then pick your table and supply the WHERE clause

alt text

KenJ
  • 196
  • 2
  • Thanks KenJ I think this ought to solve the issue. Just one more question can I also give Delete,Insert,Update command along with the select command in filter statement ? – Hakim Dec 20 '10 at 08:43