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

DSNTIAR return code 8


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

New User


Joined: 01 Mar 2008
Posts: 49
Location: kolkata

PostPosted: Tue Jun 10, 2014 7:02 pm
Reply with quote

To format SQLCA we are using dsntiar utility but getting return code 8. Google says ..return code 8 means "error record length is not between 72 and 240 "
Can anyone please explain when this error comes ?
Back to top
View user's profile Send private message
Rohit Umarjikar

Global Moderator


Joined: 21 Sep 2010
Posts: 3051
Location: NYC,USA

PostPosted: Tue Jun 10, 2014 7:55 pm
Reply with quote

A little more Google/forum search could give you the answer for the error.

ibmmainframes.com/about32378.html

Please see if that helps or post your variable declarations for this.
Back to top
View user's profile Send private message
Anuj Dhawan

Superior Member


Joined: 22 Apr 2006
Posts: 6250
Location: Mumbai, India

PostPosted: Wed Jun 11, 2014 4:56 pm
Reply with quote

DSNTIAR expects the SQLCA to be in a certain format. If your application modifies the SQLCA format before you call DSNTIAR, the results, as IBM says, are unpredictable. So first check that.

Second, in your program, you should define a message area something like this:

Code:
         01  ERR-MESSAGE.
                 02  ERR-LENGTH   PIC S9(4)  COMP VALUE +720.
                 02  ERR-TEXT  PIC X(72)  OCCURS 10 TIMES
                                            INDEXED BY ERR-INDEX.
         77  ERR-TEXT-LENGTH      PIC S9(9)  COMP VALUE +72.

This assumes - you want an area for up to 10 lines of length 72. With this in mind , you should define an area of 720 bytes, plus a 2-byte area that specifies the length of the message output area. If your program does not comply with these, well you've a trouble.
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 run rexx code with jcl CLIST & REXX 15
No new posts Compile rexx code with jcl CLIST & REXX 6
No new posts Return codes-Normal & Abnormal te... JCL & VSAM 7
No new posts REXX code to expand copybook in a cob... CLIST & REXX 2
No new posts VSAM return code 23 - for a Random read COBOL Programming 4
Search our Forums:

Back to Top