INNOVATION TECHSUPPORT

Size: px
Start display at page:

Download "INNOVATION TECHSUPPORT"

Transcription

1 INNOVATION TECHSUPPORT VOLUME 3.1 Welcome to the third issue of INNOVATION TECH SUPPORT. TECHSUPPORT is intended as INNOVATION s communication vehicle to those responsible for the use of INNOVATION s products. Each issue will address one aspect of our product line in detail. This issue of TECHSUPPORT will discuss FDREPORT. FDREPORT is a program within the Automatic Backup & Recovery (ABR) system that generates reports on DASD data sets and volumes. You can customize these reports to your needs and the needs of your users. The objectives of TECHSUPPORT are to share with you the answers to common questions that users ask; also to bring you up to date on the products latest capabilities and to differentiate our products capabilities versus the competition. In particular, we have seen users purchase expensive reporting products without realizing that the facilities that they need are within the capabilities of FDREPORT. If you need a report and are not sure how to get it, use the attached reply card to describe what you need and we will send you sample control card examples. These reports will help you determine how your DASD is being used and by whom. Most data centers have started planning the conversion to a System Managed Storage (SMS) environment. FDREPORT can be used to help plan the migration to an SMS environment. What is FDREPORT? FDREPORT, which is a component of ABR, provides extensive customized reporting capabilities to suit many needs and purposes. Its sophisticated data set filtering and report formatting options allow you to select data sets based on more than 100 data set attributes, and to report on those attributes in a format you choose. However, FDREPORT is designed so that simple reports can be generated with very simple reports can be generated with very simple control statements, such as reporting on all online data sets belonging to a certain TSO userid or application prefix. End-users can use many FDREPORT functions without extensive training and can execute canned reports from TSO/ISPF. FDREPORT can be used by DASD Managers, Operations Analysts, System Programmers, etc. to create highly customized reports for management reporting, for space management and for identifying special data sets (such as uncataloged or overallocated data sets), to name just a few uses. FDREPORT s Sources of Information FDREPORT can report on data sets, on-line disk volumes or data sets which have been archived by ABR. It gets its primary input from the VTOCs of online volumes or the ABR Archive Control File and from these it will build lists of data sets to report on. However, if required it will get additional information about those data sets from: VVDS - for information about ICF VSAM clusters and SMS-managed data sets (including SMS class names) System catalog - for catalog status and information contained only in the catalog ABR catalog - for information about ABR backups of data sets ABR model DSCBs - for current backup information Generated information - not in any of the above, but calculated by FDREPORT from those sources (e.g. size in bytes). From all these sources, FDREPORT builds a record containing the data set s attributes. Normally FDREPORT uses that record to generate the requested report, but it can write the record to a data set for later reporting by FDREPORT or other programs. FEBRUARY, 1992 FDREPORT which is a component of ABR, provides extensive customized reporting capabilities to suit many needs and purposes. 1

2 How to Get that REPORT! Here are some examples of complete FDREPORT statements to get frequently used reports, with sample report outputs. Required JCL, additional examples and explanations of all statements and operands are found in Sections through in the FDR 5.1 Manual. WASTED SPACE REPORT Report on overallocated sequential and partitioned data sets on TSO volumes that have 40% or more unused space. Report will be sorted by volume serial and data sets with the most free space being reported first. TITLE LINE = WASTED SPACE ON TSO VOLUMES SELECT VOLG=TSO,DSORG=(PS,PO),%FREE=40 REPORT FIELD=(DSN,VOL,DSORG,%FREE,SIZE) SORT FIELD=(VOL,%FREE),SEQ=(A,D) SUM FIELD=(VOL,SIZEFREE,SIZE) PRINT WASTED SPACE ON TSO VOLUMES DATA SET NAME D/S VOLSER ORG %FR ALLOC 2 FDRSYS.DF.SKELETON TSOLB2 PO SYSP.SUE.REXX TSOLB2 PO FDRSYS.DF.ASM TSOLB2 PO IAMSYS.JFM.LIST TSOLB2 PS FINAL TOTALS -- SIZEFREE SIZE Wasted Space Total Tracks NOTE: COMPAKTOR TYPE = RLSE can be used to release the over-allocated space on these data sets in a very short period of time. POORLY ORGANIZED VSAM CLUSTERS Report on all VSAM files over 3 Megabytes in size with more than 5 CA splits or more than 20 CI splits, and all clusters with more than 16 extents, since all these might be candidates for reorganization. Clusters with the highest CA splits will be listed first: TITLE LINE= VSAM CLUSTERS IN NEED OF REORG XSELECT DSORG=EF,BYTES>3M,CASPLIT> 5,VOLG=IDP XSELECT DSORG=EF,BYTES>3M,CISPLIT> 20,VOLG=IDP XSELECT DSORG=EF,NO EXTENT> 16,VOLG=IDP REPORT FIELD=(CLUSTER,VOL,PRIALLOC,BYTES, BYTESUSE,CASPLIT,CISPLIT,NO EXTENT) SORT FIELD=(CASPLIT,CISPLIT),SEQUENCE=(D,D) PRINT SORT=COMBINE VSAM CLUSTERS IN NEED OF REORG CLUSTER NAME VOLSER PRALO MBYTES MBYUSED CASPL CISPL EXT IDP.MASTER.RECORDS IDPLB IDP.PERM.HISTORY IDPLB

3 IDENTIFY MULTI-VOLUME DATA SETS Find all multi-volume VSAM and non-vsam data sets which may require special handling during DASD conversions. Report will be sorted in data set name sequence. TITLE LINE= DATA SETS CATALOGED ON MULTIPLE VOLUMES DEFAULT SELTERR=NO REPORT FIELD=(DEFAULTS,CATVOLCT) XSELECT CATVOLCT>1,VOL=IDP* SORT FIELD=(DSN) PRINT DATA SETS CATALOGED ON MULTIPLE VOLUMES DATA SET NAME VOLSER D/S RECFM BKSIZE LRECL ALLOC FREE %FR CVC DF.MV IDPLB5 PS FB DF.MV IDPL31 PF FB IAMV.MARKVSAM.CLUSTER.DATA IDPLB4 EF U IAMV.MARKVSAM.CLUSTER.DATA IDPLB5 EF U IAMV.MARKVSAM.CLUSTER.INDEX IDPLB4 EF U REPORT ON DATA SETS LIKELY TO GET Sx37 ABENDS Report on data sets larger than 15 tracks with no secondary allocation and less than 5% freespace, and all data sets with 16 or more extents, since any of them might get Sx37 abends or the VSAM equivalent for lack of space. TITLE LINE= DATA SETS WHICH MAY RUN OUT OF SPACE IF EXTENDED REPORT FIELD=(DSN,DSORG,VOL,SECALLOC,%FREE,NOEXTENT,SIZE) XSELECT SECALLOC=0,%FREE<5,SIZE> 15 XSELECT NOEXTENT=> 15 SORT FIELD=(NOEXTENT,SIZE),SEQ=(D,D) PRINT ONLINE DATA SETS WHICH MAY RUN OUT OF SPACE IF EXTENDED D/S DATA SET NAME ORG VOLSER SCALO %FR EXT ALLOC IPOSAV.SMFDUMPW PS IDPLB IPOUSER.IDP.LABELS PO IDPLB SYSP.FDR.PTFONPC PO IDPLB BAB.CALL.LOG PO IDPLB INHSYS.JMK.ASM PO IDPLB NRN.TEST.ZZZZ.DATA EF IDPLB FDRSYS.REP.ASM LESS THAN 5% FREE PO IDPL REPORT ON POORLY BLOCKED DATA SETS This report will summarize disk data sets which make inefficient use of their assigned disk space. Data sets with small blocksizes (less than 2K) are wasteful because of the overhead of interblock gaps. Also, blocksizes which are greater than a half-track (23476 for 3380s) will waste the remainder of the track. RPTYPE=NONE produces only the summary, showing the blocksizes that were found and the number of data sets using each blocksize (omit RPTYPE to display the actual data sets). XSELECT VOL=IDP*,BLKSIZE< 2048 XSELECT VOL=IDP*,BLKSIZE> SUM FIELD=(DSN,BLKSIZE,VOL) PRINT RPTYPE=NONE FDR400 - FDRABR REPORT STANDARD SUMMARIES - FDREPORT VER 5.1/33P -- INNOVATION DATA PROCESSING - BLKSIZE ( 57) 5 ( 1) 12 ( 1) 80 ( 20) 100 ( 1) 111 ( 1) 121 ( 5) 129 ( 24) 160 ( 1) 264 ( 2) 600 ( 1) 629 ( 1) 670 ( 1) 720 ( 1) 800 ( 39) 1024 ( 3) 1104 ( 168) 1128 ( 1) ( 1) ( 1) ( 2) ( 132) 168 data sets with a blocksize of 1104

