Yes it is. Good catch. And if you click on that View SQL button on the far right top you'll see the use of the same QSYS2.SYSTMPSTG. Happy to see people using Navigator though.
Original Message:
Sent: Thu February 15, 2024 09:31 AM
From: Juergen Gleiss
Subject: % System ASP used - How get Details? - Identify Disk increase
Hi Robert,
i know that this information is also available at IBM Navigator for i:
ibmhost:2002/Navigator/mainframe/system/temp-storage.
Regards Jürgen
------------------------------
Juergen Gleiss
Original Message:
Sent: Thu February 15, 2024 08:38 AM
From: Robert Berendt
Subject: % System ASP used - How get Details? - Identify Disk increase
"IF" the "Information collection" timestamp is current (as I mentioned in an earlier reply) then you could use the following to analyze temporary space
QSYS2.SYSTMPSTG
See: https://www.ibm.com/support/pages/ibm-i-services-sql
Sample:
--
-- Which active jobs are the top consumers of temporary storage?
--
SELECT bucket_current_size, bucket_peak_size,
rtrim(job_number) concat '/'
concat rtrim(job_user_name)
concat '/'
concat rtrim(job_name) as q_job_name
FROM QSYS2.SYSTMPSTG
WHERE job_status = '*ACTIVE'
ORDER BY bucket_current_size desc;
------------------------------
Robert Berendt IBMChampion
Original Message:
Sent: Thu February 15, 2024 03:13 AM
From: Juergen Gleiss
Subject: % System ASP used - How get Details? - Identify Disk increase
Hello Satid,
thanks for the detailed explanation.
Regards Jürgen
------------------------------
Juergen Gleiss
Original Message:
Sent: Thu February 15, 2024 01:58 AM
From: Satid Singkorapoom
Subject: % System ASP used - How get Details? - Identify Disk increase
Dear Juergen
What is the size of Temporary Space in the disk space report spooled file that you see? Please compare it against "Current temporary used" that you see from DSPSYSSTS screen to see if they differ by the amount you find differring or not?
"Current temporary used" in DSPSYSSTS can vary a lot in the entire course of a day depending on the varying total workload your server carries at any moment. In my experience, this temp disk allocation can vary as much as 500GB or more from one moment to another for a large total workload case. The larger the total active workload, the larger the moment-to-moment fluctuation. For example, if some jobs are joining many large tables (in SQL for example), IBM i would allocate more temp disk space to store the large result of the table join and then deallocate the space when the jobs are done with their data processing.
So, expecting to see an exact or a very close match between the Disk Space report from RTVDSKINF and what you see from DSPSYSSTS can be a random chance at best. You have better chance to see the match if your workload is small most of the time. As the Greek said to Know Thyself, you need to know your workload :-)
------------------------------
Chance favors only the prepared mind.
-- Louis Pasteur
------------------------------
Satid S.
Original Message:
Sent: Wed February 14, 2024 03:04 AM
From: Juergen Gleiss
Subject: % System ASP used - How get Details? - Identify Disk increase
Hello everyone,
i am searching the details how % System-ASP is summed up from the dspsyssts command.
Because the report you get with "go disktasks" --> "Print Disk Space Information" --> "System Information" does not match the amount from dspsyssts. The difference is 6%.
Is there a disk increase report available to identfy these objects or libraries?
Thanks Jürgen
------------------------------
Juergen Gleiss
------------------------------