如何显示上次数据加载到特定 Table 的最后日期 - plsql 开发人员

How to show last Date of when the last time Data was loaded into an specific Table - plsql developer

我希望有人能提供帮助,因为我找不到 google 的解决方案。 我正在使用 plsql 开发人员。

哪个 select 语句可以向我显示特定 table,最后一次插入行的日期。

例如Table:'dogs' 数据于 2 月 12 日插入。 今天是二月十四

我需要一个显示 2 月 12 日的 SQL。 他们的 any sys - table 记录了这个吗?如果是我找不到它。

谁能帮忙。

非常感谢!

您可以对您的 table

执行此查询
 select scn_to_timestamp(max(ora_rowscn)) from table;