4 4 FDREPORT and System Managed Storage FDREPORT Version 5.1 and higher supports reporting on the SMS fields. FDREPORT is able to report on SMS Storage Class, Management Class, Data Class and Storage Group on which the data set resides. Users planning the movement to SMS can use FDREPORT to identify those data sets that are and are not eligible to be SMS managed. How can I prepare for SMS conversion with FDREPORT? FDREPORT can be used to identify data sets that are not supported by SMS such as ISAM, non-icf VSAM, unmovable and uncataloged data sets. The following example shows how to identify these data sets to ease the conversion to SMS; the report also shows the catalog status of each dataset and the volume to which it is cataloged. TITLE LINE= DATA SETS NOT ELIGIBLE FOR SMS ON TSO VOLUMES XSELECT DSORG=(U,IS,AM),DSORG.NE.(EF),VOLG=TSO XSELECT CATALOG=ERR BOLG=TSO XSELECT CATALOG=NO,VOLG=TSO UNSUPPORTED DSORG CATALOGED TO ANOTHER VOL UNCATALOGED REPORT FIELD=(DEFAULTS,CATALOG,CATVOL) PRINT Can FDREPORT help me manage my SMS data sets? FDREPORT can report and summarize based on SMS classes and select based on SMS storage groups so a variety of reports can be generated on SMS-managed data sets and volumes. The example below selects all SMS-managed data sets (data sets that have an SMS storage class assigned) and sorts by storage class name, reporting all data sets which are assigned to each unique storage class, and summarizing based on storage class giving the total occurrences of each class and the total number of tracks of the data sets with that class. You could also report on management class or data class names by changing the field name in the SORT and SUMMARY statements to MGMTCLAS or DATACLAS. TITLE LINE= ALL SMS DATA SETS BY STORAGE CLASS NAME XSELECT STORCLAS.NE.' ' *SEE NOTE 1 SORT FIELD=(STORCLAS,DSN),BREAK=(Y,N) SUMMARIZE ON CLASS NAME SUMMARY FIELD=(STORCLAS,SIZE) REPORT FIELD=(DEFAULTS,SMSCLASS) PRINT ONLINE,INFOMSG=NO NOTE 1: STORCLAS.NE. will select all data sets whose storage class is not blank (all SMS data sets have a storage class). Report by Storage Group This report will identify the largest allocated data sets within a storage group. In addition, if PDSE s are on these volumes, FDREPORT will identify the % used within each PDSE (5.1 Level 32 or higher). FDREPORT will provide the % used information for the PDSE data sets without changing the last reference date as ISPF 3.4 would. TITLE LINE= DATASET LISTING BY STORAGE GROUP AND SIZE REPORT FIELD=(SPLDSNVOL,DSORG,STORGRP,RECFM, LRECL,BLKSIZE,CRDATE,LRDATE, CISPLIT,CASPLIT,SIZE, SECALLOC,MEMBERS,%USED,NOEXTENT) SORT FIELD=(STORGRP,SIZE,DSN),SEQUENCE=(A,D,A,) PRINT ONLINE,SORT=COMBINE,INFOMSF=NO DATA SET NAME DATASET LISTING BY STORAGE GROUP AND SIZE D/S VOLSER ORG STORGRP RECFM LRECL BKSIZE CRDATE LRDATE CISPL CASPL ALLOC SCALO MEMBER %US EXT DEVLJDR.MP.BACKUP M90006 PS STRTSO U DEVLMXS.APDPRFF.ONE.DATA M90017 EF STRTSO U DEVLMXS.USER.GLLIB M90006 POE STRTSO FB DEVLMXS.USER.JCLLIB M90006 POE STRTSO FB DEVLMXS.USER.LIB M90006 POE STRTSO FB

5 Extract Files If you want reports in more than one format from the same group of data sets, then the job will probably run faster if you create an intermediate extract file. For example, consider the two reports on VSAM splits and extents. If these reports were run independently, each one would have to read all of the disk VTOCs to select the desired data sets. But by scanning the VTOCs once and creating an extract file containing only the VSAM data sets, FDREPORT can reprocess the information and produce any number of reports requiring the same data with a minimum of overhead. 5 //REPORT EXEC PGM=FDREPORT //SYSPRINT DD SYSOUT=* //SYSOUT DD SYSOUT=* //ABRMAP DD SYSOUT=* //SYSUDUMP DD SYSOUT=* //SYSUT2 DD DSN=ICF1.FDREPORT.EXTRACT,DISP=(,CATLG), // UNIT=SYSDA,SPACE=(CYL,(1,1)) //SYSIN DD * DEFAULT RESETSEL=YES -PRINT command is to reset selection criteria SELECT DSORG=EF -select all VSAM data sets PRINT ONLINE,RPTYPE=DATA -create extract file REPORT FIELD=(SPLCLS,SPLDSN,VOL,SECAFLAG,PRIALLOC,SECALLOC,SIZE, SIZEUSED,SIZEFREE,BYTESUSE,BYTES,%FREE, CASPLIT,CISPLIT,NOEXTENT) XSELECT BYTES>3M,CASPLIT>=5 -selection for first report SORT FIELD=(CASPLIT,CISPLIT),SEQUENCE=(D,D) PRINT SORT=COMBINE,DATATYPE=EXTRACT -input from extract file SELECT NOEXTENT=16 -selection for second report SORT FIELD=NOEXTENT,SEQUENCE=D -replaces first SORT criteria PRINT SORT=COMBINE,DATATYPE=EXTRACT -input from extract file In this example, the extract file saved as a nontemporary data set so that it can be used for later reports in separate jobs. Another example of using an extract file is example H on page 867 in the manual. Another way you can use extract files is as history files, saving information about the data sets that existed at different times. Extract files can by used as input to programs other than FDREPORT. You can write programs yourself, or you can use software packages such as SAS to read the extract files and do statistical analysis of your DASD. The format of the extract files is available from INNOVATION on request. Report Format and Identification FDREPORT has a default set of attributes it will report on, but you can add to or override that list with the REPORT statement, on which you can list the attributes you want to see. FDREPORT will automatically place those attributes in columns on the report, in the order you specified (if the report would exceed the page width, FDREPORT s AUTOSTACK option can be used to place related attributes one above the other to save space). You can control the spacing between columns, page length, line width, and other formatting options, if you like. Since the users of the reports generated by FDREPORT should be able to identify their contents and purpose quickly, FDREPORT allows you to put titles and headings on the reports. The TITLE statement places a title line at the top of every page, e.g., TITLE LINE= UNCATALOGED DATA SETS ON TSO VOLUMES FDREPORT automatically generates heading above the data columns on the report, with 1- or 2-line descriptions. If the default names provided by FDREPORT are not meaningful to the report users, the headings can be changed with the HEADING command (but you must line up your headings with the FDREPORT columns). You may want to print column headings in a local language. For example, you can have the heading for Data Set Name appear as Nom Du Fichier for French speaking users.

