Re: Can DFSORT do pattern matching?

2012-05-31 Thread Martin Packer
I looked into writing a sample E15 that would call the LE (I think) 
Regular Expression code. But didn't get very far with it. Sorry! I was 
convinced it could be done but marshalling of parameters etc would be 
fiddly - and it's a long way from my (increasingly ineptly named) :-) day 
job.

Anyone?

Cheers, Martin

Martin Packer,
zChampion, Principal Systems Investigator,
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker
Blog: 
https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker



From:
Kirk Wolf k...@dovetail.com
To:
IBM-MAIN@bama.ua.edu, 
Date:
05/30/2012 09:58 PM
Subject:
Re: Can DFSORT do pattern matching?
Sent by:
IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu



On Wed, May 30, 2012 at 8:04 AM, Shmuel Metz (Seymour J.) 
shmuel+ibm-m...@patriot.net wrote:

 In
 cak6gkd3evkgu6kxu-m3f5+lpt6qlvyut2uhrokxid9l-fog...@mail.gmail.com,
 on 05/30/2012
at 07:37 AM, (N agesh S) nageshbl...@gmail.com said:

 What would be cool is a regex pattern engine that DFSORT can invoke.
 So, once the tiny detail of invoking the Java class

 Why use a Java class. Surely something like PCRE would be more
 efficient.


I like this idea - maybe EFS02 (or E15/35?) exits that uses PCRE?

Here is an interesting article written by an IBMer on using PCRE to
implement UDFs in DB2 (but not on z/OS :-(
http://www.ibm.com/developerworks/data/library/techarticle/0301stolze/0301stolze.html


I wonder if anyone has ported PCRE to z/OS, and whether it could be done
with Metal C, or if a C RTL is required.   Would I suppose that a DFSORT
exit written in full C would require CEEPIPI, etc,   I can't tell if the
COBEXIT=COB2 LE support would suffice for a C exit.   Has anyone written
DFSORT exits in C?

Also, one could always use the POSIX-compatible
regcomp()/regexec()/regerror()/regfree() functions in the C RTL.   These
are the basis of z/OS Unix grep/fgrep/egrep; but not as nice as PCRE IMO.

Kirk Wolf
Dovetailed Technologies
http://dovetail.com

FWIW: Since PCRE is a BSD license (i.e. not copy-left), perhaps IBM should
consider adding built-in conditionals based on it ?

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN








Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN


Re: WLM : multiple periods not recommended for batch - why?

2012-05-06 Thread Martin Packer
Agree on DDF - with the proviso that we need to check we're actually 
getting transaction endings out of DDF (CMTSTAT=INACTIVE etc).

Cheers, Martin

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker
Blog: 
https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker



From:
Cheryl Walker che...@watsonwalker.com
To:
IBM-MAIN@bama.ua.edu, 
Date:
05/06/2012 03:13 PM
Subject:
Re: WLM : multiple periods not recommended for batch - why?
Sent by:
IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu



I'm writing a series of articles for my Tuning Letter about service level 
agreements and mentioned in the last issue that I strongly believe in 
single period batch and two-period TSO service classes. One of my readers 
asked me to clarify, so I pulled up an old article on multi-period batch. 
It will soon be added to our website as part of the z/OS 101 Primer 
articles that are free to the public - 
http://www.watsonwalker.com/articles.html. I've included the entire 
article below, but would like to qualify that I consider work like DDF to 
be more like TSO, needing two periods, than batch. (I've kept this as 
plain text, so it isn't pretty. Sorry.)

Best regards,
Cheryl

==
Cheryl Watson
Watson  Walker, Inc.
www.watsonwalker.com
==

Multi-Period Batch

What are the advantages and disadvantages of running batch in 
single-period service class versus a multi-period service class?
 
We must have heard this question at least six times at the latest SHARE. 
Although we did provide an answer in our September 1994 TUNING Letter, we 
think it's time for an update. We'll address the considerations for both 
batch and production jobs, because they tend to have different 
requirements.

Test Batch

If your intention is to provide the best turnaround to the most people by 
allowing large resource consumers to suffer slightly, then you'll want to 
use the typical method of managing test batch jobs. That method simply 
consists of getting as many of the small jobs through the system, at a 
high dispatch priority, as you can. You would then let the larger jobs run 
at a lower priority, and possibly miss their service goals.
 
This technique is used in almost every data center today. The only 
difference is in how it's implemented. Let us describe the two typical 
methods and the pros and cons of each.
 
Priority by Job Classes

The most common technique is to define a set of test batch job classes 
that allow a certain set of resources. For example, you might define the 
following test batch job classes:
 
  A - Less than 5 seconds CPU time, no tapes - 10 minute turnaround
  B - Less than 15 seconds CPU time, 0 to 1 tape - 30 minute 
turnaround
  C - Unlimited CPU time, 0 or 1 tape - 2 hour turnaround
  D - Unlimited CPU time, unlimited tapes - overnight
 
Then you would define some JES initiators to process these jobs. There are 
dozens of ways to set up initiators, but a typical scenario, might be:
 
  Init 1 - Classes:  A
  Init 2 - Classes:  A
  Init 3 - Classes:  B
  Init 4 - Classes:  BA
  Init 5 - Classes:  CA
  Init 6 - Classes:  DCBA
 
You would then set up a single period service class for each job class. As 
one example:
 
  TSTBATA - 90% within 10 minutes
  TSTBATB - 90% within 30 minutes
  TSTBATC - period 1 = velocity of 20%; period 2 = discretionary
  TSTBATD - discretionary
 
We're making an assumption that there aren't enough ended class C jobs to 
allow a response time goal.
 
The advantage of this technique is that the initiators will determine the 
highest priority jobs to allow into MVS. If the operators feel that the 
system is too busy at the moment, they can close down the initiators in 
order of 6, 5, 4, 3, 2 and 1. When jobs in classes A and B get onto an 
initiator, they'll go into a single-period service class and stay at the 
same dispatch priority while they're executing. For those job classes, the 
first jobs on an initiator are normally the first jobs completed.
 
Job classes C and D, on the other hand, have unlimited CPU time. They 
might need 20 seconds of CPU time or three hours of CPU time - you don't 
really know. Therefore, the multi-period batch allows you to push the 
smaller of these large jobs through the system by setting the dispatch 
priority of period one to provide higher performance.
 
Priority by Period

Prioritizing test batch jobs by their actual use rather than their 
anticipated use is another common technique. In this method, there would 
be just one test batch job class. The initiators would be used to manage 
the number of test jobs in the system, but wouldn't differentiate between 
the short jobs or the long jobs.
 
A service class for this method might have four periods and look like:
 
  Period 1 - 90% within 10 minutes

Re: XML Parsing

2012-04-30 Thread Martin Packer
Note: As it stands that ISN'T valid XML. I assume it's a subset of your 
actual file else standard XML processing is barking up the wrong tree. :-(

Others have answered how to do the transformation of what you've shown to 
what you want.

Cheers, Martin

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker
Blog: 
https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker



From:
Ron Thomas ron5...@gmail.com
To:
IBM-MAIN@bama.ua.edu, 
Date:
30/04/2012 18:13
Subject:
XML Parsing
Sent by:
IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu



Hi ,

We have XML file that is send by the customer, we need to alter the XML 
file and send it back to 3'rd party . Here is the xml file

SSN123604299/SSN..   SSNFormatted123-60-4299/SSNFormatted


The altered format need to be like the one below

TIN123604399/TIN.. 

The SSNFormatted tag is removed  TIN is the one we need to send across to 
the 3'rd party. I would like get from the listners  how we can acheive the 
same.


Thanks,
Ron T

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN








Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN


Re: Any SMF Cut for MVS Commands cancel

2012-04-24 Thread Martin Packer
Type 30 should have the appropriate abend code - for the cancelled job.

Cheers, Martin

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker
Blog: 
https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker



From:
Ravi Gaur gaur.ravi2...@gmail.com
To:
IBM-MAIN@bama.ua.edu, 
Date:
24/04/2012 07:46
Subject:
Any SMF Cut for MVS Commands cancel
Sent by:
IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu



We have had a situation where somebody cancelled a job which caused IMS 
left in middle and later issue now we tried finding who issued it however 
it got just INTERNAL (Generally something coming from console) anybody 
know any other pin to go back to root who issued it..another thing I could 
notice is command seems to be coming thru netview..

12114 14:46:37.86 INTERNAL 0290  CANCEL   STLD3VDC,A=025B 
12114 14:46:37.90 STC12398 0290  CANCEL   STLD3VDC,A=025B  
STC12398 = Netview task.. 

Now SMF30 doesn't contain any info neither 26 ..Syslog doesn't got 
anything Netview log got only command as pasted here...any call?

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN








Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN


Re: SMF from critical application

2012-04-11 Thread Martin Packer
That's a piece of string you have there and it looks like some of it is 
snaking round the corner and out of view. :-)

Seriously, it would depend on things like how much processing to eliminate 
the ones you don't want, how many records you're suppressing and so on.

Probably better to eliminate the production of the IFCIDs at source. Which 
ones are we talking about?

Cheers, Martin

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker
Blog: 
https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker



From:
Donald Likens dlik...@infosecinc.com
To:
IBM-MAIN@bama.ua.edu, 
Date:
11/04/2012 11:37
Subject:
SMF from critical application
Sent by:
IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu



We are thinking about writing a SMF exit (IEFU8x) to not write certain DB2 
IFCIDS of the SMF 102 record. Can anyone direct me to some documentation 
that would help me to understand how much processing time would be saved 
by doing this?

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN








Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN


Re: VSAM help wanted for random reads

2012-04-04 Thread Martin Packer
+1 for DEFERW. But understand it defers the writes :-) ...

Once took a job down from 2M EXCPs to 0.5M with BLSR and then on down to 
850 by adding DEFERW. 500 Control Intervals or so in the VSAM data set all 
the I/O was to.

Cheers, Martin

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker
Blog: 
https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker



From:
Ron Hawkins ronjhawk...@sbcglobal.net
To:
IBM-MAIN@bama.ua.edu, 
Date:
04/04/2012 05:34
Subject:
Re: VSAM help wanted for random reads
Sent by:
IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu



Frank,

 

It is terrific that you are getting an improvement with BLSR. 

 

I suspect you are using a vanilla copy of an example in the BLSR manual
similar to Peter Farley's example in his post. The problem is these parms 
do
not get the best performance from BLSR.

 

The missing value is DEFERW. This is explained at
http://publibz.boulder.ibm.com/cgi-bin/bookmgr_OS390/BOOKS/IEA5J600/3.1.1?SH

ELF=iea2bkb3

http://publibz.boulder.ibm.com/cgi-bin/bookmgr_OS390/BOOKS/IEA5J600/3.1.1?S

HELF=iea2bkb3DT=19940301112926CASE DT=19940301112926CASE= about three
quarters of the way down the page. Using Peter's example I would suggest 
you
should use:

 

//MYKSDS   DD  SUBSYS=(BLSR,'DDNAME=MYKSDS#','RMODE31=ALL',

// 'MSG=I','BUFND=256','BUFNI=10' DEFERW) 

//MYKSDS#  DD  DSN=HLQ.MY.KSDS,DISP=SHR 

 

If you do omit DEFERW a CI will be written to the KSDS every time you 
update
it. It will stay buffered for a read buffer hit, but if you update 100
records in the CI you will write that CI 100 times. Not a huge problem for
most modern DASD, but if you are running synchronous remote copy it will 
be
painful. With DEFERW an updated CI will written when the LSR algorithm
decides it is no longer active enough to remain in the LSR pool. You'll 
also
see an unusual effect where all changed CI are written to KSDS at end of
job.

 

DEFERW also helps the performance of sequential inserts that do not use 
SIS,
and CI and CA splits. It's an often omitted must-have for BLSR.

 

NB it's a good practice to set BUFNI to the number of records in the Index
component of the KSDS, plus 10%. Again based on the example, if you have a
three level index with 11 index set records your sequence set will pollute
the buffer hits on the low level index set records (the high level index 
set
record is probably the most touched CI in the KSDS).

 

Ron

 

 

 -Original Message-

 From: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] On

 Behalf Of Frank Swarbrick

 Sent: Tuesday, April 03, 2012 4:33 PM

 To: IBM-MAIN@bama.ua.edu

 Subject: Re: [IBM-MAIN] VSAM help wanted for random reads

 

 Several good ideas given.

 

 My sysprog installed BLSR and I got very good results:

 

 Without BLSR:

 -

   -TIMINGS

 (MINS.)--

 -PAGING COUNTS

 -STEPNAME

 PROCSTEPRC   EXCP

 CONN

 TCB   SRB

 CLOCK  SERV

 WORKLOAD  PAGE  SWAP   VIO SWAPS

 -PROC01

 STEP01  00  1123K

 1121K

 .83   .11

 23.2   1599506  TSTBAT

 0

 IEF404I

 ICM06F - ENDED -

 TIME=16.43.46 -ICM06F ENDED.

 NAME-ICM06

 TOTAL TCB CPU TIME=  .83 TOTAL ELAPSED TIME=

 23.2

 

 With BLSR:

 CSR020I

 BUFSI=1024, BUFSD=20480, BUFNI=10, BUFND=256, HBUFNI=0, HBUFND=0,

 SHRPOOL=14.

 DDNAME=ICMMSTR

 CSR022I

 STRNO=16, ACB RMODE31=ALL, RMODE31=ALL.

 DDNAME=ICMMSTR

 +CSR021I

 ACB CONVERTED TO USE VSAM LSR.

 DDNAME=ICMMSTR

 -

   -TIMINGS

 (MINS.)--

 -PAGING COUNTS

 -STEPNAME

 PROCSTEPRC   EXCP

 CONN

 TCB   SRB

 CLOCK  SERV

 WORKLOAD  PAGE  SWAP   VIO SWAPS

 -PROC01

 STEP01  00  10704

 3532

 .04   .00

 1.1 73844

 TSTBAT   0

 0 0 0

 IEF404I

 ICM06F - ENDED -

 TIME=16.55.07 -ICM06F ENDED.

 NAME-ICM06

 TOTAL TCB CPU TIME=  .04 TOTAL ELAPSED TIME=   1.1

 23.2 minutes versus 1.1 minutes. 1,123,000 EXCP versus 10,704 EXCP.

 

 BTW, to Steve Comstock, there is no AIX on this file.  Just a 17 byte 
key

 where the first byte is the record type ('0' - '5') and the remaining 
16
is the

 'actual' key in the format appropriate for that particular record type.

 

 The idea of putting the record type at the end rather than the beginning
is an

 interesting idea.  Unless there's some way of doing that without having 
to

 change any programs I don't think we'd want to take the time.  However I
am

 interested enough to try it with this one program and see what effect it
has.

 

 Thanks!

 Frank

 

 --

 For IBM-MAIN subscribe / signoff / archive access instructions, send 
email
to

  mailto:lists...@bama.ua.edu lists...@bama.ua.edu with the message: 
INFO
IBM-MAIN

Re: VSAM help wanted for random reads

2012-04-04 Thread Martin Packer
Not to suggest YOU should've done this but you can get useful statistics 
out of SMF 62 and 64 that would've told you how much write activity you 
had - and a lot else besides.

Cheers, Martin

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker
Blog: 
https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker



From:
Frank Swarbrick frank.swarbr...@yahoo.com
To:
IBM-MAIN@bama.ua.edu, 
Date:
04/04/2012 16:59
Subject:
Re: VSAM help wanted for random reads
Sent by:
IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu



Tested with DEFERW=YES (that is the proper syntax, by the way.  Commas are 
optional.)
It didn't gain me much, as I am only updating 32 of 61459 records, so I'm 
not going to worry about it at this time.


With BLSR DEFERW=YES:
CSR020I BUFSI=1024, BUFSD=20480, BUFNI=10, BUFND=256, HBUFNI=0, HBUFND=0, 
SHRPOOL=14. DDNAME=ICMMSTR 
CSR022I STRNO=16, ACB RMODE31=ALL, RMODE31=ALL. 
DDNAME=ICMMSTR   
+CSR021I ACB CONVERTED TO USE VSAM LSR. 
DDNAME=ICMMSTR   
-  -TIMINGS 
(MINS.)--  -PAGING COUNTS
-STEPNAME PROCSTEPRC   EXCP   CONN   TCB   SRB  CLOCK  
SERV  WORKLOAD  PAGE  SWAP   VIO SWAPS
-PROC01   STEP01  00  10649   3485   .04   .001.2 
73938  TSTBAT   0 0 0 0
IEF404I ICM06F - ENDED - 
TIME=09.36.39   


-ICM06F   ENDED.  NAME-ICM06TOTAL TCB CPU TIME=  .04 
TOTAL ELAPSED TIME=   1.2   

STATISTICS  


  REC-TOTAL--61459 SPLITS-CI--0 
EXCPS466
  REC-DELETED0 SPLITS-CA--0 
EXTENTS1
  REC-INSERTED---0 FREESPACE-%CI-20 
SYSTEM-TIMESTAMP:   
  REC-UPDATED---32 FREESPACE-%CA-10  
X'C95EC792E74FAC04'
  REC-RETRIEVED--10103 
FREESPC-19886080 


With BLSR DEFERW=NO:
CSR020I BUFSI=1024, BUFSD=20480, BUFNI=10, BUFND=256, HBUFNI=0, HBUFND=0, 
SHRPOOL=14. DDNAME=ICMMSTR 
CSR022I STRNO=16, ACB RMODE31=ALL, RMODE31=ALL. 
DDNAME=ICMMSTR   
+CSR021I ACB CONVERTED TO USE VSAM LSR. 
DDNAME=ICMMSTR   
-  -TIMINGS 
(MINS.)--  -PAGING COUNTS
-STEPNAME PROCSTEPRC   EXCP   CONN   TCB   SRB  CLOCK  
SERV  WORKLOAD  PAGE  SWAP   VIO SWAPS
-PROC01   STEP01  00  10661   4459   .04   .001.2 
74300  TSTBAT   0 0 0 0
IEF404I ICM06F - ENDED - 
TIME=09.53.06   


-ICM06F   ENDED.  NAME-ICM06TOTAL TCB CPU TIME=  .04 
TOTAL ELAPSED TIME=   1.2   

STATISTICS  


  REC-TOTAL--61459 SPLITS-CI--0 
EXCPS471
  REC-DELETED0 SPLITS-CA--0 
EXTENTS1
  REC-INSERTED---0 FREESPACE-%CI-20 
SYSTEM-TIMESTAMP:   
  REC-UPDATED---32 FREESPACE-%CA-10  
X'C95ECB3FB8134004'
  REC-RETRIEVED--10103 
FREESPC-19886080 


I did a delete/define/repro from source for the ICMMSTR file before each 
run.


Thanks for everyone's help!

Frank



- Original Message -
 From: Farley, Peter x23353 peter.far...@broadridge.com
 To: IBM-MAIN@bama.ua.edu
 Cc: 
 Sent: Wednesday, April 4, 2012 7:00 AM
 Subject: Re: VSAM help wanted for random reads
 
 Be very cautious using DEFERW with BLSR unless you already have a good 
backup of 
 the KSDS immediately before the program starts.  Recovery after a crash 
(program 
 or system) will require a restore of the file, since DEFERW with a crash 
can 
 leave the KSDS corrupted and sometimes unreadable, in part or in whole.  

 BTDTGTTS.
 
 But it does speed up the update process substantially.  If you decide to 
use it, 
 add the measurements of both the time to take a backup just before 
starting the 
 program and the program update time to compare to the non-DEFERW time.
 
 If you can allocate sufficient memory for buffers that will hold ALL of 
the 
 CI's in the file, or at least all of the CI's that need an update (not 
 always practical, of course), all of the updating will occur at CLOSE.
 
 Also note that I added a comma before the DEFERW in Ron's

Re: z/OS ftp and Unicode

2012-03-26 Thread Martin Packer

‰םz{S­©ל}ךִ���xjַ÷א*'µיםO*^µלm‏™Z�w!j»

Re: Pre-Friday fun: Halon dumps and POK Resets

2012-03-23 Thread Martin Packer
More like potato cripes. :-)

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker
Blog: 
https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker



