MySql - 使用多个定义器创建视图
有可能吗?
如何?
我没有找到任何有用的谷歌搜索,只是这个未回答的问题:
http:// forums.mysql.com/read.php?100,215785,215785
只是为了澄清一下,我必须从具有不同主机的用户处获取此视图,因为在工作中我们在更多 IP 上有一个负载均衡器。
It's possible?
How?
I didn't find anything useful googling at, just this unanswered question:
http://forums.mysql.com/read.php?100,215785,215785
Just to clarify, i have to reach this view from an user with different hosts, because at work we have a load balancer on more IPs.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不可能,每个视图注册一个全局名称空间,并且您无法覆盖它相同的视图名称,
从所有主机语法中为用户授予访问权限
但是,您可以使用
user@%
,它可以 < a href="http://dev.mysql.com/doc/refman/5.0/en/create-view.html" rel="nofollow">此处Not possible, each view register a global name space, and you not able to override it same view name
however, you can use
user@%
which grant access for the user from all hostssyntax can be found here