-
WTO directly from Rexx
Read more: WTO directly from RexxThere are probably more ways do write a message in the system log – “Write to Operator” (WTO) from a Rexx script. This is a very straightforward one I found some time ago somewhere on the Interweb. Have more solutions? Or remarks? Please let me know below.
-
A job to submit a job
Read more: A job to submit a jobA simple trick that is often used in more complex JCL scripts, is to submit a job from a job. z/OS has a facility for this called the Internal Reader. The name Internal Reader stems from the old days when physical devices where used to read input in punch cards. These physical devices where called…
-
Middleware for z/OS – Database management systems
Read more: Middleware for z/OS – Database management systemsIn the previous post I started the first part of describing the middleware tools available on z/OS, kicking off with the available application servers of transaction managers. In this part I will discuss the database management systems that can run on z/OS. Db2 Db2 for z/OS is the z/OS version of IBM’s well-known relational database…
-
Turning a PDS into a PS with standard tools (for email)
Read more: Turning a PDS into a PS with standard tools (for email)I recently got a question from a collegue. He wanted to transfer an entire PDS in an email to someone else. You can download all the member of the PDS with FTP, zip up all the files and transfer that. But it might be easier to use this trick. Create a PS from in PDS…
-
Filewatch utility – file triggering
Read more: Filewatch utility – file triggeringThe filewatch utility is not a well known utility, that can be very handy. I have used it especially when I needed process a unix file after it has been copied to a certain directory. This is the documentation about the filewatch utility: https://www.ibm.com/support/knowledgecenter/SSRULV_9.3.0/com.ibm.tivoli.itws.doc_9.3/zos/src_man/eqqr1hfszfstrig.htm Th job below is submitted and then waiting and activated when…
-
Copying Unix files to MVS Datasets
Read more: Copying Unix files to MVS DatasetsA common task in z/OS environments is moving data between the Unix file system and traditional MVS datasets. Here is how to do it using the OCOPY utility in a JCL batch job. As mentioned in the previous post, another sample. This one copies a z/OS unix file to an MVS dataset. Also using OCOPY.…