From:
Richard Pinion rpin...@netscape.com
To:
IBM-MAIN@bama.ua.edu, 
Date:
23/03/2012 13:27
Subject:
Re: Pre-Friday fun: Halon dumps and POK Resets
Sent by:
IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu



Isn't that potato crips?

Richard and Vickie Pinion

--- john.comp...@teamwpc.co.uk wrote:

From: John Compton john.comp...@teamwpc.co.uk
To: IBM-MAIN@bama.ua.edu
Subject: Re: Pre-Friday fun: Halon dumps and POK Resets
Date: Fri, 23 Mar 2012 13:24:18 +

Snack food manufacturer in UK.
Computer room was a room *within* the main warehouse, with windows all 
around (ops hated it - said it made them feel like animals in a zoo).
Engineer plus trainee running maintenance on the Halon system. Trainee 
fumbles something and triggers the gas dump.
Pressure surge was great enough that the compuer room windows blew out 
into the warehouse.

Management not impressed with the idea of using Halon to extinguish 
smoking potato chips, etc..



From: IBM Mainframe Discussion List [IBM-MAIN@bama.ua.edu] on behalf of 
zMan [zedgarhoo...@gmail.com]
Sent: 22 March 2012 17:33
To: IBM-MAIN@bama.ua.edu
Subject: Pre-Friday fun: Halon dumps and POK Resets

So over the years I've heard a few good stories about accidental (or
deliberate) Halon dumps and BRS pressings. Like operators playing Frisbee
in the machine room and discovering that the Halon button really, really
needs a cover on it...

Who else has stories to share?
--
zMan -- I've got a mainframe and I'm not afraid to use it

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN




_
Netscape.  Just the Net You Need.

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN








Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN


Re: Pre-Friday fun: Halon dumps and POK Resets

2012-03-22 Thread Martin Packer
Similar to what I heard happened in the San Fran quake. Only it was pumps 
for the oil from the tanks in the basement to 8th floor for generators 
that were on city power when the quake took the power out.

Got from QUAKE FORUM for those who remember it. :-)

Cheers, Martin

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker
Blog: 
https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker



From:
McKown, John john.mck...@healthmarkets.com
To:
IBM-MAIN@bama.ua.edu, 
Date:
22/03/2012 17:50
Subject:
Re: Pre-Friday fun: Halon dumps and POK Resets
Sent by:
IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu



Ah, yes. I remember a similar story now. I don't know if it is true or 
not. Building had emergency electric generators, diesel. The starter for 
the engines was run off of city power. Need I say more about what 
__didn't__ happen when city power failed?

--
John McKown 
Systems Engineer IV
IT

Administrative Services Group

HealthMarkets(r)

9151 Boulevard 26 * N. Richland Hills * TX 76010
(817) 255-3225 phone * 
john.mck...@healthmarkets.com * 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

 

 -Original Message-
 From: IBM Mainframe Discussion List 
 [mailto:IBM-MAIN@bama.ua.edu] On Behalf Of Ken Hume, IBM
 Sent: Thursday, March 22, 2012 12:45 PM
 To: IBM-MAIN@bama.ua.edu
 Subject: Re: Pre-Friday fun: Halon dumps and POK Resets
 
 Before I joined IBM I worked for a mid sized company near Atlanta.
 
 We had our electrical company install a UPS. They got everything 
 installed and decided, mid day on a working day, to test the system.
 
 The hit the button and the ENTIRE building went dark.
 
 Oops.
 
 Ken Hume
 IBM PD Tools Client Advocate
 (720)396-7776
 kph...@us.ibm.com
 
 
 On 3/22/2012 11:33 AM, zMan wrote:
  So over the years I've heard a few good stories about accidental (or
  deliberate) Halon dumps and BRS pressings. Like operators 
 playing Frisbee
  in the machine room and discovering that the Halon button 
 really, really
  needs a cover on it...
 
  Who else has stories to share?
 
 --
 For IBM-MAIN subscribe / signoff / archive access instructions,
 send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN
 
 

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN








Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN


Re: Are LPAR names unique or effectively unique?

2012-03-12 Thread Martin Packer
Nowadays machine serial number is in Type 70 in a unique way. So I'd use 
that, together with LPAR number and name. Not sure how you'll cope if an 
LPAR has to move to a different machine.

Cheers, Martin

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker
Blog: 
https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker



From:
Mr Austin austinm...@yahoo.com
To:
IBM-MAIN@bama.ua.edu, 
Date:
12/03/2012 10:39
Subject:
Are LPAR names unique or effectively unique?
Sent by:
IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu





I've been asked to look into seat based licensing for z/OS and for this 
I need a unique z/OS image name for the license. I can see that an LPAR 
has an ID (a number) and a name. The LPAR ID appears to be unique, but is 
the name unique or effectively unique?  By 'effectively' I mean would a 
duplicate name be problematic.


Also, are LPAR names  and IDs normally paired/tied, or might they change? 
Would a license based on the LPAR ID rather than name be acceptable? 


Thanks

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN








Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN


Re: FICON channel utilization

2012-03-07 Thread Martin Packer
Perhaps one would expect HMC and RMF to source from the same place. Tell 
me if I'm wrong, this not being my area.

Cheers, Martin

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker
Blog: 
https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker





Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN


Re: The Trainer's Friend goes Kindle - and you don't need to own a Kindle!

2012-03-06 Thread Martin Packer
Given Kindle doesn't have much of a notion of a page which HTML construct 
are you using to contain a slide?

Cheers, Martin

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker
Blog: 
https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker



From:
Steve Comstock st...@trainersfriend.com
To:
IBM-MAIN@bama.ua.edu, 
Date:
05/03/2012 21:56
Subject:
Re: The Trainer's Friend goes Kindle - and you don't need to own a Kindle!
Sent by:
IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu



On 3/5/2012 2:19 PM, Sevetson, Phil wrote:
 Steve, Speaking strictly for myself, I like the idea of buying your 
material
 in
Kindle format. However, I'm not an AJAX coder. What materials are 
next/soon in
your push for this?

 --Phil Sevetson
 DB2 z/OS DBA

Well, maybe one or two more papers, then I'd like to try
putting a course up. For courses, we'll probably package
just one or two chapters per book so people can buy just
the parts they want / need. Still debating amongst ourselves
about whether any courses we put out will have labs or not.

Not sure what content to put up first; happy to take suggestions.


 -Original Message-
 From: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] On 
Behalf Of Steve Comstock
 Sent: Monday, March 05, 2012 12:05 PM
 To: IBM-MAIN@bama.ua.edu
 Subject: The Trainer's Friend goes Kindle - and you don't need to own a 
Kindle!

 Well, we're trying something new: looking at putting
 content on Amazon.com for reading in Kindle's. The
 details are below.

 But first, I want to point out right away: you don't
 need to own a Kindle to read our content (or any other
 eBook on Amazon, for that matter).

 * If you don't have a Kindle, you can download the
 Kindle app for PCs from Amazon; for free. There are
 also Kindle apps for iPhone, iPad, Android, Mac,
 and more.

 This is pretty cool in and of itself. I think this
 requires you to establish a Kindle account (also
 free). If you have an Amazon account you can
 piggyback on that.

 Go to:

 
http://www.amazon.com/gp/feature.html/ref=sa_menu_karl3?ie=UTF8docId=1000493771



 Alternatively, you can use the Kindle cloud reader and
 read Kindle books in your browser.

 See:

 https://read.amazon.com/about


 

 So for right now, we're experimenting by putting some of
 our free papers into Kindle format: first we write a
 significant update to the paper, to add value; next we
 convert the new version to Kindle format and publish
 to Amazon in their eBook library.

 Our first foray into this brave new world is a major
 rewrite of the paper Coding AJAX Applications in z/OS:

 We've updated some content to reflect changes in the
 RFC, we've added two new examples, including one that
 uses POST and a php CGI to process the POSTed data;
 I also made some editorial changes.

 The Amazon price is about 1/3 the price of just
 purchasing the support files in our own Trainer's Friend
 store, and the Amazon price _includes_ free access to
 the support files, so you can download all the sample
 HTML, COBOL source, and php source to experiment on your
 own.


 Check it out at http://www.amazon.com/dp/B007FY0EWI


 Let us know what you think of this experiment.



-- 

Kind regards,

-Steve Comstock
The Trainer's Friend, Inc.

303-355-2752
http://www.trainersfriend.com

* To get a good Return on your Investment, first make an investment!
   + Training your people is an excellent investment

* Try our tool for calculating your Return On Investment
 for training dollars at
   http://www.trainersfriend.com/ROI/roi.html

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN








Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN


Re: The Trainer's Friend goes Kindle - and you don't need to own a Kindle!

2012-03-06 Thread Martin Packer
The latter - a course page (which I had assumed would be a slide).

Thanks, Martin

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker
Blog: 
https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker



From:
Steve Comstock st...@trainersfriend.com
To:
IBM-MAIN@bama.ua.edu, 
Date:
06/03/2012 13:59
Subject:
Re: The Trainer's Friend goes Kindle - and you don't need to own a Kindle!
Sent by:
IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu



On 3/6/2012 2:38 AM, Martin Packer wrote:
 Given Kindle doesn't have much of a notion of a page which HTML 
construct
 are you using to contain a slide?

What do you mean by 'slide'? If you mean an image, I use an img element

If you mean a page from a course, I build the page from a combination
of ul and li elements, using 'pre' tags for code (usually wrapped in
a div tag so I can set font information and draw a box around the code).



 Cheers, Martin

 Martin Packer,
 Mainframe Performance Consultant, zChampion
 Worldwide Banking Center of Excellence, IBM

 +44-7802-245-584

 email: martin_pac...@uk.ibm.com

 Twitter / Facebook IDs: MartinPacker
 Blog:
 https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker



 From:
 Steve Comstockst...@trainersfriend.com
 To:
 IBM-MAIN@bama.ua.edu,
 Date:
 05/03/2012 21:56
 Subject:
 Re: The Trainer's Friend goes Kindle - and you don't need to own a 
Kindle!
 Sent by:
 IBM Mainframe Discussion ListIBM-MAIN@bama.ua.edu



 On 3/5/2012 2:19 PM, Sevetson, Phil wrote:
 Steve, Speaking strictly for myself, I like the idea of buying your
 material
 in
 Kindle format. However, I'm not an AJAX coder. What materials are
 next/soon in
 your push for this?

 --Phil Sevetson
 DB2 z/OS DBA

 Well, maybe one or two more papers, then I'd like to try
 putting a course up. For courses, we'll probably package
 just one or two chapters per book so people can buy just
 the parts they want / need. Still debating amongst ourselves
 about whether any courses we put out will have labs or not.

 Not sure what content to put up first; happy to take suggestions.


 -Original Message-
 From: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] On
 Behalf Of Steve Comstock
 Sent: Monday, March 05, 2012 12:05 PM
 To: IBM-MAIN@bama.ua.edu
 Subject: The Trainer's Friend goes Kindle - and you don't need to own a
 Kindle!

 Well, we're trying something new: looking at putting
 content on Amazon.com for reading in Kindle's. The
 details are below.

 But first, I want to point out right away: you don't
 need to own a Kindle to read our content (or any other
 eBook on Amazon, for that matter).

 * If you don't have a Kindle, you can download the
  Kindle app for PCs from Amazon; for free. There are
  also Kindle apps for iPhone, iPad, Android, Mac,
  and more.

  This is pretty cool in and of itself. I think this
  requires you to establish a Kindle account (also
  free). If you have an Amazon account you can
  piggyback on that.

  Go to:


 
http://www.amazon.com/gp/feature.html/ref=sa_menu_karl3?ie=UTF8docId=1000493771




  Alternatively, you can use the Kindle cloud reader and
  read Kindle books in your browser.

  See:

 https://read.amazon.com/about


 

 So for right now, we're experimenting by putting some of
 our free papers into Kindle format: first we write a
 significant update to the paper, to add value; next we
 convert the new version to Kindle format and publish
 to Amazon in their eBook library.

 Our first foray into this brave new world is a major
 rewrite of the paper Coding AJAX Applications in z/OS:

 We've updated some content to reflect changes in the
 RFC, we've added two new examples, including one that
 uses POST and a php CGI to process the POSTed data;
 I also made some editorial changes.

 The Amazon price is about 1/3 the price of just
 purchasing the support files in our own Trainer's Friend
 store, and the Amazon price _includes_ free access to
 the support files, so you can download all the sample
 HTML, COBOL source, and php source to experiment on your
 own.


 Check it out at http://www.amazon.com/dp/B007FY0EWI


 Let us know what you think of this experiment.