6 Device-Independent Sizes When allocating data sets, users have traditionally had to be concerned with the characteristics and geometry of the disk type chosen for the data set, e.g., bytes per track and tracks per cylinder, translating the projected size of the data set into a number of tracks or cylinders and learning new rules for each new device type. Under SMS, IBM now allows data sets to be allocated in device-independent units of records, with the system selecting the physical blocksize and calculating the space. In addition to reporting on the traditional data set sizes (e.g., SIZE, SIZEUSED, SIZEFREE in tracks), it can report or select based on sizes in bytes, kilobytes or megabytes (e.g., BYTES, BYTESUSE, BYTESFRE). Since SMS or DASD pooling software may remove the choice of disk type from the users control, these device-independent values may be used to allocate equivalent sized data sets on whatever device they are allocated. For conversion planning (e.g., 3380 to 3390), they can be used to estimate the amount of space required on the new devices for a certain set of data sets. The following control statements will report on all on-line data sets whose hi-level index is PAYROLL, showing allocated tracks, allocation in KB, used space in KB, blocksize and logical record length: 6 TITLE LINE= SPACE ESTIMATE FOR PAYROLL FILES IN KILOBYTES SELECT DSG=PAYROLL. REPORT FIELD=(DSN,VOL,LRECL,BLKSIZE,SIZE,BYTES,BYTESUSE) PRINT ONLINE,SORT=COMBINE Selecting Data Sets Data sets may be selected for inclusion in the report based on most of the data set attributes that FDREPORT can report on. The selection can be: simple, such as all data sets starting with certain indexes on certain volumes: SELECT DSG=GL.APR90,VOLG=PROD complex, such as sequential data sets with 80-byte fixed length records, 20 tracks or more in size with at least 50% unused space: SELECT DSORG=PS,LRECL=80,RECFM=FB,SIZE=20,%FREE=50 sophisticated, such as DB2 files created in the last 30 days, over 30 Megabytes in size, located on 3390 disks: XSELECT XDSN=*.DSNDBC.*.*.I0001.A+++,DEVTYPE=3390,CRDAYS<31,BYTES>30M FDREPORT has two selection control statements, SELECT and XSELECT. They are similar, and accept most of the same selection operands, but XSELECT is much more sophisticated. SELECT only accepts an equal sign (=) after an operand; depending on the operand it may imply a test for EQUAL (e.g., DSORG=PO) or GREATER THAN EQUAL (e.g., SIZE=50). With XSELECT you can specify the comparison to be done (equal, less than, etc.) giving much greater flexibility (e.g., SIZE.GE.50,SIZE.LE.100 will select data sets from 50 to 100 tracks in size). XSELECT also supports the XDSN=operand, which allows data set name masking (as shown in the DB2 example above). Multiple SELECT and/or XSELECT statements may be used in one FDREPORT run so that data sets meeting various criteria can be included on one report. CORPORATE HEADQUARTERS: 275 Paterson Avenue, Little Falls, New Jersey (201) Fax: (201) @compuserve.com EUROPEAN FRANCE GERMANY NETHERLANDS UNITED KINGDOM NORDIC COUNTRIES OFFICES:

z/os Introduction and Workshop Data Sets

z/os Introduction and Workshop Data Sets z/os Introduction and Workshop Data Sets 2009 IBM Corporation Unit Objectives After completing this unit, you should be able to: Describe data set naming rules Describe a partitioned data set Describe

More information

FA TSCOPY Quick Start Guide. Quick Start Guide

FA TSCOPY Quick Start Guide. Quick Start Guide FA TSCOPY Quick Start Guide FATSCOPY Quick Start Guide V4.9L29-1 - FATSCOPY is a trademark of INNOVATION DATA PROCESSING and is registered with the US Patent and Trademark Office. FATSCOPY is a proprietary

More information

An Introduction to z/os DASD Backup and Archiving

An Introduction to z/os DASD Backup and Archiving An Introduction to z/os DASD Backup and Archiving Session 17061 Steve Pryor DTS Software, Inc. steve@dtssoftware.com steve@veritysys.com Storage Management Objectives Data Availability Data available even

More information

Failures under MVS p. 67 General p. 67 JCL Errors p. 68 Syntactical JCL Errors p. 68 Allocation JCL Errors p. 69 ABEND Failures p.

Failures under MVS p. 67 General p. 67 JCL Errors p. 68 Syntactical JCL Errors p. 68 Allocation JCL Errors p. 69 ABEND Failures p. About the Author p. vii Preface p. xv Acknowledgments p. xix Introduction p. 1 Historical Perspective p. 1 JCL Complexity p. 3 Multiprogramming and Virtual Storage p. 4 Data Set Organizations p. 8 Non-VSAM

More information

ISPF Users Boot Camp - Part 2 of 2

ISPF Users Boot Camp - Part 2 of 2 Interactive System Productivity Facility (ISPF) ISPF Users Boot Camp - Part 2 of 2 SHARE 116 Session 8677 Peter Van Dyke IBM Australia SHARE 116, Winter 2011 pvandyke@au1.ibm.com Introduction Our jobs

More information

Workload Characterization Algorithms for DASD Storage Subsystems 1

Workload Characterization Algorithms for DASD Storage Subsystems 1 Workload Characterization Algorithms for DASD Storage Subsystems 1 Dr. H. Pat Artis Performance Associates, Inc. 72-687 Spyglass Lane Palm Desert, CA 92260 (760) 346-0310 drpat@perfassoc.com Abstract:

More information

Uni Hamburg Mainframe Summit 2010 z/os The Mainframe Operating. Part 6 z/os Concepts

