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

前端 未结 5 838
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:12

    SELECT CREATED FROM USER_OBJECTS WHERE OBJECT_NAME='<>'
    

提交回复
热议问题