查询test表DML操作的最后时间的语句:
select max(ora_rowscn),to_char(scn_to_timestamp(max(ora_rowscn)),'yyyy-mm-dd hh24:mi:ss') from test;


查询test表DDL操作的最后时间的语句:
select  TO_CHAR(LAST_DDL_TIME,'YYYY-MM-DD HH24:MI:SS') FROM dba_objects where object_name='ACT_COMMISSION';

 

相关文章:

  • 2022-12-23
  • 2021-10-02
  • 2021-09-27
  • 2022-12-23
  • 2022-02-06
  • 2021-08-06
猜你喜欢
  • 2022-12-23
  • 2021-07-02
  • 2021-05-17
  • 2021-12-27
  • 2022-12-23
  • 2021-11-19
相关资源
相似解决方案