Uni Hamburg Mainframe Summit 2010 z/os The Mainframe Operating. Part 6 z/os Concepts Uni Hamburg Mainframe Summit 2010 z/os The Mainframe Operating Part 6 z/os Concepts Redelf Janßen IBM Technical Sales Mainframe Systems Redelf.Janssen@de.ibm.com Course materials may not be reproduced

More information

INTRODUCTION. José Luis Calva 1. José Luis Calva Martínez

INTRODUCTION. José Luis Calva 1. José Luis Calva Martínez USING DATA SETS José Luis Calva Martínez Email: jose.luis.calva@rav.com.mx rav.jlcm@prodigy.net.mx INTRODUCTION In working with the z/os operating system, you must understand data sets, the files that

More information

for Mainstar MXI G2 Session 8962 Speaker: Shari Killion

for Mainstar MXI G2 Session 8962 Speaker: Shari Killion The New Storage Manager Plug-in for Mainstar MXI G2 Session 8962 Speaker: Shari Killion About Mainstar MXI G2 Provides ready access to critical information about your z/os system Offers a fast and easy-to-use

More information

INNOVATION ANNOUNCING FDRMOVE ANNOUNCING FDRVIEWS. Turning Raw Data Into Smart Decisions. Now in BETA testing. GA 3rd Quarter, 2007

INNOVATION ANNOUNCING FDRMOVE ANNOUNCING FDRVIEWS. Turning Raw Data Into Smart Decisions. Now in BETA testing. GA 3rd Quarter, 2007 FYI INNOVATION ANNOUNCING FDRVIEWS Turning Raw Data Into Smart Decisions FDRViews provides a simplified user interface to query and analyze your z/os storage system data. Its user extensible Grouping and

More information

Improving VSAM Application Performance with IAM

Improving VSAM Application Performance with IAM Improving VSAM Application Performance with IAM Richard Morse Innovation Data Processing August 16, 2004 Session 8422 This session presents at the technical concept level, how IAM improves the performance

More information

The SMF recovery analysis report (SRSSMF) formats SMF records produced by SRS and provides totals for the successful and unsuccessful recoveries

The SMF recovery analysis report (SRSSMF) formats SMF records produced by SRS and provides totals for the successful and unsuccessful recoveries 1 2 The SMF recovery analysis report (SRSSMF) formats SMF records produced by SRS and provides totals for the successful and unsuccessful recoveries performed by SRS. Oops, the wrong SRS! OK, the Real

More information

FDRERASE. for z/os MAY Last Modified: June 7, :10 AM

FDRERASE. for z/os MAY Last Modified: June 7, :10 AM for z/os B E S T P R A C T I C E S G U I D E MAY 2016 1 Last Modified: June 7, 2016 7:10 AM This page intentionally left blank 2 1. 1 Introduction 1.1 The Importance of Secure Data Erasure The secure erasure

More information

FDRINSTANT AWARDED 2008 EMC PARTNER SOLUTION OFFERING OF THE YEAR. FDRINSTANT Instant Backup - Near non-disruptive backup for 24/7 operations READY

FDRINSTANT AWARDED 2008 EMC PARTNER SOLUTION OFFERING OF THE YEAR. FDRINSTANT Instant Backup - Near non-disruptive backup for 24/7 operations READY FYI INNOVATION FDRINSTANT AWARDED 2008 EMC PARTNER SOLUTION OFFERING OF THE YEAR May 2009 Volume 6.0 FOCUS ON: IAM FDRERASE FATSCOPY UPSTREAM LINUX FDRViEWS FDREPORT FDRINSTANT Instant Backup - Near non-disruptive

More information

Appendix B WORKSHOP. SYS-ED/ Computer Education Techniques, Inc.

Appendix B WORKSHOP. SYS-ED/ Computer Education Techniques, Inc. Appendix B WORKSHOP SYS-ED/ Computer Education Techniques, Inc. 1 ISPF/PDF Environment 1. Log on to ISPF/PDF; different installations have different logon procedures. 1.1. The ISPF/PDF Primary Option Menu

More information

CA Disk Backup and Restore CA RS 1712 Service List

CA Disk Backup and Restore CA RS 1712 Service List CA Disk Backup and Restore 12.5 1 CA RS 1712 Service List Service Description Type RO96234 FIX BACKUP OF PDSE RECFM U DATA SETS PTF RO97916 S878-14 ABEND DURING IXMAINT WITH SMSPRINT PTF RO98526 ARCHIVE

More information

Dino Explorer. MVS Data Collector for Mainframe Assessment

Dino Explorer. MVS Data Collector for Mainframe Assessment Dino Explorer MVS Data Collector for Mainframe Assessment Index of contents 1 - Introduction...3 2 - The Installation Guide...4 2.1 Step 1 Copy the dxplload.xmit to MVS...4 2.2 Step 2 Receive XMIT file...6

More information

Chapter 2 ACCESS METHOD SERVICES. SYS-ED/ Computer Education Techniques, Inc.

Chapter 2 ACCESS METHOD SERVICES. SYS-ED/ Computer Education Techniques, Inc. Chapter 2 ACCESS METHOD SERVICES SYS-ED/ Computer Education Techniques, Inc. Objectives You will learn: Definitions: cluster, KSDS, and ESDS. How data resides in the CI. DEFINE CLUSTER parameters. SHAREOPTIONS.

More information

With Tivoli Advanced Catalog

With Tivoli Advanced Catalog Simplifying ICF Catalog Management With Tivoli Advanced Catalog Management for z/os Janet Sun Rocket Mainstar jsun@mainstar.com Session 8964 Agenda Why Are ICF Catalogs Important? Catalog Management Activities

More information

PDSUPDTE. 4. When the length of STRING2 is less than that of STRING1, blanks are inserted after the next pool of two blanks following STRING1.

PDSUPDTE. 4. When the length of STRING2 is less than that of STRING1, blanks are inserted after the next pool of two blanks following STRING1. PDSUPDTE PDSUPDTE is a batch card image tailoring procedure and is designed to change selected fields in JCL and control statements contained in libraries (Partitioned Datasets). Control statements can

More information

* Parameter... 1:18. B Backward References... 5:8 Blocksize: Choosing... 3:19

* Parameter... 1:18. B Backward References... 5:8 Blocksize: Choosing... 3:19 * Parameter... 1:18 A Abnormal Disposition... 2:7 ACB: Access Method Control Block... 11:7 Accounting Information... 1:9, 8:15 ACCT Parameter - Account... 1:15 Allocation and Termination Messages... 1:25

More information

Data Migration and Disaster Recovery: At Odds No More

Data Migration and Disaster Recovery: At Odds No More Data Migration and Disaster Recovery: At Odds No More Brett Quinn Don Pease EMC Corporation Session 8036 August 5, 2010 1 Mainframe Migrations Challenges Disruptive To applications To Disaster Recovery

More information

IBM. DFSMS Implementing System-Managed Storage. z/os. Version 2 Release 3 SC

IBM. DFSMS Implementing System-Managed Storage. z/os. Version 2 Release 3 SC z/os IBM DFSMS Implementing System-Managed Storage Version 2 Release 3 SC23-6849-30 Note Before using this information and the product it supports, read the information in Notices on page 267. This edition

More information

JCL MOCK TEST JCL MOCK TEST IV

