Search found 1877 matches

by Robert Sample
Thu Jul 04, 2013 5:55 pm
Forum: SyncSort, SyncTool, SyncGener.
Topic: How to count No. of Records in Dataset using Sort?
Replies: 9
Views: 7310
United States of America

Re: How to count No. of Records in Dataset using Sort?

There are multiple ways to do this. One way would be to add a sequence number field to the record. Or add a constant 1 to the record and sum them. Or just use a COPY and look at the job output to see how many records SORT found. The answer to your question partly depends upon what you meant -- do yo...
by Robert Sample
Thu Jul 04, 2013 5:51 pm
Forum: CICS, Middleware and MQ Series.
Topic: How a data in physical and symbolic map gets treated/mapped?
Replies: 2
Views: 2033
United States of America

Re: How a data in physical and symbolic map gets treated/map

1. Data sent / received with maps does not have to be constant. Variables work since the contents of the variable are placed into / read from the map fields. 2. Generate a map, compile the program using the copy book, and much will be clearer. The map compile generates the appropriate -I, -O, -A, -L...
by Robert Sample
Thu Jul 04, 2013 5:46 pm
Forum: SMS & VSAM and BDAM, BSAM, QSAM, BPAM, ISAM, OAM.
Topic: Empty the VSAM file.
Replies: 9
Views: 3770
United States of America

Re: Empty the VSAM file.

With REUSE(NO) for a VSAM file, you will need to delete / define the file to empty it. This uses IDCAMS, not SORT.
by Robert Sample
Thu Jul 04, 2013 5:45 pm
Forum: JCL - Job Control Language.
Topic: Why browse is substituted on big datasets?
Replies: 7
Views: 3610
United States of America

Re: Why browse is substituted on big datasets?

TSO/ISPF edit requires memory. This memory is used to hold a copy of the entire data set to allow you to make changes to it. The changes are not committed to the data set until you use the SAVE command or exit the data set edit. TSO/ISPF browse does not read the entire data set into memory. You can ...
by Robert Sample
Thu Jul 04, 2013 5:41 pm
Forum: JCL - Job Control Language.
Topic: BLDL error while creating a PDS Member.
Replies: 3
Views: 3073
United States of America

Re: BLDL error while creating a PDS Member.

Your SPACE parameter does not include anything for the PDS directory, hence the BLDL error. Change the (25,10) to (25,10,100)
by Robert Sample
Thu Jul 04, 2013 5:39 pm
Forum: JCL - Job Control Language.
Topic: GDG LRECL for different generations.
Replies: 4
Views: 2370
United States of America

Re: GDG LRECL for different generations.

Yes. Each generation of a GDG can be considered as a separate data set. Note that doing so may cause problems if you have jobs that reference the GDG base instead of relative or absolute generation.
by Robert Sample
Thu Jul 04, 2013 5:38 pm
Forum: JCL - Job Control Language.
Topic: How many MAXIMUM Jobs can be submitted in a single JCL
Replies: 8
Views: 2514
United States of America

Re: How many MAXIMUM Jobs can be submitted in a single JCL

Assuming you mean a single data set that is submitted to the system via a TSO SUBMIT command or via the internal reader in a batch job, there is no real limit. Your system has a limit on the total number of jobs that can be in the system at one time, set in the JES initialization parameters, but the...
by Robert Sample
Wed Jul 03, 2013 7:17 pm
Forum: Scheduling Software for MVS, OS/390 and zOS
Topic: How to copy Panvalet Members to a PDS - ISPF does not work..
Replies: 4
Views: 5060
United States of America

Re: How to copy Panvalet Members to a PDS - ISPF does not wo

Google let me find a reference to this JCL //STEP0100 EXEC PGM=PAN#1 //PANDD1 DD DSN=PROD.PANAVALET.SOURCE,DISP=SHR //PDSOUT DD DSN=OUTPUT.PDS,DISP=SHR //SYSPRINT DD SYSOUT=* //SYSIN DD * ++OPTION OUTPUT,PDSOUT,MEMBERNAME ++WRITE WORK,MEMBERNAME /* which purportedly works if there are no ++INCLUDE s...
by Robert Sample
Wed Jul 03, 2013 12:16 am
Forum: IBM DFSort, ICETOOL, ICEMAN, ICEGENER.
Topic: PGM=ICEMAN or PGM=SYNCSORT or PGM=DFSORT..confusion...
Replies: 2
Views: 2521
United States of America

Re: PGM=ICEMAN or PGM=SYNCSORT or PGM=DFSORT..confusion...

