|
|
| Author |
Message |
varunl
New User
Joined: 03 Sep 2005 Posts: 2
|
|
|
|
Hi,
I have a program with a single input and single output file. The input file that i want to read can be any size (upto 1000 characters).
I want to read from this file and write to output file.
The problem i am encountering is
1. how do i find the size of the input data set (to match record length).
2. how do i ensure the size of the output data set is the same as input data set. How can this be specified in the JCL.
Thanks in advance for the replies.
--
Varun |
|
| Back to top |
|
 |
References
|
Posted: Sat Dec 10, 2005 7:17 am Post subject: Re: How to find SIZE of INPUT DATA-SET FOR RECORD I/O |
 |
|
|
 |
iknow
Senior Member
Joined: 22 Aug 2005 Posts: 583 Location: Colarado, US
|
|
|
|
Hi varunl,
| Quote: |
| 1. how do i find the size of the input data set (to match record length). |
Just type S in front of this dataset and this will give you the information about the dataset inccluding the size allocated to it.
| Quote: |
| 2. how do i ensure the size of the output data set is the same as input data set. How can this be specified in the JCL. |
The simplest way is while creating the output file you can specify the total size that it can occupy based on the input file.
If you want to specify the size through JCL I think you must do it by giving RECFM,BLKSIZE,DCB,DSORG parameters.
Refer JCL manuals for the syntax in our forum.
Hope this helps. |
|
| Back to top |
|
 |
|
|