JCL MOCK TEST JCL MOCK TEST IV http://www.tutorialspoint.com JCL MOCK TEST Copyright tutorialspoint.com This section presents you various set of Mock Tests related to JCL Framework. You can download these sample mock tests at your local

More information

Introduction to VSAM. Session Presented by Michael E. Friske

Introduction to VSAM. Session Presented by Michael E. Friske Introduction to VSAM Session 12994 Presented by Michael E. Friske 1 Exactly What Is VSAM? Is it a mysterious black cloud? 2 3 Does VSAM Confuse, Frustrate, or Overwhelm You? VSAM - The Acronym V irtual

More information

JCL Utilities. A Access Method Services... 4:8 Alternate Indexes and Paths... 4:5 AMS Commands... 4:8 anyname DD Statement... 9:5

JCL Utilities. A Access Method Services... 4:8 Alternate Indexes and Paths... 4:5 AMS Commands... 4:8 anyname DD Statement... 9:5 A Access Method Services... 4:8 Alternate es and Paths... 4:5 AMS Commands... 4:8 anyname DD Statement... 9:5 B Backing Up Data Sets... 3:2 Batch Submit Batch Data Set Compare... 10:21 Binary Zeros: Placing

More information

VSAM Overview. Michael E. Friske Fidelity Investments. Session 11681

VSAM Overview. Michael E. Friske Fidelity Investments. Session 11681 VSAM Overview Michael E. Friske Fidelity Investments Session 11681 This Is a VSAM Overview Session This session is intended for those who know very little or nothing about VSAM. I will provide some basic

More information

VSAM Management. Overview. z/os. CSI International 8120 State Route 138 Williamsport, OH

VSAM Management. Overview. z/os. CSI International 8120 State Route 138 Williamsport, OH VSAM Management Overview z/os CSI International 8120 State Route 138 Williamsport, OH 43164-9767 http://www.csi-international.com (800) 795-4914 - USA (740) 420-5400 - Main Operator (740) 333-7335 - Facsimile

More information

The CA Disk FILES Data Set

The CA Disk FILES Data Set The CA Disk FILES Data Set General Information The FILES Data Set can be of two different organizations. BDAM file called the FILES Data Set (FDS) CA Datacom/AD database called the Files Database (FDB)

More information

JCL MOCK TEST JCL MOCK TEST III

JCL MOCK TEST JCL MOCK TEST III http://www.tutorialspoint.com JCL MOCK TEST Copyright tutorialspoint.com This section presents you various set of Mock Tests related to JCL Framework. You can download these sample mock tests at your local

More information

Data Center Management Systems

Data Center Management Systems Data Center Management Systems The Expert JCL Manager - JED The Future of Automated JCL Management JED Highlights:(Partial list) The JED Process Operating Environments Supported JED Features and Functions

More information

DFSMS Basics: Data Set Fundamentals Get to Know Your Data Sets!

DFSMS Basics: Data Set Fundamentals Get to Know Your Data Sets! DFSMS Basics: Data Set Fundamentals Get to Know Your Data Sets! Neal Bohling and Tom Reed DFSMS Defect Support @ IBM August 7, 2014 Session Number 16119 What's your experience level? IBM 7094 1965 ~500KHz

More information

Overview Guide. r12.5, Second Edition

Overview Guide. r12.5, Second Edition Overview Guide r12.5, Second Edition This Documentation, which includes embedded help systems and electronically distributed materials (hereinafter referred to as the Documentation ), is for your informational

More information

Chapter 2 TSO COMMANDS. SYS-ED/ Computer Education Techniques, Inc.

Chapter 2 TSO COMMANDS. SYS-ED/ Computer Education Techniques, Inc. Chapter 2 TSO COMMANDS SYS-ED/ Computer Education Techniques, Inc. Objectives You will learn: Executing TSO commands in READY mode or ISPF. The format of a TSO command - syntax and usage. Allocating a

More information

COMPUTER EDUCATION TECHNIQUES, INC. (JCL ) SA:

COMPUTER EDUCATION TECHNIQUES, INC. (JCL ) SA: In order to learn which questions have been answered correctly: 1. Print these pages. 2. Answer the questions. 3. Send this assessment with the answers via: a. FAX to (212) 967-3498. Or b. Mail the answers

More information

INNOVATION UPCOMING EVENTS 2003

INNOVATION UPCOMING EVENTS 2003 FYI INNOVATION February 2003 Volume 1.0 Information on: Product Updates, Questions & Answers, Hints & Recommendations and New Features Welcome to INNOVATION FYI The objectives of FYI are to share with

More information

CA Recovery Analyzer for DB2 for z/os

CA Recovery Analyzer for DB2 for z/os CA Recovery Analyzer for DB2 for z/os User Guide Version 17.0.00, Third Edition This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred

More information

Chapter 14. Reclaiming CIs in secondary index databases with FPA

Chapter 14. Reclaiming CIs in secondary index databases with FPA Chapter 14. Reclaiming CIs in secondary index databases with FPA Use the FPA Freespace Reclaim function to reclaim the control interals (CIs) in secondary index database data sets. Topics: Functions of

More information

Transporting files between MVS and MVS or between MVS and a Workstation

Transporting files between MVS and MVS or between MVS and a Workstation Transporting files between MVS and MVS or between MVS and a Workstation author: Lionel B. Dyck Revision 1.207 May 07, 2003 If there is a need to transport any file from the IBM MVS computing systems to

More information

Chapter 1 RUNNING A SIMPLE JOB. SYS-ED/ Computer Education Techniques, Inc.

Chapter 1 RUNNING A SIMPLE JOB. SYS-ED/ Computer Education Techniques, Inc. Chapter 1 RUNNING A SIMPLE JOB SYS-ED/ Computer Education Techniques, Inc. Objectives You will learn: z/os operating system and resource management. The role and functions of JCL. How to code basic JCL

More information

IBM Tivoli Advanced Allocation Management for z/os. User's Guide. Version 3 Release 1 SC

IBM Tivoli Advanced Allocation Management for z/os. User's Guide. Version 3 Release 1 SC IBM Tivoli Advanced Allocation Management for z/os User's Guide Version 3 Release 1 SC23-9817-00 IBM Tivoli Advanced Allocation Management for z/os User's Guide Version 3 Release 1 SC23-9817-00 Note:

More information

CA Allocate DASD Space and Placement CA RS 1611 Service List

CA Allocate DASD Space and Placement CA RS 1611 Service List CA Allocate DASD Space and Placement 12.5 1 CA RS 1611 Service List Description Type 12.5 RO92081 DSORG OVERRIDE OF 'LIKED-TO' DATASET NOT HONORED W/PDS PTF RO92115 RTF ON VSAM LINEAR REDUCES SECONDARY

More information

Uni Hamburg Mainframe Summit z/os The Mainframe Operating. Part 3 z/os data sets. Introduction to the new mainframe. Chapter 5: Working with data sets

Uni Hamburg Mainframe Summit z/os The Mainframe Operating. Part 3 z/os data sets. Introduction to the new mainframe. Chapter 5: Working with data sets Uni Hamburg Mainframe Summit z/os The Mainframe Operating Chapter 5: Working with data sets Part 3 z/os data sets Michael Großmann IBM Technical Sales Mainframe Systems grossman@de.ibm.com Copyright IBM

