同步数据库失败,并显示消息“字符串截断...”
使用 N 层同步到 Microsoft Compact DB:http://msdn.microsoft .com/en-us/library/bb882690.aspx。尝试刷新本地数据库缓存以考虑我们正在同步的数据库架构的更改。
在同步本地数据库缓存的过程中,出现消息同步数据库失败,并显示消息“字符串截断:max=100,len=101,value='...'。”出现。
它抱怨的列实际上是 nvarchar(400),因此可能只需要删除并再次添加本地数据库缓存,但希望将其记录在某处,以防对其他人有用。
Using N-Tier synchronization to a Microsoft Compact DB: http://msdn.microsoft.com/en-us/library/bb882690.aspx. Trying to refresh the local database cache to account for changes in the schema of the db we are syncing against.
In the middle of Synchronizing local database cache, the message Synchronizing the database failed with the message 'String truncation: max=100, len=101,value='...'.' appears.
The column it complains about is actually nvarchar(400), so might just need to delete and add the local database cache again, but wanted to record it somewhere just in case it is useful to someone else.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,重新创建本地数据库缓存解决了问题。
Yes, recreating the local database cache fixed the problem.