Description:
REXX for TSO List
|
|
|
SPOOL extraction issue
|
| |
Dear List,
While Extracting Spool information using the below Rexx code I end up with
REXX code :
...
14.40.41 JOB05647 $HASP165 DEFVCTL$ ENDED AT N1 MAXCC=0000
...
Environment : Z/OS : 1.13
RSU1111
Could anyone please direct me.
Jake
------------------------------ ------------------------------ ----------... more »
|
|
UNSUBSCRIBE
|
| |
Disclaimer:
Diese Nachricht und ihr eventuell angehängte Dateien sind nur für den Adressaten bestimmt. Sie kann vertrauliche oder gesetzlich geschützte Daten oder Informationen beinhalten. Falls Sie diese Nachricht irrtümlich erreicht hat, bitten wir Sie höflich, diese unter Ausschluss jeglicher Reproduktion zu löschen und die absendende Person zu benachrichtigen. Danke für Ihre Hilfe.... more »
|
|
RACF command
|
| |
All,
Where I work, we have to answer a report of RACF authorization violations that we made. That is, if I try to access a data set and I am not authorized, not only do I get the RACF error messages but my user ID appears on a list for which I have to answer why I was trying to access the data set.... more »
|
|
Utility to list all migration sizes
|
| |
I am in the process of writing a rexx to read a list of datasets and then display the file attributes are DFHSM knows then if they are in MIGRAT status. Otheriwse it uses LISTDSI to get the info.
Other that doing a lot of HLIST commands and trapping the output, is there a better way to do this? I have about 150,000 datasets to do this against.... more »
|
|
FW: Linking to program on Z/OS
|
| |
All,
I have a slight problem. I have a REXX exec that is going to by used by several users. It runs in ISPF. The REXX exec invokes an assembler initialization program that pre-loads some assembler written REXX functions and have them stay resident while the REXX program runs. The problem is how do I invoke the initialization program from my load library such that the load modules it loads will remain loaded after the initialization program returns to the REXX program. My understanding is that if I invoke the initialization program through a TSO command like "CALL MYLIB.LOAD(INITIAL)" the CALL command processor is actually ATTACHED as a subtask and the loaded REXX functions would be deleted from memory once the CALL command ented. LINKMVS does not seem to support specifying a data set for the program to be linked to. Because these users are not sophisticated, they would not know how to, nor should they, get out of ISPF, and use the TSOLIB command to allocate my load library.... more »
|
|
Easy way to acquire VSAM Space in REXX
|
| |
Okay, probably a fair bit of work involved but I use LISTCAT LVL('hlq') DATA
ALLOC and then work it out the hard way using RBA and type of allocation but it
does work (and I do it under NetView using DSIVSMX.)
...
MfG / Best Regards
Sebastian Welton
------------------------------ ------------------------------ ----------... more »
|
|
Easy way to acquire VSAM Space in REXX
|
| |
Good morning gentle listers,
Any thoughts on a simple way to find out the number of tracks allocated to
a VSAM component or sphere from REXX. I'm hoping for something like the
LISTDSI command. I understand I could use CSI and parse for the used /
allocated RBA and calculate tracks. It's a lot of code with multi-volume,... more »
|
|
Distinguishing REXX and CLIST
|
| |
The discussion on whether or not REXX needs a comment to start have become
mixed up with another thread and are, therefore, difficult to isolate, so
I'm starting a new thread.
Here's the deal, as I understand things:
In the beginning there were only CLISTs and they resided on a dataset
concatenated into SYSPROC.... more »
|
|
Equivalent REXX ALLOCATE command compared to JCL
|
| |
...Not straightforward. My approach would be to allocate
the first data set; open it; scrape the unit from the
TIOT (or must one go to the UCB?); allocate the others,
then use the CONCAT option.
But DYNALLOC might fail with UNIT in use. It certainly
won't let me allocate multiple NEW data sets on a sigle... more »
|
|
how to match groups of files
|
| |
Hi again!
I just ran into something unusual, and need some philosophical guidance.
I have two lists of files, and I need to see if there are duplicates among
the list of group1, and between group1 and group2.
For example, group1 might have:
My.Test.File1
My.Test.File2
My.Test.File3
My.Test.File2... more »
|
|
|