> -----Original Message----- > From: IBM Mainframe Discussion List > [mailto:[email protected]] On Behalf Of Vernooij, CP - SPLXM > Sent: Thursday, June 25, 2009 9:32 AM > To: [email protected] > Subject: Re: DCOLLECT output - convert KB to tracks? > > > > "McKown, John" <[email protected]> wrote in message > news:<[email protected] > cnrh.dom>. > .. > > DCOLLECT outputs dataset sizes in KB (or KiB?). Anyway, management > wants the output in TRACKS. But I've noticed that the > conversion is not > as simple as "divide by ???" where ??? is an integer. What is the real > conversion factor for a 3390? Will it be simple to do in > ICETOOL, which > is what I am using for the report. It is all that I have left > since they > killed SAS. > > > > John McKown > > Systems Engineer IV > > IT > > > > This is how I do it in SAS: > aloctrks = ceil(dcdallsp/56664) > usedtrks = ceil(dcdusesp/56664) > > Kees.
Thanks. But I had to multiply DCDALLSP by 1024 to make it work. If anybody is interested, I did this via an INREC OVERLAY similar to: INREC OVERLAY=(93:(93,4,BI,MUL,+1024,ADD,+56663),DIV,+56664,TO=BI,LENGTH=4) I had to ADD 56663 to emulate the effect of the CEIL function. -- John McKown Systems Engineer IV IT Administrative Services Group HealthMarkets(r) 9151 Boulevard 26 * N. Richland Hills * TX 76010 (817) 255-3225 phone * (817)-961-6183 cell [email protected] * www.HealthMarkets.com Confidentiality Notice: This e-mail message may contain confidential or proprietary information. If you are not the intended recipient, please contact the sender by reply e-mail and destroy all copies of the original message. HealthMarkets(r) is the brand name for products underwritten and issued by the insurance subsidiaries of HealthMarkets, Inc. -The Chesapeake Life Insurance Company(r), Mid-West National Life Insurance Company of TennesseeSM and The MEGA Life and Health Insurance Company.SM ---------------------------------------------------------------------- For IBM-MAIN subscribe / signoff / archive access instructions, send email to [email protected] with the message: GET IBM-MAIN INFO Search the archives at http://bama.ua.edu/archives/ibm-main.html

