Skip to content

Instantly share code, notes, and snippets.

@psfttutorial
Created July 22, 2022 19:10
Show Gist options
  • Save psfttutorial/e8437de5f2173262641517ed7fd0e522 to your computer and use it in GitHub Desktop.
Save psfttutorial/e8437de5f2173262641517ed7fd0e522 to your computer and use it in GitHub Desktop.
Find users who are connected to PeopleSoft application using Application Designer
-- Find users who are connected to PeopleSoft application using Application Designer
set linesize 200
select p.spid,
substr(s.osuser,1,10) osuser,
substr(s.username,1,8) username,
substr(s.program,1,24) program,
substr(s.client_info,1,60) ClientInfo
from v$session s, v$process p
where s.paddr=p.addr
and s.osuser is not null
and s.program='pside.exe'
order by s.osuser;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment