Re: SMF74PSM - PAV Samples

2010-03-10 Thread Luis Andrade
Hello Chris.

I'm nor sure about what kind of information you need. Anyhow RMF info is a
result of the SMF records gathered or collected during the defined interval,
either if you are using WDM or post-processing.

Maybe you need some information on I/O response time.

About PAV we must remember that the RMF device activity report accounts for
all activity to a base and all of its associated alias addresses. Activity
on alias addresses is not reported separately, but the alias addresses are
accumulated into the base address.

Also there are some differences if using PAV or Hyper PAV.

The number of "usable" samples gathered is always displayed in the report.

Perhaps the following topic would lead you to some more answers to your
issues and a detailed interpretation of RMF Device Activity Report:

http://publib.boulder.ibm.com/infocenter/zos/v1r9/index.jsp?topic=/com.ibm.zos.r9.erbb500/erbzra70382.htm

--
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: Concatenating SORTIN short LRECL DSN's with DD * input?

2010-03-11 Thread Luis Andrade
Hi Peter.

It should work, even with empty files, but as stated in the DFSORT book
"...be sure to supply RECFM, LRECL and BLKSIZE)..."

Hope this can help you

--
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: electronic resources and books for learning Assembler?

2010-03-11 Thread Luis Andrade
Maybe this could be a good start
http://www.billqualls.com/assembler/index.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


Re: Real CPU Id

2010-03-12 Thread Luis Andrade
Maybe it's worth to take a look at Mark Zelden IPLINFO

--
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: SMP/E datasets question

2010-03-16 Thread Luis Andrade
Although IBM has some recommendations on it, the SMP/E environment is
flexible and allows each one to have it defined as you see more convenient.

We can have at least three possible scenarios for it: 

* Single-CSI structure
* Multiple-CSI structure
* consolidate previous with a Master CSI

Anyway, you need to have, at least, these CSI data sets:

* SMPCSI (CSI) 
SMP/E uses CSIs to keep records of the system.

* SMPPTS (PTS) 
The PTS data set is used as temporary storage for SYSMODs. 
It contains one member for each SYSMOD received. 
Each member is called a modification control statement (MCS) entry and is an
exact copy of the SYSMOD as it was received from the SMPPTFIN data set. 
The name of an MCS entry matches the ID of the SYSMOD it contains. 
Generally, the MCS entries are kept on the PTS until the SYSMOD is accepted;
then, under normal processing, they are deleted.

* SMPSCDS (SCDS)
The SCDS data set contains backup copies of target-zone entries that are
modified during APPLY processing. 
These backup copies are made before the entries are 
(1) changed by inline JCLIN, a ++MOVE MCS, or a ++RENAME MCS or 
(2) deleted by an element MCS with the DELETE operand. 
The backup copies are used during RESTORE processing to return the entries
to the way they were before APPLY processing.

All the others are required under certain circunstances:

– The SMPLTS data set is required when processing load modules with CALLLIBS. 
– An SMPMTS DD statement is required for changes to macros that do not
reside in a target library. 
– An SMPSTS DD statement is required for changes to source code that does
not reside in a target library.

I see no problem having only one set of these SMP data sets, as long as you
know when and where you must use them.
Keep in mind that is better to have those defined in DDDEFs for each zone
with enough space for all needs, even if they are the same for all zones.

In "SMP/E Commands" you can check for considerations when using Zone or Data
sets sharing for each command.

If you really want to consolidate your SMP/E enviromnent consider using
ZONErelated functions, like ZONEEXPORT, ZONEMERGE and ZONEIMPORT. That way
you'll don't need to re-RECEIVE anything.

--
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: SMP/E datasets question

2010-03-18 Thread Luis Andrade
Thank you for your remarks Joel.

That's what I was trying to state. The SMP environment is permissive enough
to meet all needs, but each one must be aware of possible consequences.

Although we must always follow IBM recommendations, it is better to have
small deviations than try to rebuild the whole environment from the very
beginning following those rules.

If anyone really feel the need to do so I'll be glad to help as far as I can.

Cheers.

--
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: Notify a user if a job ends with non zero RC

2010-03-18 Thread Luis Andrade
Nevertheless, as XMITIP is written in REXX you can always enhance the
notication with your own code, or include a step to test the completion
codes of each step in a job and send different messages to different users
depending on the results.

see:
http://www.mail-archive.com/ibm-main@bama.ua.edu/msg05588.html
http://www.mail-archive.com/ibm-main@bama.ua.edu/msg05795.html

to get an idea.

Also you may find interesting information here:
http://www.lbdsoftware.com/xmitip.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


Re: Notify a user if a job ends with non zero RC

2010-03-18 Thread Luis Andrade
By the way...

If you in z/OS 1.9 or above;
If you like programming with REXX;

Take a look at the new SDSF interface with REXX...

You can, for instance, check your job output hourly, as you would do with
SDSF panels and check for results... then inform your users if anything goes
wrong... even with a simple TSO SEND.

--
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: Any tools for managing z/OS system software products inventory?

2010-03-18 Thread Luis Andrade
Isn't your homegrown application portable to z/OS ?

Anyway, take a look at Tivoli Asset discovery:

http://www-01.ibm.com/software/tivoli/products/asset-discovery-zos/index.html

You can also include your "penguin" machines and manage them with Tivoli
Asset Discovery for Distributed.

--
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: Dataset in use help

2010-03-19 Thread Luis Andrade
PF1 followed by PF1 will give you a list of users and/or jobs using the dataset

--
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: Crazy idea for a "desktop integration with z/OS" project?

2010-03-19 Thread Luis Andrade
Oldie but Goldie, maybe this could be a good start point:

http://www.ibm.com/developerworks/systems/library/es-zosbatchjavav/index.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


Re: SQL Server replacement

2010-03-25 Thread Luis Andrade
DB2 UDB will fit most of the requirements on a z/OS or z/Linux LPAR.

IBM will tell you how to convert
http://www.redbooks.ibm.com/abstracts/sg246672.html

You can always use an automation tool. See Ispire SQLways or SwissSQL

--
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: Add column values with SORT

2010-03-25 Thread Luis Andrade
The SUM control statement will do the job. Please take a look at DFSORT
Application Programming Guide for further options.

I might recommend you to take a look at
http://www-01.ibm.com/support/docview.wss?rs=114&uid=isg3T794 

In the document there you may find useful tips and tricks for using
ICEMAN/ICETOOL

--
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: WEB based Host explorer products

2010-03-25 Thread Luis Andrade
Can you be a little bit more specific ?
What do you intend to do ? 
Publish existing application via WEB or develop WEB applications to access z
data ?
Wouldn't Host Publisher fit your needs ?
http://www-01.ibm.com/software/webservers/hostpublisher/library/publications/guide40/guide03.htm

--
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: WEB based Host explorer products

2010-03-26 Thread Luis Andrade
Take a look here and see if it could fit your needs

http://www.ibm.com/developerworks/systems/library/es-zosbatchjavav/index.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


Re: Old PROGxx recommendations

2010-03-26 Thread Luis Andrade
IEFXB603 is an alias of IEFIB600 loaded in LPA to run below the line for
performance reasons, usually on systems with Unix System Services.
Hope this can clarify.

--
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: Old PROGxx recommendations

2010-03-26 Thread Luis Andrade
Maybe this can help you a bit more...

http://publib.boulder.ibm.com/infocenter/zos/v1r11/index.jsp?topic=/com.ibm.zos.r11.bpxb200/c89lpa.htm

On Fri, 26 Mar 2010 12:47:04 -0400, Mark Jacobs 
wrote:

>During my review of parmlib for our planned zOS 1.9 -> 1.11 migration I
>found this progxx member that I can't find any documentation regarding
>what it was used or meant for.
>
>LPA ADD MODNAME(
> IEFIB600
> IEFXB603
> )
>   DSNAME(SYS1.LINKLIB)
>
>Is this still needed/recommended?
>
>--
>Mark Jacobs
>Time Customer Service
>Tampa, FL
>
>
>Klein Bottle for rent -- inquire within.
>
>--
>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


Re: Old PROGxx recommendations

2010-03-26 Thread Luis Andrade
Hi Steve.

As for your first URL I'm getting "sorry, that message doesn't appear to be
working.". Probably I need to register to see it.

If you take a look at my second reply to the question, you'll see a link to
the same book you're pointing to, but in th R11 index.

Thank you for your care.

Regards.

L.A.

On Fri, 26 Mar 2010 12:29:43 -0500, McKown, John
 wrote:

>> -Original Message-
>> From: IBM Mainframe Discussion List
>> [mailto:ibm-m...@bama.ua.edu] On Behalf Of Steve Comstock
>> Sent: Friday, March 26, 2010 12:19 PM
>> To: IBM-MAIN@bama.ua.edu
>> Subject: Re: Old PROGxx recommendations
>>
>> Luis Andrade wrote:
>> > IEFXB603 is an alias of IEFIB600 loaded in LPA to run below
>> the line for
>> > performance reasons, usually on systems with Unix System Services.
>> > Hope this can clarify.
>>
>> Well it doesn't answer the question of what does it do? What's if for?
>>
>> And don't all z/OS systems have Unix System Services these days?
>>
>> --
>>
>> Kind regards,
>>
>> -Steve Comstock
>
>From http://osdir.com/ml/emulators.hercules390.mvs/2005-07/msg1.html,
it is for SWA creation when a job is selected into an address space. It is
still recommended (at 1.9) by
>
>http://publib.boulder.ibm.com/infocenter/zos/v1r9/index.jsp?topic=/com.ibm.zos.r9.bpxb200/c89lpa.htm
>
>--
>John McKown
>Systems Engineer IV
>IT
>
>Administrative Services Group
>
>HealthMarkets(r)
>
>9151 Boulevard 26 * N. Richland Hills * TX 76010
>(817) 255-3225 phone * (817)-961-6183 cell
>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
>
>
>
>--
>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