-- 

Kind regards,

-Steve Comstock
The Trainer's Friend, Inc.

303-355-2752
http://www.trainersfriend.com

* To get a good Return on your Investment, first make an investment!
   + Training your people is an excellent investment

* Try our tool for calculating your Return On Investment
 for training dollars at
   http://www.trainersfriend.com/ROI/roi.html

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN








Unless stated otherwise above:
IBM United

Re: The Trainer's Friend goes Kindle - and you don't need to own a Kindle!

2012-03-05 Thread Martin Packer
I'm not likely to be your customer but this sounds great. A question: What 
authoring mechanism are you using to create Kindle materials and in what 
format are they delivered? MOBI-derivative?

Cheers, Martin

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker
Blog: 
https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker



From:
Steve Comstock st...@trainersfriend.com
To:
IBM-MAIN@bama.ua.edu, 
Date:
05/03/2012 17:05
Subject:
The Trainer's Friend goes Kindle - and you don't need to own a Kindle!
Sent by:
IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu



Well, we're trying something new: looking at putting
content on Amazon.com for reading in Kindle's. The
details are below.

But first, I want to point out right away: you don't
need to own a Kindle to read our content (or any other
eBook on Amazon, for that matter).

* If you don't have a Kindle, you can download the
   Kindle app for PCs from Amazon; for free. There are
   also Kindle apps for iPhone, iPad, Android, Mac,
   and more.

   This is pretty cool in and of itself. I think this
   requires you to establish a Kindle account (also
   free). If you have an Amazon account you can
   piggyback on that.

   Go to:

http://www.amazon.com/gp/feature.html/ref=sa_menu_karl3?ie=UTF8docId=1000493771



   Alternatively, you can use the Kindle cloud reader and
   read Kindle books in your browser.

   See:

https://read.amazon.com/about




So for right now, we're experimenting by putting some of
our free papers into Kindle format: first we write a
significant update to the paper, to add value; next we
convert the new version to Kindle format and publish
to Amazon in their eBook library.

Our first foray into this brave new world is a major
rewrite of the paper Coding AJAX Applications in z/OS:

We've updated some content to reflect changes in the
RFC, we've added two new examples, including one that
uses POST and a php CGI to process the POSTed data;
I also made some editorial changes.

The Amazon price is about 1/3 the price of just
purchasing the support files in our own Trainer's Friend
store, and the Amazon price _includes_ free access to
the support files, so you can download all the sample
HTML, COBOL source, and php source to experiment on your
own.


Check it out at http://www.amazon.com/dp/B007FY0EWI


Let us know what you think of this experiment.

-- 

Kind regards,

-Steve Comstock
The Trainer's Friend, Inc.

303-355-2752
http://www.trainersfriend.com

* To get a good Return on your Investment, first make an investment!
   + Training your people is an excellent investment

* Try our tool for calculating your Return On Investment
 for training dollars at
   http://www.trainersfriend.com/ROI/roi.html

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN








Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN


Re: Writing article on telework/telecommuting

2012-03-04 Thread Martin Packer
One experience from teleworking which should appeal to mainframers: By and 
large 3270 is the least demanding data stream - so TSO / ISPF goes fast 
even on broadband as crummy as mine. (It's all the other junk that runs 
really slowly when the wet string dries out.)

Now I may be in a minority but I bet this counts for lots of people.

Anyhow, having telecommuted for more than 10 years I'm looking forward to 
this article: You are not alone is a useful thing to hear. :-)

Cheers, Martin

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker
Blog: 
https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker



From:
Gabe Goldberg g...@gabegold.com
To:
IBM-MAIN@bama.ua.edu, 
Date:
03/03/2012 21:43
Subject:
Writing article on telework/telecommuting
Sent by:
IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu



I'm writing article for Destination z http://destinationz.org/ on
telework/telecommuting. I think this partitions in two dimensions --
technology vs. mindset and worker vs. employer.

There's abundant information -- and blather -- about this subject. But
Destination z is mainframe focused so I'm especially interested in
relevant System z tips for all four quadrants:
technology/mindset/worker/employer.

Again, this is a tips article so won't include positive/negative
anecdotes. But they're still welcome -- they can suggest tips, they're
interesting, and I might write a longer piece on this sometime.

As usual, extra credit for sending to me directly (in addition to list,
if you're so inclined) so I needn't pluck from digests.

Thanks, as always..

-- 
Gabriel Goldberg, Computers and Publishing, Inc.   g...@gabegold.com
3401 Silver Maple Place, Falls Church, VA 22042   (703) 204-0433
LinkedIn: http://www.linkedin.com/in/gabegoldTwitter: GabeG0

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN








Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN


Re: Writing article on telework/telecommuting

2012-03-04 Thread Martin Packer
An interesting point Dave...

... For my system there's a session-management front end. Almost always 
this copes nicely with such drops. I suspect I'm paying a small response 
time penalty for it, though.

Cheers, Martin

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker
Blog: 
https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker



From:
David Betten bet...@us.ibm.com
To:
IBM-MAIN@bama.ua.edu, 
Date:
04/03/2012 18:25
Subject:
Re: Writing article on telework/telecommuting
Sent by:
IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu



One thing I'll add to that is that if your internet service periodially
drops, it's a real pain if you're connected to a host 3270 session.  For
example, my wife primarally does email and web browsing while working from
home.  So if our internet signal drops for a few minutes and then comes
back, she's not likely to even notice.  However, if I'm scrolling through
code or a hex dump and the sevice drops for just a few seconds, it's a
major headache getting loging back on and hoping my sesson reconnects to
where I was.  Our latest VPN client seems to offer a bit better recovery
from that by maintaining the session but a few years ago it was a major
headache for me.

Have a nice day,
Dave Betten
DFSORT Development, Performance Lead
IBM Corporation
email:  bet...@us.ibm.com
DFSORT/MVSontheweb at http://www.ibm.com/storage/dfsort/

IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu wrote on 03/04/2012
08:49:57 AM:

 From: Martin Packer martin_pac...@uk.ibm.com
 To: IBM-MAIN@bama.ua.edu,
 Date: 03/04/2012 10:01 AM
 Subject: Re: Writing article on telework/telecommuting
 Sent by: IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu

 One experience from teleworking which should appeal to mainframers: By
and
 large 3270 is the least demanding data stream - so TSO / ISPF goes fast
 even on broadband as crummy as mine. (It's all the other junk that 
runs

 really slowly when the wet string dries out.)

 Now I may be in a minority but I bet this counts for lots of people.

 Anyhow, having telecommuted for more than 10 years I'm looking forward 
to

 this article: You are not alone is a useful thing to hear. :-)

 Cheers, Martin

 Martin Packer,
 Mainframe Performance Consultant, zChampion
 Worldwide Banking Center of Excellence, IBM

 +44-7802-245-584

 email: martin_pac...@uk.ibm.com

 Twitter / Facebook IDs: MartinPacker
 Blog:
 https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker



 From:
 Gabe Goldberg g...@gabegold.com
 To:
 IBM-MAIN@bama.ua.edu,
 Date:
 03/03/2012 21:43
 Subject:
 Writing article on telework/telecommuting
 Sent by:
 IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu



 I'm writing article for Destination z http://destinationz.org/ on
 telework/telecommuting. I think this partitions in two dimensions --
 technology vs. mindset and worker vs. employer.

 There's abundant information -- and blather -- about this subject. But
 Destination z is mainframe focused so I'm especially interested in
 relevant System z tips for all four quadrants:
 technology/mindset/worker/employer.

 Again, this is a tips article so won't include positive/negative
 anecdotes. But they're still welcome -- they can suggest tips, they're
 interesting, and I might write a longer piece on this sometime.

 As usual, extra credit for sending to me directly (in addition to list,
 if you're so inclined) so I needn't pluck from digests.

 Thanks, as always..

 --
 Gabriel Goldberg, Computers and Publishing, Inc.   g...@gabegold.com
 3401 Silver Maple Place, Falls Church, VA 22042   (703) 204-0433
 LinkedIn: http://www.linkedin.com/in/gabegoldTwitter: GabeG0

 --
 For IBM-MAIN subscribe / signoff / archive access instructions,
 send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN








 Unless stated otherwise above:
 IBM United Kingdom Limited - Registered in England and Wales with number
 741598.
 Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6
3AU






 --
 For IBM-MAIN subscribe / signoff / archive access instructions,
 send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN








Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send

Re: Processor usage

2012-02-29 Thread Martin Packer
Then they will be prepared to learn how to do the calculations from the 
SMF 70 data and bake it into their product. There is no utilisation number 
recorded in Type 70: RMF postprocessor (and the ecosystem) do the 
calculations for end consumers based on fields in Type 70.

Cheers, Martin

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker
Blog: 
https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker



From:
Miklos Szigetvari miklos.szigetv...@isis-papyrus.com
To:
IBM-MAIN@bama.ua.edu, 
Date:
29/02/2012 10:29
Subject:
Re: Processor usage
Sent by:
IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu



On 2/29/2012 10:34 AM, Vernooij, CP - SPLXM wrote:
 Out of curiosity, are your colleagues going to use this to
 schedule/attach work, probably to processors? If you are trying to be
 smarter than WLM, PR/SM, Hiperdispatch and all the other CPU management,
 you will hit your nose hard.
Hope they don't want to be smarter as WLM .
They develop a general  performance monitor,  to our server product, 
running in all platforms, and try to get this,  independent from platform
 Kees.


 Miklos Szigetvarimiklos.szigetv...@isis-papyrus.com  wrote in
 message news:4f4ded65.9060...@isis-papyrus.com...
   Hi

 My colleagues would like to know the processor usage for every
 processor
 on the machine or on the current LPAR .
 Any way to find out something like this:  CPU1 was busy 50% in the
 last
 1 minute and CPU2 was busy in 10%

 --
 For IBM-MAIN subscribe / signoff / archive access instructions,
 send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN
 
 For information, services and offers, please visit our web site: 
http://www.klm.com. This e-mail and any attachment may contain 
confidential and privileged material intended for the addressee only. If 
you are not the addressee, you are notified that no part of the e-mail or 
any attachment may be disclosed, copied or distributed, and that any other 
action related to this e-mail or attachment is strictly prohibited, and 
may be unlawful. If you have received this e-mail by error, please notify 
the sender immediately by return e-mail, and delete this message.

 Koninklijke Luchtvaart Maatschappij NV (KLM), its subsidiaries and/or 
its employees shall not be liable for the incorrect or incomplete 
transmission of this e-mail or any attachments, nor responsible for any 
delay in receipt.
 Koninklijke Luchtvaart Maatschappij N.V. (also known as KLM Royal Dutch 
Airlines) is registered in Amstelveen, The Netherlands, with registered 
number 33014286
 
 

 --
 For IBM-MAIN subscribe / signoff / archive access instructions,
 send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN



--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN








Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN


Re: Hiper Dispatching

2012-02-24 Thread Martin Packer
I'd've said there was an additional benefit through parking of logical 
engines.

Cheers, Martin

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker
Blog: 
https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker



From:
Bob Shannon bshan...@rocketsoftware.com
To:
IBM-MAIN@bama.ua.edu, 
Date:
24/02/2012 20:00
Subject:
Re: Hiper Dispatching
Sent by:
IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu



 Does anyone know if turning on Hiper Dispatching on a single book box 
machine would make a difference in performance?

The answer is yes, but I believe with your configuration the answer is no. 
Hiper Dispatch tries to dispatch the work on a subset of logical 
processors. Since you only have 4 CPs those are the only ones you can be 
dispatched on anyway so you get the effect of Hiper Dispatch by default.
 
If you had more processors you'd see a benefit in using Hiper Dispatch. 
OTOH it probably won't hurt to turn it on to try it.

Bob Shannon
Rocket Software

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN








Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN


Re: Dedicated vs. Shared CPs

2012-02-16 Thread Martin Packer
There WAS a corner case and at least one customer I knew of had it: With 
ICFs you could expand into shared engines - with the non expansion case 
being all dedicated. That went away some time ago. I think what you said 
about z10 corroborates my memory that Dynamic ICF Expansion was only 
supported on z9 and prior. (Fair mucked up my CPU reporting and as it was 
going anyway I deigned not to fix my code.) :-)

Cheers, Martin

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker
Blog: 
https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker



From:
Skip Robinson jo.skip.robin...@sce.com
To:
IBM-MAIN@bama.ua.edu, 
Date:
16/02/2012 05:07
Subject:
Re: Dedicated vs. Shared CPs
Sent by:
IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu



I checked out an MVS Image profile on my (brand spanking new!) z196. It 
looks the choice is between dedicated or shared CPs. A CF LPAR offers more 

choices, but oddly fewer choices than the z10 it replaced. 

.
.
JO.Skip Robinson
SCE Infrastructure Technology Services
Electric Dragon Team Paddler 
SHARE MVS Program Co-Manager
626-302-7535 Office
323-715-0595 Mobile
jo.skip.robin...@sce.com



From:   Barbara Nitz nitz-...@gmx.net
To: IBM-MAIN@bama.ua.edu
Date:   02/15/2012 08:58 PM
Subject:Re: Dedicated vs. Shared CPs
Sent by:IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu



Is it possible to mix shared and dedicated CPs on the same LPAR?
No. Not on a z9 and not the way you mean.

The RMF report deals with what an lpar can look like when it uses 
Hiperdispatch. That is not available on a z9.
Hiperdispatch semi-dedicates logical processors to physical processors 
depending on the workload. And most probably depending on the number of 
physical cps. (Which is why we asked for the number of your physical cps 
in the other thread - you haven't answered that!)  Once hiperdispatch is 
on, a physical cp gets a weight, which can be low, medium or high. High 
amounts to being (semi-)dedicated.

Does anyone run mixed like this, a dedicated number to cover the minimum 
expected MSU of an LPAR, then some logicals to float between LPARS?
Everyone who uses hiperdipatch.

Does anyone know what is needed in terms of outages/lpar resets to move 
from a completely logical CP environment to a mixed environment?
An upgrade to a machine supporting hiperdispatch. Which means at least one 

IPL. But as you can see from my questions starting this thread, it is 
possible that you cannot use hiperdispatch - whenever your logical to 
physical cp ratio is so bad that 4 or more logical cps compete for one 
physical, due to the number of lpars you have, for instance. In the very 
first presentation I heard (by Bob Rogers) about hiperdispatch, he said 
that it will turn itself off if the ratio is really bad. I haven't heard 
that confirmed anywhere, though.

And coming from a z9 presumably to a z196, chances are very good that you 
would loose physical cps to keep money down. Try making your bosses 
understand that they cannot use the same number of logicals when the 
number of physicals decreases

Barbara Nitz


--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN








Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN


Re: Turning on additional CPs

2012-02-12 Thread Martin Packer
This used to be a big deal back in the 3090 (and prior) days. Less so now 
as the numbers sustain us to very high numbers of engines without much 
discomfort. In the original case (3 going to 4) I wanted (a few days ago) 
to point out the engine speed decrease was slight enough to probably not 
be the cause.

I might be wrong :-) but that's still my opinion...

I know we've not really talked about MP ratios as a community for a very 
long time. I'm wondering what's been done in the past 15 years (other than 
multi-book machines since z990 and Hiperdispatch) to potentially change 
the picture. Anyone care to chip in? I'm also going to think about the 
effects of multibook and HD myself.

On multibook I think it analogous to the old 280 and 380 models that were 
faster than the 200 and 300 models despite having the same number of 
engines (2 and 3 respectively) because of the second lot of cache.

Cheers (as I just heard George Clooney say :-)  ) Martin

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker
Blog: 
https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker



From:
Edward Jaffe edja...@phoenixsoftware.com
To:
IBM-MAIN@bama.ua.edu, 
Date:
12/02/2012 07:54
Subject:
Re: Turning on additional CPs
Sent by:
IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu



