oracle中查看某个时间段的日志的sql

发布时间:2020-03-29编辑:脚本学堂
oracle中查看某个时间段的日志的sql:

oracle中查看某个时间段的日志的sql:
 

复制代码 代码如下:
select * from v$sqlarea v where v.LAST_LOAD_TIME <sysdate-2/24 and v.LAST_LOAD_TIME >sysdate-8/24 order by LAST_LOAD_TIME;

--两个小时前到八个小时前之间的日志