|
|
| Author |
Message |
sivatechdrive
Active User
Joined: 17 Oct 2004 Posts: 159 Location: hyderabad
|
|
|
|
1. can generation data sets be different lengths
2. a job executes for 10 hours,how to make it to execute in 7 hours(other than class parameter)
3.my jcl is in jcllib & proc in proclib,my job executes fine when i run today but when i run the same job after 2 days i am getting proc not found error
,i didn't make any changes anywhere
4.in proc i am using the symbolic parameters,in my job i use different ,will the sysmbolic parameter gets overwrite
5.i am a data set with 900 records,create 3 output's files with 300 records each |
|
| Back to top |
|
 |
References
|
Posted: Wed Dec 15, 2004 7:44 pm Post subject: Re: Can generation data sets be different lengths |
 |
|
|
 |
mmwife
Super Moderator
Joined: 30 May 2003 Posts: 1470
|
|
|
|
| Please post these kinds of requests in the INTERVIEW QUESTIONS SECTION of the Forum Index further down on the page. |
|
| Back to top |
|
 |
tekq
New User
Joined: 15 Feb 2005 Posts: 2
|
|
|
|
| i have a data set with 900 records,i want to create 3 output's files with 300 records each,what is the syntax |
|
| Back to top |
|
 |
tekq
New User
Joined: 15 Feb 2005 Posts: 2
|
|
|
|
my jcl is in jcllib & proc in proclib,my job executes fine when i run today but when i run the same job after 2 days i am getting proc not found error
,i didn't make any changes anywhere |
|
| Back to top |
|
 |
ksivapradeep
Active User
Joined: 30 Jul 2004 Posts: 101
|
|
|
|
hi,
for spliting a file in to 3 o/p files u sort utility with OUTFIL
//SYSIN DD *
SORT FIELDS=COPY,SPLIT BY=300
OUTFILFNAMES=(FILE1,FILE2,FILE3)
/*
//
one thing is i am not sure about the split by syntax plz check it out ok
regards.
siva pradeep |
|
| Back to top |
|
 |
|
|