On 2/9/2012 8:53 AM, Staller, Allan wrote:
 There is a well know impact of additional CP's known as the MP effect.
 Going from 1 to 2 engines does not get you twice as much horsepower.
 Only 1.9 times as much.
 In the early days 360/65 AP  305/65 MP, the effect was only 1.7 times.

Specifically, if you look at z196 machines 
http://tech-news.com/publib/pl2817.html you'll see the following LSPR 
ratios:

Modl Ratio Delta
701  2.15   N/A
702  4.06   1.91
703  5.92   1.86
704  7.72   1.80
705  9.47   1.75
706  11.17  1.70
707  12.82  1.65
and so on...

-- 
Edward E Jaffe
Phoenix Software International, Inc
831 Parkview Drive North
El Segundo, CA 90245
310-338-0400 x318
edja...@phoenixsoftware.com
http://www.phoenixsoftware.com/

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN








Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN


Re: Getting the Storage Group name for a DASD volume.

2012-02-09 Thread Martin Packer
Another possibility is to parse SMF 74-1 from RMF Device Activity Report 
data. Might not have the real time nature you might be seeking.

Martin

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker
Blog: 
https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker



From:
Norbert Friemel nf.ibmm...@web.de
To:
IBM-MAIN@bama.ua.edu, 
Date:
09/02/2012 14:40
Subject:
Re: Getting the Storage Group name for a DASD volume.
Sent by:
IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu



On Thu, 9 Feb 2012 08:13:19 -0600, McKown, John wrote:

I am updating an old DASD management program. It does a UCBSCAN to scan 
the online DASD volumes and an LSPACE to get the space information from 
them. I also get the Format 4 DSCB. I check DS4SMSFG to see if the volume 
is SMS managed or not. I would like to output the storage group name if it 
is. But I cannot find any indication of how to get that information. 

Cbttape file 492 ShowZos/ShowMvs


Norbert Friemel

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN








Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN


Re: WLM Capping

2012-02-08 Thread Martin Packer
So that told you some of your batch WASN'T (in business terms) truly 
discretionary. Glad you (by the sound of it) pulled the stuff that 
mattered if it never ran out of SYSOTHER.

Martin

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker
Blog: 
https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker



From:
David Andrews d...@lists.duda.com
To:
IBM-MAIN@bama.ua.edu, 
Date:
08/02/2012 00:36
Subject:
Re: WLM Capping
Sent by:
IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu



On Tue, 2012-02-07 at 15:51 -0500, Gibney, Dave wrote:
 I don't want to imagine what WLM stomping on the brakes looks like in
 your shop.

Biggest hassle for me when I started softcapping was that most of my
batch had been discretionary - I always liked the MTTW algorithm.  But
when we softcapped all that discretionary workload went to the meat
locker, and we couldn't have that.  Had to do some triage and creative
stuff with velocity goals and performance periods to make things right
again.

-- 
David Andrews
A. Duda  Sons, Inc.
david.andr...@duda.com

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN


--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN








Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN


Re: Regular Expressions (OMVS)

2012-02-06 Thread Martin Packer
Looks to me like it's being greedy. Look up the term greedy in relation 
to Regexps and you'll see the match is much wider than you anticipated - 
matching many more characters. Not sure if awk can do non-greedy matching. 
But there are usually workarounds if not.

(And this just about exhausts my knowledge on the greedy vs non-greedy 
matching in Regexps.) :-(

Cheers, Martin

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker
Blog: 
https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker



From:
Ken MacKenzie ken.macken...@pramerica.ie
To:
IBM-MAIN@bama.ua.edu, 
Date:
06/02/2012 14:53
Subject:
Regular Expressions (OMVS)
Sent by:
IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu



Hi All,

I'm not sure if this is the appropriate forum, please point me to the 
correct one if it's not.

I'm playing around with regular expressions and I want to achieve the 
following.  I spoke to a Unix geek but he didn't really understand what I 
was asking.

Given the following sample data, I want discover only the first occurrence 
of any string which matches my regexp.
ABCDEFGNOPQRXXXABCDEFGNOPQRYYYABCDEFGNOPQRZZZ
ABCDEFGNOPQRXXXABCDEFGNOPQRYYYABCDEFGNOPQRZZZ
ABCDEFGNOPQRXXXABCDEFGNOPQRYYYABCDEFGNOPQRZZZ
ABCDEFGNOPQRXXXABCDEFGNOPQRYYYABCDEFGNOPQRZZZ
ABCDEFGNOPQRXXXABCDEFGNOPQRYYYABCDEFGNOPQRZZZ
ABCDEFGNOPQRXXXABCDEFGNOPQRYYYABCDEFGNOPQRZZZ

I tried: awk 'sub(/CD.*QR/,junkt)' fxdata in an attempt to change 
ABCDEFGNOPQRXXX to ABjunktXXX but instead, it takes the final 
occurrence of QR, and returns ABjunktZZZ. Notice the ZZZ on the end 
instead of XXX.

This is being driven from a REXX exec in ISPF, if any of the above is not 
clear, I will try to explain further.

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN








Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN


Re: Regular Expressions (OMVS)

2012-02-06 Thread Martin Packer
Right... This was the kind of workaround for lack of non greedy I was 
thinking of. Wondering what the IBM C++ support for non-greedy (if any) 
is.

Martin

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker
Blog: 
https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker



From:
Bill Godfrey yak36...@yahoo.com
To:
IBM-MAIN@bama.ua.edu, 
Date:
06/02/2012 16:25
Subject:
Re: Regular Expressions (OMVS)
Sent by:
IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu



On Mon, 6 Feb 2012 08:44:01 -0600, Ken MacKenzie 
ken.macken...@pramerica.ie wrote:

Hi All,

I'm not sure if this is the appropriate forum, please point me to the 
correct one if it's not.

I'm playing around with regular expressions and I want to achieve the 
following.  I spoke to a Unix geek but he didn't really understand what I 
was asking.

Given the following sample data, I want discover only the first 
occurrence of any string which matches my regexp.
ABCDEFGNOPQRXXXABCDEFGNOPQRYYYABCDEFGNOPQRZZZ
ABCDEFGNOPQRXXXABCDEFGNOPQRYYYABCDEFGNOPQRZZZ
ABCDEFGNOPQRXXXABCDEFGNOPQRYYYABCDEFGNOPQRZZZ
ABCDEFGNOPQRXXXABCDEFGNOPQRYYYABCDEFGNOPQRZZZ
ABCDEFGNOPQRXXXABCDEFGNOPQRYYYABCDEFGNOPQRZZZ
ABCDEFGNOPQRXXXABCDEFGNOPQRYYYABCDEFGNOPQRZZZ

I tried: awk 'sub(/CD.*QR/,junkt)' fxdata in an attempt to change 
ABCDEFGNOPQRXXX to ABjunktXXX but instead, it takes the final 
occurrence of QR, and returns ABjunktZZZ. Notice the ZZZ on the end 
instead of XXX.

This is being driven from a REXX exec in ISPF, if any of the above is not 
clear, I will try to explain further.


try this:

awk 'sub(/CD[^Q]*QR/,junkt)'

or this:

sed -e 's/CD[^Q]*QR/junkt/'

Bill

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN








Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN


Re: Regular Expressions (OMVS)

2012-02-06 Thread Martin Packer
John Mckown wrote:


 I would almost bet that awk and sed both use the C language's regex 
 implementation. So I doubt that C (or C++) implements non greedy 
 regexps. Personally, I like pcres: Perl Compatable Regular 
Expressions.

This is an EXCELLENT example why I advised some developers the other day 
to go with whatever IBM C++ does - in order to avoid getting into 
(probably unhelpful to them) debates over which flavour of Regexps to 
support.

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker
Blog: 
https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker






Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN


Re: Very Lage Page Datasets (was ASM and HiperPAV)

2012-02-05 Thread Martin Packer
Paging (if you'll pardon the pun :-)  ) Don Deese and wondering what 
checks he has in CPExpert in this area. Might provide inspiration to z/OS 
Development - if Barbara's comment had spurred them to revisit this area.

Cheers, Martin

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker
Blog: 
https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker

IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu wrote on 04/02/2012 
16:03:22:

 From:
 
 Barbara Nitz nitz-...@gmx.net
 
 To:
 
 IBM-MAIN@bama.ua.edu, 
 
 Date:
 
 04/02/2012 16:35
 
 Subject:
 
 Re: Very Lage Page Datasets (was ASM and HiperPAV)
 
 Sent by:
 
 IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu
 
 Charles,
 
 I believe you're referring to the ASM_LOCAL_SLOT_USAGE check.
 Yes, I do.
 
  If so, this check runs at a 30 minute interval and checks the slot
 usage for each in-use local paging data set regardless of whether it
 was defined 'statically' or added via PAGE ADD. So... it does 
 eventually recognize a changed configuration. Some of the ASM checks
 are set to re-run when a PAGE ADD/DELETE is issued, but 
 ASM_LOCAL_SLOT_USAGE is currently not one of them.  Open to 
suggestions
 
 As far as I am concerned, there is 'intelligence' missing in that 
 check (my usual complaint with health checks).
 
 In our installation, we only have one device geometry, behind the 
 same controller, and all page data sets are same size. So I expect 
 the health check to recognize that adding a page ds to the overall 
 config will relieve the 'performance impact' of 30% overall usage. 
 Unfortunately, ASM does NOT prefer the new page ds, it is one of 
 many, and as I indicated before, has never filled to the same slot 
 usage as the others. Only IPL has ever evened out slot usage (and I 
 am not talking about 1% difference, more like 20% difference on the 
 same geometry and size! I think Skip mentioned this, too.) 
 
 So the old, already-at-30%-usage locals and the new one are treated 
 equal, so slot usage on the old ones increases over the 30% mark, 
 and the check would still trip every 30 minutes because of that (if 
 I hadn't set it to only check once per day until the next IPL). 
 After it had alerted us to the condition once, it becomes basically 
 useless for the life of the IPL.
 
 In my opinion, this health check should have the intelligence to 
 recognize something about the configuration (same controller, same 
 size data set) and change the checking parms accordingly, especially
 when a page data set was added. The check should obviously (as Kees 
 indicated) behave differently if different percentage slot usage is 
 due to different geometry and/or different size page ds. 
 
 Now that I have established a daily graphic that shows slot 
 utilization (as shown by Barry via MXG), I might get rid if that 
 check completely and check my graphic instead. :-)
 
 Barbara
 
 --
 For IBM-MAIN subscribe / signoff / archive access instructions,
 send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN
 






Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN


Re: Very Lage Page Datasets (was ASM and HiperPAV)

2012-02-02 Thread Martin Packer
I liked Barry's plot the curve approach to this i.e. Relating occupation 
to performance.

Cheers, Martin

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker
Blog: 
https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker





Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN


Re: Very Lage Page Datasets (was ASM and HiperPAV)

2012-02-01 Thread Martin Packer
I'm sure I don't count as like Kathy* :-) but...

Contiguous Slot Allocation Algorithm is still in place so I also tout the 
30% but...

1) I say this is not a falling off a cliff thing but hazard it to be 
more gradual than that - so a dynamic.
2) I also suggest people aim for free paging space generally 1.5x the 
LPAR's memory.

Item 2 is a ROT I made up myself. :-) It's motivated by the need to have 
something to dump into - and it leans in the same direction as the Cont 
Slot Alloc Algorithm. I'm not sure the 1.5x number is right...

... I consider both the 30% and my 1.5x as STARTING POINTS. And I 
emphasise good paging subsystem design and adequate memory provision - 
even now.

So I'm really glad we're having this conversation.

Martin

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker
Blog: 
https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker

* Kathy's the real expert to defer to



From:
Mark Zelden m...@mzelden.com
To:
IBM-MAIN@bama.ua.edu, 
Date:
01/02/2012 15:48
Subject:
Re: Very Lage Page Datasets (was ASM and HiperPAV)
Sent by:
IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu



On Tue, 31 Jan 2012 22:49:53 -0600, Barbara Nitz nitz-...@gmx.net wrote:

Writing to contiguous slots and over allocation is mentioned, but unless 
I
missed it the old ROT (and health check) of not having more than 30%
of the slots allocated is not specifically addressed.   Certainly with 
4K
pages (for the most part) and 3390-27 (or bigger) that 30% ROT doesn't
apply anymore?50% of a mod-27 is still a helava lot of free slots.

I think it still applies. My understanding has always been that the 30% 
usage (after which paging effectiveness drastically drops) applies to the 
algorithm used on the in-storage control blocks to pick the next free slot 
in a page data set. Unless that algorithm was redesigned, 30% of 44.9GB 
per page dataset is what you should not exceed (just as the health check 
says) in AUX usage. Redesign of that is IMHO unlikely, just as using more 
than 2 IOs on a page data set simultaneously would require (an unlikely) 
redesign.


That sounds right as far as the algorithm, but I thought the paging 
effectiveness 
was related to likelihood of  not being able to find contiguous slots for 
group
page outs after the 30% usage (based on old technology). 
 
So if I have 5 3390-27 locals and they are all equally used at 50%, the
algorithms (CPU usage, not I/O) are going to pick one of them, then do the
page outs.  That paging will find contiguous slots and should be 
efficient. 

BTW, this is just an example, we still try to keep our 3390-27 local usage
at 30% just like we always did with smaller local page datasets in 
the past. 

I wonder what if any studies on this have been done in the lab. 
It would be nice if an IBM performance expert  like Kathy Walsh
could weigh in. 

Regards,

Mark
--
Mark Zelden - Zelden Consulting Services - z/OS, OS/390 and MVS 
mailto:m...@mzelden.com 
Mark's MVS Utilities: http://www.mzelden.com/mvsutil.html 
Systems Programming expert at http://expertanswercenter.techtarget.com/

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN








Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN


Re: ASM and HiperPAV

2012-01-31 Thread Martin Packer
Barbara, yes you will. :-)  Sounds like your DB2 folks are trying to write 
GENEROUS cheques and make YOU cash them, memorywise :-) Let me at'em. :-) 
(I happen to be in SVL at DB2 Boot Camp where John Campbell presented on 
this yesterday - corroborating my viewpoint.)

Cheers, Martin

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker
Blog: 
https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker





Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN


Re: ASM and HiperPAV

2012-01-30 Thread Martin Packer
IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu wrote on 30/01/2012 
22:10:39:

 From:
 
 Jim Mulder d10j...@us.ibm.com
 
 To:
 
 IBM-MAIN@bama.ua.edu, 
 
 Date:
 
 30/01/2012 22:14
 
 Subject:
 
 Re: ASM and HiperPAV
 
 Sent by:
 
 IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu
 
  To be precise: ASM reserves 2 exposures  *per pagedataset* not per
  volume (i.e. 2n-1 Aliasses per volume), since/so you can allocate 
more
  than 1 pagedataset on one volume. We do so to fill 3390-9s and -27s 
 with
  pagedatasets.
  
  I beg to disagree. :-) HiperPAV works on a per-IO-basis in the 
  hardware, so ASM cannot 'reserve' an exposure (anymore). HiperPAV is
  for faster I/O turnaround and for reduction of IOS queuing times by 
  giving another SSCH another 'exposure'. No SSCH, no HiperPAV usage. 
  If no I/O is started because ASM knows there is one outstanding (as 
  was the case in the past) then HiperPAV is effectively not used. 
  Other than for the second case that Jim Mulder had detailed in the 
  past. Hence my question if that is still true or if ASM now starts 
  as many IOs as needed to get paging requests filled.
 
   For a page data set on a HiperPAV device, ASM creates two
 sets of channel program control blocks.  If a single page read
 request come along while the first set is in use, ASM will use
 the second set to start another channel program to do the single
 page read.  The purpose is to avoid having a single page read need
 to wait for a long string of pageouts to complete before it
 can be started. 
 
 
 Jim Mulder   z/OS System Test   IBM Corp.  Poughkeepsie,  NY
 
 --
 For IBM-MAIN subscribe / signoff / archive access instructions,
 send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN
 

Jim, that's what you told me some time ago - and what I have presented in 
Memory Matters: 2 effective per page data set. When I present on the 
support for  4GB page data sets I verbalise the trade off between the 
simplicity of fewer, larger, page data sets vs the larger number of 
channel program control blocks for more, smaller, page data sets. Because 
of the virtualisation within modern disk controllers robustness favours 
more, smaller.

