×
The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.
(Channeling Rob) and if you are on a current release there is some SQL
you can use:
SELECT Aj.Subsystem
,Aj.Job_Name
,Aj.Authorization_Name AS "Current User"
,Ns.Remote_Address
,Aj.Cpu_Time AS "MilliSeconds Used"
FROM TABLE(Qsys2.Active_Job_Info('NO', '', 'QZDASOINIT', '')) AS Aj
,Qsys2.Netstat_Job_Info AS Ns
WHERE (Aj.Authorization_Name LIKE '%'
and NS.REMOTE_ADDRESS like '%')
AND Aj.Job_Name = Ns.Job_Name
ORDER BY Aj.Authorization_Name;
https://www.ibm.com/developerworks/community/wikis/home/wiki/IBM%20i%20Technology%20Updates/page/QSYS2.ACTIVE_JOB_INFO()%20-%20UDTF
Bryan
tim wrote on 4/10/2018 11:38 AM:
is there a way of telling who is connecting to the iseries db using
things like access, excel, etc?
i want to be able to control these functions. I believe all our users
have odbc set up as part of client access install.
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact
[javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.