ALLBASE/SQL Error Messages (Continued) [ ALLBASE/SQL Message Manual ] MPE/iX 5.5 Documentation
ALLBASE/SQL Message Manual
ALLBASE/SQL Error Messages (Continued)
11020 MESSAGE Unexpected internal error. (DBERR 11020)
CAUSE An unexpected internal error was detected.
ACTION Record as much information as possible and contact
your HP Service Representative or Response Center.
----------------------------------------------------------------------------
11021 MESSAGE Statement not supported when dynamic-only option
is specified. (DBERR 11021)
CAUSE You specified an SQL statement which is not
supported when preprocessing with the dynamic-only
option.
ACTION Modify the SQL statement, or perform preprocessing
without the dynamic-only option.
----------------------------------------------------------------------------
11022 MESSAGE Statement supported only when dynamic-only option
is specified. (DBERR 11022)
CAUSE You specified an SQL statement which is supported
only when preprocessing with the dynamic-only
option.
ACTION Modify the SQL statement, or perform preprocessing
with the dynamic-only option.
----------------------------------------------------------------------------
11023 MESSAGE Host variable declaration larger than maximum DBE
name length. (DBERR 11023)
CAUSE You specified a host variable with a declared
length greater than the maximum DBEnvironment name
length.
ACTION Specify a host variable with a declared length less
than or equal to the maximum DBEnvironment name
length. Consult the ALLBASE/SQL Reference Manual
for the maximum DBEnvironment name length.
----------------------------------------------------------------------------
11024 MESSAGE Host variable declaration too large for this
usage. (DBERR 11024)
CAUSE You specified a host variable with a declared
length greater than the maximum allowed length.
ACTION Specify a host variable with a declared length less
than or equal to the maximum allowed length.
Consult the ALLBASE/SQL Reference Manual for the
maximum allowed length.
----------------------------------------------------------------------------
11025 MESSAGE Character string too large for this usage.
(DBERR 11025)
CAUSE You specified a character string which is longer
than the maximum allowed length.
ACTION Specify a character string which is less than or
equal to the maximum allowed length. Consult the
ALLBASE/SQL Reference Manual for the maximum
allowed length.
----------------------------------------------------------------------------
11026 MESSAGE DYNAMIC option may be specified only once.
(DBERR 11026)
CAUSE The preprocessor was invoked with the DYNAMIC
option specified more than once in the command
line.
ACTION Invoke the preprocessor specifying the DYNAMIC
option only once.
----------------------------------------------------------------------------
11028 MESSAGE DBEnvironment name not allowed for DYNAMIC
preprocessing. (DBERR 11028)
CAUSE You specified a DBEnvironment name when invoking
the preprocessor with the DYNAMIC option.
ACTION Omit the DBEnvironment name when invoking the
preprocessor with the DYNAMIC option.
----------------------------------------------------------------------------
11200 MESSAGE No ending END-EXEC before end of file. (DBERR
11200)
CAUSE SQLIN contains an SQL statement that is preceded by
EXEC SQL but is not followed by END-EXEC.
ACTION Insert END-EXEC in the appropriate location in
SQLIN and process SQLIN again.
----------------------------------------------------------------------------
11201 MESSAGE Missing or incorrect PROGRAM-ID paragraph.
(DBERR 11201)
CAUSE The preprocessor did not find a PROGRAM-ID in
SQLIN.
ACTION Insert a PROGRAM-ID label in SQLIN or check your
spelling on the existing label and re-preprocess
your program.
----------------------------------------------------------------------------
11202 MESSAGE Host variable must have USAGE COMPUTATIONAL.
(DBERR 11202)
CAUSE The declaration for the StartIndex or NumberOfRows
value in a BULK command is invalid.
ACTION Declare the host variable as PIC S9(4) or PIC S9(9)
and re-preprocess your program.
----------------------------------------------------------------------------
11203 MESSAGE Host variable must not be a table. (DBERR 11203)
CAUSE You specified a host variable name in an SQL
statement that is declared as a table but should be
declared as an elementary data item.
ACTION Correct the host variable declaration and
re-preprocess your program.
----------------------------------------------------------------------------
11204 MESSAGE Host variable must be a one-dimensional table.
(DBERR 11204)
CAUSE The declaration of the first host variable you
named in the INTO clause of a BULK SELECT, BULK
FETCH, or BULK INSERT statement is invalid.
ACTION Declare the host variable as follows, and use the
ARRAY-NAME in the INTO clause:
01 ARRAY-NAME.
05 ROW-NAME OCCURS n TIMES.
10 COLUMN1-NAME Valid data clause.
.
.
.
10 COLUMNn-NAME Valid data clause.
----------------------------------------------------------------------------
11206 MESSAGE Syntax error in COPY statement. (DBERR 11206)
CAUSE A syntax error was encountered in a COBOL COPY
statement.
ACTION Verify that the COPY statement follows conventions
specified in the HP COBOL II/XL Reference Manual.
----------------------------------------------------------------------------
11207 MESSAGE Syntax error in REPLACE statement. (DBERR 11207)
CAUSE A syntax error was encountered in a COBOL REPLACE
statement.
ACTION Verify that the REPLACE statement follows
conventions specified in the HP COBOL II/XL
Reference Manual.
----------------------------------------------------------------------------
11208 MESSAGE COPY not allowed within another COPY statement.
(DBERR 11208)
CAUSE The keyword COPY was encountered within another
COPY statement. COPY is a keyword which can only
be used to specify the start of a COPY statement.
ACTION Terminate previous COPY statement before beginning
another COPY statement. Verify that the COPY
statement follows conventions specified in the HP
COBOL II/XL Reference Manual.
----------------------------------------------------------------------------
11209 MESSAGE Copy file open error. (DBERR 11209)
CAUSE A system error was encountered while attempting to
open the specified copy file.
ACTION Check the spelling of the copy file. Verify that
the specified copy file exists. Verify that the
specified group and account exist. Verify that
appropriate read privileges exist for the specified
copy file.
----------------------------------------------------------------------------
11210 MESSAGE Statement not properly terminated; period
expected. (DBERR 11210)
CAUSE A terminating period for a COBOL statement was
expected but not found.
ACTION Verify that the COBOL statement follows conventions
specified in the HP COBOL II/XL Reference Manual.
----------------------------------------------------------------------------
11211 MESSAGE MESSAGE: No ending '==' before end of line.
(DBERR 11211)
CAUSE A REPLACE/REPLACING parameter literal was not
properly terminated before the end of the line or
end of the file. No ending '==' was found to match
a beginning '==' literal delimiter.
ACTION Verify that the REPLACE/REPLACING parameter literal
is terminated by a '==' on the same line as the
beginning '==' literal delimiter. If the parameter
literal is longer than a single line, verify that
the line is properly continued following
conventions specified in the HP COBOL II/XL
Reference Manual.
----------------------------------------------------------------------------
11212 MESSAGE Error in continuation of parameter. (DBERR
11212)
CAUSE A REPLACE/REPLACING parameter literal was not
properly continued on the following line.
ACTION Verify that the REPLACE/REPLACING parameter literal
is continued following conventions specified in the
HP COBOL II/XL Reference Manual.
----------------------------------------------------------------------------
11213 MESSAGE Too many characters. (DBERR 11213)
CAUSE The copy file specification exceeds the allowed
maximum number of characters.
ACTION Change the copy file specification so that it does
not exceed the maximum number of characters for a
valid file name.
----------------------------------------------------------------------------
11300 MESSAGE Illegal continuation line, ignored. (DBERR
11300)
CAUSE The statement contains an illegal continuation
character. The current line is ignored.
ACTION Specify a valid continuation character in the
source file.
----------------------------------------------------------------------------
11301 MESSAGE Statement too long for FORTRAN. (DBERR 11301)
CAUSE Your FORTRAN statement included more than the
maximum number of continuation lines allowable.
ACTION Modify your FORTRAN statement to include no more
than 19 continuation lines (20 lines if you add an
initial line) and re-preprocess your program.
----------------------------------------------------------------------------
11400 MESSAGE Type must be array [1..n] of record. (DBERR
11400)
CAUSE Your BULK command did not contain the required host
variable type.
ACTION Refer to the ALLBASE/SQL Pascal Application
Programming Guide for additional information on
host variables.
----------------------------------------------------------------------------
11500 MESSAGE Type must be a structure array. (DBERR 11500)
CAUSE The host variable used in your bulk command was not
a structure array.
ACTION Modify the DECLARE section of your program so that
the host variable is a structure array.
----------------------------------------------------------------------------
11502 MESSAGE The host variable must be an array of CHAR.
(DBERR 11502)
CAUSE The host variable you specified in the DECLARE
section of your program was not an array of char.
ACTION Modify the DECLARE section of your program so that
the host variable is a char array.
----------------------------------------------------------------------------
11503 MESSAGE Illegal host variable array type. (DBERR 11503)
CAUSE The host variable array you specified in the
DECLARE section of your program was not a char type
or a structure.
ACTION Modify the DECLARE section and re-preprocess your
program.
----------------------------------------------------------------------------
11504 MESSAGE Illegal type for structure field. (DBERR 11504)
CAUSE The host variable you specified in the DECLARE
section of your program had an invalid field type.
ACTION Modify the DECLARE section of your program
specifying a valid field type.
----------------------------------------------------------------------------
11506 MESSAGE Label must start with alphabetic character.
(DBERR 11506)
CAUSE A label in a WHENEVER statement started with a
number or some other non-alphabetic character.
ACTION Change the label to start with an alphabetic
character.
----------------------------------------------------------------------------
11507 MESSAGE Nested structures disallowed in host variables.
(DBERR 11507)
CAUSE A host variable was declared in the DECLARE section
as a structure with a structure as one of its
fields.
ACTION Modify the DECLARE section and re-preprocess your
program.
----------------------------------------------------------------------------
11508 MESSAGE The host variable must be an array type with
minimum size 1. (DBERR 11508)
CAUSE You specified a host variable for sqlvarbinary
without an array specification or with an array
size less than 1.
ACTION Specify the sqlvarbinary host variable with an
array size greater than zero.
----------------------------------------------------------------------------
13130 MESSAGE User does not have authority to wrap DBE. (DBERR
13130)
CAUSE You are not the creator of the original
DBEnvironment or the superuser (HP-UX) or a system
administrator (MPE/iX).
ACTION Only the original DBEnvironment creator or
superuser (HP-UX) or system administrator (MPE/iX)
can use the WRAPDBE command.
----------------------------------------------------------------------------
13131 MESSAGE Log file list contains non-existing log file.
(DBERR 13131)
CAUSE You specified a log file(s) that could not be found
or opened on the system.
ACTION Check the list of log files specified and determine
if they are actually on the system. If so, check
the security on the log files.
----------------------------------------------------------------------------
MPE/iX 5.5 Documentation