Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

TSO Command Purpose or Function What does this command do? ALLOC DSN(TSO.EXAMPLE

ID: 3866227 • Letter: T

Question

TSO Command

Purpose or Function

What does this command do?

ALLOC DSN(TSO.EXAMPLE.NEW) NEW LIKE(JCL)

LISTCAT TSO.EXAMPLE.NEW

LISTCAT ENTRIES (TSO.EXAMPLE.NEW)      

LISTC LVL(COBOL)

LISTC CATALOG(RMU) LVL(COBOL)

HELP

RENAME TSO.EXAMPLE.NEW   TSO.EXAMPLE.RENAME

LISTCAT ENTRIES (TSO.EXAMPLE.RENAME)      

LISTDS COBOL MEMBERS

SEND 'HELLO' U(RMUI001)

TIME

NETSTAT HOME

NETSTAT BYTE

TSO Command

Purpose or Function

What does this command do?

ALLOC DSN(TSO.EXAMPLE.NEW) NEW LIKE(JCL)

LISTCAT TSO.EXAMPLE.NEW

LISTCAT ENTRIES (TSO.EXAMPLE.NEW)      

LISTC LVL(COBOL)

LISTC CATALOG(RMU) LVL(COBOL)

HELP

RENAME TSO.EXAMPLE.NEW   TSO.EXAMPLE.RENAME

LISTCAT ENTRIES (TSO.EXAMPLE.RENAME)      

LISTDS COBOL MEMBERS

SEND 'HELLO' U(RMUI001)

TIME

NETSTAT HOME

NETSTAT BYTE

Explanation / Answer

If you have any problem with the answer just write it in comments and I'll try to fix it.

ALLOC DSN(TSO.EXAMPLE.NEW) NEW LIKE(JCL)

-This command will allocate a new dataset <USERID>. TSO.EXAMPLE..NEW having the same DCB as <USERID>.TSO.EXAMPLE.

LISTCAT TSO.EXAMPLE.NEW

-LISTCAT command is used to list entries from a catalog. The entries listed can be selected by name or entry type, and the fields to be listed for each entry can additionally be selected.

LISTCAT ENTRIES (TSO.EXAMPLE.NEW)

-specific entries can be selected by using LISTCAT ENTRIES. The fields to be listed for each entry can additionally be selected.

LISTC LVL(COBOL)

-List the names of datasets whose names begin with a specific high-level qualifier . All the entries with higher level qualifier than COBOL will be displayed.

LISTC CATALOG(RMU) LVL(COBOL)

-List the data sets of a particular catalog. Here data sets of RMU with higher level qualifier than COBOL are displayed.

HELP

-The HELP command gives you online information about the use, function, syntax, and parameters of DFSMShsm user commands.

RENAME TSO.EXAMPLE.NEW TSO.EXAMPLE.RENAME

-Used for changing the name of a non-VSAM cataloged dataset, changing the member name of a partitioned dataset, or for creating an alias for a partitioned dataset member.

Here name TSO.EXAMPLE.NEW will be changed In TSO.EXAMPLE.RENAME.

LISTCAT ENTRIES (TSO.EXAMPLE.RENAME)

-Entries of TSO.EXAMPLE.RENAME will be listed.

LISTDS COBOL MEMBERS

-For displaying the attributes of a PDS and list the member name.Here attributes of COBOL will be listed with the names of members.

SEND 'HELLO' U(RMUI001)

-For sending a message to another terminal user or to the system operator . Here message ''HELLO'' is sent to user RMUI001.

TIME

-For displaying CPU and session time, total service units used, local time of day and date.

NETSTAT HOME

-Displays the home IP addresses for the IP stack (-h).

NETSTAT BYTE

-For displaying byte-count information for each active TCP connection and UDP socket.