dbforge mysql studio,如何编辑损坏的视图?
使用 dbforge mysql studio,我编辑表的列,哎呀,这破坏了一些视图,但是现在当我尝试打开它们进行编辑时,我收到“引用无效列”错误,
并且它拒绝让我编辑视图的sql。
我该如何解决这个问题?
Using dbforge mysql studio, I edit the columns of a table, and whoops, this breaks some views, but now when I try to open them to edit them, I get a "references invalid columns" error,
and it refuses to let me edit the sql of the view.
How can I fix this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
重命名表中的列后,视图变得无效。 dbForge 使用“SHOW CREATE VIEW”命令来获取对象的定义,并抛出此错误。
我可以建议您更改 SQL 文档中的视图,例如 -
它应该修复视图。
此外,您还可以在我们的支持系统中编写请求。
After renaming column in table, view becomes invalid. dbForge uses 'SHOW CREATE VIEW' command to get object's definition, and it throws this error.
I can suggest you to alter view in a SQL Document, e.g. -
It should fix view.
Also, you can write requests in our support system.