How to find out when a particular table was created in Oracle?

前端 未结 5 836
Happy的楠姐
Happy的楠姐 2020-12-04 16:27

In Oracle, is there a way to find out when a particular table was created?

Similarly, is there a way to find out when a particular row was inserted/last updated?

5条回答
  •  猫巷女王i
    2020-12-04 17:09

    Try this query:

    SELECT sysdate FROM schema_name.table_name;

    This should display the timestamp that you might need.

提交回复
热议问题