Oracle的物化视图:如何判断原始表是否被改变?
我在很多桌子上制作了一个MV。我不想自动刷新它。我只是想知道原来的表是否被更改。最好的方法是什么?
I've created a MV, on many tables. I don't want to auto-refresh it. I just want to know whether original tables were changed or not. What is the best way to do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您创建了快速刷新 MV,那么您还在基表上创建了物化视图日志。
您可以从相应的 MV 日志(是包含表名和 M_$ 或类似内容的表)中发出
select count(*)
。但如果您只想知道是否需要刷新,您可以安全地进行快速刷新。如果没有要刷新的行,那么速度将是光速。
If you created fast refresh MVs, you also created Materialied View logs on base tables.
You can Issue an
select count(*)
from corresponding MV log(is a table that contains the table name and an M_$ or something like).But If you want just to know if a refresh is needed, you can safely shoot a fast refresh. It would be at light speed if there are no rows to refresh.