ALLBASE/SQL Error Messages (Continued) [ ALLBASE/SQL Message Manual ] MPE/iX 5.5 Documentation
ALLBASE/SQL Message Manual
ALLBASE/SQL Error Messages (Continued)
80 MESSAGE Cannot continue - out of JCW space. (DBERR 80)
CAUSE The JCW space is overloaded.
ACTION Contact your system administrator.
----------------------------------------------------------------------------
81 MESSAGE File is not in INTERNAL format. (DBERR 81)
CAUSE The input file name you specified in the LOAD
command was not unloaded with the INTERNAL option
or
the file name you specified does not exist or was
entered incorrectly.
ACTION Issue the LOAD command again, specifying the
EXTERNAL option
or
check your spelling. Use the MPE/iX LISTF command
to make sure that the specified file exists.
----------------------------------------------------------------------------
82 MESSAGE Unidentified error ! occurred on last command.
(DBERR 82)
CAUSE Internal error.
ACTION Record as much information as possible and contact
your HP Service Representative or Response Center.
----------------------------------------------------------------------------
83 MESSAGE Command buffer cannot be executed from command
buffer. (DBERR 83)
CAUSE The command buffer contains a START command to
execute the command buffer. The command buffer can
start a command file, but cannot start itself
recursively.
ACTION Remove the START command to execute the command
buffer from the command buffer. The CHANGE command
may be used to make this modification. Refer to
the ISQL Reference Manual for ALLBASE/SQL and
IMAGE/SQL for additional information on the START
command.
----------------------------------------------------------------------------
84 MESSAGE New command exceeds maximum. (DBERR 84)
CAUSE The maximum limit of 2048 bytes was exceeded when
you used the insert subcommand of the REDO command.
ACTION Issue the command again, so that the total number
of bytes in the command is less than or equal to
2048.
----------------------------------------------------------------------------
85 MESSAGE Bad bytes after delete command. (DBERR 85)
CAUSE You entered an invalid option after the delete
subcommand of the REDO command.
ACTION Issue the command again, specifying only valid
options after the delete subcommand. Refer to the
ISQL Reference Manual for ALLBASE/SQL and IMAGE/SQL
for valid options and additional information on the
REDO command.
----------------------------------------------------------------------------
86 MESSAGE Extra bytes. (DBERR 86)
CAUSE The bytes that you entered after the i, h, x, b, or
e subcommands of the REDO command are invalid.
ACTION Issue the REDO command again. Refer to the ISQL
Reference Manual for ALLBASE/SQL and IMAGE/SQL for
additional information on the REDO command.
----------------------------------------------------------------------------
87 MESSAGE Must break line - too long. (DBERR 87)
CAUSE The bytes you added to the command using the insert
subcommand of the REDO command caused the line to
be greater than the maximum limit of 80 bytes.
ACTION Use the break subcommand before using the insert
subcommand again. Refer to the ISQL Reference
Manual for ALLBASE/SQL and IMAGE/SQL for additional
information on the REDO command.
----------------------------------------------------------------------------
88 MESSAGE No plus or minus sign. (DBERR 88)
CAUSE You used more than one + or - sign in the same line
in the REDO command.
ACTION If you want to go forward or backward more than one
line, use the +n or -n subcommand (where n is an
integer). Refer to the ISQL Reference Manual for
ALLBASE/SQL and IMAGE/SQL for additional
information on the REDO command.
----------------------------------------------------------------------------
89 MESSAGE No command to edit. (DBERR 89)
CAUSE You attempted to execute a REDO command when the
command history buffer was empty.
ACTION No action is necessary.
----------------------------------------------------------------------------
90 MESSAGE Redo not allowed in command buffer/command file -
ignored. (DBERR 90)
CAUSE You included a REDO command in either the command
buffer or command file.
ACTION Remove the REDO command and execute the command
buffer or command file again.
----------------------------------------------------------------------------
91 MESSAGE Problem opening installation file. (DBERR 91)
CAUSE Internal error.
ACTION Record the file system error code returned and as
much information as possible. Contact your HP
Service Representative or Response Center.
----------------------------------------------------------------------------
92 MESSAGE Problem reading from installation file. Code =
!. (DBERR 92)
CAUSE The installation file you specified did not contain
a module. No module was generated for the
preprocessed application.
ACTION No action is necessary. An installation was not
required to run this application.
----------------------------------------------------------------------------
93 MESSAGE Empty installation file. (DBERR 93)
CAUSE The installation file you specified is empty.
ACTION No action is necessary.
----------------------------------------------------------------------------
94 MESSAGE Installation stopped due to error. (DBERR 94)
CAUSE The file name you specified in the INSTALL command
was not a valid file name
or
the file you specified is currently being accessed
by another user.
ACTION Issue the command again, specifying a valid file
name
or
wait until the file is not being accessed before
issuing the command again.
----------------------------------------------------------------------------
95 MESSAGE File is not an installation file or it is
corrupted. (DBERR 95)
CAUSE The name of the file you specified in the ISQL
INSTALL command was not an installation file
or
the installation file is corrupted.
ACTION Correct the file name and issue the INSTALL command
again
or
regenerate the installation file by
re-preprocessing the application.
----------------------------------------------------------------------------
96 MESSAGE Host variables or dynamic parameters not allowed
through ISQL. (DBERR 96)
CAUSE The command you submitted through ISQL contains a
host variable or a dynamic parameter.
ACTION Substitute a constant value or column name for the
host variable or dynamic parameter. If you need to
use variables or dynamic parameters in SQL
statements, you must do so via an application
program. Refer to the appropriate ALLBASE/SQL
application programming guide for additional
information.
----------------------------------------------------------------------------
97 MESSAGE Cannot continue with SELECT. (DBERR 97)
CAUSE An error occurred which caused the SELECT statement
to terminate. An additional message will be
returned.
ACTION Refer to the cause and action of the additional
error message.
----------------------------------------------------------------------------
150 MESSAGE Invalid character for null indicator. (DBERR
150)
CAUSE The character you specified for the null indicator
in the LOAD or UNLOAD EXTERNAL command was invalid.
ACTION Issue the command again, specifying any single
one-byte character for the null indicator except a
single quote, double quote, semi-colon, blank, or
the current escape character.
----------------------------------------------------------------------------
151 MESSAGE File created with different product or version,
or not an INTERNAL file. (DBERR 151)
CAUSE The input file you specified in the LOAD command
was created from a different product or a different
version of ISQL
or
the file was UNLOADed using the EXTERNAL option.
ACTION UNLOAD the data to create a file from the current
version specifying the INTERNAL option and issue
the LOAD command again
or
issue the LOAD command again, specifying the
EXTERNAL option.
----------------------------------------------------------------------------
152 MESSAGE INSTALL file created with different product or
version. (DBERR 152)
CAUSE The file you specified in the INSTALL command was
created from a different product or different
version of the preprocessor you are using.
ACTION Re-preprocess your program to create an installable
module file from the current version, then issue
the INSTALL command again.
----------------------------------------------------------------------------
175 MESSAGE EXECUTE IMMEDIATE cannot be used for !. (DBERR
175)
CAUSE You cannot dynamically preprocess the specified
command.
ACTION Re-submit the command without using the EXECUTE
IMMEDIATE statement to host it. Refer to the
ALLBASE/SQL Reference Manual for a list of
statements that can be executed using EXECUTE
IMMEDIATE.
----------------------------------------------------------------------------
176 MESSAGE ! cannot be used interactively. (DBERR 176)
CAUSE The command you specified can only be used in an
application program.
ACTION Refer to the ALLBASE/SQL Reference Manual for
additional information on the specified command.
----------------------------------------------------------------------------
177 MESSAGE SELECT cannot be preprocessed interactively with
PREPARE. (DBERR 177)
CAUSE You tried to PREPARE a SELECT statement
interactively.
ACTION You can either PREPARE a SELECT programmatically or
issue the SELECT statement directly or in a command
file. Refer to the ISQL Reference Manual for
ALLBASE/SQL and IMAGE/SQL for additional
information.
----------------------------------------------------------------------------
193 MESSAGE Number of nested start files exceeds maximum.
(DBERR 193)
CAUSE There are more than ten levels of nesting of
command files. This error may result from an
unintended recursive START command. A maximum of
ten command files can be in use at one time.
ACTION Rewrite your command files so that there are ten or
fewer levels of nesting. Remove any recursive
START commands.
----------------------------------------------------------------------------
201 MESSAGE Invalid starting row. (DBERR 201)
CAUSE The value you specified for the starting row is not
a positive integer.
ACTION Issue the LOAD command again, specifying a positive
integer.
----------------------------------------------------------------------------
202 MESSAGE Invalid number of rows. (DBERR 202)
CAUSE The number of rows you specified is not a positive
integer.
ACTION Issue the LOAD command again, specifying a positive
integer for the starting row.
----------------------------------------------------------------------------
211 MESSAGE Failed to free heap space. (DBERR 211)
CAUSE Internal error.
ACTION Report this error to your database administrator.
If the problem persists, record as much information
as possible and contact your HP Service
Representative or Response Center.
----------------------------------------------------------------------------
212 MESSAGE Failed to get heap space. (DBERR 212)
CAUSE There was no memory available for your query.
ACTION Report this error to your database administrator
and try your query later. If this problem
persists, record as much information as possible
and contact your HP Service Representative or
Response Center.
----------------------------------------------------------------------------
213 MESSAGE Insufficient file space on disc(s). (DBERR 213)
CAUSE There is not enough file space on the disk(s) to
complete the transaction.
ACTION Contact your system administrator.
----------------------------------------------------------------------------
214 MESSAGE Account does not exist. (DBERR 214)
CAUSE The account name you specified does not exist.
ACTION Check your spelling. If you still receive this
error, ask your system administrator to verify the
account name, then issue the command again,
specifying a valid account name.
----------------------------------------------------------------------------
215 MESSAGE Group does not exist. (DBERR 215)
CAUSE The group name you specified does not exist.
ACTION Check your spelling. Use the MPE/iX LISTGROUP
command to verify the group name, then issue your
SQL command again, specifying a valid group name.
----------------------------------------------------------------------------
MPE/iX 5.5 Documentation