M204.0790: Difference between revisions

From m204wiki
Jump to navigation Jump to search
(Automatically generated page update)
 
m (add <var>'s)
 
Line 1: Line 1:
{{Template:M204.0790 skeleton}}
{{Template:M204.0790 skeleton}}
<P>
<P>
The total number of records possible in Table B exceeds 342 segments for files that do not have the FILEORG X'200' bit set, and it exceeds 1024 segments for files that have the FILEORG X'200' bit set. The number of potential record
The total number of records possible in Table B exceeds 342 segments for files that do not have the <var>FILEORG</var> X'200' bit set, and it exceeds 1024 segments for files that have the <var>FILEORG</var> X'200' bit set. The number of potential record numbers per segment is 49,152. </P>
numbers per segment is 49,152. </P>
<P>
<P>
The number of possible segments in Table B is calculated by the following formula: </P>
The number of possible segments in Table B is calculated by the following formula: </P>
Line 10: Line 9:
If the result exceeds 342 or 1024, respectively, too many segments result and Model&nbsp;204 rejects the [[Creating a file#CREATE command|CREATE command]]. </P>
If the result exceeds 342 or 1024, respectively, too many segments result and Model&nbsp;204 rejects the [[Creating a file#CREATE command|CREATE command]]. </P>
<p>
<p>
<b>File manager response:</b> Make the file smaller (by specifying a smaller BSIZE or smaller BRECPPG), or divide the file into smaller pieces and use the file group feature to process them as a single logical file. </p>
<b>File manager response:</b> Make the file smaller (by specifying a smaller <var>BSIZE</var> or smaller <var>BRECPPG</var>), or divide the file into smaller pieces and use the file group feature to process them as a single logical file.  
</p>
{{Template:M204.0790 footer}}
{{Template:M204.0790 footer}}
<!-- skeleton as it was in pdf/FILE TOO BIG /-->
<!-- skeleton as it was in pdf/FILE TOO BIG /-->

Latest revision as of 00:26, 2 March 2018

M204.0790  File too big

The total number of records possible in Table B exceeds 342 segments for files that do not have the FILEORG X'200' bit set, and it exceeds 1024 segments for files that have the FILEORG X'200' bit set. The number of potential record numbers per segment is 49,152.

The number of possible segments in Table B is calculated by the following formula:

((BSIZE * BRECPPG) / 49,152)) + (1 if remainder not 0)

If the result exceeds 342 or 1024, respectively, too many segments result and Model 204 rejects the CREATE command.

File manager response: Make the file smaller (by specifying a smaller BSIZE or smaller BRECPPG), or divide the file into smaller pieces and use the file group feature to process them as a single logical file.

Message attributes:

RETCODEO=0Sets online return code
RETCODEB=4Sets batch (single user) return code
CLASS=EError class; the message can be suppressed with the X'04' bit setting of the MSGCTL parameter
AUDITERWrites the message with line type ER to the audit trail
COUNTIncrements the error count (ERCNT) parameter

Back to list of messages