Created
July 22, 2022 19:10
-
-
Save psfttutorial/e8437de5f2173262641517ed7fd0e522 to your computer and use it in GitHub Desktop.
Find users who are connected to PeopleSoft application using Application Designer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- 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