物化视图和同义词
谁能说出物化视图和同义词的优点和缺点?
最好的问候,克里斯塔普斯
Can anyone say Materialized view and Synonyms PROS and CONS?
Best regards, Kristaps
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
谁能说出物化视图和同义词的优点和缺点?
最好的问候,克里斯塔普斯
Can anyone say Materialized view and Synonyms PROS and CONS?
Best regards, Kristaps
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
有几篇文章:
视图、物化视图和同义词
来自 SO: 使用的优点/缺点是什么同义词还是视图?
这取决于您的需求。最大的区别在于同义词只是对象的简单别名,您无法过滤它。
这些视图允许您添加 WHERE 子句、应用列别名以及使用列名表达式。您还可以在视图级别获得同义词中没有的额外安全性。
There are a couple of articles out there:
Views, Materialized Views and Synonyms
From SO: What are the pros/cons of using a synonym vs. a view?
It depends on what your need is. The big difference is that the Synonym is simple an alias for the object, which you are not able to filter.
The views allow you to add WHERE clauses and apply column aliases and use expressions for column names. You also have additional security at the View level that you would not have in a Synonym.