Oracle 行更改时间戳

发布于 2024-08-31 06:10:19 字数 78 浏览 5 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

沦落红尘 2024-09-07 06:10:20

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文