按用户名设置的过滤器复制
我在中央服务器和 200 个客户端之间设置了合并复制。 绝大多数客户并不需要全部 5000 条客户记录。 只有分配给他们的 50 左右。 我将如何根据登录者应用过滤器?
我是否应该创建一个将用户名映射到客户记录的新数据库并沿着这条路径走下去?
有什么更好的想法或陷阱吗? 每个人都如何处理这种每用户过滤?
谢谢!
I have a Merge Replication setup between a central server and 200 clients. The vast majority of the clients do not need all 5000 client records. Only the 50 or so that are assigned to them. How would I go about applying a Filter based on who's logged in?
Should I create a NEW DB that maps user names to Client Records and go down that path?
Any better ideas or pitfalls? How is everyone handle this kind of per user filtering?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我知道 MS Dynamics CRM 使用服务器上的视图,并通过大量选择来查看谁有权查看哪些内容。 当有人查询该视图时,它只返回他可以看到的内容。
也许你可以做类似的事情。
I know that MS Dynamics CRM use view on the server with a huge select to look at who has permission to see what. When someone query that view it only returns what he can see.
Maybe you could do something like that.
为此,请使用
HOST_NAME()
或SUSER_SNAME()
按主机名或当前用户进行过滤分别。在发布属性中构建过滤器语句时,请使用以下内容。
ie salesrep = SUSER_SNAME()
有关详细信息,请参阅SQL 文档。
To do this use either
HOST_NAME()
orSUSER_SNAME()
to filter by either the host name or current user respectively.Use the below when building the filter statement in the Publication Properties.
i.e. salesrep = SUSER_SNAME()
See SQL Docs for more info.