调整 varchar 大小不会更新水晶报表
我有一份现有的报告,其中有很多字段。
我刚刚修改了我的数据库,将 varchar(10) 更改为 varchar(20)
当我用数据“12345678901234567890”测试它时,针对我的视图的查询工作得很好。但是,即使在我完成“验证数据库”之后,它也不会显示整个值。
我尝试使用公式来显示它,它仍然将其截断为 10 个字符,我还执行了 LEN({myfield}) 并且它显示 10。
我还使用了命令“更新数据源位置”。
不知何故,该字段长度信息被卡住了。
I've got an existing report with quite a few fields on it.
I have just modified my database changing a varchar(10) to a varchar(20)
When I test it out with data '12345678901234567890' the query against my view works perfectly fine. However, even after I've completed a "Verify Database" it doesn't display the whole value.
I have attempted using a formula to display it, it still truncates it at 10 characters, I have also done a LEN({myfield}) and it displays 10.
I have also used the command "Update datasource location".
Somehow that field length information is stuck.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我已经用迂回的方式解决了。
一切都正确显示。
I have resolved it in a roundabout way.
Everything displayed properly.