Oracle 行更改时间戳
Oracle 表中是否有一个系统列 - 时间戳 - 可以确定上次更改的时间?
我认为必须有一个让垫子视图仅拉动更改......
Is there a system column - timestamp - in Oracle table to determine when was it changed last time?
I would assume there must be one to let mat views pull changes only ...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Oracle 使用系统更改号 (SCN)。您可以在查询中以 ora_rowscn 的形式访问它。但是,默认情况下,它表示修改整个块而不是特定行的时间。如果您需要行级别信息,则必须使用 rowdependency 说明符创建表。
而且您对物化视图的工作原理做出了错误的假设。 Oracle 使用表 MLOG$ 和 $RUPDS 跟踪更改。
Oracle uses System Change Number (SCN). You can access it in a query as ora_rowscn. However, by default it represents the time the entire block was modified not a particular row. If you want row level information, your table must be created with the rowdependencies specifier.
And you are making incorrect assumptions about how materialized views work. Oracle keeps track of changes using tables MLOG$ and $RUPDS.