The reason I do this in a memory presentation should be obvious. Suffice 
it to say a substantial proportion of the CritSits (and similar) I've been 
involved in have been to do with what happens when a paging subsystem 
performs poorly (because we blew through memory and into page data sets). 
Rest assured the appropriate Development teams in Poughkeepsie have been 
involved in those situations, too.

Martin

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker
Blog: 
https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker







Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN


Re: zEnterprise Use Cases

2012-01-29 Thread Martin Packer
I'm hoping those of us of a certain vintage will find my blog post on the 
subject resonates:

https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker/entry/haven_t_we_been_here_before4?lang=en_us

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker
Blog: 
https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker





Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN


Re: IBM manual formats

2012-01-10 Thread Martin Packer
Tim Hare wrote:

 I think the RedBook people ought to do a 'Greybook'  about re-
 working documents for the Kindle ...

Amen to that. Actually it would be kind of fun. :-)

The challenges you've outlined I'd agree with. Removing page footers and 
headers from a PDF and reworking all the links to not need page numbers is 
a hard challenge, too. Was considering trying a Python script somewhere in 
the process to parse the PDF. Maybe Calibre (probably the program with the 
fastest gratitude generation in the teenies :-)) can already do it.

Cheers, Martin

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker
Blog: 
https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker





Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN


Re: REXX:trying to write a rexx interface with rmm

2012-01-09 Thread Martin Packer
As a matter of interest, Mike, how old are the DFSORT / ICETOOL reports? I 
don't know how others feel about this but it might be worthwhile my (I 
can't speak for Frank) taking a look at them some time. (Kind of how I 
feel about RACFICE, for example.)

Cheers, Martin

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker
Blog: 
https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker



From:
Mike Wood mikeww...@hotmail.com
To:
IBM-MAIN@bama.ua.edu, 
Date:
09/01/2012 14:58
Subject:
Re: REXX:trying to write a rexx interface with rmm
Sent by:
IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu



Victor,  There are good examples of using rexx with the rmm subcommands. 
Did you see this section 
http://publibz.boulder.ibm.com/cgi-bin/bookmgr_OS390/BOOKS/dgt2r390/9.5?SHELF=EZ2ZBK0KDT=20100623164750
 
in the rmm MURM? It points to EDGXMP1 and EDGXMP2. They should how to use 
searchxxx sucommands and issue subsequent listxxx subcommands.

In addition the execs used in the rmm dialog have many more examples.

As others have said, if you can avoid writing an exec - this may be 
better. See the rmm Reporting book for standard repost and customisable 
rexx reports that can be used. Also the report generator allows very easy 
customization of existing sample reports which are produced using DFSORTs 
ICETOOL.

Mike Wood

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN








Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN


Re: EZTrieve

2012-01-07 Thread Martin Packer
Ed (and others) this has been a useful discussion for me so thanks! My 
purpose is to recognise such steps when I see them in the SMF for a 
particular job, The program name and data set are very useful footprints 
in the sand (and the lack of applicability to TSO doesn't bother me).

Cheers, Martin

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker
Blog: 
https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker

IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu wrote on 07/01/2012 
19:25:35:

 From:
 
 Ed Gould edgould1...@comcast.net
 
 To:
 
 IBM-MAIN@bama.ua.edu, 
 
 Date:
 
 07/01/2012 19:59
 
 Subject:
 
 Re: EZTrieve
 
 Sent by:
 
 IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu
 
 Lizette:
 
 That is indeed the best way to go.
 One caveat is that it will not catch TSO (users).
 Short of running GTF (forever) you will have a hard time catching 
 every use.
 I think the only way is to talk to all the users and see if they know 
 of any tso users out there that might be using it.
 If the reason is discontinuance and how dispersed you user 
 community is allow probably 6 months (each installation is different).
 If the reason is something else and depending how politicized your 
 environment is you may have to write email(s) and wait and see.
 
 Ed
 
 On Jan 6, 2012, at 9:10 PM, Lizette Koehler wrote:
 
 
  Does anyone know of a way to locate all JCLs/Proc members that are 
  using
  EZTrieve?
 
  Any help would be greatly appreciated.
 
  Thanks
 
 
  If you have  SAS and MXG or MICS then you can use that to begin the
  analysis.
 
  Or you can download the CBTTAPE.ORG file containing DAF.
 
  If you have JCLPLUS from SEA Software, then you might also have the 
  JCLPUS
  XREF process
 
  Or if you have Endeavor or Changeman, you might be able to see what 
  is in
  their processes.
 
  But as it has been pointed out, it will most but possibly not all.
 
  Let me know if you need more details.
 
  What you may not be able to see are end users of Easytrieve. 
  Production use
  of Easytrieve might be easier.
 
  Lizette
 
  --
  For IBM-MAIN subscribe / signoff / archive access instructions,
  send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN
 
 --
 For IBM-MAIN subscribe / signoff / archive access instructions,
 send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN
 






Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN


SMF73GEN Channel Generation Field - Modern Values

2012-01-06 Thread Martin Packer
I'm seeing RMF SMF data from a z196 . One field in Type 73 intrigues me: 
SMF73GEN. I've seen values up to 5 before - 5 being FICON Express4 at 
4Gbps. Anyone know what values 6 and 7 mean? These are the new ones in 
this set of data. And should I expect in general to encounter a value of 
e.g. 8? Wondering about FICON Express8 and Express8S and autonegotiation 
down. (SMF73GEN has different values for eg Express4 @4, 2 and 1 Gbps.)

Thanks, Martin

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker
Blog: 
https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker





Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN


Re: Calling all experts on SMFPRMxx SUBSYS

2012-01-06 Thread Martin Packer
Charles Mills wrote:

 DB2 uses the subtype format as it uses the subsystem ID field but 
AFAIK 
 does not use the subtype field (documents it as reserved). Seems to be
 fairly consistently written as .

DB2 doesn't have subtypes because it has its own thing - called an IFCID. 
The IFCID is in the QWHS section of the record, not the SMF header. So 
it's not in a fixed position in the SMF record. I have DFSORT E15 exit 
code that allows me to select on IFCID (and other things not in fixed 
positions). The technique I use is to copy these sorts of fields to before 
the record and shift the record along. Then in DFSORT I use OUTFIL OUTREC 
to shift the record back.

Cheers, Martin
Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker
Blog: 
https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker





Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN


Re: SMF73GEN Channel Generation Field - Modern Values

2012-01-06 Thread Martin Packer
I think - and I've only loose proof - that 6 is FICON Express8 at 2, 7 is 
FE8 at 4 and 8 is FE8 at 8Gbps. (The loose proof is I now see 8 in a 
customer that has publicly stated it has FICON Express8.)

Cheers, Martin

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker
Blog: 
https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker



From:
Mike Schwab mike.a.sch...@gmail.com
To:
IBM-MAIN@bama.ua.edu, 
Date:
06/01/2012 19:03
Subject:
Re: SMF73GEN Channel Generation Field - Modern Values
Sent by:
IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu



http://publib.boulder.ibm.com/infocenter/zos/v1r13/index.jsp?topic=%2Fcom.ibm.zos.r13.ieag200%2Fiea2g2c1273.htm

only defines the values as 1 byte binary Channel type generation.

z/196 specifies Network cards are OSA-Express 2, 3, or 4S

http://www.redbooks.ibm.com/redbooks/pdfs/sg245948.pdf from April 2009
covers OSA-Express 2 and 3,
speeds are 10, 100, 1,000, 10,000 MbS.

On Fri, Jan 6, 2012 at 11:33 AM, Martin Packer martin_pac...@uk.ibm.com 
wrote:
 I'm seeing RMF SMF data from a z196 . One field in Type 73 intrigues me:
 SMF73GEN. I've seen values up to 5 before - 5 being FICON Express4 at
 4Gbps. Anyone know what values 6 and 7 mean? These are the new ones in
 this set of data. And should I expect in general to encounter a value of
 e.g. 8? Wondering about FICON Express8 and Express8S and autonegotiation
 down. (SMF73GEN has different values for eg Express4 @4, 2 and 1 Gbps.)

 Thanks, Martin

 Martin Packer,

-- 
Mike A Schwab, Springfield IL USA
Where do Forest Rangers go to get away from it all?

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN








Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN


Was: Calling all experts on SMFPRMxx SUBSYS - How does Subsys of SILO work?

2012-01-05 Thread Martin Packer
Topical: Just yesterday a colleague and I were discussing a user-defined 
(not SSI) subsystem - SILO - that a customer appears to have. You can 
guess (as I did) the origin of the subsystem. Anyone know anything about 
the subsystem? For some reason they have excluded SMF records with that 
subsys.

I see two problems/questions:

1) Getting address space counts out of RMF Type 70 Address Space Count 
section. They're there for TSO, STC etc but not for user-defined. I assume 
subtracting some of these from headline number would give (usually 0) user 
subsys address space count.

2) Wondering how WLM allows you to classify work from such a user 
subsystem. e.g. What qualifiers?

In general I just wonder what this thing is and how it behaves and how 
prevalent it is. Oh, and why it's a user-defined subsystem in the first 
place.

Cheers, Martin

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker
Blog: 
https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker





Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN


Re: IBM manual formats

2012-01-04 Thread Martin Packer
Are you sure it doesn't run under WINE on Linux? Anyone?

Cheers, Martin

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker
Blog: 
https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker



From:
Jan MOEYERSONS jan.moeyers...@adelior.be
To:
IBM-MAIN@bama.ua.edu, 
Date:
04/01/2012 12:40
Subject:
Re: IBM manual formats
Sent by:
IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu



On Tue, 3 Jan 2012 08:44:07 -0500, Shmuel Metz (Seymour J.) 
shmuel+ibm-m...@patriot.net wrote:

What if you don't run windoze?

Then you cannot use the Library Reader for Windows... 


(IMHO it still is better than the Java stuff they replaced it with)

But less portable.

True. 
But I am more worried about functionnality. If the Softcopy Reader were to 
offer the same ease of use as the Library Reader, then I would probably 
not mind using it. 

Cheers,

Jantje.

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN








Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN


Re: IBM manual formats

2012-01-02 Thread Martin Packer
Funnily enough I mused on Kindle MOBI / AZW format re Redbooks on Twitter 
just now. (You can guess what I got for Xmas.) :-)

I'd like to have the discussion on how to format for Kindle with the right 
people. In ITSO (the Redbooks people) we use Framemaker (at a fairly 
ancient level) so I'm not sure whether that could be taught to emit MOBI / 
AZW / Epub etc.

I would think Information Development (Product Manual Writers) are using 
something else (once was Bookmaster, which I still use myself) and I don't 
know what the options are.

It seems to me emission of HTML is a good intermediate step.

I have to say even the O'Reilly books for Kindle are of quite variable 
quality, formattingwise.

I'd be happy to have the discussion with appropriate IBMers and customers 
(the latter giving us some idea of demand for mobile reading formats).

Anyone?

Thanks, Martin

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker
Blog: 
https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker



From:
John McKown joa...@swbell.net
To:
IBM-MAIN@bama.ua.edu, 
Date:
01/01/2012 16:17
Subject:
IBM manual formats
Sent by:
IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu



I like having IBM manuals be readable in electronic form. Personally, I
prefer using the Web and BookManager format over PDF. But I cannot
easily download those and view them offline. On the other hand, the PDF
manuals are a royal PITA to me, except on my Kindle DX. Which is why I
have a Kindle DX. They are a PITA because PDFs are formatted as a
portrait mode, letter (or maybe A4) sized page. And since many of the
manuals are two column, that means paging up and down while switching
sides to read. The problem with the BookManager format, in addition to
the not offline, is that I sometimes cannot read the diagrams. They
aren't formatted correctly.

Now, one of my favorite magazines has gone digital only. I have an
Android app on my Xoom tablet which displays their magazine like a
regular magazine - letter sized portrait. HOWEVER, they also have .mobi
and .epub formats for reading on cell phones and other devices.

I am wondering how difficult it would be for IBM to publish their
manuals in .mobi or .epub format. This would make them much more
readable on cell phones or other media such a the newer Kindles or Nook
ebook reader. It would even help on netbooks, laptops, and desktop as it
wouldn't force the letter sized pages onto a device which cannot render
them nicely.

Just a thought.

-- 
John McKown
Maranatha! 

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN








Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN


Re: cpu / machine identification

2012-01-02 Thread Martin Packer
One of the things I've been injecting into my code (the SMF analysis code 
I inherited and now maintain) in recent years has been more nosiness. :-) 
More nosiness in this case means recognising software product related 
footprints in the sand. It's a fun game. :-)

Cheers, Martin

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker
Blog: 
https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker



From:
Barry Merrill ba...@mxg.com
To:
IBM-MAIN@bama.ua.edu, 
Date:
01/01/2012 17:53
Subject:
Re: cpu / machine identification
Sent by:
IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu



I was involved in an audit of a VERY large outsourcer on behalf
of a VERY large software vendor, some time ago.

The only data required for the audit was the site's SMF data
(and a smart program to read the SMF file!), plus a program that
allocated and grazed the disk farm to capture all DSNAMES and
attributes (which DCOLLECT would do now).

From an intelligent examination of the names of datasets, which 
clearly indicated/suggested they were the software company's 
property, along with a listing of the names of the members of
those load libraries, and a comparison to the SMF program names 
that had been executed, which demonstrated those programs were 
being executed from those libraries, the two companies withdrew
their suit and countersuit, and reached agreements on licensing.

And, after only the very FIRST report was reviewed by both parties!

Quite a bit of additional analysis software had been prepared to
tighten up the SMF-to-LoadLib connection, which would have analyzed
the DDNAMEs used by these programs, but those programs were never used.


Merrilly New Year,
Barry Merrill

Herbert W. Barry Merrill, PhD
President-Programmer
Merrill Consultants
10717 Cromwell Drive
Dallas, TX 75229-5112
214 351 1966 tel
214 350 3694 fax
http://www.mxg.com
ba...@mxg.com

MXG Support:   supp...@mxg.com
MXG Admin:  ad...@mxg.com

Standard Answers: http://www.mxg.com/administration
What's Supported:   http://www.mxg.com/changes









-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] On 
Behalf
Of Shmuel Metz (Seymour J.)
Sent: Sunday, January 01, 2012 9:12 AM
To: IBM-MAIN@bama.ua.edu
Subject: Re: cpu / machine identification

In 9693770902631563.wa.brianwestermansyzygyinc@bama.ua.edu, on
12/31/2011
   at 06:51 PM, Brian Westerman brian_wester...@syzygyinc.com said:

Sorry Shmuel, I mind works on a different level than my fingers 
sometimes.  I apologize for the mistake on your name.

