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

load partition problem


IBM Mainframe Forums -> DB2
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
theone1987

New User


Joined: 14 Sep 2009
Posts: 60
Location: Milan

PostPosted: Wed Mar 24, 2010 4:23 pm
Reply with quote

hi all,
i'm executing this load :
Code:

//LOAD210  EXEC DB2PROC,                         
//         DB2ID=DB2T,                           
//         UID='I2ABCR.SI2210'                   
//SYSUT1 DD DSN=&SYSUT1,                         
//     DISP=(NEW,DELETE,DELETE),UNIT=SYSDA,     
//     SPACE=(CYL,(15,150))                     
//SORTOUT DD DSN=&SORTOUT,                       
//     DISP=(NEW,DELETE,DELETE),UNIT=SYSDA,     
//     SPACE=(CYL,(15,150))                     
//SYSMAP DD DSN=&SYSMAP,                         
//     DISP=(NEW,DELETE,DELETE),UNIT=SYSDA,     
//     SPACE=(CYL,(5,50))                       
//SYSDISC DD DSN=...SYSDISC,
//     DISP=(MOD,CATLG,CATLG),UNIT=SYSDA,       
//     SPACE=(CYL,(15,90))                       
//SYSERR DD DSN=&SYSERR,                         
//     DISP=(NEW,DELETE,DELETE),UNIT=SYSDA,     
//     SPACE=(CYL,(5,50))                       
//ERROR DD SYSOUT=*                             
//SYSIN    DD *                                 
 LOAD                                           
   INTO TABLE owner.table PART 13 REPLACE     
      ENFORCE NO                                 
      STATISTICS TABLE(ALL) INDEX(ALL KEYCARD)   
//SYSREC00 DD DISP=SHR,                         
//         DSN=...FILEINPUT           


but the job abend becouse of this error:
Code:

DSNU1044I   DSNUGTIS - PROCESSING SYSTEMPL AS EBCDIC                         
DSNU047I    DSNURELD - A REQUIRED DD CARD OR TEMPLATE IS MISSING. NAME=SYSREC
DSNU012I    DSNUGBAC - UTILITY EXECUTION TERMINATED, HIGHEST RETURN CODE=8   


What am I doing wrong?


thank you
Back to top
View user's profile Send private message
guptae

Moderator


Joined: 14 Oct 2005
Posts: 1208
Location: Bangalore,India

PostPosted: Wed Mar 24, 2010 4:30 pm
Reply with quote

Hello There,

INDDN is missing for SYSREC00 that identifies the input data set is missing from Load statement.
Back to top
View user's profile Send private message
enrico-sorichetti

Superior Member


Joined: 14 Mar 2007
Posts: 10873
Location: italy

PostPosted: Wed Mar 24, 2010 8:42 pm
Reply with quote

Code:
DSNU047I    DSNURELD - A REQUIRED DD CARD OR TEMPLATE IS MISSING. NAME=SYSREC


what does the message hint You icon_question.gif
Back to top
View user's profile Send private message
theone1987

New User


Joined: 14 Sep 2009
Posts: 60
Location: Milan

PostPosted: Wed Mar 24, 2010 8:47 pm
Reply with quote

enrico-sorichetti wrote:
what does the message hint You icon_question.gif

It means that a DD CARD of rysrec missing.
however I solved.

thank you
Back to top
View user's profile Send private message
Nereus

New User


Joined: 25 Mar 2010
Posts: 1
Location: N 39 54'. E 116 28'

PostPosted: Thu Mar 25, 2010 12:29 pm
Reply with quote

hi

look there

www-01.ibm.com/support/docview.wss?rs=434&context=SSZJXP&q=&uid=swg1PK06085&loc=en_US&cs=utf-8&lang=en+en#more

hope it is useful
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 -> DB2

 


Similar Topics
Topic Forum Replies
No new posts Load new table with Old unload - DB2 DB2 6
No new posts Map Vols and Problem Dataset All Other Mainframe Topics 2
No new posts How to load to DB2 with column level ... DB2 6
No new posts DROP & ALTER PARTITION-PBR DB2 0
No new posts REASON 00D70014 in load utility DB2 6
Search our Forums:

Back to Top