Saturday, December 17, 2016
find number of users connected on each application node
Query to find the number of active users connected to each oracle ebusiness suite Server
Script to determine "active users" for OACoreGroup:
REM
REM SQL to count number of Application users 11i/R12
REM Run as APPS user
REM
select icx.node_id,fnd.node_name,'Number of user sessions : ' || count( distinct icx.session_id) How_many_user_sessions
from icx_sessions icx, fnd_nodes fnd where icx.disabled_flag != 'Y'
and icx.PSEUDO_FLAG = 'N'
and icx.node_id=fnd.node_id
and (icx.last_connect + decode(FND_PROFILE.VALUE('ICX_SESSION_TIMEOUT'), NULL,icx.limit_time, 0,
icx.limit_time,FND_PROFILE.VALUE('ICX_SESSION_TIMEOUT')/60)/24) > sysdate and counter < icx.limit_connects
group by icx.node_id,fnd.node_name;
REM
REM END OF SQL
REM
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment