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

Performance tuning of a existing batch job


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

New User


Joined: 24 Oct 2006
Posts: 32
Location: India

PostPosted: Tue Oct 24, 2006 1:46 pm
Reply with quote

I have request to do a performance tuning of a exixting batch job:

Function of this job:

unload a data from a VIEW then sort it and load to a different table.


unload step :
//UI66UNL1 EXEC PROC=PLPUNLOD,
// OUTDSN=PLP.INFODB.DATA1066.EXTRACT(+1),
// SYSIN=UI66UNL1, * VLP_TXNHIST_EXT1066
// UNLDTME=60
//UNLOAD.SYSREC00 DD DSN=PLP.INFODB.DATA1066.EXTRACT(+1),
// DISP=(NEW,CATLG),
// UNIT=PROD,DATACLAS=MULTIVOL,
// SPACE=(CYL,(1500,15),RLSE),BUFNO=30,
// DCB=(PTS.MODEL,RECFM=FB,LRECL=223)

sort step:

FIELDS=(7,2,CH,A,19,2,CH,A,39,10,CH,A,27,7,PD,A,1,6,PD,A)

load step:
//LOAD9015 EXEC PROC=PLPLOAD1,
// COND.LOAD=(0,NE,PLPDLI28.SORT1015),
// INDD=PLP.INFODB.DATA1015.SORTED(+1),
// MEMBER=IFPL9015,
// SYSTEM=PDB2,
// UTPROC='',
// SPACE1='(CYL,(200,20),RLSE)', * WORKING SPACE(INDEX)
// UID='PLPNGEC0'


My question:

What i should do to fine tune this job so it take less time to complete
Back to top
View user's profile Send private message
expat

Global Moderator


Joined: 14 Mar 2007
Posts: 8797
Location: Welsh Wales

PostPosted: Fri Mar 23, 2007 2:06 pm
Reply with quote

Quote:
// DCB=(PTS.MODEL,RECFM=FB,LRECL=223)


CODE RECFM=FB,LRECL=223

As I have said many times on help boards, a model / pattern DSCB is not required for ANY GDG being created. Go talk to your storage people and ask them to set up a dummy DATACLAS to be allocated to ALL GDG datasets being created, DASD, Tape, SMS, NONSMS.

Makes life so much easier. Your model DSCB may have a BLKSIZE of 233 which would be a performance pain.
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 How to get a stack trace on a looping... ABENDS & Debugging 5
No new posts Calling Java method from batch COBOL ... COBOL Programming 5
No new posts Adding first / last acct numerber to ... DFSORT/ICETOOL 7
No new posts Help in Automating Batch JCL jobs mon... JCL & VSAM 3
No new posts exploiting Z16 performance PL/I & Assembler 2
Search our Forums:

Back to Top