|
|
January 12, 2012
2. Correction to Tuning Letter 2011 No. 6 3. RSM Problem? 4. HIPER APARs for DS8700/DS8800s The 40-page 2011 No. 6 Tuning Letter was emailed to paid subscribers on December 29, 2011. You may visit our website at www.watsonwalker.com to obtain subscription information and the table of contents. The following is the Management Summary from that issue, talking about some of the contents of this latest Tuning Letter: Service Level
Management
As an example of the complexity of managing service levels, consider an installation which has guaranteed 95% z/OS availability during prime shift. That actually allows two hours of outage per week. And because that objective only covers z/OS, the applications could be down for three hours a week, and yet the service level is met. We discuss those issues and provide an description of the many types of service levels that might need to be present in your installation. Many of the z/OS 1.13 enhancements need to be implemented with parameters in members of Parmlib. Most new facilities are disabled when distributed in a new release because customers have indicated that they don't want to see unintended changes in behavior during a release migration. That means that after a new release is installed, you need to go into parmlib and enable the facilities in order to take full advantage of the enhancements. In this issue, Cheryl takes each parameter that is new with z/OS 1.13 and describes which facilities to enable, and which to leave disabled. User Experiences
You'll also find many other useful or interesting items throughout this newsletter: An important Facebook site for z/OS• Important publications and papers from IBM • SMFand Information APARs to help you identify useful maintenance. 2. Correction to
Tuning Letter 2011 No. 6
I thought that this was a handy
item that Art Celestini of Celestini Development Services provided
on IBM-Main. A poster asked how to get a listing of all of the compile
dates in a load library. Art provided a set of JCL to provide the link-edit
dates of all modules in a library. That seems close enough to me. Thanks,
Art. IBM-Main archives are at bama.ua.edu/archives/ibm-main.html,
and Art's response was on July 4, 2011 (z/OS Newbie question).
For lack of a better universal tool, I use the following to obtain the link-edit dates for all of the load modules in a library. Getting the compile dates of all of the component object modules would seem to be much harder because of the variety of compilers that might be involved.//*------------------------------------------------------------- //* //* This job serves to list the link-edit dates for all members of //* a PDS/PDSE load library. It works by running AMBLIST against //* the entire library with its output going to a temporary data //* set and then runs SORT to extract only the lines containing the //* module name and date the module was linked. //* //* Change the SET SYSLIB below to the desired load module library. //* //*------------------------------------------------------------- // SET SYSLIB=<target-load-library> //*------------------------------------------------------------- //LOADLIB EXEC PGM=AMBLIST //*SYSPRINT DD SYSOUT=* //SYSPRINT DD DISP=(NEW,PASS),DSN=&&AMBLIST, // UNIT=(SYSDA,3),SPACE=(TRK,(3000,300),RLSE), // DCB=(RECFM=FBA,LRECL=133,BLKSIZE=0) //SYSLIB DD DISP=SHR,DSN=&SYSLIB //SYSIN DD * LISTIDR OUTPUT=ALL //*------------------------------------------------------------- //SELECT EXEC PGM=SORT //SYSOUT DD SYSOUT=* //SORTIN DD DISP=(OLD,DELETE),DSN=&&AMBLIST //SORTOUT DD SYSOUT=* //SYSIN DD * INCLUDE COND=(6,6,CH,EQ,C'MEMBER',OR,11,9,CH,EQ,C'THIS LOAD') OPTION COPY // This provides a short listing of one line per load module. If you want the dates of each CSECT with the load module, change the INCLUDE statement above to read:
Thanks for subscribing to Cheryl's List! Please note that this email service is not intended to match or even summarize the large scope and volume of information we provide in Cheryl Watson’s Tuning Letter. The Tuning Letter is published six times a year and includes six PDF issues delivered via email along with an annually updated DVD of all back issues since 1991. The 2012 single-site subscription rate is $1050. Multi-site subscriptions are also available. See www.watsonwalker.com/TUNING.html for details. Past tables of contents are at www.watsonwalker.com/TofC.html, and some FULL SAMPLE ISSUES can be found at www.watsonwalker.com/sampleissues.html. If you obtained this from someone else and would like your own copy in the future, just go to our Web page at http://www.watsonwalker.com and fill out the form under "Cheryl's List." That signs you up, and it's free! It's a one-way list, from us to you. If you make a "reply," it will come just to us, not to the other members of the list. We never share your address or information with anyone else. To unsubscribe or change your email address, use the Web page and password mentioned in your welcome message. Or, you can send an email request to admin (at) watsonwalker.com. Past Cheryl's List issues, starting with issue #1 from December of 1996 can be obtained at www.watsonwalker.com/archives.html. In Cheryl's List, we provide updates to our full newsletter, Cheryl Watson's Tuning Letter. We’ll also let you know if anything of importance has been added to our web pages, and tell you about our other products and services, including BoxScore and GoalTender, our two software offerings. So - we hope you'll find this service
valuable. Be sure to send email to technical@watsonwalker.com if you have
any questions or comments.
|
|