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

前端 未结 5 837
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条回答
  •  南笙
    南笙 (楼主)
    2020-12-04 17:10

    You copy and paste the following code. It will display all the tables with Name and Created Date

    SELECT object_name,created FROM user_objects
    WHERE object_name LIKE  '%table_name%'
    AND object_type = 'TABLE'; 
    

    Note: Replace '%table_name%' with the table name you are looking for.

提交回复
热议问题