That's why I try to remember to cut and paste rather than retyping names. 
Of
course, I sometimes slip :-(

I'm still not too sure that there is a way to conduct an audit that 
would satisfy the vendor, that the site would agree to.

Providing SMF data? Proving a userid with limited authority specifically 
for
auditing?

but if you limit the audit, then it's not an audit.

Doesn't that depend on what the limitations are?

The audit would have to allow a search of all load libraries at a 
minimum, and would entail loading each and every module to check 
internally, not doesn't that sound like a lot of fun, it would be cost 
prohibitive for both the vendor and the site.

That would be more of a hassle for the vendor than for the site. I would
expect a vendor to do random spot checks rather than running an audit, 
e.g.,
every 30 days.

I think most would go for the key after that.

I've seen products thrown out because of the keys.
 
-- 
 Shmuel (Seymour J.) Metz, SysProg and JOAT
 ISO position; see http://patriot.net/~shmuel/resume/brief.html
We don't care. We don't have to care, we're Congress.
(S877: The Shut up and Eat Your spam act of 2003)

--
For IBM-MAIN subscribe / signoff / archive access instructions, send email
to lists...@bama.ua.edu with the message: INFO IBM-MAIN

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN








Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN


Re: IBM-MAIN Digest - 31 Dec 2011 to 1 Jan 2012 (#2012-1)

2012-01-02 Thread Martin Packer
David, if it's Bookie then B2H gets you HTML which should get you close. 
Having inspected the HTML emitted a number of times over the years I don't 
think it very modern or nice. But it could be worked with - and I'd be 
willing to try. Sadly, as I said before, Redbooks don't use Bookie 
anymore. (They used to and I thought it retrograde when they stopped - 
even as an author.)

Cheers, Martin

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker
Blog: 
https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker



From:
David Boyes dbo...@sinenomine.net
To:
IBM-MAIN@bama.ua.edu, 
Date:
02/01/2012 16:24
Subject:
Re: IBM-MAIN Digest - 31 Dec 2011 to 1 Jan 2012 (#2012-1)
Sent by:
IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu



 I am wondering how difficult it would be for IBM to publish their
 manuals in .mobi or .epub format. This would make them much more
 readable on cell phones or other media such a the newer Kindles or Nook
 ebook reader. It would even help on netbooks, laptops, and desktop as it
 wouldn't force the letter sized pages onto a device which cannot render
 them nicely.

No brainer for the manuals still maintained with Bookmaster. Just need to 
postprocess the DCF output, and/or modify LP3820 to emit mobi or epub 
output. It's just XML with some extra taqs, so it shouldn't be too hard to 
do. Of course, that would mean that IBM would have to release the source 
for LP3820...*sigh*. 

Another thought: LP3820 already produces HTML output (albeit incredibly 
ugly HTML -- think 1980's HTML).  The Docbook html2epub tools will eat 
HTML (obviously), so at least you'd have the text.

Big hassle: the illustrations in the older manuals are in APF format, 
which isn't documented anywhere. 

You could probably transcode the PDFs with some of the Docbook .mobi 
support tools if you run them through pdf2ps, then through ps2mobi. Would 
totally break images and hyperlinks, though, and see above. Wouldn't be 
nearly as useful as the PDF books. 

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN








Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN


Re: IBM manual formats

2012-01-02 Thread Martin Packer
l...@garlic.com wrote:

 simplest is email to kindle.com userid with convert (pdf 
 may not turn out like you expected)

It's precisely because it DOESN'T turn out how I'd like that I prefer the 
idea of trying to get the horse's mouth to emit it right.

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker
Blog: 
https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker





Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN


Re: cpu / machine identification

2011-12-27 Thread Martin Packer
This does raise the issue of WIBNI there was some way for an installation 
to name a machine? When I refer to a customer machine - because of what I 
get from SMF / RMF it's usually Plant/Serial as xx-x. Most of my 
customers have other names for their machines.

Cheers, Martin

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker
Blog: 
https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker





Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN


Re: Question on PR/SM dispatcher

2011-12-20 Thread Martin Packer
Chaucer spelt it cherl.

Martin

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker
Blog: 
https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker



From:
McKown, John john.mck...@healthmarkets.com
To:
IBM-MAIN@bama.ua.edu, 
Date:
20/12/2011 13:10
Subject:
Re: Question on PR/SM dispatcher
Sent by:
IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu



A churl is a very old word for a peasant or free man. But became to 
be used for someone who has no manners or breeding. To be churlish is 
to have bad manners. Like telling a new mom: That is one ugly baby!

http://en.wikipedia.org/wiki/Churl
quote
This meaning held through the 15th century, but by then the word had taken 
on negative overtone, meaning a country person and then a low fellow. 
By the 19th century, a new and pejorative meaning arose, one inclined to 
uncivil or loutish behaviour.
/quote

--
John McKown 
Systems Engineer IV
IT

Administrative Services Group

HealthMarkets(r)

9151 Boulevard 26 * N. Richland Hills * TX 76010
(817) 255-3225 phone * 
john.mck...@healthmarkets.com * 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

 

 -Original Message-
 From: IBM Mainframe Discussion List 
 [mailto:IBM-MAIN@bama.ua.edu] On Behalf Of Vernooij, CP - SPLXM
 Sent: Tuesday, December 20, 2011 2:20 AM
 To: IBM-MAIN@bama.ua.edu
 Subject: Re: Question on PR/SM dispatcher
 
 Shane ibm-m...@tpg.com.au wrote in message
 news:20111220123112.2a437a52@xpfs...
  On Mon, 19 Dec 2011 09:20:16 -0500 Tom Russell wrote:
  
   PR/SM dispatches Logical CPs not Logical Partitions.
  
  I wonder if it'd be considered churlish to point out this wasn't
 always
  the case.
  
  Shane ...
  
 
 Shane,
 
 - what is churlish, I can't find an understandable translation.
 - I am quite sure that pr/sm always dispatched Logical CPs and Amdahls
 MDF dispatched entire domains (their word for lpar).
 
 Kees.
 
 For information, services and offers, please visit our web 
 site: http://www.klm.com. This e-mail and any attachment may 
 contain confidential and privileged material intended for the 
 addressee only. If you are not the addressee, you are 
 notified that no part of the e-mail or any attachment may be 
 disclosed, copied or distributed, and that any other action 
 related to this e-mail or attachment is strictly prohibited, 
 and may be unlawful. If you have received this e-mail by 
 error, please notify the sender immediately by return e-mail, 
 and delete this message. 
 
 Koninklijke Luchtvaart Maatschappij NV (KLM), its 
 subsidiaries and/or its employees shall not be liable for the 
 incorrect or incomplete transmission of this e-mail or any 
 attachments, nor responsible for any delay in receipt. 
 Koninklijke Luchtvaart Maatschappij N.V. (also known as KLM 
 Royal Dutch Airlines) is registered in Amstelveen, The 
 Netherlands, with registered number 33014286
 
 
 
 --
 For IBM-MAIN subscribe / signoff / archive access instructions,
 send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN
 
 

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN








Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN


Re: Question on PR/SM dispatcher

2011-12-19 Thread Martin Packer
To dispatch entire LPARs would be waiting for 2n ducks to line up in a 
row: An event with progressively high latency in the n1 case. Which is 
one reason we don't do it, I guess. (The 2n ducks would be the n logicals 
and n physicals.)

Martin

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker
Blog: 
https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker





Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN


Re: Java apps have most flaws, Cobol is cleanest.

2011-12-09 Thread Martin Packer
Barry,  well *I* wouldn't have given you that answer. I'd've waffled on 
about java being a pointerless language and object lifecycles being 
something not to leave to programmers to attempt to manage. But then I've 
already today described javascript (not to be confused with...) :-) as 
delightfully feral. :-) But then I'm an off message IBMer at the best 
of times. :-)

Cheers, Martin

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker
Blog: 
https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker



From:
Barry Merrill ba...@mxg.com
To:
IBM-MAIN@bama.ua.edu, 
Date:
09/12/2011 15:39
Subject:
Re: Java apps have most flaws, Cobol is cleanest.
Sent by:
IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu



A couple of years ago at SHARE, in a mostly-Java-folks session, 
I asked the IBM speaker why Java architected Garbage Collection
(which I first encountered in Basic on my TRS-80, when a ham
radio logging program stopped for 6 minutes in the middle of
a contest), and his reply was that that was done because Java
programmers didn't know how much memory their program needed, 
so I asked if that meant that COBOL programmers were smarter 
than Java programmers.

Barry

-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] On 
Behalf
Of Sambataro, Anthony (NIH/NBS) [E]
Sent: Friday, December 09, 2011 6:34 AM
To: IBM-MAIN@bama.ua.edu
Subject: Re: Java apps have most flaws, Cobol is cleanest.

I'm unclear as to whether the COBOL code had fewer errors or cost less to
fix each problem, or both?

-Original Message-
From: Ian [mailto:pcs...@gmail.com]
Sent: Thursday, December 08, 2011 4:53 PM
To: IBM-MAIN@bama.ua.edu
Subject: Java apps have most flaws, Cobol is cleanest.

Interesting article on clean code study.
COBOL scored the highest on security while .NET scored the lowest.

Link to Computer world news article:
http://www.computerworlduk.com/news/applications/3323819/java-apps-have-most

-flaws-cobol-apps-least-study-finds/

(If the link does not fold right, follow the links from here:
http://www.cicsworld.com/node/4252)

Ian
http://www.cicsworld.com

--
For IBM-MAIN subscribe / signoff / archive access instructions, send email
to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO Search the
archives at http://bama.ua.edu/archives/ibm-main.html

--
For IBM-MAIN subscribe / signoff / archive access instructions, send email
to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO Search the
archives at http://bama.ua.edu/archives/ibm-main.html

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html








Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: ISPF scrollable areas

2011-12-07 Thread Martin Packer
Andy, I can't answer your question but wonder if what you're trying to do 
violates the principle of least astonishment in UI design.

Cheers, Martin

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker
Blog: 
https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker



From:
Andy Robertson andy_robert...@johnlewis.co.uk
To:
IBM-MAIN@bama.ua.edu, 
Date:
07/12/2011 11:17
Subject:
ISPF scrollable areas
Sent by:
IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu



A query.
 
I have a panel with two scrollable areas (defined within )AREA sections)
 
If I issue UP or DOWN with my cursor outside these areas, I get the 
message
 
ISPP651 The cursor must be within a scrollable area to perform the 
requested scroll. 

All working correctly, but not wot I want
 
What I want to do is to trap this message, reposition the cursor within 
one of the areas, and reissue the scroll
 
Does anyone have any ideas  as how to do this??? 

The message does not show up in ZERRSM/ZERRLM or ZMSGID. 
The )REINIT section does not appear to be being redriven.

Any ideas?

Andy Robertson   telephone mobile 0777 214 9545 home 01308 420797
**
This email is confidential and may contain copyright material of the John 
Lewis Partnership. 
If you are not the intended recipient, please notify us immediately and 
delete all copies of this message. 
(Please note that it is your responsibility to scan this message for 
viruses). Email to and from the
John Lewis Partnership is automatically monitored for operational and 
lawful business reasons.
**

John Lewis plc
Registered in England 233462
Registered office 171 Victoria Street London SW1E 5NN
 
Websites: http://www.johnlewis.com 
http://www.waitrose.com 
http://www.johnlewis.com/insurance
http://www.johnlewispartnership.co.uk
 
**

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html








Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: ECSA usage - Clarification

2011-10-31 Thread Martin Packer
A reasonable start is SMF 78-2 (RMF Virtual Storage report) which will at 
least give you the dynamics and the key - both for CSA and ECSA. For one 
you need to understand if this is a regular occurrence or just a rarity.

Cheers, Martin

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker
Blog: 
https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker





Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Batch Capacity Planning - BWATOOL?

2011-09-19 Thread Martin Packer
Mike, as it's been a week and no reply to your post I thought I'd bite the 
bullet and summarise my thoughts on Batch Capacity Planning in a blog post 
(or maybe two). (I'd been hoping some debate would ensue but none has 
shown up.) :-(

But on your question of BWATOOL, its role was really to show what happens 
to a batch job when the engine speed of the processor it's running on 
changes. I'm not sure how that really helps when it comes to Capacity 
Planning. And I've not seen ACTIVE references to BWATOOL in a long time.

If you really DO want to figure out the effect of an engine speed change 
you probably could roll your own - in MXG or whatever. You'd have to 
supply your own engine speed comparison, of course. And you'd have to 
understand that CPU queuing make the whole exercise a little fraught. 
Perhaps I'll touch on more-versus-faster as it applies to Batch in the 
first post.

Cheers. Martin

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker
Blog: 
https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker



From:
Martin, Mike mike.mar...@ncsecu.org
To:
IBM-MAIN@bama.ua.edu
Date:
12/09/2011 16:53
Subject:
Batch Capacity Planning - BWATOOL?
Sent by:
IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu



All,

 

We are looking at acquiring a new application to run on z/OS.
Supposedly, the batch is very CPU intensive.  We have been talking to a
another customer who already runs this application to get an idea of the
resources we will need.

 

I'd feel better though, if we found a good batch capacity planning tool
to gauge how it will run on our system.  I ran across a tool called
BWATOOL from IBM.  Has anyone used BWATOOL?  Is it still available?  Are
there other/similar tools for z/OS batch capacity planning? 

 

Mike Martin

 

/PREThis email may contain confidential and privileged material for the 
sole use of the intended recipient. If you are not the intended recipient, 
please contact the sender and delete all copies. Any review or 
distribution by others is strictly prohibited. Personal emails are 
restricted by policy of the State Employees' Credit Union (SECU). 
Therefore SECU specifically disclaims any responsibility or liability for 
any personal information or opinions of the author expressed in this 
email.

/P

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html








Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: SLR columns size D_MIGR_SP mbyte gbyte

2011-09-08 Thread Martin Packer
It's just as well SOMEONE in IBM is still using SLR, unsupported though it 
has been for MANY years. :-)

You could define a view over the table which just edits the display 
specification for the column that's overflowing. (Or, as you say, creates 
a column that is divided by 1024.)

So I'd look up VIEW in the commands manual. Note this is NOT an RTFM 
answer. :-)

As always when I see overflow I wonder what is causing the data to have 
values that big.

Hope that helps.

Cheers, Martin

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker
Blog: 
https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker



From:
MONTERO ROMERO, ENRIQUE ELOI enriqueeloi.mont...@servifactory.com
To:
IBM-MAIN@bama.ua.edu
Date:
08/09/2011 09:15
Subject:
SLR columns size D_MIGR_SP mbyte gbyte
Sent by:
IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu



Hi team,

This time is related to the OLD product (SLR).

I am looking for the guides (reference or commands)

We have this instruction :

SELECT COLUMNS(YEAR MONTH DAY ALLOC_SP D_MIGR_SP T_MIGR_SP T_BCK_SP  + 
NUMDATASET NUM_DASD NUM_TAPE NUM_BKUP) 

The D_MIGR_SP and T_MIGR_SP results appears with , this means 
the value cannot fit in the report column.

The solution: (not to upgrade to a newer version), could be to divide into 
1024 or to increase the columns size, but we have no idea on how to do it.

Some clue or guide?

Best regards,

Enrque Eloi Montero 
 

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html








Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: OT Good/Bad News

2011-09-08 Thread Martin Packer
The mainframe pictured IS rather ancient. Maybe THAT'S the bad news. :-) 
But, to be fair, the mainframe NAMED in the article is more modern.

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker
Blog: 
https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker



From:
Walt Farrell wfarr...@us.ibm.com
To:
IBM-MAIN@bama.ua.edu
Date:
08/09/2011 14:00
Subject:
Re: OT Good/Bad News
Sent by:
IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu



On Wed, 7 Sep 2011 17:47:00 -0700, Ed Gould ps2...@yahoo.com wrote:

IBM secures deal to supply mainframe in China


http://news.techworld.com/storage/3301850/ibm-secures-deal-to-supply-mainframe-in-china/?olo=rss


What part of that do you view as bad news, Ed?

-- 
Walt

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html








Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: IFCID Product section layout

2011-09-08 Thread Martin Packer
In the same section of the 101 record, stacked one after the other in the 
section. Their lengths are in their first byte (or maybe two).

Martin

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker
Blog: 
https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker



From:
Micheal Butz michealb...@optonline.net
To:
IBM-MAIN@bama.ua.edu
Date:
09/09/2011 00:55
Subject:
IFCID Product section layout
Sent by:
IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu



I have a question regarding the product section The documentation says 
that
the product section can have may headers seems like there is always a
Standard header, but then the other header might also be present

(correlation, distributed, cpu) my question is if the other headers are
present were would they be located

 

Listed below is a link to the doc 

 

http://publibz.boulder.ibm.com/cgi-bin/bookmgr_OS390/BOOKS/dsnpfk15/5.4.1.4?

SHELF=DSNSHKA4.bks

http://publibz.boulder.ibm.com/cgi-bin/bookmgr_OS390/BOOKS/dsnpfk15/5.4.1.4

?SHELF=DSNSHKA4.bksDT=20090429161615CASE= DT=20090429161615CASE=

 

http://publibz.boulder.ibm.com/cgi-bin/bookmgr_OS390/BOOKS/dsnpfk15/5.4.1?AC

TION=MATCHES

http://publibz.boulder.ibm.com/cgi-bin/bookmgr_OS390/BOOKS/dsnpfk15/5.4.1?A

