v$session中LAST_CALL_ET(LC_ET)

2019-09-04

连接到Oracle数据库的用户在作了一次操作后,再也没有后续操作,但却长时间没有和数据库断开连接。

1、v$session中LAST_CALL_ET参数的理解

LOGON_TIME 是一个日期型(Date)字段,为用户登陆时间;
LAST_CALL_ET是一个数字型(Number)字段,其含义是用户最后一条语句执行完毕后到sysdate的时间,单位为秒。每次用户执行一个新的语句后,该字段复位为0,重新开始记数。我们可以通过该字段来获得一个连接用户最后一次操作数据库后的空闲时间。
2、LAST CALL Elapsed Time (所需时间) v$sesstat.LAST_CALL_ET sql执行的时间
3、elapsed time[英][ɪˈlæpst][美][ɪˈlæpst]
n.经过时间; 共用…百时(间);
4、LAST_CALL_ET
NUMBER If the session STATUS is currently ACTIVE, then the value represents the elapsed time in seconds since the session has become active.
If the session STATUS is currently INACTIVE, then the value represents the elapsed time in seconds since the session has become inactive.
5、select s.status,s.last_call_et,s.* from v$session s where username='USERD';

分类:数据库 | 标签: |

相关日志

评论被关闭!