Tagged Questions

TSO (Time Sharing Option) is a command-line environment for IBM mainframes, analogous to a Unix shell. TSO can be executed interactively or in batch mode. The former is primarily used now as a mechanism to start ISPF, the latter to run scripts written in clist, Rexx, or executable code associated with DB2 plans.

learn more… | top users | synonyms

1
vote
2answers
3k views

Is there a TSO command written in REXX or CLIST that can determine WHO has enqueued a dataset?

I need to write a REXX Exec or Clist to identify WHO has enqueued a Dataset and display a user friendly message on an ISPF dialog application. Due to system configuration issues, the %WHOHAS command ...
1
vote
2answers
874 views

How do I copy a member with a REXX/CLIST batch program (no ISPF)?

Under z/OS, I want to write a REXX or CLIST script to copy one sequential data set to another and then run another script (REXX). The other script expects a specific SDS to exist and I want to be able ...
0
votes
1answer
93 views

How to use “sort” to move blank lines to the bottom?

I have 9787 records of which the first 17 lines are blank. I want to move those 17 lines to the bottom of the record. How can I do that?
0
votes
2answers
152 views

Got a SQLCODE = -991

After the sub of the exec JCL, i've got the following error : SQLCODE = -991 Error = ALL ATTACH WAS UNABLE TO ESTABLISH AN IMPLICIT CONNECT OR OPEN TO DB2 This error is triggered when i call a ...
0
votes
2answers
153 views

Is there any open source/freeware TSO/ISP clone for PC?

Free as in beer. I can live without the source code. About 10 years ago I saw a commercial product. Is there anything free now? I found Gispf on SourceFOrge, but there are no downloads. Otherwise I ...
0
votes
3answers
467 views

What are the relative merits of REXX and CLISTs under z/OS?

What are the advantages and disadvantages of using either REXX or CLISTs in TSO for z/OS? My understanding is that CLISTs are just an older command language but we seem to receive a lot of new ...