CTION=MATCHESREQUEST=product+sectionTYPE=FUZZYSHELF=DSNSHKA4.bksDT=20090
429161615CASE=searchTopic=TOPICsearchText=TEXTsearchIndex=INDEXrank=RAN
KScrollTOP=FIRSTHIT%23FIRSTHIT
REQUEST=product+sectionTYPE=FUZZYSHELF=DSNSHKA4.bksDT=20090429161615CAS
E=searchTopic=TOPICsearchText=TEXTsearchIndex=INDEXrank=RANKScrollTOP=F
IRSTHIT#FIRSTHIT

 


--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html








Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Cobol and large QSAM record length

2011-08-31 Thread Martin Packer
DFSORT can process VBS. Whether it goes to 32767 or not I'll leave to 
Frank to clear up.

A useful technique I've found in the past is to make DFSORT do my I/O to 
SMF and use an exit to pick up the records in a buffer.

Martin

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker
Blog: 
https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker





Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: JRIO/JZOS zAAP eligability questions

2011-08-22 Thread Martin Packer
Kirk, would it be worthwhile working up a blog post on the new library and 
its zAAPability? Happy to host as a guest post on my blog...

... if one hasn't been written already.

Cheers, Martin
Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker
Blog: 
https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker



From:
Kirk Wolf k...@dovetail.com
To:
IBM-MAIN@bama.ua.edu
Date:
22/08/2011 15:51
Subject:
Re: JRIO/JZOS zAAP eligability questions
Sent by:
IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu



The JZOS JNI libraries included with the z/OS Java SDK are zAAP eligible.

Kirk Wolf
Dovetailed Technologies
http://dovetail.com

On Mon, Aug 22, 2011 at 9:38 AM, Steve Austin 
steve.aus...@macro4.comwrote:

 Hello,



 I've read that JRIO has been deprecated and the JZOS component should be
 used to access native files. I assume that both must be calling the JNI.
 Do both, or either, maintain zAAP eligability across the JNI call? If so
 is this documented anywhere?



 Thanks



 Steve


 - 

 This email has been scanned for all known viruses by the MessageLabs 
Email
 Security Service and the Macro 4 internal virus protection system.
 . 

 --
 For IBM-MAIN subscribe / signoff / archive access instructions,
 send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
 Search the archives at http://bama.ua.edu/archives/ibm-main.html


--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html








Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: How to obtain a file bigger than 80 chars from two inputs file

2011-07-19 Thread Martin Packer
Note your output messages are truncated in your post. For example 
EXAMPL. :-)

Cheers, Martin

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker
Blog: 
https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker



From:
Hilario G. libr...@gmail.com
To:
IBM-MAIN@bama.ua.edu
Date:
19/07/2011 09:21
Subject:
Re: How to obtain a file bigger than 80 chars from two inputs file
Sent by:
IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu



Hello Michael,

I follow your example, but didn't work. The error is produce on second 
sentence COPY:

ICE600I 0 DFSORT ICETOOL UTILITY RUN STARTED

ICE650I 0 VISIT http://www.ibm.com/storage/dfsort FOR ICETOOL PAPERS, 
EXAMPL

ICE632I 0 SOURCE FOR ICETOOL STATEMENTS:  TOOLIN


ICE630I 0 MODE IN EFFECT:  STOP

   COPY FROM(INFILE0) TO(SORTOUT) USING(CTL0)
ICE606I 0 DFSORT CALL 0001 FOR COPY  FROM INFILE0  TO SORTOUT  USING 
CTL0CNT
ICE602I 0 OPERATION RETURN CODE:  00

   COPY FROM(INFILE1) TO(SORTOUT) USING(CTL1)
ICE606I 0 DFSORT CALL 0002 FOR COPY  FROM INFILE1  TO SORTOUT  USING 
CTL1CNT
ICE602I 0 OPERATION RETURN CODE:  16


ICE601I 0 DFSORT ICETOOL UTILITY RUN ENDED - RETURN CODE:  16

May you help me ?

Kind Regards.

Hilario G.

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html







Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: ABCs of z/OS systems programming, draft revision of volume 1

2011-06-14 Thread Martin Packer
On learning of this update I went to the relevant Redbooks web page and 
was disappointed not to see a What's Changed summary. Just to let y'all 
know I've raised this with the Redbooks people (on Twitter, as it 
happens). Assuming I get over to Pok this Summer I intend to discuss it in 
more detail with them.

While not wanting to start a letter writing campaign you may have views 
on this.

Martin

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker
Blog: 
https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker

IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu wrote on 14/06/2011 
13:29:23:

 From:
 
 Dana Mitchell mitchd...@gmail.com
 
 To:
 
 IBM-MAIN@bama.ua.edu
 
 Date:
 
 14/06/2011 13:30
 
 Subject:
 
 Re: ABCs of z/OS systems programming, draft revision of volume 1
 
 Sent by:
 
 IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu
 
 I wish there were redbooks such as these for the beginner 'sysprog'  for 

 learning IBM i.   I would find that quite useful at this stage.
 
 Dana
 
 --
 For IBM-MAIN subscribe / signoff / archive access instructions,
 send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
 Search the archives at http://bama.ua.edu/archives/ibm-main.html






Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: How to diagnose memory leak?

2011-06-08 Thread Martin Packer
In the old days IPCS was seen as one of the biggest users of memory - for 
TSO. That may still be guiding installations.

Martin

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker
Blog: 
https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker





Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: What is the current feeling for MVC loop vs. MVCL?

2011-06-01 Thread Martin Packer
I would expect MVPG to be slow - given its history. If we no longer feel 
the need to go the scenic route :-) maybe it isn't.

Martin

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker
Blog: 
https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker



From:
Tony Harminc t...@harminc.net
To:
IBM-MAIN@bama.ua.edu
Date:
01/06/2011 18:40
Subject:
Re: What is the current feeling for MVC loop vs. MVCL?
Sent by:
IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu



On 1 June 2011 12:32, Jim Mulder d10j...@us.ibm.com wrote:

  If your 8K MVCLs have 4K-aligned sources and targets, then
 they may be taking advantage of the page mover hardware.  In that
 case, MVCs could be considerably slower.

I had been about to suggest the MVPG instruction, but it's quite
possible that MVCL will use the same infrastructure if circumstances
are right. One imagines that with fewer options and special cases to
evaluate, fewer registers to tie up and none to update, for MVPG the
setup would be shorter, and the execution at least as fast. But one's
imagination is often not a good guide; I have a rather casual
benchmark for these two (that is, MVCL of 4k on a page boundary vs
MVPG with no fancy options) that shows MVPG just barely beating MVCL
on a z10, and losing heavily on all earlier machines I had access to
(P390, zPDT, MP3000, FLEX/ES and z9).

John Gilmore's points are well taken. If I may suggest one more,
loosely put, it is to use instructions for what they are usually used
for (which is, even more approximately, what they are documented to be
used for). This is likely to take advantage of hardware optimizations
over time without forcing a tight binding to the hardware of the day.
The assembler programmer does not have an easy way to recompile and
take advantage of whatever the hardware implementors and compiler
designers have come up with since the code was written.

Tony H.

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html







Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Facebook for professional usage (was Re: Recent maintenance for z/XDC)

2011-05-27 Thread Martin Packer
Facebook access is not just allowed in IBM but actively encouraged. And 
heavily used. (Likewise Slideshare, LinkedIn, FourSquare and Twitter - and 
this isn't a prescriptive list.)

Martin

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker
Blog: 
https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker





Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: DB2 shared data group % of SCA structure used

2011-05-26 Thread Martin Packer
Micheal, I'm interested in why macros rather than RMF / SMF.

Cheers, Martin

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker
Blog: 
https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker



From:
Micheal Butz michealb...@optonline.net
To:
IBM-MAIN@bama.ua.edu
Date:
26/05/2011 03:06
Subject:
DB2 shared data group % of SCA structure used
Sent by:
IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu



Hi

Would anyone know how to get the above info using IXC. Sysplex macros

Sent from my iPhone

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html







Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Facebook for professional usage (was Re: Recent maintenance for z/XDC)

2011-05-26 Thread Martin Packer
As I'm one of the contributors to them - particularly in how to treat 
dealings with customers - I hope you like them. If you don't then I'm 
receptive...

Martin

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker
Blog: 
https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker



From:
David Cole dbc...@colesoft.com
To:
IBM-MAIN@bama.ua.edu
Date:
26/05/2011 18:47
Subject:
Re: Facebook for professional usage (was Re: Recent maintenance for z/XDC)
Sent by:
IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu



At 5/26/2011 10:32 AM, Ralph Robison wrote:
In the context of this debate, you may find it interesting to read 
IBM Social Computing Guidelines at 
http://www.ibm.com/blogs/zz/en/guidelines.html

Great find, Ralph!



Thanks,

Dave Cole  REPLY TO: dbc...@colesoft.com
ColeSoft Marketing WEB PAGE: http://www.colesoft.com
736 Fox Hollow RoadVOICE:540-456-8536
Afton, VA 22920FAX:  540-456-6658 

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html







Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Facebook for professional usage (was Re: Recent maintenance for z/XDC)

2011-05-23 Thread Martin Packer
I don't disagree, Mark, that this can be highly inconvenient. But it's 
high time that organisations got with the program(me) re modern 
communications technology. I guess THIS is one of the WORST audiences to 
peddle that line to. :-) On a brighter note we don't seem to have been all 
that slow to adopt Web 1.0. (But maybe I forget...) :-)

Martin

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker
Blog: 
https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker



From:
Mark Zelden m...@mzelden.com
To:
IBM-MAIN@bama.ua.edu
Date:
22/05/2011 22:43
Subject:
Facebook for professional usage (was Re: Recent maintenance for z/XDC)
Sent by:
IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu



On Sun, 22 May 2011 16:53:50 -0400, David Cole dbc...@colesoft.com 
wrote:

I have posted new maintenance for z/XDC. For details please visit our
Facebook page. You can find it by going onto Facebook and searching
for ColeSoft.

Thank You,

Dave Cole  REPLY TO: dbc...@colesoft.com
ColeSoft Marketing WEB PAGE: http://www.colesoft.com
736 Fox Hollow RoadVOICE:540-456-8536
Afton, VA 22920FAX:  540-456-6658


I'm not a z/XDC user, but I didn't see the information on your web site.
At least not in any obvious place.

Why are vendors and organizations using Facebook for professional 
use?  I am seeing this more and more often.  It's fine for social purposes
but most companies lock out access to Facebook from their corporate
networks from what I have seen. 

Mark
--
Mark Zelden - Zelden Consulting Services - z/OS, OS/390 and MVS 
mailto:m...@mzelden.com 
Mark's MVS Utilities: http://www.mzelden.com/mvsutil.html 
Systems Programming expert at http://expertanswercenter.techtarget.com/

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html







Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: It got very quiet

2011-05-23 Thread Martin Packer
... and there's no need to shout. :-)

Martin

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker
Blog: 
https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker





Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Facebook for professional usage (was Re: Recent maintenance for z/XDC)

2011-05-23 Thread Martin Packer
So they like the idea of you going and getting a different job, John. :-)

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker
Blog: 
https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker



From:
Chase, John jch...@ussco.com
To:
IBM-MAIN@bama.ua.edu
Date:
23/05/2011 13:12
Subject:
Re: Facebook for professional usage (was Re: Recent maintenance for z/XDC)
Sent by:
IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu



 -Original Message-
 From: IBM Mainframe Discussion List On Behalf Of Mark Zelden
 
 On Sun, 22 May 2011 16:53:50 -0400, David Cole dbc...@colesoft.com
wrote:
 
 I have posted new maintenance for z/XDC. For details please visit our
 Facebook page. You can find it by going onto Facebook and searching
 for ColeSoft.
 
 Thank You,
 
 Dave Cole  REPLY TO: dbc...@colesoft.com
 ColeSoft Marketing WEB PAGE: http://www.colesoft.com
 736 Fox Hollow RoadVOICE:540-456-8536
 Afton, VA 22920FAX:  540-456-6658
 
 
 I'm not a z/XDC user, but I didn't see the information on your web
site.
 At least not in any obvious place.
 
 Why are vendors and organizations using Facebook for professional
 use?  I am seeing this more and more often.  It's fine for social
purposes
 but most companies lock out access to Facebook from their corporate
 networks from what I have seen.

Indeed.  AFAIK, we don't twitter, either.

But we do have access to LinkedIn (as of yesterday, anyway).

-jc-

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html







Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: SYSOUT class of a data set

2011-05-21 Thread Martin Packer
Taking this back to the technical :-) it seems there isn't a definitive 
API for this. Reminded by the fact we code SYSOUT=K,HOLD=YES on our 
system I'm wondering whether other attributes such as HOLD status are 
discernable.

Not that I have an immediate need... more for completeness.

Martin

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker
Blog: 
https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker





Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: MEMLIMIT Parameter Question

2011-04-25 Thread Martin Packer
Before people (continue to) post their MEMLIMIT values don't we think 
there's a potential Denial Of Service issue here? If a program were to 
touch every page up to gazillion whatobytes there'd be a problem. MEMLIMIT 
is one of the mechanisms that limits this potential. IEFUSI is another. 
The same is probably true of HVSHARE and HVCOMMON, while we're at it.

Cheers, Martin

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker
Blog: 
https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker





Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Dyadic vs AP: Was CPU utilization/forecasting

2011-04-20 Thread Martin Packer
Ron, care to remind us of the modelling difference? It's been a while. :-)

Ron Hawkins wrote:

 Would it have been more appropriate if I added that dyadic 
 processors required revision of many of the methods that 
 we applied to earlier models. 

 Would you use a capacity planning methodology for a 3033 AP
 when you model a 3090-200?


Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker
Blog: 
https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker





Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Dyadic vs AP: Was CPU utilization/forecasting

2011-04-20 Thread Martin Packer
Interesting - especially the CSA bit: The very first problem I worked on 
in IBM (and I don't think I was much use) :-) in late 1985 was Virtual 
Storage (a DOS to MVS migration). I was hooked. If I hadn't've been I'd 
not've ;lasted long in IBM and the world would've been a different place. 
:-)

Plus ca change... we just add a few zeroes somewhere in the numbers 
nowadays. :-)

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker
Blog: 
https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker





Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


AMATERSE and BatchPipes/MVS and SMF

2011-04-13 Thread Martin Packer
Short version of the question: Does anyone know which access method 
AMATERSE uses to write untersed data out?

Longer version: Does anyone have any practical experience of using it with 
BatchPipes/MVS aka Pipes? Particularly with SMF.

Here's why I ask: The first thing I do when I get a customer's SMF data is 
to UNTERSE it and the second is to split it, based on eg record type. I'd 
like to combine the two - without asking Development to provide exits to 
AMATERSE. (I've not asked - they may be amenable.)

Now, I know SMF is VBS not VB and therefore not supported with Pipes. 
However, in many cases I can get away with characterising it as VB and 
then Pipes could work. (I'd have to work on making AMATERSE believe it's 
writing VB, of course.)

Thoughts? Any other way to save the disk space involved?

I might actually try this. I'm spurred on by the enormous amount of data I 
get in support of CICS, DB2 and Batch studies these days.

Thanks, Martin

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker
Blog: 
https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker





Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: DB2 SMF Records

2011-04-13 Thread Martin Packer
They're not the easiest records to parse, BTW. But then again they're not 
the hardest. :-)

Martin

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker
Blog: 
https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker

IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu wrote on 12/04/2011 
21:28:57:

 From:
 
 Matthew Stitt mathwst...@bellsouth.net
 
 To:
 
 IBM-MAIN@bama.ua.edu
 
 Date:
 
 12/04/2011 21:30
 
 Subject:
 
 Re: DB2 SMF Records
 
 Sent by:
 
 IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu
 
 Try looking in SDSNMACS, members starting with DSNDQW..
 
 I remember looking at these records several years ago and almost 
throwing up
 my hands due to the layouts.
 
 On Tue, 12 Apr 2011 15:09:43 -0500, Hal Merritt 
 hmerr...@jackhenry.com wrote:
 
 Anyone know I could find the layouts (DSECTs) of DB2 SMF records? 
 Specifically Type 100, 101,  102 ?
 
 Thanks!!
 
 
 --
 For IBM-MAIN subscribe / signoff / archive access instructions,
 send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
 Search the archives at http://bama.ua.edu/archives/ibm-main.html






Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: RMF rec 74 subtype 7 FCD

