同步 Framework 2.1 本地缓存作为 SQL Server 可能吗?
有人可以帮我看看是否可以使用完整的 SQL Server 作为本地数据库缓存而不是 CE?
原因是CE有4GB的限制。 CE 不是我们的选择,因为我们的数据库记录将在几个月内显着增长。
任何替代解决方案将不胜感激。
Could someone please help me with whether it's possible to use a full blown SQL Server as Local Database Cache instead of CE?
The reason being CE has 4GB limit. CE is not an option for us as our database records will grow significantly within few months.
Any alternative solution will be much appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您指的是 Visual Studio 中的本地数据库缓存项目项,答案是否定的。该向导仅支持 Sql Compact (SqlCeClientSyncProvider)。不过,您可以手动编写自己的提供程序和同步代码,而无需使用向导。
或者您可以只使用 SqlSyncProvider(可用于 Sql Express、Sql Server、Sql Azure)。
请参阅:同步 SQL Server 和 SQL Express
if you're referring to the Local Database Cache project item in Visual Studio, the answer is no. Only Sql Compact (SqlCeClientSyncProvider) is supported by that wizard. You can however handcode your own provider and the sync code without using the wizard.
or you can just use the SqlSyncProvider (can be used against Sql Express, Sql Server, Sql Azure).
see: Synchronizing SQL Server and SQL Express