Thanks Rob
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 Rob Berendt
Sent: Wednesday, August 22, 2018 9:05 AM
To: Midrange Systems Technical Discussion <midrange-l@xxxxxxxxxxxx>
Subject: RE: [EXTERNAL] Re: IFS dir size, hard links only
Prompt RTVDIRINF and read that. Especially the "Information file prefix".
The key word being "prefix". The default is QAEZD. The library is also important. We changed ours to some user library. So now we have QAEZD0001D QAEZD0001O QAEZD0002D QAEZD0002O QAEZD0003D QAEZD0003O ...
QAEZD0031D
QAEZD0031O
They are huge. We keep the first of the year for 5 years, the first of the month for one year, and occasionally prune the rest. However, it is very important when you prune them you renumber them sequentially.
Otherwise, if I delete QAEZD0002D and QAEZD0002O the next time it runs it will reuse that number.
See also
https://www.ibm.com/support/knowledgecenter/ssw_ibm_i_73/rzahg/welcome.htm
and search for RTVDIRINF
Rob Berendt
--
IBM Certified System Administrator - IBM i 6.1 Group Dekko Dept 1600 Mail to: 2505 Dekko Drive
Garrett, IN 46738
Ship to: Dock 108
6928N 400E
Kendallville, IN 46755
http://www.dekko.com
From: "Alan Shore" <ashore@xxxxxxxx>
To: "Midrange Systems Technical Discussion" <midrange-l@xxxxxxxxxxxx>
Date: 08/22/2018 08:56 AM
Subject: RE: [EXTERNAL] Re: IFS dir size, hard links only
Sent by: "MIDRANGE-L" <midrange-l-bounces@xxxxxxxxxxxx>
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.