Syncsort is a sort product produced by an IBM competitor (named Syncsort). CA-Sort is a sort product produced by an IBM competitor (named CA). DFSORT is the IBM sort product. EXEC PGM=SORT or EXEC PGM=ICEMAN are typically executing IBM's sort product, although some sites use aliases for Syncsort so ...
by Robert Sample
Wed Jul 03, 2013 12:09 am
Forum: IBM DB2 and IMS DB/DC
Topic: What is the difference between QMF and Spufi?
Replies: 8
Views: 3070
United States of America

Re: What is the difference between QMF & Spufi?

From what I recall, and it has been a while since I used DB2, QMF is a reporting tool whereas SPUFI is merely an SQL execution tool. Both will execute queries, but QMF gives you more control over how the results will appear.
by Robert Sample
Wed Jul 03, 2013 12:07 am
Forum: Scheduling Software for MVS, OS/390 and zOS
Topic: How to copy Panvalet Members to a PDS - ISPF does not work..
Replies: 4
Views: 5060
United States of America

Re: How to copy Panvalet Members to a PDS - ISPF does not wo

The Panvalet documentation has information on the JCL to use for batch copies and the TSO panels for online (TSO) copy. Panvalet libraries (IIRC) are not "normal" PDS libraries and hence you cannot use IEBCOPY or ISPF functions directly -- only through the provided JCL / panels.
by Robert Sample
Tue Jul 02, 2013 3:22 am
Forum: SyncSort, SyncTool, SyncGener.
Topic: Where to get manual for syncsort?
Replies: 5
Views: 3165
United States of America

Re: Where to get manual for syncsort?

If your site has a license for Syncsort, you have access to the manuals -- possibly hard copy, possibly through a company-internal web site, or by going to the Syncsort web site and accessing them there. However, manuals under copyright cannot be posted nor linked to here; if your site does not have...
by Robert Sample
Mon Jul 01, 2013 7:57 pm
Forum: SMS & VSAM and BDAM, BSAM, QSAM, BPAM, ISAM, OAM.
Topic: How to find the creation date of a PS dataset?
Replies: 2
Views: 2144
United States of America

Re: How to find the creation date of a PS dataset?

TSO ISPF 3.4 is usually the best way to determine the creation data of a data set.
by Robert Sample
Mon Jul 01, 2013 7:56 pm
Forum: SMS & VSAM and BDAM, BSAM, QSAM, BPAM, ISAM, OAM.
Topic: Generation and Version of GDG - and confusion?
Replies: 2
Views: 2441
United States of America

Re: Generation and Version of GDG - and confusion?

A.B.C.G0001V00 references GDG base A.B.C and generation 1. Version 0 is normal and typical. The ONLY way to create version 01 is to write to A.B.C.G0001V01 -- if you do so, the system will uncatalog A.B.C.G0001V00 and catalog A.B.C.G0001V01 in its place. A GDG allows you to define up to 255 generati...
by Robert Sample
Mon Jul 01, 2013 7:50 pm
Forum: SMS & VSAM and BDAM, BSAM, QSAM, BPAM, ISAM, OAM.
Topic: What is BDAM Dataset?
Replies: 2
Views: 2025
United States of America

Re: What is BDAM Dataset?

Basic Direct Access Method -- allows retrieval of data by relative block number. VSAM RRDS is the equivalent VSAM data type. With BDAM, you have a method to generate the block number (hash or sequence number or whatever) and that block contains the data record. There is no key required, you can read...
by Robert Sample
Mon Jul 01, 2013 7:41 pm
Forum: IBM COBOL, GnuCOBOL (OpenCOBOL), OOCobol.
Topic: Where do the copybook "comes from" while execution?
Replies: 7
Views: 2421
United States of America

Re: Where do the copybook "comes from" while execution?

Concatenation works the same for load libraries as well as copy books and source code ... the libraries are searched in the sequence they are specified in the JCL, and the first data set that contains the member has that member used. There may be additional data sets that contain the member below th...
by Robert Sample
Mon Jul 01, 2013 7:37 pm
Forum: Interview Questions.
Topic: Please help me with the answers...
Replies: 3
Views: 1800
United States of America

Re: Please help me with the answers...

- Using SORT allows you to remove duplicate records - One procedure can invoke another procedure, but overrides in the nested procedure are not allowed - x37 abends are disk data set space problems; the fix will depend upon the specific problem - IEBEDIT is used to copy JCL and include / omit steps ...

Go to advanced search