오라클에서 all_tables에서 확인 가능한 테이블들의 가장 마지막 데이터가 입력된 날짜를 알수있을까요?
mysql의 경우
information_schema.tables에서 update_time으로 확인을 할 수 있었는데
EX))
select table_schem ,table_name ,create_time ,update_time from information_schema.tables group by table_name order by update_time desc;
oracle에서도 동일하게 확인이 가능한지 알고싶습니다.
선배님들의 고견을 여쭈고싶습니다.