More information

Paradigm Shifts in How Tape is Viewed and Being Used on the Mainframe

Paradigm Shifts in How Tape is Viewed and Being Used on the Mainframe Paradigm Shifts in How Tape is Viewed and Being Used on the Mainframe Ralph Armstrong EMC Corporation February 5, 2013 Session 13152 2 Conventional Outlook Mainframe Tape Use Cases BACKUP SPACE MGMT DATA

More information

Frequently Asked Questions about RTD

Frequently Asked Questions about RTD Frequently Asked Questions about RTD NOTE: All references to RTD apply to both RTD/zOS and RTD/DB2. What is the RTD Suite? What functions does RTD perform? How does RTD work? Why is RTD better than DFDSS?

More information

Implementing Data Masking and Data Subset with Sequential or VSAM Sources

Implementing Data Masking and Data Subset with Sequential or VSAM Sources Implementing Data Masking and Data Subset with Sequential or VSAM Sources 2013 Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means (electronic,

More information

In mainframe environment, programs can be executed in batch and online modes. JCL is used for submitting a program for execution in batch mode.

In mainframe environment, programs can be executed in batch and online modes. JCL is used for submitting a program for execution in batch mode. About the Tutorial Job Control Language (JCL) is the command language of Multiple Virtual Storage (MVS), which is the commonly used Operating System in the IBM Mainframe computers. JCL identifies the program

More information

The Life and Times of a Data Set: You Wouldn't Want Your Relatives Hanging Around, Why Your Data?

The Life and Times of a Data Set: You Wouldn't Want Your Relatives Hanging Around, Why Your Data? The Life and Times of a Data Set: You Wouldn't Want Your Relatives Hanging Around, Why Your Data? Chris Taylor ctaylor1@us.ibm.com IBM Corporation August 16, 2013 Session Number 13772 Legal Disclaimer

More information

z/os Learning Center: Introduction to ISPF Unit 1: The Basics of ISPF and Data Sets Module 3: ISPF Data Set Basics

z/os Learning Center: Introduction to ISPF Unit 1: The Basics of ISPF and Data Sets Module 3: ISPF Data Set Basics z/os Learning Center: Introduction to ISPF Unit 1: The Basics of ISPF and Data Sets Module 3: ISPF Data Set Basics Copyright IBM Corp., 2005. All rights reserved. Data Set Basics Introduction This module,

More information

CA File Master Plus. ISPF User Guide. Release

CA File Master Plus. ISPF User Guide. Release CA File Master Plus ISPF User Guide Release 9.1.00 This Documentation, which includes embedded help systems and electronically distributed materials (hereinafter referred to as the Documentation ), is

More information

USING SAS SOFTWARE TO COMPARE STRINGS OF VOLSERS IN A JCL JOB AND A TSO CLIST

USING SAS SOFTWARE TO COMPARE STRINGS OF VOLSERS IN A JCL JOB AND A TSO CLIST USING SAS SOFTWARE TO COMPARE STRINGS OF VOLSERS IN A JCL JOB AND A TSO CLIST RANDALL M NICHOLS, Mississippi Dept of ITS, Jackson, MS ABSTRACT The TRANSLATE function of SAS can be used to strip out punctuation

More information

What Every Storage Administrator Should Do For YOUR DB2 Environment

What Every Storage Administrator Should Do For YOUR DB2 Environment What Every Storage Administrator Should Do For YOUR DB2 Environment John Iczkovits IBM March 15, 2012 Session Number 10475 10475: What Every Storage Administrator Should Do For YOUR DB2 Environment Storage

More information

COMP 3400 Mainframe Administration 1

COMP 3400 Mainframe Administration 1 COMP 3400 Mainframe Administration 1 Christian Grothoff christian@grothoff.org http://grothoff.org/christian/ 1 These slides are based in part on materials provided by IBM s Academic Initiative. 1 Today

More information

CA Allocate DASD Space and Placement CA RS 1610 Service List

CA Allocate DASD Space and Placement CA RS 1610 Service List CA Allocate DASD Space and Placement 12.5 1 CA RS 1610 Service List Description Type 12.5 RO90756 POSSIBLE CATALOG HANG VSAM EXTEND AFTER RO77668 APPLIED ** PRP ** RO91005 V37SMST DUMP >25 VOLUMES >1 DD

More information

IMS Version 12. Database Utilities SC

IMS Version 12. Database Utilities SC IMS Version 12 Database Utilities SC19-3014-03 IMS Version 12 Database Utilities SC19-3014-03 Note Before using this information and the product that it supports, be sure to read the general information

More information

DFSMSdss Best Practices in an SMS Environment

DFSMSdss Best Practices in an SMS Environment DFSMSdss Best Practices in an SMS Environment Steve Huber and Jeff Suarez IBM Corporation shuber@us.ibm.com jrsuarez@us.ibm.com August 5, 2010 Session 8049 Legal Disclaimer NOTICES AND DISCLAIMERS Copyright

More information

CA Disk Backup and Restore CA RS 1609 Service List

CA Disk Backup and Restore CA RS 1609 Service List CA Disk Backup and Restore 12.5 1 CA RS 1609 Service List Release Service Description Type 12.5 RO90201 ARCHIVE U0100 ABEND DUE TO INCORRECT RCF KEYS PTF RO90374 DINXUFEX EXIT DOES NOT WORK WITH BACKUPCC

More information

IBM Tools Base for z/os Version 1 Release 6. IMS Tools Knowledge Base User's Guide and Reference IBM SC

IBM Tools Base for z/os Version 1 Release 6. IMS Tools Knowledge Base User's Guide and Reference IBM SC IBM Tools Base for z/os Version 1 Release 6 IMS Tools Knowledge Base User's Guide and Reference IBM SC19-4372-02 IBM Tools Base for z/os Version 1 Release 6 IMS Tools Knowledge Base User's Guide and Reference

More information

IBM. DFSMS Using the Interactive Storage Management Facility. z/os. Version 2 Release 3 SC

IBM. DFSMS Using the Interactive Storage Management Facility. z/os. Version 2 Release 3 SC z/os IBM DFSMS Using the Interactive Storage Management Facility Version 2 Release 3 SC23-656-30 Note Before using this information and the product it supports, read the information in Notices on page

More information

SMS Volume Selection. z/series Expo Session Z30 September, 2005 Ruth Ferziger

SMS Volume Selection. z/series Expo Session Z30 September, 2005 Ruth Ferziger SMS Volume Selection Or: Why did my data set go there??? z/series Expo Session Z30 September, 2005 Ruth Ferziger ruthf@us.ibm.com Trade Marks DFSMSdfp DFSMSdss DFSMShsm DFSMS/MVS DFSORT IPCS RAMAC SnapShot

More information

OS Utilities. Here is a chart of action words and parameters and a list of rules for ten frequently used OS Utilities:

OS Utilities. Here is a chart of action words and parameters and a list of rules for ten frequently used OS Utilities: OS Utilities Here is a chart of action words and parameters and a list of rules for ten frequently used OS Utilities: Reminder: Continuation cards for utility control statements (read from the SYSIN DD)

More information

Mainstar : Backup & Recovery Manager Suite

Mainstar : Backup & Recovery Manager Suite Mainstar : Backup & Recovery Manager Suite to Installation & Maintenance Guide SC23-6066-00 November 2006 Mainstar Software Corporation P.O. Box 4132 Bellevue, WA 98009 USA Tel 1-425-455-3589 Fax 1-425-455-1992

More information

VSAM Management. Overview. CSI International 8120 State Route 138 Williamsport, OH

VSAM Management. Overview. CSI International 8120 State Route 138 Williamsport, OH VSAM Management Overview CSI International 8120 State Route 138 Williamsport, OH 43164-9767 http://www.csi-international.com (800) 795-4914 - USA (740) 420-5400 - Main Operator (740) 333-7335 - Facsimile

More information

CustomPac FTPCSI Utility User Guide

CustomPac FTPCSI Utility User Guide CustomPac FTPCSI Utility User Guide Version 17.01 January 2017 Owner: IBM CustomPac Development Page 1 of 23 Contents 1. Summary of changes... 4 1.1. Version 17.01.01... 4 1.2. Version 16.10.01... 4 2.

More information

FASTEST FDR EVER! INNOVATION Data Processing

FASTEST FDR EVER! INNOVATION Data Processing Copyright 2008, Innovation Data Processing All rights reserved FASTEST FDR EVER! from INNOVATION Data Processing Thomas J Meehan SHARE Orlando 27 February 2008 Session Number 3069 Trademarks and statements:

More information

Version 1 Release 2. IBM IMS Cloning Tool User's Guide IBM SC

Version 1 Release 2. IBM IMS Cloning Tool User's Guide IBM SC Version 1 Release 2 IBM IMS Cloning Tool User's Guide IBM SC19-3757-01 Version 1 Release 2 IBM IMS Cloning Tool User's Guide IBM SC19-3757-01 Note: Before using this information and the product it supports,

More information

FASTEST FDR EVER! INNOVATION Data Processing

FASTEST FDR EVER! INNOVATION Data Processing Copyright 2008, Innovation Data Processing All rights reserved FASTEST FDR EVER! from INNOVATION Data Processing Thomas J Meehan SHARE Orlando 27 February 2008 Session Number 3069 Trademarks and statements:

More information

CA PDSMAN PDS Library Management CA RS 1404 Service List

CA PDSMAN PDS Library Management CA RS 1404 Service List CA PDSMAN PDS Library Management 7.7 1 CA RS 1404 Service List Description Hiper 7.7 RO66063 $DEMO MAY FAIL WITH I/O ERROR AND U0001 ABEND RO66078 PDSMENT-2 OR U0001 ABEND TERMINATING HEALTH CHECKS RO66087

More information

RUNNING and EXTERNALIZING IMS TRACES

RUNNING and EXTERNALIZING IMS TRACES BACKGROUND Logging DLI and LOCK trace data to an external dataset will cause a minimal system performance impact due to a small increase in the instruction path and the I/O writing the x 67FA records to

More information

CA Disk Backup and Restore CA RS 1410 Service List

CA Disk Backup and Restore CA RS 1410 Service List CA Disk Backup and Restore 12.5 1 CA RS 1410 Service List Release Service Description Type 12.5 RO72291 RECOVER VOLUMES USING THE VTOC *HIP/PRP* RO73905 ADD NEW SORT FIELD AND EXIT FOR MERGE PTF The CA

More information

z/os CSI International 8120 State Route 138 Williamsport, OH

z/os CSI International 8120 State Route 138 Williamsport, OH z/os Software Solutions CSI International 8120 State Route 138 Williamsport, OH 43164-9767 http://www.csi-international.com (800) 795-4914 - USA (740) 420-5400 - Main Operator (740) 333-7335 - Facsimile

More information

LMS. Laret Melsch Systems

LMS. Laret Melsch Systems LMS Laret Melsch Systems Manage and Automate Dynamic Allocation of STEPLIBs and ISPF Libraries is the premier solution to manage and automate dynamic allocation of STEPLIB and ISPF libraries to save time,

More information

IBM InfoSphere Optim for z/os Version 7 Release 2. Batch Utilities

IBM InfoSphere Optim for z/os Version 7 Release 2. Batch Utilities IBM InfoSphere Optim for z/os Version 7 Release 2 Batch Utilities IBM InfoSphere Optim for z/os Version 7 Release 2 Batch Utilities Note Before using this information and the product it supports, read

More information

A Semi-Technical Review of 101 Mainframe Terms, Acronyms, and Concepts.

A Semi-Technical Review of 101 Mainframe Terms, Acronyms, and Concepts. A Semi-Technical Review of 101 Mainframe Terms, Acronyms, and Concepts. Keith Sisson Compuware Keith.Sisson@Compuware.com Twitter: @KWSisson November 2018 Session: AE Address Space IMS Db2 Dataset JES

More information

1) How many unique operating systems are available on IBM Z hardware? Answer Choice A58_