2011-04-13 Thread Martin Packer
Thanks Ravi. I was going to post the same answer. But it begs the 
question: What's a connector in this context?

(Yes, I've mapped this record before and am still attempting to understand 
what it's telling me.)

Thanks, Martin

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker
Blog: 
https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker



From:
Ravi Gaur gaur.ravi2...@gmail.com
To:
IBM-MAIN@bama.ua.edu
Date:
13/04/2011 01:46
Subject:
Re: RMF rec 74 subtype 7 FCD
Sent by:
IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu



SMF747PO--- /*OFFSET TO PORT*/ 
 SMF747CO---  /*OFFSET TO CONNECTOR*/ 

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html







Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Adding storage to a partition

2011-04-11 Thread Martin Packer
My take on this whole discussion - which is why I'm not replying to anyone 
in particular - is it's high time we educated people again on what the 
rules are. (And, no, I don't crisply know what they are myself.) :-(

Martin

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker
Blog: 
https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker





Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Region size

2011-03-26 Thread Martin Packer
With memory limits we have to remember that supports is different from 
performs well up to. As my audiences will know I talk about the work 
z/OS and Hardware Development did to make memory scale well.

Martin

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker
Blog: 
https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker





Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


DB2 Restart Frequency - was Re: *IEA061E REPLACEMENT ASID SHORTAGE HAS BEEN DETECTED

2011-03-21 Thread Martin Packer
Rob, I was going to ask the same question: About the necessity of 
(probably daily) restarting of DB2. There was a time - ten years or so ago 
- when a substantial minority DID restart DB2 nightly. Even with the 
Virtual Storage crunches going on it seemed a not-so-good idea. An example 
of why would be need to (re)prime buffer pools, EDM Pool etc.

I'm interested in what people people do nowadays. I have a view but my 
customer set may be unusual. :-)

Thanks, Martin

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker





Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: zIIPs and TCP/IP usage

2011-03-19 Thread Martin Packer
I think one of the points about IPSec is that it is an EMERGENT technology 
- in the sense that many sites aren't using it YET. So I regard its zIIP 
support to be an ENABLER. Might be time - in many shops - to exploit IPSec 
because of this.

(And, static the OBVIOUS, you won't see anything via the PROJECTCPU 
mechanism for workloads you aren't running yet.) :-)

Martin

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker





Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Why is WTO so much easier to use than better methods? (Was RE: Trouble Reading a Spanned File with an Assembler Program - Working Program)

2011-03-17 Thread Martin Packer
Note printf() goes to stdout and there isn't really such a STANDARD thing 
in z/OS.

Martin

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker





Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Why is WTO so much easier to use than better methods? (Was RE: Trouble Reading a Spanned File with an Assembler Program - Working Program)

2011-03-17 Thread Martin Packer
Maybe but he understood MINE. :-)

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker



From:
David Crayford dcrayf...@gmail.com
To:
IBM-MAIN@bama.ua.edu
Date:
17/03/2011 12:43
Subject:
Re: Why is WTO so much easier to use than better methods? (Was RE: Trouble 
Reading a Spanned File with an Assembler Program - Working Program)
Sent by:
IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu



gil,

I think you misunderstood my point. I was talking about printf() and 
where it routes it's output.

On 17/03/2011 8:24 PM, Paul Gilmartin wrote:
 On Thu, 17 Mar 2011 19:31:22 +0800, David Crayford wrote:
 In  a non-zUnix environment stdout is SYSPRINT. So in TSO it writes to
 the terminal and in batch to a SYSPRINT DD. If you
 don't specify a SYSPRINT DD it will dynamically allocate a sysout data
 set. I believe in CICS it writes to the log?

 Not really.  It's application dependent and wretchedly inconsistent.
 I see:

 UNIX stdout  stderr

 AssemblerSYSPRINTSYSTERM

 IEBGENER SYSUT1  SYSPRINT

 Batch TMP SYSTSPRT

 TSO   Terminal

 It's a real shame that:

 o TSO didn't originally read from/write to DDNAMES rather
than inventing the idiosyncratic TGET/TPUT

 o DDNAME redirection wasn't made a basic capability of
data management rather than implemented sporadically by
various applications, often by positional entries in a
second PARM.

 o Rexx, which internally has separate interfaces for data
output and message output, has no provision for externally
directing them to different DDNAMEs/descriptors.

 -- gil

 --
 For IBM-MAIN subscribe / signoff / archive access instructions,
 send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
 Search the archives at http://bama.ua.edu/archives/ibm-main.html

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html







Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: How to get the CPC name on which the current system is running

2011-03-17 Thread Martin Packer
What is a CPC name? Do you mean eg 51-13667  which would be the serial 
number? (Probably with lots of zeroes in it.)

The reason I ask is because I'd quite like customers to be able to name 
their machine e.g Flossie. :-)

When I speak to customers using their RMF data I use the serial number to 
denote the machine but THEY often go oh, that's 'Flossie' but there's 
nowhere I know of to tell the machine what it's called. :-)

Martin (not anthropomorphising computers as I gather they don't like it) 
:-)

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker



From:
Stan Weyman stan.wey...@emc.com
To:
IBM-MAIN@bama.ua.edu
Date:
17/03/2011 13:55
Subject:
How to get the CPC name on which the current system is running
Sent by:
IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu



   I'm looking for areas in z/OS where I can get the CPC name that the 
current system is running on.  The IPA is a possibility but looks to be 
populated via LOADxx and we've had issues with the HWNAME filtering 
causing problems with the CPC name.  I've looked at IBM's CSRSI service 
and they have a neat setup where you can request information at the CPC, 
LPAR, or VM level *OR* any combination of the three.  However, in IBM's 
infinite wisdom it appears they left the CPC name off the list of 
information returned via a CPC call sigh.  They have a CPCNAME defined 
in the macro expansion but it is an ORG of the LPARNAME and is in the LPAR 
area, not the CPC area so it's not a matter of doing a single vs multiple 
call type.  Very strange they would leave out the CPC name.  I've used the 
REXX CONSOLE interface in the past to do a D M=CPU and then GETMSG to 
retrieve it but I'd prefer not to use this method.

   Does anyone know where the CPC name is obtained when D M=CPU is issued 
or, barring that, another place I can get the CPC name?

  Regards,
Stan

Stan Weyman
Senior Software Engineer
stan.wey...@emc.commailto:weyman_s...@emc.com
EMC² *(508)249-3966
where information lives
It is wise to keep in mind that neither
success nor failure is ever final...


--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html







Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Dummy LPAR to store excess MIPS

2011-03-11 Thread Martin Packer
Yes, but it wouldn't get the sysprogs a nice comfy fast playpen. :-)

Cheers, Martin

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker



From:
Timothy Sipples timothy.sipp...@us.ibm.com
To:
IBM-MAIN@bama.ua.edu
Date:
11/03/2011 06:07
Subject:
Re: Dummy LPAR to store excess MIPS
Sent by:
IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu



Wouldn't a defined capacity setting (a.k.a. softcap), group and/or
individually, be a lot less complicated and work at least as well?

- - - - -
Timothy Sipples
Resident Enterprise Architect
Value Creation  Complex Deals Team
IBM Growth Markets (Based in Singapore)
E-Mail: timothy.sipp...@us.ibm.com

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html







Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: What is Toronto

2011-02-22 Thread Martin Packer
Don't anthropomorphise computers: They don't like it. :-)

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker





Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Second Reference to Temporary Data Set Fails

2011-01-29 Thread Martin Packer
If you do that - use permanent data sets as pseudo-temporaries - then you 
forego the potential for VIO (In Central). But then I do it myself 
sometimes.

Cheers, Martin

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker





Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: digitize old hardcopy manuals

2011-01-20 Thread Martin Packer
With Evernote you only need premium for the month you break the free cap. 
Personally I'm a very happy premium user - as can be seen by my input to 
their bulletin board.

I particularly like the idea of shared notebooks - though THIS would be my 
first use of it.

Martin

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Evernote  / Facebook IDs: MartinPacker





Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: IFCID trace header error

2011-01-13 Thread Martin Packer
Probably a silly question but are BOTH the count and length zero? If so 
there ISN'T one of those sections.

Martin

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker



From:
Micheal Butz michealb...@optonline.net
To:
IBM-MAIN@bama.ua.edu
Date:
13/01/2011 14:32
Subject:
IFCID trace header error
Sent by:
IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu



While parsing a IFCID trace record

In the self defining section which consists of

Full word offset to the data section

Half word length

Half word number of occurrences


The fullword offset field to the data section was zero


Is anyone aware of this problem

Sent from my iPhone

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html







Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Date representations: Y2k revisited

2011-01-10 Thread Martin Packer
Coloro che sanno sounds more Italian to me... but then I don't know 
Italian. :-)

Martin

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker





Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Reading IBM Manuals on the Kindle DX (eBook)

2011-01-06 Thread Martin Packer
Inspired by Peter's mention of REXX and HTML in the same post...

REXX could really use a DOM Tree Walker API (DOM = Document Object Model 
and is how most languages process XML and HTML). Or at least some z/OS TSO 
scripting language could.

Martin

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker





Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Reading IBM Manuals on the Kindle DX (eBook)

2011-01-06 Thread Martin Packer
The received wisdom is that regex has a hard time with the complexity of 
HTML (whether broken or not) and XML. Being less than fluent in regex's 
I'm biased to agree. :-)

Shane Ginnane wrote:

 Personally I prefer regex - it would be a doddle in perl/awk/sed ...

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker





Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Reading IBM Manuals on the Kindle DX (eBook)

2011-01-05 Thread Martin Packer
Was having just the same debate with my Dad: He wanted to read a certain 
UK newspaper on a Kindle. I pointed out there were alternatives that would 
do what he wanted.

In THIS case an inept PDF reader is an inept PDF reader. Period. :-(

Martin

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker





Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Reading IBM Manuals on the Kindle DX (eBook)

2011-01-05 Thread Martin Packer
For iPad I recommend 64GB (which I did and forewent 3G). It was 
frustrating that iPhone 4 could only come with 32GB. (Ours are within 10GB 
of full at present.)

But I would hope 32GB would be enough on an iPad for PDF viewing. BTW I 
invested in iAnnotate PDF for obvious reasons.

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker





Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Programmer Charged with thieft (maybe off topic)

2010-12-27 Thread Martin Packer
Yeah, I tweeted about the tears typo. The funniest part of the whole 
thing. :-)

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker





Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Hardware-assisted compression: not CPU-efficient?

2010-12-02 Thread Martin Packer
Ron, is it generally the case that CPU is saved on read? I'm seeing QSAM 
with HDC jobsteps showing very high CPU. But then they seem to both write 
and read. Enough CPU to potentially suffer from queuing.

(And, yes, I know you were talking about a different category of HDC 
usage.)

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker





Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: 64 bit mode disabled

2010-12-02 Thread Martin Packer
Tom Harper wrote:

 I'm not so sure. Many CICS shops have pointed out to me that they
 are forced to run hundreds of CICS regions for the simple fact 
 that 2G is not enough address space to contain all of their programs. 
 This requires them to spend an inordinate amount of time managing 
 regions for the sole reason of address space exhaustion. 

Tom, I'm not really disputing what you're saying but I'd be surprised if 
many of those were limited by the program code - I'd be expecting 
concurrency of transactions to be an issue but not the set of load 
modules. Do you have examples where the CICS statistics (or other 
instrumentation) confirms it's the loaded modules that are the problem?

Thanks, Martin

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker





Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


CICS Topology ... was Re: 64 bit mode disabled

2010-12-02 Thread Martin Packer
One customer of mine has tens of thousands of test CICS regions. You want 
one? You get one - probably staying up the rest of the day after 15 mins 
playing with it. :-) For them it's not going to be single-CP constraints 
or virtual memory or anything like that. :-) Though the memory impact of 
all those regions is very severe. :-(

(Just tossing in another data point.)

But I still think for most customers the aggregate size of loaded (or 
ideally would be loaded) modules in a single region is not much of a 
factor. 100-200MB tops. I could be wrong. :-)

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker





Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: IEFBR14

2010-11-25 Thread Martin Packer
Bill wrote:

 The first APAR on IEFBR14 of which I am aware occurred in the late 
 1960s in the very early days of OS/360.  The error was that the 
 program was not setting the return code to zero.  I do not remember 
 the exact date of the APAR, its fix, release number, etc.  I would 
 bet that Shmuel Metz does, though.  :-)
 
 Bill Fairchild
 Rocket Software

I'd guess* that at the time there was a philosophical debate on whether 
iefBR14 was still the right name for the resulting program. :-)

* I claim to be too young to know. :-)

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM








Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: IEFBR14

2010-11-21 Thread Martin Packer
Mostly Harmless? :-) Or, for the youngsters, That Boy Does Nothing? 
:-)

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker

Ed Gould wrote:

 Gerhard:
 Long long ago I was doing some SMF number crunching and at our 
 installation IEFBR14 was the highest number of executions (for the 
 month I was working on). I sent an memo to the IS VP indicating that
 IEFBR14 was doing more work than any of our production jobs. He was 
 NOT amused (grin). He was trying to justify a larger CPU at the time
 and the President had gotten a hold of the memo and was attempting 
 to quash the bigger CPU request. He (president) did not have a clue 
 what IEFBR14 really did. I was ordered to write a follow up memo 
 explaining what it did. Trying to dumb down (to the executive level)
 a memo explaining IEFBR14 was not easy! I think I went through 20 
 revisions until it was so meaningless it said nothing.The memo 
 satisfied the everyone before it was sent up to the mountain top. I 
 wish now I had kept a copy.
 Ed





Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: IEFBR14

2010-11-20 Thread Martin Packer
Pathlength to eg branch around an eyecatcher would be trivial compared to 
just getting started.

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker





Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Progress Indicator For AMATERSE?

2010-11-11 Thread Martin Packer
When I receive data from a customer I pull it using FTP - and I get a line 
in the SYSOUT every so often, as well as an early file size line to 
compare against. My next step is to unterse it. I think it would be useful 
to have a similar progress indicator.

Do others agree? Or is this a very minor nice to have? (My thinking is a 
progress indicator for terse WOULD be useful to customers.)

Thanks, Martin

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker





Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Rexx question - Dynamic generation of variables?

2010-11-07 Thread Martin Packer
Not to dismiss the sample at all but...

... this really shows off the grottiness of Classic REXX as a language... 
I have incantations just like these (and knowing enough of object-oriented 
languages and Object REXX) I wonder why we haven't ported Open Object Rexx 
to z/OS yet... Most of this example would be MUCH better if implemented in 
Object REXX. For example alloc_member and alloc_dsname stems could be 
attributes/properties/members of a single object. (And increment and 
decrement operators wouldn't be a bad idea either - though in THIS case 
some form of collection class would probably be better.)

Martin

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker



From:
Bruce Hewson bruce_hew...@hotmail.com
To:
IBM-MAIN@bama.ua.edu
Date:
07/11/2010 11:27
Subject:
Re: Rexx question - Dynamic generation of variables?
Sent by:
IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu



I have found this form quite useful:-

alloc_member_cnt = alloc_member_cnt + 1 
alloc_member.alloc_member_cnt = my_member 
alloc_member.my_member = alloc_member_cnt 

additional information can be retained in the array:-

alloc_dsname.alloc_member_cnt = my_dsn
alloc_dsname.my_dsn = alloc_member_cnt

allowing you multiple ways to process the data.

If Strip(alloc_member.new_member)   Then Do
  Say member new_member found at entry alloc_member.new_member
End
Else Do
  alloc_member_cnt = alloc_member_cnt + 1 
  alloc_member.alloc_member_cnt = new_member 
  alloc_member.new_member = alloc_member_cnt 
End

Regards
Bruce Hewson

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html







Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: IDCAMS ALTER and GDGs - From A(0) to B(+1) - Relative Generations

2010-11-06 Thread Martin Packer
Note: This ISN'T tape we're talking about. (I'm sorry I mentioned it in 
passing.)

Thanks for all the replies!

Martin Packer,
Mainframe Performance Consultant, zChampion
Worldwide Banking Center of Excellence, IBM

+44-7802-245-584

email: martin_pac...@uk.ibm.com

Twitter / Facebook IDs: MartinPacker





Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU






--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


  1   2   3   4   >