Hi Brian
Where is any information on this to be found
We are on V7r3 and I cut and pasted this query into an STRSQL session, but received
QAEZD0001O in DIRINFO type *FILE not found.
Alan Shore
E-mail : ASHORE@xxxxxxxx
Phone [O] : (631) 200-5019
Phone [C] : (631) 880-8640
'If you're going through hell, keep going.'
Winston Churchill
-----Original Message-----
From: MIDRANGE-L [mailto:midrange-l-bounces@xxxxxxxxxxxx] On Behalf Of Bryan Dietz
Sent: Wednesday, August 22, 2018 8:53 AM
To: Midrange Systems Technical Discussion <midrange-l@xxxxxxxxxxxx>
Subject: [EXTERNAL] Re: IFS dir size, hard links only
Using RTVDIRINFO you can use the following:
SELECT DISTINCT COUNT(Dirinfo.Qaezd0001o.Qezdiridx) AS Tot
     ,(SUM(Dirinfo.Qaezd0001o.Qezalcsize) / 1024) AS Block_Size_1k
-- the above is similar to "du -H -bk"
     ,Dirinfo.Qaezd0001o.Qezdiridx INDEX
     ,Dirinfo.Qaezd0001d.Qezdirnam1 Directory_Name
     FROM Dirinfo.Qaezd0001o INNER
     JOIN Dirinfo.Qaezd0001d ON
          Dirinfo.Qaezd0001o.Qezdiridx = Dirinfo.Qaezd0001d.Qezdiridx
     GROUP BY Dirinfo.Qaezd0001o.Qezdiridx
              ,Dirinfo.Qaezd0001d.Qezdirnam1
     ORDER BY
     Block_Size_1k DESC;
*this was adapted from a post on this list.
Bryan
Rob Berendt wrote on 8/22/2018 7:57 AM:
I do know that using IBM Navigator for i, otherwise known as 
http://youribmi:2001, will expand and tell you the contents of the 
symbolic links also.  So you may not want to use that.
PRTDIRINF will not expand the symbolic links.  You have to run 
RTVDIRINF first.  We schedule a run on a weekly basis.
Rob Berendt
--
This is the Midrange Systems Technical Discussion (MIDRANGE-L) mailing list To post a message email: MIDRANGE-L@xxxxxxxxxxxx To subscribe, unsubscribe, or change list options,
visit: 
https://lists.midrange.com/mailman/listinfo/midrange-l
or email: MIDRANGE-L-request@xxxxxxxxxxxx Before posting, please take a moment to review the archives at 
https://archive.midrange.com/midrange-l.
Please contact support@xxxxxxxxxxxx for any subscription related questions.
Help support midrange.com by shopping at amazon.com with our affiliate link: 
http://amzn.to/2dEadiD
As an Amazon Associate we earn from qualifying purchases.