1) How many unique operating systems are available on IBM Z hardware? Answer Choice A58_ Print Name: Print Email Address: 60 questions where each question has only 1 best choice answer from the list of 60 answers A1 to A60 1) How many unique operating systems are available on IBM Z hardware?

More information

NaviQuest Testing ACS Hands-On Lab

NaviQuest Testing ACS Hands-On Lab NaviQuest Testing ACS Hands-On Lab Neal Bohling and Tom Reed, IBM March 5, 2015 Session 17048 Insert Custom Session QR if Desired. Permission is granted to SHARE Inc. to publish this presentation paper

More information

CA Rapid Reorg for DB2 for z/os

CA Rapid Reorg for DB2 for z/os PRODUCT SHEET CA Rapid Reorg for DB2 for z/os CA Rapid Reorg for DB2 for z/os CA Rapid Reorg for DB2 for z/os (CA Rapid Reorg) helps you perform quick and effective DB2 data reorganizations to help increase

More information

Systems. OS/VS2 MVS Data Management Services Guide. Release 3.7. Includes the Following Selectable Units:

Systems. OS/VS2 MVS Data Management Services Guide. Release 3.7. Includes the Following Selectable Units: GC26-3875-0 File No. S370-30 Systems OS/VS2 MVS Data Management Services Guide Release 3.7 Includes the Following Selectable Units: Data Management VS2.03.808 3800 Printing Subsystem VS2.03.810 System

More information

CA Software Change Manager for Mainframe

CA Software Change Manager for Mainframe CA Software Change Manager for Mainframe Reports Guide r12 This documentation and any related computer software help programs (hereinafter referred to as the Documentation ) is for the end user s informational

More information

E-SRF. Security Signature Analysis. Release EKC Security Reporting Facility GENERAL AVAILABILITY. September 1, 2005 EKC Inc.

E-SRF. Security Signature Analysis. Release EKC Security Reporting Facility GENERAL AVAILABILITY. September 1, 2005 EKC Inc. E-SRF EKC Security Reporting Facility Security Signature Analysis Release 2.1.0 E-SRF V2R1M0 GENERAL AVAILABILITY September 1, 2005 EKC Inc. E-SRF is a proprietary product developed and maintained by EKC

