i want to use only first 100 records from a file.plz tell
me how to write JCL for this(for read,copy,write
operations).plz give me details of all posible JCL
utilities?

Answers were Sorted based on User's Feedback



i want to use only first 100 records from a file.plz tell me how to write JCL for this(for read,co..

Answer / madhuri tungal

Use IDCAMS program.

//.........JOB........
//STEP1 EXEC PGM=IDCAMS
//SYSPRINT DD SYSOUT=*
//SYSIN DD *
REPRO INDATASET(INPUT FILE) OUTDATASET(OUTPUT FILE)
SKIP(0) COUNT(100)
/*

Is This Answer Correct ?    37 Yes 2 No

i want to use only first 100 records from a file.plz tell me how to write JCL for this(for read,co..

Answer / selva

SORT FIELD=COPY, SKIPREC=200 (OR SOME MORE RECORDS),
STOPAFT=100

will skip first 200 records, the correct option is

SORT FIELD=COPY,STOPAFT=100

Is This Answer Correct ?    17 Yes 0 No

i want to use only first 100 records from a file.plz tell me how to write JCL for this(for read,co..

Answer / khbnaidu

Using SORT you can do this...

SORT FIELD=COPY, SKIPREC=200 (OR SOME MORE RECORDS),
STOPAFT=100

Is This Answer Correct ?    15 Yes 10 No

i want to use only first 100 records from a file.plz tell me how to write JCL for this(for read,co..

Answer / santy

Hi,

U can use only first 100 records from a file by using the
IDCAMS utility.

JCL to perform this operation is as below,

//JOBNAME JOB ,, Notify=User_id
//STEP1 EXEC PGM=IDCAMS
//SYSPRINT DD SYSOUT=*
//INDATA DD DSNAME=DATA1
//OUTDATA DD DSNAME=DATA2
//SYSIN DD *
REPRO
INFILE(INDATA) OUTFILE(OUTDATA)
START(0) COUNT(100)
/*


COUNT variable in JCL with start counting a record from
start position 0 and count first 100 record.

Is This Answer Correct ?    8 Yes 3 No

i want to use only first 100 records from a file.plz tell me how to write JCL for this(for read,co..

Answer / arul anand.a

SORT FIELD=COPY,
SKIPREC=0 ( skip 0 records)
STOPAFT=100 (stop after 100 records).

so it will copy only first 100 records.

Is This Answer Correct ?    6 Yes 1 No

i want to use only first 100 records from a file.plz tell me how to write JCL for this(for read,co..

Answer / nataraj

copy file to esds file this file only sequance order so copy
only first 100 records

Is This Answer Correct ?    4 Yes 1 No

i want to use only first 100 records from a file.plz tell me how to write JCL for this(for read,co..

Answer / santy

by using IDCAMS utility u can do this.

//JOBNAME JOB ,, Notify=User_id
//STEP1 EXEC PGM=IDCAMS
//SYSPRINT DD SYSOUT=*
//INDATA DD DSNAME=DATA1
//OUTDATA DD DSNAME=DATA2
//SYSIN DD *
REPRO
INFILE(INDATA) OUTFILE(OUTDATA)
START(0) SKIP(100)
/*

Is This Answer Correct ?    7 Yes 8 No

Post New Answer

More COBOL Interview Questions

what is a load module ?

3 Answers   TCS,


A paragraph PARA-X is to be executed when none of the data names A, B and C have value of 1. Which of the following will achieve this ? (a) IF A NOT = 1 OR B NOT = 1 OR C NOT = 1 PERFORM PARA-X (B) IF NOT A= 1 AND B= 1 AND C = 1 PERFORM PARA-X (C) IF A NOT =1 IF NOT B = 1 OR C= 1 PERFORM PARA-X (C) IF A NOT = 1 AND B NOT = 1 AND C NOT = 1 PERFORM PARA-X

3 Answers   TCS,


In COBOL "BEFORE" advancing is there or not ?

3 Answers  


I know my query will return more than one row but I don't want cursor what should I do?

1 Answers  


Have you used comp and comp-3 in your project? And how?

0 Answers   IBM,






What divisions, sections and paragraphs are mandatory for a COBOL program?

8 Answers   Arigo Infotech,


Can JUSTIFIED be used for all the data types?

3 Answers  


what is scope terminator

2 Answers   IBM,


01 x pic s9(8) comp. How will the following value be internally allocated '18787'

4 Answers   Steria,


why do u need inspect verb?

3 Answers   Patni,


For rewrite, why is it mandatory that file needs to be opened?

0 Answers  


What is the usage of comp fields in cobol?

0 Answers  


Categories