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

S0C4 error while trying to unload the data from imgcopy file


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

New User


Joined: 07 Aug 2007
Posts: 27
Location: chennai

PostPosted: Fri Dec 02, 2011 4:26 pm
Reply with quote

Hi all,

I am getting S0C4-X'11' (Page-Translation Exception) - ABENDU1017 error while trying to unload the data from imgcopy dataset.

I am using
Code:

//STEP10    EXEC PGM=INZUTILB,
//            PARM=(DBXX,UNLDMODEL1)
//STEPLIB   DD DSN=DBXX.HPXX.INZLINK,
//             DISP=SHR
//          DD DSN=DBXX.DSNEXIT,
//             DISP=SHR
//          DD DSN=DBXX.DSNLOAD,
//             DISP=SHR
//UTPRINT   DD SYSOUT=*
//SYSPRINT  DD SYSOUT=*
//SYSUDUMP  DD SYSOUT=*
//*
//COPYDD    DD DSN=XXX.Dataset,
//             DISP=SHR
//*
//SYSREC00  DD DSN=XXX.data,
//             DISP=(,CATLG,DELETE),
//             UNIT=SYSDA,SPACE=(CYL,(1500,1000),RLSE)
//SYSPUNCH  DD DSN=XXX.punch,
//             UNIT=SYSDA,DISP=(NEW,CATLG,DELETE),SPACE=(TRK,(1,1))
//SYSTSPRT  DD SYSOUT=*
//SYSIN     DD *
      UNLOAD TABLESPACE
      DB2 NO
      LOCK NO
      COPYDDN COPYDD

      SELECT *
      FROM TABLE NAME
      OUTDDN (SYSREC00)
      FORMAT DSNTIAUL
      LOADDDN (SYSPUNCH)
//*


Using the same JCL i am able to get data from recent version of imgcopy dataset, but when i use the 6 month old imgcopy files. i m getting this error..

I got the below explanation for the above error from GOOGLE.

Code:
Page-translation exception. This error is caused by
              one of the following:                             
                                                                 
              A program that was running disabled attempted to   
              reference storage while that storage was paged     
              out. To correct the error, page-fix the storage   
              before a program running disabled attempts to     
              reference it.                                     
                                                                 
              A program attempted to reference storage that had
              not been obtained. To correct the error, allocate
              the storage before attempting to reference it.     
                                                                 
              A program running in a subspace attempted to       
              reference storage that was not accessible to the   
              subspace at the time of error. To correct the     
              error, ensure that the program running in a subspace     
              references only the storage assigned to   that subspace, or storage that can be referenced
 by all subspaces.                     



I have tried to run the JCL by increasing the SPACE and REGION parameter . but it is of no use

It would be great, if anybody could let me know the cause of this issue and how to solve it ?

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

Senior Member


Joined: 29 Jul 2008
Posts: 1020
Location: India

PostPosted: Fri Dec 02, 2011 4:40 pm
Reply with quote

Thilakvs,

Can you show us the actual error details in SYSPRINT.

Is the table structure different in imagecopy, when compared to the current ?

Regards,
Sushanth
Back to top
View user's profile Send private message
thilakvs
Warnings : 1

New User


Joined: 07 Aug 2007
Posts: 27
Location: chennai

PostPosted: Fri Dec 02, 2011 5:31 pm
Reply with quote

SYSIN display
Code:

INZU380I INFORMATION : DEFAULT OUTPUT FORMAT IS SET TO DSNTIAUL
         DUE TO PARMLIB PARAMETER VUU045/ULFORMAT
INZU010I ITEM STARTING AT (4,7) ENDING AT (4,15)
INZU130I CHECK FAILED FOR THE FIC FOR XXX.YYY, DEFAULT VALUE WAS TAKEN

-------------------------------------------------------------------------------
INZU281I - UNLOAD STARTING AT POS(1, 7)

INZU277I - PROCESSING UNLOAD 00001 FROM TABLESPACE XXX.YYY
INZU290I   TABLESPACE UNLOADED FROM IMAGE COPY
           INPUT DDNAME=COPYDD
INZU279I - SELECT STATEMENTS USING SINGLE TABLE SPECIFICATION
INZU280I - SELECT 00001 STARTING AT POS(6, 7)
INZU282I   OUTPUT DDNAME=SYSREC00
INZU180I UTPRINT DD CARD IN JCL IS NOT USED WHEN VUX020/SORTCLAS IS SPECIFIED IN THE PARMLIB



2. Columns are same but the order has been changed.
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 How to split large record length file... DFSORT/ICETOOL 10
No new posts Error to read log with rexx CLIST & REXX 11
No new posts Extracting Variable decimal numbers f... DFSORT/ICETOOL 17
No new posts Load new table with Old unload - DB2 DB2 6
No new posts Error when install DB2 DB2 2
Search our Forums:

Back to Top