More information

CA Disk Backup and Restore CA RS 1309 Service List

CA Disk Backup and Restore CA RS 1309 Service List CA Disk Backup and Restore 12.5 1 CA RS 1309 Service List Description Hiper 12.5 RO22741 OPEN SVC ZAP IFG0196W AT HDZ1C10 FOR Z/OS 1.12 RO48374 ISPF REPORT VSAM DATA/INDEX COMPONENTS DISPLAY CAT N RO54254

More information

USING EXISTING DATASETS

USING EXISTING DATASETS Chapter 2 USING EXISTING DATASETS SYS-ED/ Computer Education Techniques, Inc. Objectives You will learn: Coding DD statement parameters for existing datasets. Coding statements for tape datasets. Concatenating

More information

Compute (Bridgend) Ltd

Compute (Bridgend) Ltd Compute (Bridgend) Ltd SELCOPY Product Suite for z/os Version 3.10 Program Directory (SELCOPY 3.10, SELCOPY/i 3.10 and CBLVCAT 3.10) 8 Merthyr Mawr Road, Bridgend, Wales UK CF31 3NH Tel: +44 (1656) 65

More information

A-LOG. User s Manual. Version 3.8

A-LOG. User s Manual. Version 3.8 A-LOG User s Manual Version 3.8 Manual Order Number: ALG-380-020-1 This manual is applicable to A-LOG product at Version 3.8 release level. Unless otherwise stated in new editions of this manual or A-LOG

More information

Mainframe Developer NO.2/29, South Dhandapani St, Burkit road, T.nagar, Chennai-17. Telephone: Website:

Mainframe Developer NO.2/29, South Dhandapani St, Burkit road, T.nagar, Chennai-17. Telephone: Website: Mainframe Developer Mainframe Developer Training Syllabus: IBM Mainframe Concepts Architecture Input/output Devices JCL Course Syllabus INTRODUCTION TO JCL JOB STATEMENT CLASS PRTY MSGCLASS MSGLEVEL TYPRUN

More information

Hitachi Cache Manager User s Guide

Hitachi Cache Manager User s Guide Hitachi Virtual Storage Platform Hitachi Universal Storage Platform V/VM Hitachi TagmaStore Universal Storage Platform Hitachi TagmaStore Network Storage Controller FASTFIND LINKS Contents Product Version

More information

CustomPac Installation Dialog Message Book Dialog Level:27

CustomPac Installation Dialog Message Book Dialog Level:27 CustomPac Installation Dialog Message Book Dialog Level:27 Document Number WWCP-28-0103-16 July 26, 2016 IBM SYSTEMS INTEGRATION AND DELIVERY, CANADA CustomPac Installation Dialog Message Book Dialog

More information

IBM Tivoli Advanced Reporting for DFSMShsm. User s Guide. Version 1 Release 1 SC

IBM Tivoli Advanced Reporting for DFSMShsm. User s Guide. Version 1 Release 1 SC IBM Tivoli Advanced Reporting for DFSMShsm User s Guide Version 1 Release 1 SC23-6331-00 Note Before using this information and the products it supports, read the information in Appendix B, on page 319.

More information

CA-View Extract User Dialog

CA-View Extract User Dialog CA-View Extract User Dialog A User Friendly ISPF Interface to CA-View Reports Version 1.19 Revised June 16, 2003 Lionel B. Dyck Kaiser Permanente Information Technology 25 N. Via Monte Ave Walnut Creek,

More information

CA TPX Session Management

CA TPX Session Management CA TP Session Management Batch Administration Guide Release 5.3 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

IBM. OMEGAVIEW and OMEGAVIEW II for the Enterprise. Configuring OMEGAVIEW and OMEGAVIEW II for the Enterprise. Tivoli. Version 3.1.

IBM. OMEGAVIEW and OMEGAVIEW II for the Enterprise. Configuring OMEGAVIEW and OMEGAVIEW II for the Enterprise. Tivoli. Version 3.1. Tivoli OMEGAVIEW and OMEGAVIEW II for the Enterprise IBM Version 3.1.0 Configuring OMEGAVIEW and OMEGAVIEW II for the Enterprise SC32-9426-00 12 1 2 Tivoli OMEGAVIEW and OMEGAVIEW II for the Enterprise

More information

CA Disk Backup and Restore CA RS 1801 Service List

CA Disk Backup and Restore CA RS 1801 Service List CA Disk Backup and Restore 12.5 1 CA RS 1801 Service List Service Description Type RO95940 TSTHOOK JOB FAILS IN AMASPZAP VERIFY PTF RO97466 OPEN SVC ZAP IGGDAU01 AT UA92610 FOR Z/OS 2.2 PTF RO97766 INCORRECT

More information

IBM Tivoli Advanced Reporting for DFSMShsm. User s Guide. Version 2 Release 2 SC

IBM Tivoli Advanced Reporting for DFSMShsm. User s Guide. Version 2 Release 2 SC IBM Tivoli Advanced Reporting for DFSMShsm User s Guide Version 2 Release 2 SC27-2350-00 Note Before using this information and the products it supports, read the information in Appendix B on page 419.

More information

CA Chorus for Storage Management

CA Chorus for Storage Management CA Chorus for Storage Management User Guide Version 03.0.00, Second Edition This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as

More information

CALL CLICK FAX MAIL P.O. Box 1213, New York, NY 10156

CALL CLICK FAX MAIL P.O. Box 1213, New York, NY 10156 File-AID s Microsoft Systems courses include: Programming Skills PC Emulation of Mainframe Software Telecommunications VSAM Database: IMS Client/Server for MVS Programming Languages Utilities & Development

More information

MVS/QuickRef - Tailoring QW

MVS/QuickRef - Tailoring QW MVS/QuickRef - Tailoring QW Speaker Name: Chuck Davis Speaker Company: Chicago-Soft, Ltd. Date of Presentation: February 5, 2013 Session Number: 12489 cdavis@quickref.com Planned topics include - 1 of

More information

Innovation Data Processing is recognized as a leader in providing storage solutions for OS/390 and z/os users for more than 30 years.

Innovation Data Processing is recognized as a leader in providing storage solutions for OS/390 and z/os users for more than 30 years. Innovation Data Processing is recognized as a leader in providing storage solutions for OS/390 and z/os users for more than 30 years. You can rely on INNOVATION software to be Efficient, Easy-to-Use, Reliable

More information

CA Compress Data Compression

CA Compress Data Compression CA Compress Data Compression Message Reference Guide Release 5.5 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

IBM Education Assistance for z/os V2R1

IBM Education Assistance for z/os V2R1 IBM Education Assistance for z/os V2R1 Item: In-Stream Data in JCL Procedures and Includes Element/Component: JES3 Material is current as of June 2013 I n Agenda Trademarks Presentation Objectives Overview

More information

IBM. TSO/E User's Guide. z/os. Version 2 Release 3 SA

IBM. TSO/E User's Guide. z/os. Version 2 Release 3 SA z/os IBM TSO/E User's Guide Version 2 Release 3 SA32-0971-30 Note Before using this information and the product it supports, read the information in Notices on page 229. This edition applies to Version

More information