IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

TSO or command line utility to generate records in PS file


IBM Mainframe Forums -> JCL & VSAM
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
kishpra

New User


Joined: 24 May 2010
Posts: 92
Location: Pune

PostPosted: Thu Mar 09, 2017 1:11 am
Reply with quote

HI,

I have a sequential file with LRECL=15 and with no records.

I want this file to have records as below till 100000.

000000000000001
000000000000002
000000000000003
000000000000004
000000000000005
000000000000006
000000000000007
000000000000008
000000000000009

Kindly advise.

Thank you.
Back to top
View user's profile Send private message
Akatsukami

Global Moderator


Joined: 03 Oct 2009
Posts: 1788
Location: Bloomington, IL

PostPosted: Thu Mar 09, 2017 1:48 am
Reply with quote

IEBDG.
Back to top
View user's profile Send private message
Robert Sample

Global Moderator


Joined: 06 Jun 2008
Posts: 8696
Location: Dubuque, Iowa, USA

PostPosted: Thu Mar 09, 2017 2:03 am
Reply with quote

You have a number of options:
- as mentioned, IEBDG does it easily (in 4 control statements)
- if your site has SAS, or Easytrieve, you can use one of them
- you could always write a quick program in the language of your choice
Back to top
View user's profile Send private message
Arun Raj

Moderator


Joined: 17 Oct 2006
Posts: 2481
Location: @my desk

PostPosted: Thu Mar 09, 2017 3:05 am
Reply with quote

Besides the options already suggested by Robert and Akatsukami, if you have any of the sort products installed, you could make use of the OUTFIL REPEAT with a SEQNUM (you might need a single-dummy-record input)

Something like this:
Code:
//SORTIN   DD *                               
DUMMY-REC                                     
//SYSIN    DD *                               
 OPTION COPY                                   
 OUTFIL REPEAT=100000,BUILD=(9C'0',SEQNUM,6,ZD)


But I am not sure if this is what you are looking for, after seeing the topic title!
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> JCL & VSAM

 


Similar Topics
Topic Forum Replies
No new posts Extracting Variable decimal numbers f... DFSORT/ICETOOL 17
No new posts SFTP Issue - destination file record ... All Other Mainframe Topics 2
No new posts Write line by line from two files DFSORT/ICETOOL 7
No new posts Access to non cataloged VSAM file JCL & VSAM 18
No new posts Routing command Address SDSF to other... TSO/ISPF 2
Search our Forums:

Back to Top