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

DB2 Table Load Error


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

New User


Joined: 29 Jan 2007
Posts: 61
Location: Makati City, Philippines

PostPosted: Tue Dec 28, 2010 12:08 pm
Reply with quote

Hi,

Does anybody knows how to resolve this error:


Code:


DSNUGUCC - UTILITY IS NOT COMPATIBLE WITH THE LOAD UTILITY
                         UTILID = ABCDEFG, OBJECT = ZZZZZZZZ
 DSNUGBAC - UTILITY EXECUTION TERMINATED, HIGHEST RETURN CODE=8



Im trying to load a db2 table by submitting 2 jobs simultaneously. The sysin im using is given below:

Code:

   LOAD DATA
     RESUME YES
     LOG NO NOCOPYPEND
     INTO TABLE MY_TABLE PART 01
     INDDN      INPUT01
     DISCARDDN  DISCR01
   (
    ..field 1
    ..field 2
    ..field 3
   )
     INTO TABLE MY_TABLE PART 02
     INDDN      INPUT02
     DISCARDDN  DISCR02
   (
    ..field 1
    ..field 2
    ..field 3
   )
     INTO TABLE MY_TABLE PART 03
     INDDN      INPUT02
     DISCARDDN  DISCR02
   (
    ..field 1
    ..field 2
    ..field 3
   )
     INTO TABLE MY_TABLE PART 04
     INDDN      INPUT02
     DISCARDDN  DISCR02
   (
    ..field 1
    ..field 2
    ..field 3
   )
     INTO TABLE MY_TABLE PART 05
     INDDN      INPUT02
     DISCARDDN  DISCR02
   (
    ..field 1
    ..field 2
    ..field 3
   )


My second job loads data to partitions 6-10.

When submitted simultaneously, one of the job will abend with error utility not compatible.

Im using different UTIL ID for both both jobs.

Ive seen some post regarding this error in this forum and tried the suggested fix but it did not fix my error.

Thank you
Back to top
View user's profile Send private message
sushanth bobby

Senior Member


Joined: 29 Jul 2008
Posts: 1020
Location: India

PostPosted: Tue Dec 28, 2010 9:00 pm
Reply with quote

Sprikitik,

Quote:
Placing the RESUME YES option before the PART option inhibits concurrent partition processing while the utility is running.


Try this and let us know.....
Code:
MY_TABLE PART 01 RESUME YES




Sushanth
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 Error to read log with rexx CLIST & REXX 11
No new posts Load new table with Old unload - DB2 DB2 6
No new posts Error when install DB2 DB2 2
No new posts Pulling a fixed number of records fro... DB2 2
No new posts CLIST - Virtual storage allocation error CLIST & REXX 5
Search our Forums:

Back to Top