When I insert rows at the subscriber end I get following error

rows inserted or updated at the subscriber cannot be outside the article partition

Why I am getting this error? How to resolve it.

有帮助吗?

解决方案

This error occurs when article filtering is being used and an inserted row is outside the Subscriber's partition. When using filtering, you must ensure that inserts and updates at the Subscriber do not result in rows that fall outside the partition of the Subscriber.

Check your article filtering criteria and adjust your application logic accordingly so that inserted rows are inside a given Subscriber's partition.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top