SQL Messages and Codes (7.2)
SQL Messages and Codes (7.2)
SQL Messages and Codes (7.2)
Version 7.2
Database
SQL messages and codes
IBM
IBM i
Version 7.2
Database
SQL messages and codes
IBM
Note
Before using this information and the product it supports, read the information in “Notices” on page 255.
This document may contain references to Licensed Internal Code. Licensed Internal Code is Machine Code and is
licensed to you under the terms of the IBM License Agreement for Machine Code.
© Copyright IBM Corporation 2001, 2013.
US Government Users Restricted Rights – Use, duplication or disclosure restricted by GSA ADP Schedule Contract
with IBM Corp.
Contents
SQL messages and codes . . . . . . . 1 Listing of SQL messages . . . . . . . . . . 28
What's new for IBM i 7.2 . . . . . . . . . . 1
PDF file for SQL messages and codes . . . . . . 1 Notices . . . . . . . . . . . . . . 255
SQLCODE and SQLSTATE concepts . . . . . . 1 Trademarks . . . . . . . . . . . . . . 256
Listing of SQLSTATE class codes . . . . . . . 3 Terms and conditions. . . . . . . . . . . 256
Listing of SQLSTATE values . . . . . . . . . 4
SQL message concepts . . . . . . . . . . . 28
Note: By using the code examples, you agree to the terms of the “Code license and disclaimer
information” on page 253.
Several additions were made to the “Listing of SQLSTATE values” on page 4 and the Listing of SQL
messages.
In PDF files, you might see revision bars (|) in the left margin of new and changed information.
To find other information about what's new or changed this release, see the Memo to users.
To view or download the PDF version of this document, select SQL messages and codes.
You need Adobe Reader installed on your system to view or print these PDFs. You can download a free
copy from the Adobe Web site (http://get.adobe.com/reader/) .
SQLCODE
An SQLCODE is a return code. The return code is sent by the database manager after completion of each
SQL statement.
Each SQLCODE that is recognized by a Db2 for i application server has a corresponding message in the
message file QSQLMSG. The message identifier for any SQLCODE is constructed by appending the
absolute value (5 digits) of the SQLCODE to SQ and changing the third character to L if the first
character of the SQLCODE is 0. For example, if the SQLCODE is 30070, the message identifier is
SQ30070. If the SQLCODE is -0204, the message identifier is SQL0204. Lastly, if the SQLCODE is a 3-digit
positive number, a zero is added before the first digit. For example, if the SQLCODE is 551, the message
identifier is SQL0551.
SQLSTATE
SQLSTATE provides application programs with common return codes for success, warning, and error
conditions that are found among the DB2 products. SQLSTATE values are particularly useful when
handling errors in distributed SQL applications. SQLSTATE values are consistent with the SQLSTATE
specifications that are contained in the SQL 1999 standard.
An SQLSTATE value is a return code that indicates the outcome of the most recently executed SQL
statement. The mechanism used to access SQLSTATE values depends on where the SQL statement is
executed. In Java™, SQLSTATE values are returned by using the getSQLState() method. In SQL functions,
SQL procedures, SQL triggers, and embedded applications other than Java, SQLSTATE values are
returned in the following ways:
v The last five bytes of the SQLCA
v A stand-alone SQLSTATE variable
v The GET DIAGNOSTICS statement
SQLSTATE values are designed so that application programs can test for specific conditions or classes of
conditions.
SQLSTATE values are comprised of a two-character class code value, followed by a three-character
subclass code value. Class code values represent classes of successful and unsuccessful completion
conditions. If you want to use SQLSTATE as the basis of your application's return codes, you can define
your own SQLSTATE classes or subclasses using the following guidelines:
v SQLSTATE classes that begin with the characters 7 through 9 or I through Z can be defined. Within
these classes, any subclass can be defined.
v SQLSTATE classes that begin with the characters 0 through 6 or A through H are reserved for the
database manager. Within these classes, subclasses that begin with the characters 0 through H are
reserved for the database manager. Subclasses that begin with the characters I through Z can be
defined.
The class code of an SQLSTATE value indicates whether the SQL statement was executed successfully
(class codes 00 and 01) or unsuccessfully (all other class codes).
SQLSTATE is related to SQLCODE. Every SQLSTATE has one or more SQLCODEs associated with it. An
SQLSTATE can refer to more than one SQLCODE.
When an SQLSTATE other than 00000 is returned from an application server that is not Db2 for i, Db2 for
i attempts to map the SQLSTATE to a Db2 for i SQLCODE and message with the following results:
v If the SQLSTATE is not recognized by Db2 for i, the common message for the class is issued.
v If the SQLSTATE and SQLCODE correspond to a single Db2 for i SQLCODE, Db2 for i attempts to
convert the returned tokens into the replacement data that the SQL message expects. If an error occurs
while converting the tokens, the following results occur:
– The tokens are returned without conversion in the SQLERRM field of the SQLCA or in the SQL
diagnostics area.
– A common message for the class code of the SQLSTATE is issued.
Related reference:
“Listing of SQLSTATE class codes”
This table provides a list of general SQLSTATE classes. Each class links to a list of the more specific
SQLSTATE codes that comprise that class.
“Listing of SQLSTATE values” on page 4
The tables in this topic provide descriptions of SQLSTATE codes that can be returned to applications by
DB2 for i. The tables include SQLSTATE values, their meanings, and their corresponding SQLCODE
values.
SQL message finder
Table 11. Class Code 0K: Resignal When Handler Not Active
SQLSTATE
Value Meaning SQLCODE Values
0K000 A RESIGNAL was issued but a handler is not active. -787
Table 13. Class Code 0W: Prohibited Statement Encountered During Trigger
SQLSTATE
Value Meaning SQLCODE Values
0W000 The statement is not allowed in a trigger. -751
Table 16. Class Code 20: Case Not Found for Case Statement
SQLSTATE
Value Meaning SQLCODE Values
20000 The case was not found for the CASE statement. -773
Table 36. Class Code 42: Syntax Error or Access Rule Violation
SQLSTATE
Value Meaning SQLCODE Values
42501 The authorization ID does not have the privilege to perform the specified -551
operation on the identified object.
42502 The authorization ID does not have the privilege to perform the operation as -552, -20379
specified.
42506 Owner authorization failure occurred. -30053
42601 A character, token, or clause is invalid or missing. -007, -011, -029, -097,
-104, -109, -115, -128,
-172, -199, -441, -491
42602 A character that is invalid in a name has been detected. -113, -251, -567
42603 An unterminated string constant has been detected. -010
42604 An invalid numeric or string constant has been detected. -103, -105
42605 The number of arguments specified for a scalar function is invalid. -170
42606 An invalid hexadecimal constant has been detected. -110
42607 An operand of an aggregate function or CONCAT operator is invalid. -112
42608 The use of NULL or DEFAULT in VALUES or an assignment statement is -584
invalid.
42609 All operands of an operator or predicate are parameter markers. -417
42610 A parameter marker or the null value is not allowed. -184, -418
42611 The column, argument, parameter, or global variable definition is invalid. -106, -604, -4903,
-4905, -4917
42612 The statement string is an SQL statement that is not acceptable in the context -084, -142
in which it is presented.
42613 Clauses are mutually exclusive. -628
42614 A duplicate keyword or clause is invalid. -637
42615 An invalid alternative was detected. -644
42616 Invalid options are specified. -5047
42617 The statement string is blank or empty. -198
42618 A variable is not allowed. -090, -312, -5012,
-5024
42620 Read-only SCROLL was specified with the UPDATE clause. -228
To find a specific message, SQLCODE, or SQLSTATE, try the SQL message finder.
Detailed descriptions of all Db2 for i messages, including SQLCODEs, are available in message file
QSQLMSG. You can display and print them from the Display Message Description display. The CL
command to display the message description is DSPMSGD. This command shows you both the first level
and the second level text for the message. The first level is a short, single sentence version of the
message. The second level generally describes the reason in more detail and provides suggested
solutions.
To show the message that corresponds to SQLCODE 0204, type the following command:
DSPMSGD RANGE(SQL0204) MSGF(QSYS/QSQLMSG)
Related reference:
“Listing of SQL messages”
These tables list SQL messages. Use these tables to find message text, cause text, recovery text, and
corresponding SQLCODEs and SQLSTATEs.
You can use the following tables with both positive and negative SQLCODEs. Take the absolute value of
the SQLCODE, then append it to the letters SQL (for SQLCODEs less than 10 000) or the letters SQ (for
SQLCODEs greater than or equal to 10 000) to determine the message identifier. Each SQLCODE
corresponds to one or more SQLSTATEs.
SQ16000
Message Text: A component of the static context has not been assigned.
Cause Text: An XPath expression cannot be processed because the &1 component of the static context
has not been assigned.
Static analysis of the expression relies on a component of the static context, &1, that has not
been assigned a value.
Evaluation of the expression starting with &1 requires that the focus component of the
dynamic context be assigned. The token is being considered as the beginning of a path
expression which does not have an associated context item or context sequence. This might
be the result of not specifying an XPath context item expression in the passing clause. Other
common causes for this error include:
v The value in token &1 was intended to be a literal string but delimiting quotation
characters are missing.
v The value in token &1 was intended to be a function but the opening and closing
parentheses are missing.
SQ16002
Message Text: An XPath expression has an unexpected token &1 following &2. Expected tokens may
include: &3.
Cause Text: The &1 that follows &2 is not valid where it occurs in the expression. The &3 includes one
or more possible tokens that are valid replacements for the unexpected token. The XPath
expression cannot be processed.
Recovery Text: Use the correct syntax for the expression.
SQLCODE or -16002
SQLCODEs:
SQLSTATE or 10505
SQLSTATEs:
SQ16003
Message Text: An XPath expression has a type that is not valid for the context in which the expression
occurs.
Cause Text: An expression of data type &1 cannot be used when the data type &2 is expected for the
context. The following situations might cause this error:
v For a constructor function of an XML schema atomic type, atomization of its argument
must not result in more than one atomic value.
v The cast of a value of &1 to target &2 must be a supported cast.
v An XPath expression was used in an output column of the XMLTABLE built in table
function that could not be cast to the expected type. This typically happens when the
expression result contains more than one atomic value and a singleton is expected; or a
cast from the result type to the expected data type is not supported.
SQ16005
Message Text: XPath expression references undefined name &1 within static context.
Cause Text: During the static analysis phase, the static context is used to resolve element names,
attribute names, type names, function names, namespace prefixes, and variable names. If an
expression uses &1 that is not found in the static context, a static error is raised. The XPath
expression cannot be processed.
Recovery Text: Use a name that is defined within the static context. If the QName includes a prefix, verify
that the namespace prefix has been bound to a namespace through a namespace
declaration. If the error resulted from a variable reference, verify that the variable is in
scope for the expression.
SQLCODE or -16005
SQLCODEs:
SQLSTATE or 10506
SQLSTATEs:
SQ16007
Message Text: The XPath path expression references an axis &1 that is not supported.
Cause Text: The &1 that is specified is not supported because DB2 XPath does not support the Full Axis
Feature. The supported axes include: child, attribute, descendant, self, descendant-or-self,
and parent. The XPath expression cannot be processed.
Recovery Text: Specify an axis that is supported.
SQLCODE or -16007
SQLCODEs:
SQLSTATE or 10505
SQLSTATEs:
SQ16009
Message Text: An XPath function named &1 is not defined in the static context.
Cause Text: In a call to function &1 with &2 parameters, the expanded QName and number of
parameters does not match the function name and number of parameters of a function
signature in the static context.
- Verify that you are passing the correct number of parameters to the function call.
- If the function call uses a function name with no prefix, verify that the local name of the
function matches a function that is defined in the default function namespace, or use the
correct prefix.
- If the function call uses a prefix, verify that the local name of the function matches a
function that is defined in the namespace indicated by the prefix.
SQLCODE or -16009
SQLCODEs:
SQ16011
Message Text: The result of an intermediate step expression in an XPath expression contains an atomic
value.
Cause Text: Each intermediate step in an XPath expression must evaluate to a sequence of XPath nodes.
Such sequences might be empty, however they must not include any atomic values. The
expression cannot be processed.
Recovery Text: Modify the expression to ensure that each intermediate step in an XPath expression returns
a sequence of nodes.
SQLCODE or -16011
SQLCODEs:
SQLSTATE or 10507
SQLSTATEs:
SQ16012
Message Text: Context item in axis step must be node.
Cause Text: In an axis step, the context item, which is the item currently being processed, must be a
node of the XPath Data Model. The XPath expression cannot be processed.
Recovery Text: Modify the axis step or the input to ensure that the context item is a node.
SQLCODE or -16012
SQLCODEs:
SQLSTATE or 10507
SQLSTATEs:
SQ16015
Message Text: Error occurred when processing attribute node &1.
Cause Text: The sequence used for constructing an element's content contains an attribute node named
&1 that follows an XPath node that is not an attribute node. Attribute nodes can only occur
at the beginning of the content sequence. The XPath expression cannot be processed.
Recovery Text: Modify the content sequence to ensure that attribute nodes follow other attribute nodes.
SQLCODE or -16015
SQLCODEs:
SQLSTATE or 10507
SQLSTATEs:
SQ16020
Message Text: Context node in path expression does not have document node root.
Cause Text: The root node above the context node in a path expression must be an XPath document
node. The XPath expression cannot be processed.
Recovery Text: Change each path expression that begins with an initial "/" or "//" so that the context node
has a root node that is an XPath document node.
SQLCODE or -16020
SQLCODEs:
SQ16022
Message Text: Operands of type &1 are not valid for operator &2.
Cause Text: One or both operands of the operator have invalid data types. The following situations
might cause this error:
v The types of the operands are not a valid combination for the given operator. For
example, the operands of an arithmetic operator are not numeric types.
v One or both operands of an arithmetic operator are a sequence of more than one item,
but the given operator requires single item operands. The notation (item(), item()+)
represents the type of a sequence of more than one item.
v An XML document is being constructed from an attribute node. A sequence item that is
used to construct an XML document must not be an attribute node. This error can occur
when a sequence that contains an attribute is returned to SQL as an XML value.
SQ16023
Message Text: The XPath prolog cannot contain multiple declarations for the same namespace prefix &1.
Cause Text: The prolog contains multiple declarations for the namespace prefix &1. Although a
namespace declaration in a prolog can override a prefix that has been predeclared in the
static context, the same namespace prefix cannot be declared more than once in the prolog.
The XPath expression cannot be processed.
Recovery Text: Remove any extra declarations for the prefix from the prolog, or change the prefix that is
assigned to the extra declarations. Verify that the prefixes used in the query reference the
correct namespaces.
SQLCODE or -16023
SQLCODEs:
SQLSTATE or 10503
SQLSTATEs:
SQ16024
Message Text: The namespace prefix &1 cannot be redeclared or cannot be bound to the specified URI.
Cause Text: A namespace declaration cannot redeclare the predefined namespace prefixes "xml" or
"xmlns". If the prefix name is not "xml", then it cannot be bound to the namespace URI
'http://www.w3.org/XML/1998/namespace'. No prefix can be bound to the namespace
URI 'http://www.w3.org/2000/xmlns/' either. The XPath expression cannot be processed.
Recovery Text: Perform one of the following actions:
v If the prefix name is "xml" or "xmlns", then change the prefix name to a different
namespace prefix or remove the namespace declaration.
v If the namespace URI is 'http://www.w3.org/XML/1998/namespace' or
'http://www.w3.org/2000/xmlns/', then change the namespace URI specified in the
declaration of the namespace prefix.
SQ16031
Message Text: The XPath expression is not supported.
Cause Text: The XPath expression syntax &1 is not supported.
Recovery Text: Correct the expression or remove the unsupported syntax.
SQLCODE or -16031
SQLCODEs:
SQLSTATE or 10509
SQLSTATEs:
SQ16036
Message Text: The URI that is specified in a namespace declaration cannot be a zero-length string.
Cause Text: The URI that is specified in a namespace declaration must be a valid URI that conforms to
the generic URI syntax specified by the World Wide Web Consortium(W3C). The URI
cannot be a zero-length string. The XPath expression cannot be processed.
Recovery Text: Specify a valid URI in the namespace declaration.
SQLCODE or -16036
SQLCODEs:
SQLSTATE or 10504
SQLSTATEs:
SQ16038
Message Text: The arguments of fn:dateTime have different time zones.
Cause Text: The function fn:dateTime includes arguments that reference different time zones. The time
zone of either argument might be an explicit part of the value, or the result of using the
implicit time zone for the XPath execution environment for the argument. The XPath
expression was not processed.
Recovery Text: Make sure that the same time zone is used for both arguments of the function fn:dateTime.
SQLCODE or -16038
SQLCODEs:
SQLSTATE or 10608
SQLSTATEs:
SQ16041
Message Text: The effective boolean value of a sequence could not be computed.
The effective boolean value can be computed only if the sequence operand is one of the
following sequences:
v An empty sequence
v A sequence where the value of the first item is a node
v A singleton sequence with a value of type xs:string, xs:untypedAtomic or a type derived
from one of these types.
v A singleton sequence with a value of any numeric type or derived from any numeric
type.
Ensure that the sequence operand of each effective boolean value calculation has a valid
sequence operand, as described in the explanation.
SQLCODE or -16041
SQLCODEs:
SQLSTATE or 10608
SQLSTATEs:
SQ16046
Message Text: A numeric XPath expression attempted to divide by zero.
Cause Text: A division or modulus operation attempted to divide an integer or decimal value by zero.
The XPath expression cannot be processed.
Recovery Text: Use a value for the divisor that is not equal to zero.
SQLCODE or -16046
SQLCODEs:
SQLSTATE or 10601
SQLSTATEs:
SQ16047
Message Text: An XPath expression resulted in arithmetic overflow or underflow.
Cause Text: An arithmetic operation resulted in a number that either exceeded the maximum or was
below the minimum value allowed. The XPath expression cannot be processed.
Recovery Text: Modify the expression to result in a number that does not result in an arithmetic overflow
or underflow.
SQLCODE or -16047
SQLCODEs:
SQLSTATE or 10601
SQLSTATEs:
SQ16049
Message Text: The lexical value &1 is not valid for the &2 data type in the function or cast.
Cause Text: A cast expression or function call includes a &1 that does not have the correct lexical form
for the &2 data type. The XPath expression cannot be processed.
Recovery Text: Try one of the following actions:
v If the error results from a function invocation, verify that the string parameters used for
QNames or local names have the correct lexical form.
v If the error results from a cast expression, verify that the source value is not one of the
special float or double values NaN, INF, or -INF.
SQLCODE or -16049
SQLCODEs:
SQLSTATE or 10602
SQLSTATEs:
SQ16051
Message Text: The value &1 data type &2 is out of range for an implicit or explicit cast to target data type
&3.
Cause Text: An XPath expression requires that the &1 with data type of &2 be cast, either implicitly or
explicitly, to the target data type &3. The value is outside the defined range of values for
that data type. This error could be returned for a variety of error QNames such as
FOAR0002, FOCA0001, or FOCA0003. The XPath expression cannot be processed.
Recovery Text: Change the XPath expression to use a target data type with a range that supports the
specific value, or change the value to be within the defined range of the target data type.
SQLCODE or -16051
SQLCODEs:
SQLSTATE or 10602
SQLSTATEs:
SQ16052
Message Text: NaN cannot be used as a float or double value in a dateTime operation.
Cause Text: The value "NaN" was passed as an argument to a date, time, or duration operation, but
that value is not valid for this operation. The XPath expression was not processed.
Recovery Text: Pass a valid float or double value into the date, time, or duration operation.
SQLCODE or -16052
SQLCODEs:
SQLSTATE or 10602
SQLSTATEs:
SQ16056
Message Text: An arithmetic operation involving a duration value resulted in overflow.
Cause Text: An arithmetic operation involving a duration value resulted in a number that exceeded the
maximum value allowed. The XPath expression cannot be processed.
Recovery Text: Modify the XPath expression to result in a number that does not exceed the maximum
value allowed.
SQLCODE or -16056
SQLCODEs:
SQLSTATE or 10605
SQLSTATEs:
SQ16057
Message Text: A time zone value is not valid.
Cause Text: An XPath expression specifies a time zone value that is less than -PT14H00M or greater
than PT14H00M. The XPath expression was not processed.
Recovery Text: Specify a time zone value that is greater than or equal to -PT14H00M and less than or
equal to PT14H00M.
SQLCODE or -16057
SQLCODEs:
SQLSTATE or 10605
SQLSTATEs:
SQ16061
Message Text: The value &1 cannot be constructed as or cast to the data type &2.
Cause Text: An XPath expression attempted to use the value &1 as a &2 value but the value is not valid
for the data type. The following situations might cause this error:
v &1 was explicitly passed to a constructor function or specified in a cast expression with a
target data type of &2.
v An expression that includes &1 implicitly cast the value to the target data type of &2.
Many XPath expressions use implicit casting to process the expressions. For example, an
implicit cast is used in general comparisons of numeric values that require the values to
be of data type xs:double.
v &1 is not within the range of valid values for the target type &2.
SQ16066
Message Text: Argument passed to aggregate function &1 is not valid.
Cause Text: The argument that was passed to the aggregate function &1 is not valid because the
argument does not meet the conditions that are required for arguments to the function &1.
Recovery Text: Try one of the following actions:
v If the function is fn:avg, verify that the following conditions are met: If the input
sequence contains duration values, the values must be either all xs:yearMonthDuration
values or all xs:dayTimeDuration values. If the input sequence contains numeric values,
the values must all be promotable to a single common type that is one of the four
numeric types, xs:yearMonthDuration or xs:dayTimeDuration or one of its subtypes.
v If the function is fn:max or fn:min, verify that the following conditions are met: All items
in the input sequence must be numeric or derived from a single base type for which the
gt operator (for fn:max) or lt operator (for fn:min) is defined. If the input sequence
contains numeric values, the values must all be promotable to a single common type and
the values in the sequence must have a total order. If the input sequence contains
duration values, the values must be either all xs:yearMonthDuration values or all
xs:dayTimeDuration values.
v If the function is fn:sum, verify that the following conditions are met: All items in the
input sequence must be numeric or derived from a single base type. The type must
support addition. If the input sequence contains numeric values, the values must all be
promotable to a single common type. If the input sequence contains duration values, the
values must be either all xs:yearMonthDuration values or all xs:dayTimeDuration values.
SQLCODE or -16066
SQLCODEs:
SQLSTATE or 10608
SQLSTATEs:
SQ16067
Message Text: The flags argument &1 passed to function &2 is not valid.
Cause Text: The function &2 includes a &1 that was passed to the function as a regular expression flag
parameter. However, the string that was passed to the function includes characters that are
not defined as flags.
Recovery Text: Modify the function call to pass in a string argument that contains only characters that are
defined as flags. Valid characters include s, m, i, and x.
SQLCODE or -16067
SQLCODEs:
SQLSTATE or 10609
SQLSTATEs:
SQ16069
Message Text: A regular expression argument &1 passed to function &2 is a zero-length string.
Cause Text: The &1 that was specified for the pattern parameter in a call to function &2 is a zero-length
string. A zero-length string is not a valid pattern for this function because the pattern will
never match a substring in the input string.
Recovery Text: Pass a valid pattern to the function call or remove the function call from the expression.
SQLCODE or -16069
SQLCODEs:
SQLSTATE or 10609
SQLSTATEs:
SQ16104
Message Text: Internal error encountered in XML parser.
Cause Text: While parsing an XML document the parser encountered an internal error. The byte offset
into the XML value being processed after conversion to UTF-8 is &1. The XML parser error
description is: &2.
Recovery Text: Correct the XML value. Try the request again.
SQLCODE or -16104
SQLCODEs:
SQLSTATE or 2200M
SQLSTATEs:
SQ16168
Message Text: XML declaration in XML document not valid.
Cause Text: The XML declaration in the XML document or XML schema is incorrect. The error type is
&1. The error types are:
v 1 -- Unsupported Byte Order Mark, declaration string order is incorrect, declaration must
be in lower case, the 'version=' string is missing, or unsupported attributes were
specified.
v 6 -- Specified version is not supported.
v 7 -- Specified encoding is not supported, or the internal encoding does not match the
external encoding.
v 8 -- The XML declaration is not terminated.
Recovery Text: Correct the XML document. Try the request again.
SQLCODE or -16168
SQLCODEs:
SQ16246
Message Text: Incomplete annotation mapping at or near &1 in XML schema document &2. The reason
code is &3.
Cause Text: The annotation mapping the XML schema item to a database object is missing some
information near &1 in &2. The reason code is &3. Reason codes and their meanings are:
v 1 - A rowset name is not specified or is not fully qualified.
v 2 - Any mapping must specify either a target column or a condition. Neither a target
column nor a condition is specified.
v 3 - The annotation has an unexpected format.
v 4 - The annotation is empty.
SQ16247
Message Text: Source XML type &1 cannot be mapped to target SQL type &2.
Cause Text: Annotation at or around &3 in XML schema document &4 maps an XML schema type &1
to an incompatible SQL type &2. The XML schema document can be determined by
matching &4 to the SCHEMALOCATION column of the XSROBJECTCOMPONENTS
catalog table. The XML schema is not enabled for decomposition.
Recovery Text: Consult annotated XML schema documentation on compatibility between XML schema
types and SQL types. Correct the annotation appropriately.
SQLCODE or -16247
SQLCODEs:
SQLSTATE or 225DE
SQLSTATEs:
SQ16248
Message Text: Unknown annotation &1 at or near &2 in XML schema document &3.
Cause Text: The annotated XML schema document &3 contains an error in the annotation at or near &2.
The unrecognized name given in the annotation tag is &1. The XML schema document can
be determined by matching &3 to the SCHEMALOCATION column of the
XSROBJECTCOMPONENTS catalog table. The XML schema is not enabled for
decomposition.
SQ16249
Message Text: The db2-xdb:expression annotation &1 at or near &2 in XML schema document &3 is too
long.
Cause Text: The string length of the specified expression exceeds the maximum allowed. The XML
schema document can be determined by matching &3 to the SCHEMALOCATION column
of the XSROBJECTCOMPONENTS catalog table. The XML schema is not enabled for
decomposition.
Recovery Text: Consult annotated XML schema documentation on the limit for strings specified in
db2-xdb:expression annotations. Correct the expression appropriately.
SQLCODE or -16249
SQLCODEs:
SQLSTATE or 225DE
SQLSTATEs:
SQ16250
Message Text: More than one db2-xdb:defaultSQLSchema exists within the XML schema.
Cause Text: The db2-xdb:defaultSQLSchema with value &1 at or near &2 in XML schema document &3
conflicts with another db2-xdb:defaultSQLSchema specified in one of the XML schema
documents within the same XML schema. The XML schema is not enabled for
decomposition.
There can only be one value for the db2-xdb:defaultSQLSchema annotation across all XML
schema documents that comprise an annotated XML schema. The specified SQL schema
name &1 at or near &2 in the XML schema document &3 conflicts with another value for
db2-xdb:defaultSQLSchema annotation in this or another XML schema document of the
XML schema.
Recovery Text: Correct the annotated XML schema such that all specifications of db2-
xdb:defaultSQLSchema are consistent.
SQLCODE or -16250
SQLCODEs:
SQLSTATE or 225DE
SQLSTATEs:
SQ16251
Message Text: Duplicate annotation defined for &1 at or near &2 in XML schema document &3.
Cause Text: There is more than one annotation for &1 in the annotated XML schema. A duplicate
annotation has been found for this object at or around &2 in XML schema document &3.
The XML schema document can be determined by matching &3 to the
SCHEMALOCATION column of the XSROBJECTCOMPONENTS catalog table. The XML
schema is not enabled for decomposition.
Recovery Text: Correct the annotated XML schema by removing the duplicate annotation from the XML
schema documents of the XML schema.
SQ16252
Message Text: The db2-xdb:rowSet &1 near &2 in the XML schema document &3 is associated with
another table.
Cause Text: A rowset in an annotated XML schema must correspond to exactly one table. The rowset
declaration at or near &2 declares an association between rowset &1 and the table specified
in the enclosing db2-xdb:table annotation. The specified rowset has already been associated
to a different table in another db2-xdb:table annotation. The XML schema document can be
determined by matching &3 to the SCHEMALOCATION column of the
XSROBJECTCOMPONENTS catalog table. The XML schema is not enabled for
decomposition.
Recovery Text: Correct the annotated XML schema such that each rowset name is uniquely associated with
exactly one table across the annotated XML schema documents of the XML schema.
SQLCODE or -16252
SQLCODEs:
SQLSTATE or 225DE
SQLSTATEs:
SQ16253
Message Text: The db2-xdb:condition annotation &1 at or near line &2 in XML schema document &3 is
too long.
Cause Text: The length of the string associated with db2-xdb:condition that starts with &1 exceeds the
maximum allowed. The db2-xdb:condition is found at or around line number &2 in XML
schema document &3. The XML schema document can be determined by matching &3 to
the SCHEMALOCATION column of the XSROBJECTCOMPONENTS catalog table. The
XML schema is not enabled for decomposition.
Recovery Text: Reduce the size of the condition string for db2-xdb:condition in the XML schema document.
SQLCODE or -16253
SQLCODEs:
SQLSTATE or 225DE
SQLSTATEs:
SQ16254
Message Text: A db2-xdb:locationPath &1 near &2 in XML schema document &3 is not valid with reason
code &4.
Cause Text: A value specified in the annotated schema for &3 is not valid. The XML schema document
can be determined by matching &3 to the SCHEMALOCATION column of the
XSROBJECTCOMPONENTS catalog table. Possible values for reason code include:
v 1 - An element or attribute has a namespace prefix that is not mapped to a URI. All
namespace prefixes used in the location path must be associated with a namespace in the
XML schema document containing the annotation specifying this location path.
v 2 - Syntax is not valid for a location path.
v 3 - The specified path does not match any possible path from a root node to a location
where the element or attribute may appear in an instance document.
SQ16255
Message Text: A db2-xdb:rowSet value conflicts with a db2-xdb:table annotation with the same name.
Cause Text: A db2-xdb:rowSet value &1 used at or near &2 in XML schema document &3 conflicts with
a db2-xdb:table annotation with the same name. The annotated XML schema contains a
db2-xdb:table annotation which declares a table named &1, but the annotated XML schema
does not have any db2-xdb:rowSet annotation declaration to associate &1 to any table. If a
rowset is not declared in any db2-xdb:table annotation, it is implicitly associated to a table
with the same name qualified by the value of db2-xdb:defaultSQLSchema. The annotated
XML schema cannot use a db2-xdb:rowSet annotation that relies on an implicit association
between a rowset and a table with the same name of &1, and at the same time declare a
table named &1 using a db2-xdb:table annotation. The XML schema document can be
determined by matching &3 to the SCHEMALOCATION column of the
XSROBJECTCOMPONENTS catalog table. The schema is not enabled for decomposition.
Recovery Text: Correct the annotated XML schema by adding a db2-xdb:rowSet child element to the
db2-xdb:table element with name &1. This will explicitly associate the rowset to the table.
SQLCODE or -16255
SQLCODEs:
SQLSTATE or 225DE
SQLSTATEs:
SQ16257
Message Text: XML schema feature &1 is not supported for decomposition.
Cause Text: Feature &1 is used in the XML schema. In some cases, the presence of an unsupported
feature in the XML schema results in failure to enable for decomposition.
Recovery Text: Remove the feature from the XML schema or remove the decomposition annotations
associated with the feature, as appropriate. Consult decomposition documentation on the
restrictions on use of the specified XML schema feature.
SQLCODE or -16257
SQLCODEs:
SQLSTATE or 225DE
SQLSTATEs:
SQ16258
Message Text: The XML schema contains a recursive element which is an unsupported feature for
decomposition.
SQ16259
Message Text: Many-to-many mappings relationship between elements that map to the same rowset is not
valid.
Cause Text: Many-to-many mappings detected in XML schema document &1 near &2 and in XML
schema document &3 near &4 is not valid. If two element declarations have a sequence
model group as their lowest common ancestor then only one of the paths from the element
declaration up to that model group can have maxOccurs > 1 on one or more elements
declarations or model groups in that path. The XML schema documents can be determined
by matching &1 and &3 to the SCHEMALOCATION column of the
XSROBJECTCOMPONENTS catalog table. The XML schema is not enabled for
decomposition.
Recovery Text: Correct the annotations such that there are no many-to-many mappings. Consult annotated
XML schema documentation for rules on mapping elements and attributes.
SQLCODE or -16259
SQLCODEs:
SQLSTATE or 225DE
SQLSTATEs:
SQ16260
Message Text: XML schema annotations include no mappings to any column of any table.
Cause Text: The XML schema contains no annotations that map an XML element or attribute to any
column of any table. The XML schema is not enabled for decomposition.
Recovery Text: Add annotations to the XML schema so that at least one XML element or attribute is
mapped to a column of a table.
SQLCODE or -16260
SQLCODEs:
SQLSTATE or 225DE
SQLSTATEs:
SQ16262
Message Text: The annotated XML schema has no columns mapped for the rowset &1.
Cause Text: The set of annotations involving rowset &1 contain no mappings to any column. In order
for a rowset to be target for decomposition, at least one column must be mapped to some
XML element or attribute.
Recovery Text: Add an annotation that maps a column of the specified rowset to some XML element or
attribute. If the rowset is not intended to be a target for decomposition, remove references
to the rowset from the annotated XML schema.
SQLCODE or -16262
SQLCODEs:
SQ16263
Message Text: The rowSet name &1 at or near &2 in the XML schema document &3 is not used in any
mapping.
Cause Text: The rowSet name &1 at or near &2 in the XML schema document &3 must be specified in
at least one mapping in the XML schema.
Recovery Text: Ensure that the rowSet name &1 is specified in mapping at least one element or attribute in
the XML schema.
SQLCODE or -16263
SQLCODEs:
SQLSTATE or 225DE
SQLSTATEs:
SQ16264
Message Text: RowSet name &1 at or near &2 in the XML schema document &3 cannot be used more than
once under &4.
Cause Text: A rowSet name can be used only once under &4. It can participate in only one hierarchy of
operation orders.
Recovery Text: Verify that using the same rowSet name under multiple instances of the element
db2-xdb:order is needed. Combine the affected db2-xdb:order elements, so the resulting
order is consistent with the required order of insertion.
SQLCODE or -16264
SQLCODEs:
SQLSTATE or 225DE
SQLSTATEs:
SQ16265
Message Text: XML schema &1 in &2 is not enabled for decomposition.
Cause Text: The XML schema identified by &1 in &2 is not in the correct state to perform
decomposition. The XML schema could be in one of the following states:
v Not enabled for decomposition (possibly never enabled)
v Disabled for decomposition
Decomposition can only be performed using XML schemas that are enabled for
decomposition. XML decomposition was not started.
Recovery Text: Ensure that the XML schema is enabled for decomposition before attempting to use it for
decomposition of an XML document. The decomposition status of an XML schema can be
checked by selecting the DECOMPOSITION column of the XSROBJECTS catalog table for
the XML schema identified by &1.
SQLCODE or -16265
SQLCODEs:
SQLSTATE or 225D1
SQLSTATEs:
SQ16266
Message Text: Error occurred during decomposition of XML document &1.
SQ16277
Message Text: The global annotation &1 appears more than once in the XML schema.
Cause Text: An annotated XML schema can contain at most one occurrence of the annotation &1.
Another occurrence of this annotation appears at or near &2 in XML schema document &3.
Recovery Text: Combine the contents of the multiple &1 annotations into a single annotation, and ensure
that the resulting annotation does not contain any duplicate information.
SQLCODE or -16277
SQLCODEs:
SQLSTATE or 225DE
SQLSTATEs:
SQ16280
Message Text: XSLT processor error.
Cause Text: An error occurred during the XSLT processing for the XSLTRANSFORM function. Text
describing the problem is: &1.
Recovery Text: Refer to the XSLT processor documentation for this error. Try the request again.
SQLCODE or -16280
SQLCODEs:
SQLSTATE or 225X0
SQLSTATEs:
SQ20054
Message Text: File &1 in &2 has DataLinks in link pending mode.
Cause Text: The accessed file &1 has DataLinks in link pending mode for reason code &3. The reason
codes are as follows:
v 21 The status of the DataLinks cannot be verified. A file cannot be used for INSERT and
UPDATE statements while in link pending mode.
Recovery Text: Use the WRKPFDL (Work with Physical File DataLinks) command to determine which files
have DataLinks in link pending mode. Resolve the pending links and try the request again.
SQLCODE or -20054
SQLCODEs:
SQLSTATE or 55019
SQLSTATEs:
SQ20058
Message Text: Subselect for materialized query table &1 not valid for reason code &3.
Cause Text: &1 in &2 cannot be created or altered because the SELECT statement contains a reference or
expression that is not valid. Reason codes and their meanings are:
v 1 -- Refers to another materialized query table or a protected system file, or to a view
that refers to a materialized query table or a protected system file.
v 2 -- Refers to a declared temporary table, a table in QTEMP, a program-described file, or
a non-SQL logical file in the FROM clause.
v 3 -- Refers to a VIEW that contains an item for a materialized query table that is not
valid.
v 4 -- Contains an expression with a DataLink or a distinct type based on a DataLink
where the DataLink is FILE LINK CONTROL.
v 6 -- Refers to a function that has an external action or that is not deterministic.
v 8 -- Refers to a special register or global variable.
v 9 -- Refers to result column that is a not an SQL data type, such as binary with precision,
DBCS-ONLY, or DBCS-EITHER.
v 10 -- Refers to a column that has a field procedure defined and that column is used in an
expression in the select-list.
Recovery Text: Based on the reason code, correct the SELECT statement for the materialized query table.
Try the request again.
SQLCODE or -20058
SQLCODEs:
SQLSTATE or 428EC
SQLSTATEs:
SQ20073
Message Text: Attribute not valid for function &1 in &2.
Cause Text: Function &1 in &2 cannot be created or altered as NOT DETERMINISTIC or EXTERNAL
ACTION because it is referenced in an MQT, in a view that has the WITH CHECK
OPTION attribute, or in a global variable.
Recovery Text: Specify DETERMINISTIC or NO EXTERNAL ACTION for the function. Try the request
again.
SQLCODE or -20073
SQLCODEs:
SQLSTATE or 42927
SQLSTATEs:
If the failure is due to reason code 20, you must remove all masks and permissions defined
on &1 in &2 or &4 in &5. Additionally, row and column access control must be deactivated
for both tables.
SQLCODE or -20093
SQLCODEs:
SQLSTATE or 428EW
SQLSTATEs:
SQ20102
Message Text: &3 cannot be specified for routine &1.
Cause Text: &3 cannot be specified for routine &1 in &2. ALTER REPLACE is only allowed for an SQL
routine. DEBUG MODE can only be specified for SQL and JAVA routines. The language
type of an SQL routine cannot be changed. An external name cannot be specified for an
SQL routine.
Recovery Text: Remove the clause that is not allowed. Try the request again.
SQLCODE or -20102
SQLCODEs:
SQLSTATE or 42849
SQLSTATEs:
SQ20110
Message Text: Cannot implicitly connect to a remote site with a savepoint outstanding.
Cause Text: The statement referenced an object at a remote DBMS when an active savepoint exists.
Recovery Text: An implicit connect to a remote server is not allowed because a savepoint is outstanding.
Issue a RELEASE TO SAVEPOINT or ROLLBACK TO SAVEPOINT before retrying the
statement. Committing or rolling back the transaction will also release existing savepoints.
SQ20112
Message Text: The maximum number of savepoints has been reached.
Cause Text: A resource limit has been exceeded.
Recovery Text: Issue a RELEASE TO SAVEPOINT or ROLLBACK TO SAVEPOINT before creating
additional savepoints. You may issue a COMMIT or ROLLBACK to release existing
savepoints.
SQLCODE or -20112
SQLCODEs:
SQLSTATE or 3B002
SQLSTATEs:
SQ20120
Message Text: SQL TABLE function must return a table result.
Cause Text: The RETURN statement in an SQL TABLE function must return a table result. There must
be exactly one RETURN statement in an SQL TABLE function.
Recovery Text: Specify a query in the RETURN statement of a table function. Try the request again.
SQLCODE or -20120
SQLCODEs:
SQLSTATE or 428F1
SQLSTATEs:
SQ20141
Message Text: Truncation of value with length &1 occurred for &2.
Cause Text: On assignment of a value to a host variable or parameter, truncation occurred and the
length of the value that was truncated is too large to be returned in the indicator variable.
This situation can occur when truncation occurs on assignment of:
v A value to a parameter of a remote stored procedure and the value being truncated is
greater than 127 bytes. In this case, the indicator variable will contain a value of 127.
v A LOB or XML value to a host variable and the value being truncated is greater than
32767 bytes. In this case, the indicator variable will contain a value of 32767.
In these cases the actual length of the truncated value cannot be returned to the application
using the indicator variable. The actual length of the value is returned as message token
length.
Recovery Text: Change the length of the host variable or parameter and try the request again.
SQLCODE or +20141
SQLCODEs:
SQLSTATE or 01004
SQLSTATEs:
SQ20143
Message Text: Encryption or decryption function failed.
SQ20144
Message Text: Encryption password length not valid.
Cause Text: The length of the encryption password must be from 6 to 127 characters.
Recovery Text: Correct the length of the password value. Submit the request again.
SQLCODE or -20144
SQLCODEs:
SQLSTATE or 428FC
SQLSTATEs:
SQ20145
Message Text: The decryption function failed.
Cause Text: The password used for decryption does not match the password used to encrypt the data.
The data must be decrypted using the same password that was used to encrypt the data.
Recovery Text: Ensure that the same password is used to encrypt and decrypt the data.
SQLCODE or -20145
SQLCODEs:
SQLSTATE or 428FD
SQLSTATEs:
SQ20146
Message Text: The decryption function failed. The data is not encrypted.
Cause Text: The data must be a result of the ENCRYPT, ENCRYPT_AES, ENCRYPT_RC2, or
ENCRYPT_TDES function.
Recovery Text: Ensure that the data is a result of the ENCRYPT, ENCRYPT_AES, ENCRYPT_RC2, or
ENCRYPT_TDES function. Data passed to a decryption function must be encrypted data.
SQLCODE or -20146
SQLCODEs:
SQLSTATE or 428FE
SQLSTATEs:
SQ20147
Message Text: The ENCRYPT function failed. Data is already encrypted.
Cause Text: An attempt was made to encrypt data that is already encrypted.
Recovery Text: Ensure that the data has not already been encrypted.
SQ20148
Message Text: RETURN statement must be specified in function &1 in &2.
Cause Text: A RETURN statement must be specified in an SQL function.
Recovery Text: Specify a RETURN statement. Try the request again.
SQLCODE or -20148
SQLCODEs:
SQLSTATE or 429BD
SQLSTATEs:
SQ20165
Message Text: Data change table reference not allowed where specified.
Cause Text: A data change table reference can only be specified in certain FROM clauses. A data change
table reference must be the only table reference in a FROM clause used in:
v The outer fullselect of a SELECT or SELECT INTO statement.
v The only fullselect of a SET or VALUES INTO statement.
v The query expression of a RETURN statement.
Recovery Text: Modify the statement so that the data change table reference is used correctly. Make sure it
is the only table reference in the FROM clause.
SQLCODE or -20165
SQLCODEs:
SQLSTATE or 428FL
SQLSTATEs:
SQ20166
Message Text: View or logical file &1 not allowed for data change table reference.
Cause Text: &1 in &2 cannot be specified as the target of a data change table reference.
If &1 is a view, the WHERE clause in the view definition cannot contain a function that is
not deterministic, has external action, or modifies SQL data.
If &1 is a logical file, it cannot have select/omit specifications or be a join logical file.
Recovery Text: Specify a different view or logical file in the data change table reference.
SQLCODE or -20166
SQLCODEs:
SQLSTATE or 428FM
SQLSTATEs:
SQ20178
Message Text: INSTEAD OF trigger not created for view &1.
Cause Text: View &1 in &2 already has an INSTEAD OF trigger defined for the specified operation. A
view can have only one INSTEAD OF trigger defined for each of the INSERT, UPDATE,
and DELETE operations.
SQ20179
Message Text: Trigger cannot be created for view &1 that uses a WITH CHECK OPTION.
Cause Text: View &1 in &2 specifies a WITH CHECK OPTION or is dependent on a view which has a
WITH CHECK OPTION. An INSTEAD OF trigger cannot be defined for a view that has a
WITH CHECK OPTION.
Recovery Text: Remove the WITH CHECK OPTION from the view.
SQLCODE or -20179
SQLCODEs:
SQLSTATE or 428FQ
SQLSTATEs:
SQ20180
Message Text: Column &1 cannot be altered.
Cause Text: Column &1 is a partitioning key column for table &2 in &3 and cannot be altered.
Recovery Text: Change the table to a non-partitioned table before attempting to alter the column or remove
the ALTER COLUMN clause from the statement. Try the request again.
SQLCODE or -20180
SQLCODEs:
SQLSTATE or 428FR
SQLSTATEs:
SQ20183
Message Text: ALTER TABLE partitioning clause not valid for &1.
Cause Text: Table &1 in &2 cannot be altered. One of the following errors has occurred:
v ADD PARTITION BY was specified on an ALTER TABLE statement, but the table is
already a partitioned table or is a physical file
v ADD PARTITION, ALTER PARTITION, or DROP PARTITION was specified on an
ALTER TABLE statement, but the table is not a partitioned table.
v DROP PARTITION of a RANGE partition was specified on the ALTER TABLE statement,
but the PRESERVE ROWS clause was used. The PRESERVE ROWS clause is only valid
for partitioned tables that have HASH partitioning.
Recovery Text: Change the statement to one that is valid or specify a different table. Try the request again.
SQLCODE or -20183
SQLCODEs:
SQLSTATE or 428FT
SQLSTATEs:
SQ20200
Message Text: The install or replace of &1 in &2 failed because &3 could not be located.
SQ20201
Message Text: The install, replace, or remove of &1 in &2 failed because the jar name is not valid.
Cause Text: The jar name specified on the install, replace, or remove jar procedure is not valid. For
example, the jar id may be of the improper format, may not exist to be replaced or
removed, or can not be installed as it already exists.
Recovery Text: Ensure the jar name is of the correct format. If the jar id exists, it may need to be removed
before it can be installed. For the remove or replace procedures, ensure the jar id exists.
SQLCODE or -20201
SQLCODEs:
SQLSTATE or 46002
SQLSTATEs:
SQ20202
Message Text: The replace or remove of &1 in &2 failed because &3 is in use.
Cause Text: The specified class in the jar file is currently in use by a defined procedure, or the
replacement jar file does not contain the specified class for which a procedure is defined.
Recovery Text: Ensure all procedures referencing the classes being removed are dropped and resubmit the
replace or remove procedure.
SQLCODE or -20202
SQLCODEs:
SQLSTATE or 46003
SQLSTATEs:
SQ20203
Message Text: Signature not valid for Java method in user defined function or procedure &1 in &2.
Cause Text: The signature of the Java method used to implement the function or procedure is not valid.
For example, the method may have parameters that are not compatible with the parameters
on the corresponding CREATE statement or the method for a procedure may specify a
return value.
Recovery Text: Reissue the corresponding CREATE statement specifying parameters that match the Java
method, or correct the parameters or return type of the Java method and rebuild the class.
SQLCODE or -20203
SQLCODEs:
SQLSTATE or 46007
SQLSTATEs:
SQ20204
Message Text: The user defined function or procedure &1 in &2 was unable to map to a single Java
method.
SQ20205
Message Text: User defined function or procedure &1 in &2 has an input argument with a null value.
Cause Text: A function created with CALLED ON NULL INPUT or a procedure has an input parameter
with a null value but the Java data type for this argument does not support null values.
Examples of Java data types that do not support null values are BOOLEAN, BYTE, SHORT,
INT, LONG, or DOUBLE.
Recovery Text: If the method is to be called with null values, ensure the input Java types are capable of
accepting a null value. If &1 is a function, RETURNS NULL ON NULL INPUT may be
specified on the CREATE FUNCTION statement.
SQLCODE or -20205
SQLCODEs:
SQLSTATE or 39004
SQLSTATEs:
SQ20206
Message Text: The procedure &1 in &2 returned too many result sets.
Cause Text: The specified procedure returned more results sets than were specified on the procedure
definition.
Recovery Text: Modify the procedure to return fewer result sets, or drop and recreate the procedure
specifying the correct number of result sets.
SQLCODE or +20206
SQLCODEs:
SQLSTATE or 0100E
SQLSTATEs:
SQ20207
Message Text: The install or remove jar procedure for &1 in &2 specified the use of a deployment
descriptor.
Cause Text: The DEPLOY or UNDEPLOY parameter of the install or replace jar procedure was
non-zero; this parameter is not supported and must be zero.
Recovery Text: Reissue the procedure with the DEPLOY or UNDEPLOY parameter set to zero.
SQLCODE or -20207
SQLCODEs:
SQLSTATE or 46501
SQLSTATEs:
SQ20211
Message Text: Clause not allowed for CREATE VIEW.
SQ20214
Message Text: Table designator &1 is not ordered.
Cause Text: The ORDER OF clause was specified, but table designator &1 is not ordered.
Recovery Text: Correct the ORDER OF clause. Try the request again.
SQLCODE or -20214
SQLCODEs:
SQLSTATE or 428FI
SQLSTATEs:
SQ20223
Message Text: The encryption or decryption function failed. Encryption facility error.
Cause Text: An attempt to use function ENCRYPT, ENCRYPT_AES, ENCRYPT_RC2, ENCRYPT_TDES,
DECRYPT_BIN, DECRYPT_BINARY, DECRYPT_BIT, DECRYPT_CHAR, DECRYPT_DB, or
GETHINT failed due to an error with the encryption facility.
Recovery Text: Contact your software service provider.
SQLCODE or -20223
SQLCODEs:
SQLSTATE or 560BF
SQLSTATEs:
SQ20224
Message Text: Encrypted data that was originally a binary string cannot be decrypted to a character
string.
Cause Text: The DECRYPT_CHAR function was invoked with an argument that represents an
encrypted string that was originally a binary string. A binary string cannot be cast to a
character string using the DECRYPT_CHAR function.
Recovery Text: The encrypted value can only be decrypted using the DECRYPT_BINARY function.
SQLCODE or -20224
SQLCODEs:
SQLSTATE or 22528
SQLSTATEs:
SQ20226
Message Text: The maximum number of stacked diagnostics areas has been exceeded.
Cause Text: The storage available to hold condition information items or to hold stacked diagnostics has
been exceeded.
Recovery Text: Modify the application logic so that fewer SQL warnings occur, or specify additional
condition areas using the SET TRANSACTION statement.
SQ20227
Message Text: AS clause required for XML function.
Cause Text: The AS clause must be specified for argument &1 of the XMLATTRIBUTES, XMLFOREST,
XMLROW, or XMLGROUP function because the argument is not named. Argument &1 is
specified as &2.
Recovery Text: Specify an AS clause to name the argument. Try the request again.
SQLCODE or -20227
SQLCODEs:
SQLSTATE or 42633
SQLSTATEs:
SQ20228
Message Text: A STACKED diagnostic is not available.
Cause Text: A STACKED diagnostic is only accessible from a handler.
Recovery Text: Modify the application logic so that the STACKED diagnostic is only accessed from within
a handler.
SQLCODE or -20228
SQLCODEs:
SQLSTATE or 0Z002
SQLSTATEs:
SQ20235
Message Text: Alter of materialized query table &1 in &2 not valid.
Cause Text: A column of a materialized query table cannot be added, dropped, or altered.
Recovery Text: Change the statement to one that is valid or specify another table. Try the request again.
SQLCODE or -20235
SQLCODEs:
SQLSTATE or 428FY
SQLSTATEs:
SQ20236
Message Text: Cursor &1 cannot be returned.
Cause Text: A SET RESULT SETS statement references cursor &1 that was declared with the WITHOUT
RETURN attribute. Cursor &1 cannot be specified in a SET RESULT SETS statement.
Recovery Text: Remove the reference to the cursor from the SET RESULT SETS statement. Try the request
again.
SQLCODE or -20236
SQLCODEs:
SQLSTATE or 428BA
SQLSTATEs:
SQ20251
Message Text: Partition &1 cannot be dropped.
Cause Text: An attempt was made to drop partition &1 but it is the last partition in the table. The
partition table must contain at least one partition.
Recovery Text: Use the DROP TABLE statement to drop the table.
SQLCODE or -20251
SQLCODEs:
SQLSTATE or 428G2
SQLSTATEs:
SQ20257
Message Text: INSERT into view &1 in &2 with INSTEAD OF trigger not allowed.
Cause Text: An data change table reference INSERT statement specifies a view defined with an
INSTEAD OF trigger. Results of the INSTEAD OF trigger cannot be returned.
Recovery Text: Drop the INSTEAD OF trigger from the view, or specify a different view as the target of the
INSERT.
SQLCODE or -20257
SQLCODEs:
SQLSTATE or 428G3
SQLSTATEs:
SQ20258
Message Text: Use of INPUT SEQUENCE ordering not correct.
Cause Text: The ORDER BY clause specifies INPUT SEQUENCE but the FROM clause of the fullselect
does not specify an INSERT statement.
Recovery Text: Specify a valid sort key in the ORDER BY clause or make sure the FROM clause contains
an INSERT statement.
SQLCODE or -20258
SQLCODEs:
SQLSTATE or 428G4
SQLSTATEs:
SQ20259
Message Text: View &2 not allowed in data change table reference.
Cause Text: The definition of view &2 in &3 prevents its use as the target of a data change table
reference. The view definition cannot contain a scalar subselect, a scalar fullselect, or a
subquery.
SQ20268
Message Text: Sort sequence cannot be applied. Reason code &4.
Cause Text: Sort sequence table &2 in library &3 cannot be applied for reason code &4. The reason
codes and their meanings follow:
v 1 -- The result of applying the sort sequence table to field &1 is greater than 32,742 bytes.
v 2 -- The sort sequence table cannot be applied to the following functions: LOCATE,
POSITION and POSSTR.
v 3 -- The sort sequence table cannot be applied to a LIKE predicate or %WLDCRD
function.
v 4 -- A shared weight sort sequence table cannot be applied to the key fields of a create
encoded vector index with INCLUDE statement.
v 5 -- The ICU (International Components for Unicode) table cannot be used for this index.
Recovery Text: Sort sequence table &2 is an International Components of Unicode (ICU) table. Recovery
for reason code 1: ICU sort sequence table results are longer than the fields they operate on.
If the field can contain SBCS data, the result of applying the sort sequence table can be 6
times the length of the field. Applying this sort sequence table to a DBCS field can be 3
times the length of the field. Either specify a smaller field or a non-ICU type sort sequence
table. Recovery for reason code 4: Use a unique-weight sort sequence table. Recovery for
the other reason codes: Either omit the function or specify a non-ICU type of sort sequence
table.
SQLCODE or -20268
SQLCODEs:
SQLSTATE or 429BM
SQLSTATEs:
SQ20275
Message Text: XML name &1 not valid.
Cause Text: The XML name &1 is not valid for reason code &2. Reason codes are:
v 1 -- "xmlns" is used as an XML attribute name or as a prefix for an XML element or
attribute name.
v 2 -- The XML namespace prefix in a qualified XML name is not declared within its scope.
v 3 -- The name for an XML element or XML attribute is not an XML QName.
v 4 -- The name for an XML processing instruction is not an XML NCName.
v 5 -- The name for an XML processing instruction cannot contain "xml".
v 6 -- The name for an argument of XMLTABLE is not an XML NCName.
Recovery Text: Specify a valid XML name. Try the request again.
SQLCODE or -20275
SQLCODEs:
SQLSTATE or 42634
SQLSTATEs:
SQ20298
Message Text: VALUE specified for GET DESCRIPTOR is greater than current COUNT.
Cause Text: The item number supplied in VALUE for GET DESCRIPTOR is greater than the current
COUNT for the descriptor.
Recovery Text: This is a warning only. No information requested for the descriptor item provided in
VALUE was returned.
SQLCODE or +20298
SQLCODEs:
SQLSTATE or 02505
SQLSTATEs:
SQ20299
Message Text: Item &1 already set for descriptor.
Cause Text: Descriptor item &1 was already specified for this SET DESCRIPTOR statement. Each item
can be set only one time.
Recovery Text: Remove the duplicate item. Try the request again.
SQLCODE or -20299
SQLCODEs:
SQLSTATE or 42747
SQLSTATEs:
SQ20313
Message Text: DEBUG MODE cannot be changed for routine &1 in &2.
Cause Text: Routine &1 in &2 was created with a DEBUG MODE of DISABLE. The DEBUG MODE
cannot be altered.
Recovery Text: Drop the routine and recreate it with DEBUG MODE ALLOW or DEBUG MODE
DISALLOW.
SQLCODE or -20313
SQLCODEs:
SQLSTATE or 55058
SQLSTATEs:
SQ20326
Message Text: XML name &1 too long.
SQ20327
Message Text: The depth of an XML document exceeds the maximum number of levels.
Cause Text: An XML value that is being parsed, validated, stored, or is being traversed during the
evaluation of an XPath expression is nested deeper than the maximum supported depth.
The statement cannot be processed.
Recovery Text: Reduce the number of levels of elements and attributes that are used in the XML value.
SQLCODE or -20327
SQLCODEs:
SQLSTATE or 54058
SQLSTATEs:
SQ20328
Message Text: An XML schema document with the same target namespace and schema location already
exists.
Cause Text: An XML schema document with the same target namespace &1 and schema location &2
already exists for the XML schema &3 in &4. Multiple XML schema documents were added
using the XSR_ADDSCHEMADOC stored procedure with the same target namespace and
schema location. There cannot be two documents with the same target namespace and
schema location within an XML schema.
Recovery Text: Remove the XML schema using XSR_REMOVE stored procedure and then register and add
the XML schema documents before the complete. Change the documents so they do not
have the same target namespace and schema location.
SQLCODE or -20328
SQLCODEs:
SQLSTATE or 42749
SQLSTATEs:
SQ20329
Message Text: The completion check for the XML schema failed because one or more XML schema
documents are missing.
Cause Text: The XML schema registration completion processing determined that more than one XML
schema document is required for a complete XML schema and at least one XML schema
document is missing from the XML schema repository. The missing XML schema document
is identified by either targetnamespace or schemalocation &1 with value &2.
Recovery Text: Add any missing XML schema documents to the XML schema repository, and then call the
XSR_COMPLETE stored procedure in SYSPROC.
SQLCODE or -20329
SQLCODEs:
SQ20330
Message Text: XML schema identified by target namespace &3 and schema location &5 not found in the
repository.
Cause Text: The &1 identified by XML &2 &3 and XML &4 &5 is not found in the XML schema
respository. If either value was null on the request, the corresponding &3 or &5 is the
empty string.
Recovery Text: Add the missing XML schema to the XML schema repository and reissue the statement.
SQLCODE or -20330
SQLCODEs:
SQLSTATE or 4274A
SQLSTATEs:
SQ20331
Message Text: The XML comment value &1 is not valid.
Cause Text: The string expression in the XML comment cannot contain two adjacent hyphens and
cannot end in a hyphen.
Recovery Text: Ensure the value for the XML comment is valid.
SQLCODE or -20331
SQLCODEs:
SQLSTATE or 2200S
SQLSTATEs:
SQ20332
Message Text: The XML processing instruction &1 is not valid.
Cause Text: The XML processing instruction must not contain the substring '?>'.
Recovery Text: Ensure the value for the XML processing instruction is valid.
SQLCODE or -20332
SQLCODEs:
SQLSTATE or 2200T
SQLSTATEs:
SQ20335
Message Text: More than one XML schema exists identified by the target namespace and schema location.
Cause Text: There is more than one registered XML schema that matches the target namespace &3 and
schema location &5.
Recovery Text: Use the unique XML schema ID to identify the XML schema.
SQLCODE or -20335
SQLCODEs:
SQLSTATE or 4274B
SQLSTATEs:
SQ20338
Message Text: The data type of the XMLCAST specification must be XML.
Cause Text: Both operands of the XMLCAST specification must be the XML data type. The XMLCAST
specification can be used to cast a NULL XML value, or to cast an XML value to a specified
CCSID.
Recovery Text: Change the XMLCAST specification so that both operands are the XML data type. Try the
request again.
SQLCODE or -20338
SQLCODEs:
SQLSTATE or 42815
SQLSTATEs:
SQ20339
Message Text: XML schema &1 in &2 not in correct state for operation &3.
Cause Text: The operation &3 cannot be performed on the XML schema identified by &1 in &2 because
it is not in the correct state. For example, the XML schema has already been completed and
the operation is attempting to add additional XML schema documents.
Recovery Text: If the schema has not yet been completed, invoke the XSR_COMPLETE stored procedure in
SYSPROC and try the operation again. If the schema has already been completed and needs
to be updated, you must first remove it or register it using a different name.
SQLCODE or -20339
SQLCODEs:
SQLSTATE or 55063
SQLSTATEs:
SQ20340
Message Text: XML schema document is not connected to the other XML schema documents.
Cause Text: The XML schema identified by identifier &1 in &2 includes multiple XML schema
documents in the namespace &3. At least one of these XML schema documents is not
connected to the other XML schema documents registered to this XML schema.
Recovery Text: Correct the XML schema documents, or add a new XML schema document, so that all XML
schema documents in an XML schema are connected using import, include, or redefine,
beginning from the primary schema document. Use the XSR_REMOVE stored procedure in
SYSPROC to remove the schema that is not valid and re-invoke the XSR stored procedures
to register it with the corrected and/or new XML schema documents.
SQ20341
Message Text: Transfer operation ignored since &1 is already the owner of the database object.
Cause Text: The user profile specified already owns the object.
Recovery Text: Specify a different owner on the TRANSFER OWNERSHIP statement.
SQLCODE or +20341
SQLCODEs:
SQLSTATE or 01676
SQLSTATEs:
SQ20345
Message Text: XML value not a well-formed document.
Cause Text: The XML value is not a well-formed document. An XML value that is being stored in a
table must be a well-formed XML document with a single root element.
Recovery Text: Change the XML value to be a well-formed document with a single root element. Try the
request again.
SQLCODE or -20345
SQLCODEs:
SQLSTATE or 2200L
SQLSTATEs:
SQ20346
Message Text: Specified global element not in XML schema.
Cause Text: A validation operation specified that an explicit element local name &2 in namespace &3
should be the root element of the XML document to be validated. The XML schema with
SQL identifier &1 does not have &2 declared as a global element in namespace &3. The
statement cannot be processed.
Recovery Text: Check that the element local name &2 in namespace URI &3 is correct for the XML schema
and for the XML document that is being validated. Change the element local name,
namespace, or the XML schema and try the validation again.
SQLCODE or -20346
SQLCODEs:
SQLSTATE or 22535
SQLSTATEs:
SQ20347
Message Text: Required root element not in XML document.
Cause Text: The root element of the XML document does not match the required element local name &1
in namespace URI &2 specified for the validation operation. The statement cannot be
processed.
Recovery Text: Check that the root element matches the specified element local name &1 and namespace
URI &2. If the XML value is correct, change the specified element local name or namespace
URI.
SQ20353
Message Text: Data type &2 not allowed in &1.
Cause Text: The &1 clause contains a value of data type &2. Since &1 involves comparisons, this data
type is not allowed.
Recovery Text: Use an expression of a different data type in the &1 clause and try the request again.
SQLCODE or -20353
SQLCODEs:
SQLSTATE or 42818
SQLSTATEs:
SQ20354
Message Text: Row change timestamp column not valid for key.
Cause Text: A ROW CHANGE TIMESTAMP column cannot be specified in a foreign key or a
partitioning key for table &1 in &2.
Recovery Text: Remove the column from the key specification. Try the request again.
SQLCODE or -20354
SQLCODEs:
SQLSTATE or 429BV
SQLSTATEs:
SQ20356
Message Text: Table &1 in &2 cannot be truncated.
Cause Text: A table cannot be truncated if one or more of the following conditions is true:
v The TRUNCATE statement would result in the activation of delete triggers but the
statement specified RESTRICT WHEN DELETE TRIGGERS, either implicitly or explicitly.
This can occur when enabled delete triggers exist for the table to be truncated, and the
result of the TRUNCATE statement would activate the triggers.
v The table to be truncated is the parent table in a referential constraint, regardless of
whether the child table contains rows or not.
Recovery Text: If the statement failed because of the existence of delete triggers, specify the IGNORE
DELETE TRIGGERS clause on the TRUNCATE statement. If the statement failed because of
referential constraints, use the ALTER TABLE statement to drop the constraint, and then try
the request again.
SQLCODE or -20356
SQLCODEs:
SQLSTATE or 428GJ
SQLSTATEs:
SQ20365
Message Text: Signaling NaN encountered, or exception occurred involving DECFLOAT.
SQ20367
Message Text: Clause &1 ignored.
Cause Text: &1 is not supported by DB2 for IBM® i or is not supported in the context where it was
specified. It has been ignored.
Recovery Text: No action is required.
SQLCODE or +20367
SQLCODEs:
SQLSTATE or 01680
SQLSTATEs:
SQ20377
Message Text: Character &1 cannot be mapped to a valid XML character.
Cause Text: Character &1 was found in an XML expression or function argument that begins with
string &2. This character is not allowed in an XML expression.
Recovery Text: Remove the character or replace it with a character that is allowed.
SQLCODE or -20377
SQLCODEs:
SQLSTATE or 0N002
SQLSTATEs:
SQ20379
Message Text: &2 cannot transfer ownership or grant authority to itself.
Cause Text: &2 is authorized to the QIBM_DB_SECADM function. An authorization ID authorized to
the QIBM_DB_SECADM function cannot transfer the ownership of an object to itself.
Likewise, it cannot grant authority to the object to itself.
Recovery Text: Choose a different authorization ID as the new owner of the object or perform this request
using a different authorization ID.
SQLCODE or -20379
SQLCODEs:
SQLSTATE or 42502
SQLSTATEs:
SQ20398
Message Text: XML parsing failed.
Cause Text: The XML parsing failed during SQL processing. The byte offset into the XML value being
processed after conversion to UTF-8 is &1. The XML parser error description is: &2.
Recovery Text: Correct the XML value. Try the request again.
SQ20399
Message Text: XML parsing or validation failed.
Cause Text: The XML parsing failed during validation. The byte offset into the XML value being
processed after conversion to UTF-8 is &1. The XML parser error description is: &2.
Recovery Text: Correct the problem with the XML instance document. Retry the XMLVALIDATE or
XDBDECOMPXML.
SQLCODE or -20399
SQLCODEs:
SQLSTATE or 2201R
SQLSTATEs:
SQ20400
Message Text: XML schema document did not process.
Cause Text: The XML document processing failed. The byte offset into the XML value being processed
after conversion to UTF-8 is &1. The XML parser error description is: &2.
Recovery Text: Correct the problem with the XML schema document and CALL the XSR_COMPLETE
stored procedure again.
SQLCODE or -20400
SQLCODEs:
SQLSTATE or 2200M
SQLSTATEs:
SQ20412
Message Text: Serialization of XML value resulted in conversion error.
Cause Text: Serialization of the XML data may require conversion to a CCSID different from the source
CCSID. Substitution characters are not allowed in the result of XML serialization. The
statement cannot be processed.
Recovery Text: Choose a target encoding that can represent all characters in the XML value. Unicode
encodings are recommended as they can represent all characters. Try the request again.
SQLCODE or -20412
SQLCODEs:
SQLSTATE or 2200W
SQLSTATEs:
SQ20422
Message Text: Table &1 in &2 must contain a column that is not hidden.
Cause Text: A CREATE or ALTER TABLE of table &1 in schema &2 was attempted but the statement
would result in a table with only IMPLICITLY HIDDEN columns. Tables must have at least
one column that is not IMPLICITLY HIDDEN.
Recovery Text: Ensure the table has at least one column that is not IMPLICITLY HIDDEN. Try the request
again.
SQ20423
Message Text: Error occurred during text search processing.
Cause Text: An error occurred during the text search processing of a CONTAINS or SCORE function.
The error happened on server &1 using text search index &2 for reason code &3.
SQ20424
Message Text: Text search support is not available for reason &1.
Cause Text: A problem with one of the text search administrative tables was detected. The reason code
is &1.
v 1 - One of the text search administrative tables was not found.
v 3 - Text search support is not installed.
v 4 - Text search support is not started.
v 7 - No text search servers have been defined.
Recovery Text: Make sure text search support is correctly installed and has been started. Try the request
again.
SQLCODE or -20424
SQLCODEs:
SQLSTATE or 38H11
SQLSTATEs:
SQ20425
Message Text: Text search not allowed for column &1.
Cause Text: A CONTAINS or SCORE text search function specified column &1 in table &2 in &3. A text
index does not exist for this column so text search processing cannot be performed.
Recovery Text: Define a text index for this column, or use a column that already has a text index defined.
SQLCODE or -20425
SQLCODEs:
SQLSTATE or 38H12
SQLSTATEs:
SQ20426
Message Text: Conflicting text search administration procedure already running.
Cause Text: A conflicting text search administrative procedure such as update is already running on this
index.
SQ20427
Message Text: Error occurred during text search administrative procedure.
Cause Text: An error occurred during a text search administrative procedure. The reason code is &2.
The text returned is: &1.
Recovery Text: Fix the problem indicated by the reason code and try the administrative procedure again.
SQLCODE or -20427
SQLCODEs:
SQLSTATE or 38H14
SQLSTATEs:
SQ20430
Message Text: Global variable &1 in &2 may not be used in this context.
Cause Text: Global variable &1 in &2 may not be set or used. A global variable may not be used in a
PREPARE, OPEN, EXECUTE IMMEDIATE, or FETCH statement when the current
connection is to a remote database.
Recovery Text:
Run the PREPARE, OPEN, EXECUTE IMMEDIATE, or FETCH statement when the current
connection is to the local database.
SQLCODE or -20430
SQLCODEs:
SQLSTATE or 428GX
SQLSTATEs:
SQ20431
Message Text: ROW CHANGE TIMESTAMP expression not valid for table &1 in &2.
Cause Text: A ROW CHANGE TIMESTAMP expression is specified for table &1 in &2 but table does
not have a column that is defined as ROW CHANGE TIMESTAMP.
Recovery Text: Remove the ROW CHANGE TIMESTAMP expression or specify a table that contains a
ROW CHANGE TIMESTAMP column. Try the request again.
SQLCODE or -20431
SQLCODEs:
SQLSTATE or 55068
SQLSTATEs:
SQ20434
Message Text: UPDATE statement cannot have all columns set to UNASSIGNED value.
Cause Text: The value UNASSIGNED was used in an UPDATE statement to set the values for all
columns in the statement. At least one of the columns must be set to a value other than
UNASSIGNED.
SQ20436
Message Text: Data type not valid for array.
Cause Text: CREATE TYPE for an array was specified using a data type that is not supported for an
array.
Recovery Text: Change the data type to one that can be used for an array. Try the request again.
SQLCODE or -20436
SQLCODEs:
SQLSTATE or 429C2
SQLSTATEs:
SQ20437
Message Text: Operation only allowed for array variables.
Cause Text: An operand that is not an SQL array was specified for an operation that is only allowed for
an array. Array subscripts, TRIM_ARRAY, UNNEST, CARDINALITY, and
MAX_CARDINALITY can only be specified for an SQL array parameter or variable.
Recovery Text: Change the operand to be an SQL array variable or parameter. Try the request again.
SQLCODE or -20437
SQLCODEs:
SQLSTATE or 428H0
SQLSTATEs:
SQ20438
Message Text: Array subscript value not correct data type.
Cause Text: The value specified for the subscript of an array must be a built in numeric or string data
type.
Recovery Text: Change the array subscript to a valid value. Try the request again.
SQLCODE or -20438
SQLCODEs:
SQLSTATE or 428H1
SQLSTATEs:
SQ20439
Message Text: Value &1 not valid for array subscript.
Cause Text: Value &1 was specified as the subscript of an array but the value is negative or 0, the value
is greater than the maximum cardinality of the array, or the value is being used to reference
an array element greater than the current cardinality. If the value is -1, the NULL value
may have been supplied for the subscript, or the array is a read-only array.
Recovery Text: Change the subscript to a valid value or use an array that is not a read-only array. Try the
request again.
SQ20440
Message Text: Cardinality &1 of source array greater than maximum &2 of target array.
Cause Text: Cardinality &1 of the source array is greater than the maximum cardinality of the target
array. The array cannot be assigned.
Recovery Text: Change the maximum cardinality of the target array so that all elements of the source array
will fit in the array. TRIM_ARRAY can be used to reduce the size of the source array. Try
the request again.
SQLCODE or -20440
SQLCODEs:
SQLSTATE or 2202F
SQLSTATEs:
SQ20441
Message Text: Array type not valid where specified.
Cause Text: An array type was used but is not allowed in the specified context. Array types can only be
used:
v As an argument of as SQL scalar function or an SQL or JAVA procedure.
v For an SQL variable declared in an SQL procedure or SQL scalar function.
v In a CAST specification in an SQL procedure or SQL scalar function.
The data type of the array type that is used when a routine is invoked must match the data
type of the array that was used when the routine was created.
Recovery Text: Remove the reference to the array type. If the data type of the array changed after the
routine was created, recreate the routine so it will use the new definition. Try the request
again.
SQLCODE or -20441
SQLCODEs:
SQLSTATE or 428H2
SQLSTATEs:
SQ20446
Message Text: CCSID was changed.
Cause Text: An associated mixed or graphic CCSID does not exist for the job's default CCSID &1. A
CCSID of UTF-8 or UTF-16 will be used.
Recovery Text: Change the job's CCSID to one that has an associated mixed or graphic CCSID.
SQLCODE or +20446
SQLCODEs:
SQLSTATE or 0168P
SQLSTATEs:
SQ20447
Message Text: Format string not valid for function &1.
The format string may not be valid for one of the following reasons:
v The format does not contain a format element.
v The format contains multiple elements that represent the same component of a
timestamp.
v The format contains AM, IYYY.
Recovery Text: Specify a valid format string for the function. Try the request again.
SQLCODE or -20447
SQLCODEs:
SQLSTATE or 22007
SQLSTATEs:
SQ20448
Message Text: Expression not valid using format string specified for TIMESTAMP_FORMAT.
Cause Text: Argument 1 of the TIMESTAMP_FORMAT function can not be interpreted using the format
string specified in argument 2 for one of the following reasons:
v The string expression is too short or too long.
v The string expression does not conform to the template specified in the format string.
v Too many digits were specified in the string expression for the corresponding format
element in the format string.
v A value in the string expression is not valid for the corresponding format element in the
format string.
Recovery Text: Specify a valid format string for the function. Try the request again.
SQLCODE or -20448
SQLCODEs:
SQLSTATE or 22007
SQLSTATEs:
SQ20451
Message Text: Cycle detected in hierarchical query.
Cause Text: The hierarchical query using the CONNECT BY clause found a row that is a direct or
indirect parent of itself by using the CONNECT BY search condition.
Recovery Text: Do one of the following:
v If a cycle is expected, add the NOCYCLE keyword to the CONNECT BY clause.
v If no cycles are expected, use the CONNECT_BY_ISCYCLE pseudo column along with
the NOCYCLE keyword to find a row that is directly or indirectly an ancestor of itself.
SQLCODE or -20451
SQLCODEs:
SQLSTATE or 560CO
SQLSTATEs:
SQ20452
Message Text: Hierarchical query construct &1 not used correctly.
SQ20454
Message Text: Specified join operation not valid.
Cause Text: The specified join operation is not valid for reason code &1. Reason codes and their
meanings are:
v 20 -- The USING clause is specified and the select list contains only T.* where T is a table
in the join. All the columns in table T are contained in the USING clause so the result
table is empty.
Recovery Text: Change the select list to return at least one result column. Try the request again.
SQLCODE or -20454
SQLCODEs:
SQLSTATE or 428H5
SQLSTATEs:
SQ20455
Message Text: Text search index &1 may be out of date.
Cause Text: The text index &1 used for text search processing of a CONTAINS or SCORE function may
be out of date.
Recovery Text: Run the administrative stored procedure to update the text index. Try the request again.
SQLCODE or +20455
SQLCODEs:
SQLSTATE or 0168R
SQLSTATEs:
SQ20463
Message Text: Result sets not returned because procedure called by function or trigger.
Cause Text: Result sets will not be returned to the client because the procedure was directly or
indirectly called by a function or trigger.
SQ20469
Message Text: Access control on table &1 in &2 is not valid.
Cause Text: Row or column access control for table &1 in &2 either cannot be activated or is not valid.
The reason code is &3. Reason codes are:
v 37 -- A trigger, &4 in &5, is defined for the table and the trigger is not defined as secured
or is a read trigger.
v 38 -- A view is defined on the table. Trigger &4 in &5 is defined for that view and the
trigger is not defined as secured.
v 39 -- A materialized query table definition directly or indirectly references user defined
function &4 in &5 which must be defined as secured due to one of the following
conditions: 1) The materialized query table is defined on the table and the table has row
or column access control. 2) The materialized query table has row or column access
control. 3) The function either directly or indirectly references a table with row or column
access control.
Recovery Text: Do one of the following based on the reason code:
37, 38 -- Alter trigger &4 in &5 using the SECURE keyword to make it secure.
v 39 -- Alter user defined function &4 in &5 using the SECURE keyword to make it secure.
If the user defined function name is *N, examine the job log to determine which function
needs to be altered.
SQLCODE or -20469
SQLCODEs:
SQLSTATE or 55019
SQLSTATEs:
SQ20470
Message Text: &2 in &3 cannot be used for row and column access control.
Cause Text: &2 in &3 type &1 cannot be created or altered for one of the following reasons because &5
in &6 type &4 depends on it for row or column level access control.
v A user defined function must be secure if it is referenced in a PERMISSION or MASK or
is referenced in a view that is referenced by a PERMISSION or MASK.
v A trigger must be secure if it is defined on a table with an active PERMISSION or
MASK.
v A trigger must be secure if it is defined on a view that is based on a table with an active
PERMISSION or MASK.
v A read trigger cannot be defined over a table with active row or column level access
control.
Recovery Text: If &2 in &3 is a read trigger, row or column access control must be deactivated. Otherwise,
use the SECURE keyword to create or alter &2 in &3 type &1 to be secure.
SQLCODE or -20470
SQLCODEs:
SQLSTATE or 428H8
SQLSTATEs:
SQ20472
Message Text: &1 cannot be used as the name of a permission or mask.
Cause Text: The name specified for the mask or permission cannot be used for reason code &2.
v 3 -- &1 begins with the letters QIBM which are not allowed as the first 4 characters of a
row permission or column mask name.
Recovery Text: Choose a different mask or permission name.
SQLCODE or -20472
SQLCODEs:
SQLSTATE or 428H9
SQLSTATEs:
SQ20473
Message Text: Column &3 cannot be used as an argument of function &1.
Cause Text: Function &1 in &2 is not secure and column &3 has an active and enabled column mask.
An input argument of a function that is not secure must not reference a column with a
mask that is enabled on a table with active column access control.
Recovery Text: Alter function &1 in &2 to be SECURE. Try the request again.
SQLCODE or -20473
SQLCODEs:
SQLSTATE or 428HA
SQLSTATEs:
SQ20474
Message Text: Permission or mask &7 in &8 is not valid.
This failure may occur when attempting to do one of the following operations:
v CREATE MASK or CREATE PERMISSION of &7 in &8.
v CREATE FUNCTION or ALTER FUNCTION of a function that is used by &7 in &8 type
&9.
v ALTER TABLE of &1 in &2.
v ALTER MASK or ALTER PERMISSION of &7 in &8.
v ALTER MASK, ALTER PERMISSION, DROP MASK, or DROP PERMISSION of any mask
or permission defined on &1 in &2.
v CREATE MASK or CREATE PERMISSION of additional masks or permissions defined on
&1 in &2.
v Any operation that uses table &1 in &2.
Recovery Text: Correct the problem. Try the request again.
SQLCODE or -20474
SQLCODEs:
SQLSTATE or 428HB
SQLSTATEs:
SQ20475
Message Text: A mask is already defined for column &5.
Cause Text: Column mask &1 in &2 is currently defined for column &5. Only one column mask may be
defined on a column.
Recovery Text: Define this column mask on a different column or drop column mask &1 in &2 and try the
request again.
SQLCODE or -20475
SQLCODEs:
SQLSTATE or 428HC
SQLSTATEs:
SQ20478
Message Text: Row or column access control is not valid.
SQ20479
Message Text: Object &1 in &2 type *&4 cannot be dropped or altered.
Cause Text: &1 in &2 cannot be dropped or altered as specified because it is involved in row or column
access control &5 in &6. See reason code &3 for more information on the failure:
v 1 -- Dependent object &5 in &6 type &7 references column &8.
v 2 -- The authorization ID associated with the statement in not authorized to the
QIBM_DB_SECADM function.
v 3 -- &1 in &2 type *&4 is defined with row or column access control. An attempt to
regenerate &5 in &6 has failed.
Recovery Text: Do one of the following based on the reason code.
v 1 -- DROP the dependent object &5 in &6 type &7 and try the request again.
v 2 -- Perform the operation with a user profile that is authorized to the Database Security
Administrator function. This is obtained through Application Administration in System i®
Navigator, or with the Change Function Usage Information (CHGFCNUSG) command
with a function ID of QIBM_DB_SECADM.
v 3 -- See previously listed messages in the job log for the cause of the failure, correct the
problem and retry the request.
SQLCODE or -20479
SQLCODEs:
SQLSTATE or 42917
SQLSTATEs:
SQ20481
Message Text: View or function &1 in &2 references itself.
SQ20483
Message Text: Named argument &1 for routine &2 not valid for reason code &4.
Cause Text: The named argument for parameter &1 is not valid for reason code &4.
v 1 -- The CALL statement or function invocation includes named argument &1 which
does not exist for routine &2 in schema &3.
v 2 -- The CALL statement or function invocation includes named argument &1 which is
followed by one or more unnamed arguments. All arguments following a named
argument must also be named.
v 3 -- The CALL statement or function invocation specifies named argument &1 more than
once, either explicitly or implicitly.
v 4 -- The CALL statement specifies named argument &1 and routine &2 in &3 is not
found. Named arguments are only supported for procedures defined with the CREATE
PROCEDURE statement.
v 5 -- The function invocation of &2 in &3 specifies named argument &1 and the ordinal
position of the corresponding parameter is different for at least two candidate functions.
Recovery Text: Change the invocation of the procedure or function to use named parameters that are valid.
Try the request again.
SQLCODE or -20483
SQLCODEs:
SQLSTATE or 4274K
SQLSTATEs:
SQ20484
Message Text: Parameter &3 required for routine &1 in &2.
Cause Text: A call statement for routine &1 in schema &2 specified with a named parameter is not
valid. Parameter &3 must be specified on the call statement because it has no default value.
Recovery Text: Specify a value for parameter &3. Try the request again.
SQLCODE or -20484
SQLCODEs:
SQLSTATE or 428HF
SQLSTATEs:
SQ20489
Message Text: Index &1 cannot be both an encoded vector index and span all partitions.
SQ20529
Message Text: Argument of WRAP function or CREATE_WRAPPED procedure not valid.
Cause Text: The argument of the WRAP function or the CREATE_WRAPPED procedure is not a valid
SQL statement. The valid statements are:
v CREATE FUNCTION (SQL)
v CREATE PROCEDURE (SQL)
v CREATE TRIGGER
If the argument is one of these statements, it is not valid if it has already been wrapped
and the token directly following the WRAPPED keyword is not a supported application
server value.
Recovery Text: Make sure the argument to the WRAP function or the CREATE_WRAPPED procedure is a
valid statement. If the statement is already wrapped by a different application server, it
cannot be processed using DB2 for i.
SQLCODE or -20529
SQLCODEs:
SQLSTATE or 5UA0O
SQLSTATEs:
SQ20530
Message Text: Obfuscated statement is not valid. Reason code is &1.
Cause Text: An error occurred processing an SQL statement that includes the WRAPPED clause. The
reason code is &1. Reason codes and their meanings are:
v 1 -- The statement was wrapped on a platform or version that is not supported.
v 2 -- The obfuscated portion of the statement is corrupted.
Recovery Text: Make sure that the statement was wrapped on a supported platform and that the
obfuscated portion of the statement has not been modified.
SQLCODE or -20530
SQLCODEs:
SQLSTATE or 42638
SQLSTATEs:
SQ20538
Message Text: Row and column access control on &3 in &4 may need to be changed.
Cause Text: Row and column access control has been modified for &1 in &2 which is referenced by
materialized query &3 in &4.
Recovery Text: A comparable change may need to be made to the row and column access control
definitions for materialized query &3 in &4.
SQ20547
Message Text: Variable &1 in &2 is read-only.
Cause Text: An attempt to use variable &1 in &2 as a target of an assignment statement has failed
because &1 in &2 is a read-only global variable.
Recovery Text: Change the statement to use a different variable. Try the request again.
SQLCODE or -20547
SQLCODEs:
SQLSTATE or 428I3
SQLSTATEs:
SQ30000
Message Text: Distributed Relational Database Architecture™ (DRDA) protocol error.
Cause Text: Command or SQL statement failed due to a distributed protocol error that will not affect
subsequent commands or SQL statements. The protocol error is &1 with a location code of
&2.
If the protocol error does not appear in the list, refer to the DDM Architecture Reference for
DDM code point &1.
Recovery Text: If the protocol error is '121C'X, then obtain the authorization required to use this command
or SQL statement at the application server. If the protocol error is not '121C'X, then report
the problem using Analyze Problem (ANZPRB).
SQLCODE or -30000
SQLCODEs:
SQLSTATE or 58008
SQLSTATEs:
SQ30020
Message Text: Distributed Relational Database Architecture (DRDA) protocol error.
Cause Text: Command or SQL statement failed due to a distribution protocol error that will affect
subsequent SQL statements or commands. The application has been disconnected and the
process is in an unconnected state. The protocol error is &1 with a location code of &2.
If the protocol error does not appear in the list, refer to the DDM Architecture Reference for
DDM code point &1.
Recovery Text: Report the problem using Analyze Problem (ANZPRB).
SQLCODE or -30020
SQLCODEs:
SQLSTATE or 58009
SQLSTATEs:
SQ30021
Message Text: Distributed relational database not supported by the remote system.
Cause Text: An attempt was made to connect to a Distribute Data Management (DDM) server that does
not support Distributed Relational Database Architecture (DRDA).
On the remote system, the DDM manager class was &1 with manager level &2.
Recovery Text: Change the program to connect to a relational database which supports DRDA.
SQLCODE or -30021
SQLCODEs:
SQLSTATE or 58010
SQLSTATEs:
SQ30040
Message Text: DRDA resources at relational database &1 unavailable.
DRDA resource &2 is unavailable at relational database &1 with location code &3.
SQ30041
Message Text: DRDA resources at relational database &1 unavailable.
Cause Text: SQL statement or command failed due to an unavailable Distributed Relational Database
Architecture (DRDA) resource that will affect subsequent commands and SQL statements.
The application has been disconnected and the process is in an unconnected state.
DRDA resource &2 is unavailable at relational database &1 with location code &3.
SQ30050
Message Text: DDM command &1 not valid while bind process in progress.
SQ30051
Message Text: Bind process for specified package name and consistency token not active.
Cause Text: Attempted to run a BNDSQLSTT or ENDBND Distributed Data Management (DDM)
command for a bind process that was not active.
Recovery Text: Report this problem using the Analyze Problem (ANZPRB) command.
SQLCODE or -30051
SQLCODEs:
SQLSTATE or 58012
SQLSTATEs:
SQ30052
Message Text: Program preparation assumptions not correct.
Cause Text: The application requester did not understand the SQL statement and assumed all host
variables were input, but this assumption was not correct.
Recovery Text: Refer to the CRTSQLxxx (where xxx=CBL, PKG, PLI, RPG, CI, CPPI, RPGI, or CBLI) listing
to find all SQL statements that were not recognized. Remove all unrecognized SQL
statements that contain output host variables. Precompile the program again.
SQLCODE or -30052
SQLCODEs:
SQLSTATE or 42932
SQLSTATEs:
SQ30053
Message Text: Not authorized to create package for owner &1.
Cause Text: Attempt to create the package failed because you are not authorized to owner &1.
Recovery Text: Obtain the required authorization to &1 and try again.
SQLCODE or -30053
SQLCODEs:
SQLSTATE or 42506
SQLSTATEs:
SQ30060
Message Text: User is not authorized to relational database &1.
Cause Text: If relational database &1 is DB2 for IBM i, a user exit program denied access to the user, or
a failure in the user exit program occurred.
Recovery Text: Obtain authorization to relational database &1 and try the request again.
SQ30061
Message Text: Relational database &1 not found.
Cause Text: Relational database &1 was either not in the relational database directory or defined at the
remote location.
Recovery Text: Do one of the following:
v Use the Add Relational Database Directory Entry (ADDRDBDIRE) command to add the
relational database name to the relational database directory.
v Change the relational database name to match the relational database directory entry.
v Verify the relational database name is defined on the remote location.
SQLCODE or -30061
SQLCODEs:
SQLSTATE or 08004
SQLSTATEs:
SQ30070
Message Text: Distributed Data Management (DDM) command &1 not supported.
Cause Text: The remote system does not support the DDM command &1.
If the DDM command is '2012'X, the remote system does not support the SQL DESCRIBE
TABLE statement. If the DDM command is not '2012'X, to determine which command is not
supported, see the DDM Architecture Reference. For a list of DDM commands, refer to the
Architecture Books section of the Bibliography in the Distributed database programming
topic collection in the Database category in the IBM i Information Center,
http://www.ibm.com/systems/i/infocenter/.
Recovery Text: Remove the SQL statement from the program and precompile the program.
SQLCODE or -30070
SQLCODEs:
SQLSTATE or 58014
SQLSTATEs:
SQ30071
Message Text: Distributed Data Management (DDM) object &1 not supported.
Cause Text: DDM object &1 was not supported.
Recovery Text: See previous messages for more information. See the DDM Architecture Reference for
additional information about code point &1.
SQLCODE or -30071
SQLCODEs:
SQLSTATE or 58015
SQLSTATEs:
SQ30072
Message Text: Distributed Data Management (DDM) parameter &1 not supported.
SQ30073
Message Text: Distributed Data Management (DDM) parameter value &1 not supported.
Cause Text: DDM parameter value &1 is not supported. The location code is &2 with an error code of
&3.
If &1 is not in the list above, refer to the DDM Architecture Reference for a description of
the parameter value that was not supported.
Recovery Text: See previous messages for more information. Change your job or SQL program to send a
value that is supported by the application server and try again.
SQLCODE or -30073
SQLCODEs:
SQLSTATE or 58017
SQLSTATEs:
SQ30074
Message Text: Distributed Data Management (DDM) reply message &1 not supported.
Cause Text: DDM reply message &1 was not supported.
Recovery Text: See previous messages for more information. See the DDM Architecture Reference for
additional information about code point &1.
SQLCODE or -30074
SQLCODEs:
SQ30080
Message Text: Communication error occurred during distributed database processing.
Cause Text: A communication error occurred. Possible reasons include:
v The remote system is not available.
v The communications network is not available.
v The userid used to start the connection may not exist on the remote system.
v The remote system may require the password to be encrypted.
v The password may not be valid for the userid. The characters and case of the password
specified must match exactly the password on the remote system.
v A server authorization entry for the remote system, if used, may be incorrect. Server
names must be in upper case. The QRETSVRSEC system value must be set to '1' to retain
passwords.
If message CPE3425 (connection refused) precedes this message, the cause may be:
v The DDM/DRDA TCP/IP server is not started on the remote system.
v An incorrect port was specified for the remote system.
v The remote system is restricting DRDA ports.
v The SOCKS server, if used, is not configured properly.
The APPC major return code is &1 and the minor return code is &2. For TCP/IP, both
return codes will be 00. If the return codes are not both 00, their meaning can be found in
the APPC Programming topic in the Information Center, http://www.ibm.com/systems/i/
infocenter/.
Recovery Text: See previous messages for more information. Check the status of the remote system and the
communications network for possible problems. If the application server is DB2 for IBM i,
check the QSYSOPR message queue for error messages.
SQLCODE or -30080
SQLCODEs:
SQLSTATE or 08001
SQLSTATEs:
SQ30081
Message Text: Communication error has been detected during distributed database processing.
Cause Text: A communication error has been detected. Possible reasons include:
v The local system timed out waiting for the connection to be started.
Recovery Text: See previous messages for more information. Check the status of the remote system and the
communications network for possible problems. If the application server is DB2 for IBM i,
check QSYSOPR message queue for error messages.
SQLCODE or -30081
SQLCODEs:
SQLSTATE or 08001
SQLSTATEs:
SQ30082
Message Text: Authorization failure on distributed database connection attempt.
SQ30089
Message Text: Communication error occurred during DB2 Multisystem processing.
Cause Text: A communication error occurred. A possible list of reasons may include:
v The remote system is not available.
v The communications network is not available.
v The userid used to start the connection may not exist on the remote system.
Recovery Text: See previous messages for more information. Check the status of the remote system and the
communications network for possible problems. Check QSYSOPR message queue for error
messages.
SQLCODE or -30089
SQLCODEs:
SQLSTATE or 08001
SQLSTATEs:
SQ30090
Message Text: Change request not valid for read-only application server.
This message can occur when initially attempting to connect to a system other than DB2 for
IBM i using interactive SQL with the COMMIT option set to *NONE.
Recovery Text: Remove the change request from the program and try again. If the problem is due to the
use of COMMIT(*NONE) to a system that is not DB2 for IBM i, change to a different
commitment control level and try again.
SQLCODE or -30090
SQLCODEs:
SQLSTATE or 25000, 2D528, 2D529
SQLSTATEs:
SQ30104
Message Text: Bind or precompile option &1 with value &2 not valid.
Cause Text: Supported values on the DB2 for IBM i application server are:
PATH -- schema-names
SQ30106
Message Text: The input data for a multiple row insert is not valid.
Cause Text: A data error has been detected on the client when processing a row for a multi-row input
operation. A null indicator value of -2 (X'FE') was received from the client which indicates
that the server should return an error SQLCA containing SQLSTATE 22527 over a null row.
For an atomic multi-row input operation, such an error terminates processing of the
multi-row input request, and any changes that have resulted from this request will be
undone. For a non-atomic multi-row operation, such an error terminates processing of the
multi-row input request, but any changes for this request are not undone.
Recovery Text: Determine which part of the multi-row input operation is in error and retry the request.
SQ30107
Message Text: A request to release record read locks on close of cursor was ignored.
Cause Text: DB2 for IBM i does not support this feature. To avoid this warning do the following.
v For embedded SQL remove the WITH RELEASE clause from the CLOSE.
v For CLI remove the option to define cursors with release.
Recovery Text:
SQLCODE or +30107
SQLCODEs:
SQLSTATE or 01662
SQLSTATEs:
SQL0007
Message Text: Character &1 (HEX &2) not valid in SQL statement.
Cause Text: The character &1 specified in the SQL statement is not permitted. The hexadecimal
representation for the character is &2. The character is ignored by the precompiler and
processing of the statement continues.
Recovery Text: Correct the character. The character may need to be enclosed either in quotation marks or
apostrophes. Precompile the program again.
SQLCODE or -007
SQLCODEs:
SQLSTATE or 42601
SQLSTATEs:
SQL0010
Message Text: String constant beginning &1 not delimited.
Cause Text: The string delimiter is missing in the constant beginning with &1. The string is treated as if
it were delimited by the end of the source file.
Recovery Text: Delimit the string constant. Check for any missing or extra quotation marks and
apostrophes. These errors are likely to cause other errors. Some statements may not have
been processed as the result of either missing or extra string delimiters. Precompile the
program again.
SQLCODE or -010
SQLCODEs:
SQLSTATE or 42603
SQLSTATEs:
SQL0011
Message Text: Comment not closed.
Cause Text: A comment is not closed correctly with a comment delimiter. The comment is treated as if
it were closed by the end of source file.
SQL0012
Message Text: Correlation without qualification occurred for column &1 to table &2.
Cause Text: Column &1 which occurs in a subselect, is not explicitly qualified, and occurs in table &2 in
library &3 specified in the FROM clause of an outer subselect or as the target of an update
or delete operation. Consequently, the reference to the column in the subselect is an outer
reference, and correlation will occur.
Recovery Text: Ensure you intended to use the correlation. If you did not intend to use the correlation, the
column does not exist in any of the tables or views identified in the FROM clause of the
same level of the subselect that column &1 was referenced. Since it is a good practice to
explicitly qualify any intended correlated references, it is recommended that the statement
be changed so that the column &1 is qualified with a table designator.
SQLCODE or +012
SQLCODEs:
SQLSTATE or 01545
SQLSTATEs:
SQL0029
Message Text: INTO clause missing from embedded statement.
Cause Text: SELECT and VALUES INTO statements embedded in a program must have an INTO clause
to specify where the results of the statement are to be placed.
Recovery Text: Add the INTO clause to the statement and try the request again.
SQLCODE or -029
SQLCODEs:
SQLSTATE or 42601
SQLSTATEs:
SQL0030
Message Text: Number of host variables less than result values.
Cause Text: The number of host variables specified in the INTO clause is less than the number of result
values. If the program is run, only the variables specified will have values assigned to
them.
Recovery Text: If all values should be received, specify the proper number of host variables. Precompile
the program again.
SQLCODE or +030
SQLCODEs:
SQLSTATE or 01503
SQLSTATEs:
SQL0057
Message Text: RETURN statement in an SQL function must return a value.
Cause Text: A RETURN statement is specified in an SQL function without a return value. The return
value must be specified.
Recovery Text: Add a value to return. Try the request again.
SQLCODE or -057
SQLCODEs:
SQLSTATE or 42631
SQLSTATEs:
SQL0058
Message Text: Value specified on RETURN statement must be an integer.
Cause Text: A RETURN statement is specified in an SQL procedure but the value specified is not
integer. The return value for an SQL procedure must be integer.
Recovery Text: Specify an integer value on the RETURN statement. Try the request again.
SQLCODE or -058
SQLCODEs:
SQLSTATE or 428F2
SQLSTATEs:
SQL0060
Message Text: Value &3 for argument &1 of &2 function not valid.
Cause Text: The length or scale specified as &3 for argument &1 of the &2 function is not valid. The
length specified for numeric values must be an unsigned integer from 1 through 63. The
scale specified for numeric values must be an unsigned integer between 0 and the specified
length.
Recovery Text: Correct the length or scale specified for the function. Try the request again.
SQLCODE or -060
SQLCODEs:
SQLSTATE or 42815
SQLSTATEs:
SQL0075
Message Text: Descriptor item number &1 is not correct.
Cause Text: Descriptor item number &1 is not correct for one of the following reasons.
v The value given for the maximum number of items on an ALLOCATE DESCRIPTOR
statement is not between 1 and 8000.
v The item number given on a GET DESCRIPTOR or SET DESCRIPTOR statement is not
between 1 and the maximum number of items assigned when the descriptor was
allocated.
Recovery Text: For the ALLOCATE DESCRIPTOR statement, ensure the maximum items specified is
between 1 and 8000. For GET DESCRIPTOR and SET DESCRIPTOR statements, ensure the
item number specified in VALUE is between 1 and the maximum number of items for the
specified descriptor. Try the request again.
SQLCODE or -075
SQLCODEs:
SQLSTATE or 07009
SQLSTATEs:
SQL0076
Message Text: DATA or INDICATOR item not correct.
Cause Text: The DATA or INDICATOR item is not correct for one of the following reasons:
v The GET DESCRIPTOR statement requested the DATA or INDICATOR item, but the
DATA or INDICATOR item has no value.
v The GET DESCRIPTOR or SET DESCRIPTOR statements specified a host variable for the
DATA item that is not valid. The host variable must match the DATA item in type,
length, precision, scale, and CCSID.
Recovery Text: If DATA or INDICATOR does not have a known value, perform an operation such as
FETCH or use SET DESCRIPTOR to establish a DATA or INDICATOR value prior to the
GET DESCRIPTOR. If the host variable on the GET DESCRIPTOR or SET DESCRIPTOR
statement does not match the attributes of the DATA item, change the attributes of the host
variable. Try the request again.
SQLCODE or -076
SQLCODEs:
SQLSTATE or 22005
SQLSTATEs:
SQL0078
Message Text: Parameter name required for routine &1 in &2.
Cause Text: Parameter name must be specified when creating SQL routines.
Recovery Text: Specify a parameter name. Try the request again.
SQLCODE or -078
SQLCODEs:
SQLSTATE or 42629
SQLSTATEs:
SQL0079
Message Text: Schema &2 for object &1 not valid.
Cause Text: Object &1 cannot be qualified with schema &2. A table in the DECLARE GLOBAL
TEMPORARY TABLE statement must be qualified with SESSION. A reference to a
temporary table must be qualified with SESSION or QTEMP. Indexes and views over a
temporary table must be created in the schema SESSION or QTEMP.
Recovery Text: Specify SESSION as the schema name. Try the request again.
SQLCODE or -079
SQLCODEs:
SQLSTATE or 428EK
SQLSTATEs:
SQL0080
Message Text: Indicator variable &1 not SMALLINT type.
Cause Text: The definition of indicator variable &1 must be a 2-byte binary with a zero scale.
Recovery Text: Specify an indicator variable that is defined as a 2-byte binary with a zero scale. Try the
request again.
SQLCODE or -080
SQLCODEs:
SQLSTATE or 42978
SQLSTATEs:
SQL0087
Message Text: Variable cannot be NULL.
Cause Text: A global variable, SQL variable, or parameter was specified in an SQL statement where
NULL is not allowed.
Recovery Text: Assign a value to the global variable, SQL variable, or parameter. Try the request again.
SQL0088
Message Text: &1 applies to entire table.
Cause Text: The UPDATE or DELETE statement does not have a WHERE clause and will delete or
update all the rows in the specified table.
Recovery Text: Do one of the following:
v Verify that all the rows in the specified table need to be deleted or updated and try the
statement again.
v If the rows in the specified table do not need to be deleted or updated, add a WHERE
clause and precompile the program again.
SQLCODE or +088
SQLCODEs:
SQLSTATE or 01504
SQLSTATEs:
SQL0090
Message Text: Host variable not permitted here.
Cause Text: Host variable &1 is not allowed as used in this statement. Host variables are not allowed:
v In a CREATE VIEW, CREATE TABLE, CREATE INDEX, CREATE MASK, CREATE
PERMISSION, or ALTER TABLE statement.
v In a default value clause for a parameter in a CREATE PROCEDURE or CREATE
FUNCTION statement.
v In any interactive SQL statement when the statement processing value is *RUN or *VLD.
v In an SQL statement processed by the RUNSQLSTM or RUNSQL commands.
v In an INSERT, UPDATE, DELETE, CALL, or DECLARE CURSOR statement in REXX.
Recovery Text: Do one of the following and try the request again.
v Specify either a constant or a column name to replace the host variable. The colon
indicates that the name that follows is a host variable. Remove the colon to specify a
column name.
v If in interactive SQL, set the statement processing value to *SYN to syntax check a
statement that contains a host variable.
v If in REXX, change the host variables to parameter markers and prepare the INSERT,
UPDATE, DELETE, CALL, or DECLARE CURSOR statement.
SQLCODE or -090
SQLCODEs:
SQLSTATE or 42618
SQLSTATEs:
SQL0097
Message Text: Use of data type not valid.
SQL0100
Message Text: Row not found for &1.
Cause Text: One of the following conditions has occurred:
v If this is a FETCH statement, no more rows satisfy the selection values (end of file). The
name of the cursor is &1 and the result set identifier is &2. If the result set identifier is
non-zero, the result table for this cursor was being accessed as a stored procedure result
set.
v If this is a FETCH statement for a scrollable cursor, a record was not found. If NEXT was
specified, end of file was reached. If PRIOR was specified, the beginning of the file was
reached. If RELATIVE was specified, either the beginning of file or the end of file was
reached, depending on the value specified. If FIRST or LAST was specified, then no
records satisfy the selection criteria. The name of the cursor is &1.
v If this is an embedded SELECT statement, no rows satisfy the selection values.
v If this is an UPDATE, INSERT, DELETE, or MERGE statement, no rows satisfy the
subselect, WHERE clause, or MERGE criteria. No rows were updated, inserted, or
deleted.
v If SKIP LOCKED DATA is specified, no available rows qualified for return.
Recovery Text: No recovery is necessary.
SQLCODE or +100
SQLCODEs:
SQLSTATE or 02000
SQLSTATEs:
SQL0101
Message Text: SQL statement too long or complex.
SQL0102
Message Text: String constant beginning with &1 too long.
Cause Text: The string constant beginning with &1 is larger than 32740 bytes. If this is a graphic string
constant, the string cannot be longer than 16370 DBCS characters.
Recovery Text: Reduce the length of the string. Try the request again.
SQLCODE or -102
SQLCODEs:
SQLSTATE or 54002
SQLSTATEs:
SQL0103
Message Text: Numeric constant &1 not valid.
Cause Text: The token &1 begins with a digit, but the token is not a valid integer, decimal, or floating
point constant. Identifiers cannot begin with a digit except in a COBOL program.
Recovery Text: Do one of the following:
v Verify that token &1 is valid. Use apostrophes or quotation marks if a character constant
is required.
v Remove the character or characters that are not valid if a number is required.
SQLCODE or -103
SQLCODEs:
SQLSTATE or 42604
SQLSTATEs:
SQL0105
Message Text: Mixed, graphic, or UTF-8 string constant not valid.
Cause Text: Mixed, graphic, UTF-8 constants that are not valid were found in the value beginning &1.
One of the following occurred:
v An odd number of bytes were found between the shift-out and shift-in characters.
v Multiple shift-out characters were found before a shift-in character was found.
v A shift-out and shift-in were not found in the first and last byte, respectively, or were
found in a position other than the first and last byte of a graphic string constant.
v The PL/I form of the graphic string was used but the program is not PL/I.
v A shift-out was found indicating a PL/I graphic string. The shift-out was not followed by
a DBCS apostrophe, an even number of DBCS characters, another DBCS apostrophe, a
DBCS G, and a shift-in.
If this is a LABEL ON statement for a column, and the string is longer than 20 bytes, then
one of the 20-byte segments has a DBCS constant that is not valid.
Recovery Text: Specify the correct format for the constant. If this is a LABEL ON statement for a column,
ensure each 20-byte segment is in the correct format. Check for a quotation mark, an
apostrophe, shift-out or shift-in character, or an odd number of characters between the
shift-out and shift-in characters. Ensure graphic string constants are specified in the correct
form for the language. Try the request again.
SQLCODE or -105
SQLCODEs:
SQLSTATE or 42604
SQLSTATEs:
SQL0106
Message Text: Precision specified for FLOAT or DECFLOAT not valid.
Cause Text: The precision specified for FLOAT or DECFLOAT is not valid.
v DECFLOAT precision must be either 16 or 34.
v FLOAT precision must be in the range 1-53. If 1-23 is specified, the data type is
single-precision floating point. If 24-53 is specified, the data type is double-precision
floating point.
Recovery Text: Change the precision specified. Try the request again.
SQL0107
Message Text: &1 too long. Maximum &2 characters.
Cause Text: The name or string beginning with &1 is too long. The maximum length allowed is &2. The
maximum length for names depends on the type of the name:
v System names cannot exceed 10 characters.
v SQL names cannot exceed 128 characters.
v Relational database names cannot exceed 18 characters.
v Procedure or function names cannot exceed 128 characters. If the external program name
is not specified, the name cannot exceed 10 characters because it is used for the program
name.
v Host variable names in C and C++ cannot exceed 128 characters. Host variable names in
all other languages cannot exceed 64 characters.
The maximum length of the string for a COMMENT ON statement is 2000. The string for
COMMENT ON SEQUENCE cannot exceed 500 characters.
The maximum length of the string for a LABEL ON statement is 50. If the label is specified
as a column heading, the maximum is 60.
SQL0109
Message Text: &1 clause not allowed.
SQL0110
Message Text: Hexadecimal constant beginning with &1 not valid.
Cause Text: Either the hexadecimal constant &1 contains one or more characters that are not valid or
the number of characters between the string delimiters is not valid. All embedded blank
(X'40') characters are removed from the string before verification is done. Hexadecimal
constants must contain an even number of characters. The length of a hexadecimal graphic
string must be a multiple of 4 to ensure that it contains a valid number of DBCS characters.
Hexadecimal constants representing MIXED data must have an even number of bytes
between the shift-out (X'0E') and shift-in (X'0F') characters and must have paired shift
characters. Hexadecimal graphic constants cannot contain a shift-out or a shift-in.
Recovery Text: Correct the constant. Ensure that the constant contains an even number of digits and that
the length for a hexadecimal graphic constant is a multiple of 4. The valid characters for
hexadecimal digits are characters 0 through 9 and uppercase or lowercase A through F.
Ensure MIXED data is in the correct format. Remove shift-out or shift-in characters from a
hexadecimal graphic constant. Try the request again.
SQLCODE or -110
SQLCODEs:
SQLSTATE or 42606
SQLSTATEs:
SQL0112
Message Text: Argument of function &1 contains another function.
Cause Text: The argument of aggregate function &1 contains another aggregate function. Only
expressions without aggregate functions are allowed as arguments of an aggregate function.
SQL0113
Message Text: Name &1 not allowed.
Cause Text: &1 contains a character that is not allowed or does not contain any characters.
An ordinary identifier must begin with (A-Z, $, #, or @) and be followed by zero or more
(A-Z, 0-9, $, #, @, or _).
A delimited identifier is a string of characters within SQL escape characters. The characters
allowed in delimited names depends on the type of name.
v The characters between the escape characters for system table names, schema names,
package names and other system object names can be any characters except Hex 00-3F,
Hex 40 (space), Hex 5C (*), Hex 6F (?), Hex 7D ('), Hex 7F ("), and Hex FF.
v The characters between the escape characters for SQL names can be any characters except
Hex 00-3F and Hex FF.
v Delimited system column names must begin with (A-Z, $, #, or @) and be followed by
zero or more (A-Z, 0-9, $, #, @, or an _).
A relational database name must begin with A-Z and be followed by 0 or more letters,
numbers 0-9, or an _.
Ordinary identifiers that are contained within host variables must not include lowercase
letters because they are not converted to uppercase.
Recovery Text: Correct the name. Try the request again.
SQLCODE or -113
SQLCODEs:
SQLSTATE or 28000, 2E000, 42602
SQLSTATEs:
SQL0114
Message Text: Relational database &1 not the same as current relational database &2.
Cause Text: Relational database &1 was specified in a 3 part name in the statement. However, the name
is not the same as the current relational database.
Recovery Text: Change the statement so the relational database name specified is the same as the current
relational database name.
SQLCODE or +114, -114
SQLCODEs:
SQLSTATE or 01536, 42961
SQLSTATEs:
SQL0115
Message Text: Comparison operator &1 not valid.
SQL0117
Message Text: Statement contains wrong number of values.
Cause Text: One of the following conditions may exist:
v For an INSERT or UPDATE statement, the number of values is not the same as the
number of columns.
v For an UPDATE statement, the number of entries in the select list of a row fullselect does
not match the number of columns listed in the SET clause.
v For an INSERT with subselect, the number of entries in the select list is not the same as
the number of columns for the INSERT.
v For an INSERT statement, one or more of the columns omitted from the column list was
created as NOT NULL.
v For an INSERT statement, one or more of the columns specified for the INSERT was
created as NOT NULL, and the statement specified DEFAULT as the value to be inserted.
v For SET or VALUES INTO, the number of values is not the same as the number of target
host variables.
Recovery Text: Correct the statement to specify one value for each column. Ensure that the character
designated as the decimal point is used correctly in any numeric literals. If any columns not
specified in the INSERT column list were created as NOT NULL, specify values for those
columns. If a data change INSERT statement contains an INCLUDE clause, ensure values
are specified for all INCLUDE columns. Try the request again.
SQLCODE or -117
SQLCODEs:
SQLSTATE or 42802
SQLSTATEs:
SQL0118
Message Text: Table &1 in &2 also specified in a FROM clause.
Cause Text: Table &1 in &2 was specified as the object table of this INSERT, UPDATE, or DELETE
statement and in a FROM clause of the subselect or the FROM clause of a subquery. The
table that is the object of the operation cannot also be specified in a subselect. This also
applies to any base tables or views referred to in the statement. Overrides which specify a
TOFILE parameter of the same name as the object of the operation may have caused this
error.
Recovery Text: Remove the override or change the statement so the table that is the object of the operation
is not also specified in a subselect, then try the request again.
SQLCODE or -118
SQLCODEs:
SQLSTATE or 42902
SQLSTATEs:
SQL0120
Message Text: Use of function &1 not valid.
Cause Text: Function &1 cannot be used where it was specified:
v An aggregate function or user-defined function sourced on an aggregate function cannot
be specified in a SET clause, in a GROUP BY clause, in a START WITH clause, in a
CONNECT BY clause, in a JOIN condition, as the return expression for a RETURN
statement, as an argument of a table function, or as an expression in a SET statement, a
VALUES INTO statement, or a MERGE statement. An aggregate function or user-defined
function sourced on an aggregate function is allowed in a WHERE clause only if the
WHERE clause appears within a subquery of a HAVING clause.
v The ARRAY_AGG function can only be specified in the select list of a SELECT INTO
statement or in a scalar subquery on the right side of a SET statement. DISTINCT cannot
be specified with ARRAY_AGG.
v An OLAP specification cannot be used in a WHERE clause, in a VALUES clause, in a
GROUP BY clause, in a HAVING clause, in a START WITH clause, in a CONNECT BY
clause, or in a JOIN condition. An OLAP specification cannot be used as an expression in
a SET statement, VALUES INTO statement, CALL statement, or MERGE statement, in the
SET clause of an UPDATE statement, in a key definition of a CREATE INDEX statement,
in an XMLTABLE function, or as the return expression for a RETURN statement.
Recovery Text: Remove the function. Try the request again.
SQLCODE or -120
SQLCODEs:
SQLSTATE or 42903
SQLSTATEs:
SQL0121
Message Text: Duplicate name &1 not allowed.
Cause Text: Name &1 is specified more than once in the column list of an INSERT statement, in the SET
clause of an UPDATE statement, in an INSERT or UPDATE within a MERGE statement, or
in the list of target host variables in the SET or VALUES INTO statement. For a data change
INSERT statement, each column name in the INCLUDE clause must be unique and must
not duplicate any column name in the INSERT table. If the specified names are not the
same, then one of the following has occurred:
v If the object is a view, two columns in the view may identify the same column in the
base table.
v The names may correspond to the same system column name.
SQL0122
Message Text: Column &1 or expression in SELECT list not valid.
Cause Text: One of the following has occurred:
v The statement contains column name &1 and an aggregate function in the SELECT clause
and no GROUP BY clause is specified.
v Column name &1 is specified in the SELECT clause but not in the GROUP BY clause.
v An expression is specified in the SELECT clause but not in the GROUP BY clause.
v A column or expression that is specified in the ORDER BY clause, but not in the SELECT
clause, does not conform to the grouping rules listed above.
Recovery Text: Do one of the following and try the request again:
v If a GROUP BY clause is required, make certain that all columns or expressions in the
SELECT list and ORDER BY clause are also in the GROUP BY clause.
v If a GROUP BY clause is not needed, the SELECT list and ORDER BY clause should not
contain aggregate functions with column names.
SQLCODE or -122
SQLCODEs:
SQLSTATE or 42803
SQLSTATEs:
SQL0125
Message Text: ORDER BY column number &1 not valid.
Cause Text: The ORDER BY clause in the statement contains a column number that is either greater
than the maximum number of values that can be selected (8000), or is greater than the
number of columns in the result table select list.
Recovery Text: Correct the column number in the ORDER BY clause to specify a column in the result table.
Try the request again.
SQLCODE or -125
SQLCODEs:
SQLSTATE or 42805
SQLSTATEs:
SQL0128
Message Text: Use of NULL is not valid.
Cause Text: The keyword NULL is not valid with the operator specified. NULL is only allowed in a
predicate following IS or IS NOT. NULL is a reserved keyword and can only be used as the
name of a column if the name is delimited when used in an SQL statement.
Recovery Text: Either change the operator to IS or IS NOT or, if the word NULL was meant to be a column
name, specify the name within delimiters.
SQL0129
Message Text: Too many tables in SQL statement.
Cause Text: The SQL statement contains too many tables or views. A single SQL statement can refer to a
maximum of 1000 tables or views. A CREATE TABLE AS or a CREATE VIEW statement can
only refer to 256 tables. This number includes the base tables of a view.
Recovery Text: Do one of the following and try the request again:
v Split the SQL statement into two or more simpler statements with a maximum of 1000
tables in each.
v If this is a CREATE VIEW or CREATE TABLE AS statement, reduce the number of tables
to a maximum of 256.
SQLCODE or -129
SQLCODEs:
SQLSTATE or 54004
SQLSTATEs:
SQL0130
Message Text: ESCAPE character &1 or LIKE pattern is not valid.
Cause Text: Either ESCAPE character &1 is not valid or the use of the ESCAPE character in the LIKE
pattern is not valid.
SQL0131
Message Text: Operands of LIKE not compatible or not valid.
Cause Text: The arguments of the LIKE predicate must be character, binary, graphic, or numeric. One of
the following errors has occurred:
v The operand to the right of the LIKE operator is not character, binary, graphic, or
numeric.
v The operands of the LIKE predicate are not compatible.
v The ESCAPE character is not character, binary, or graphic.
SQL0132
Message Text: LIKE predicate not valid.
Cause Text: Either the second operand or the ESCAPE character specified in a LIKE predicate is not
valid. The second operand must be a string or numeric expression. The ESCAPE character
must be a string expression but cannot be a special register.
Recovery Text: Change the incorrect operand or the operator. Try the request again.
SQLCODE or -132
SQLCODEs:
SQLSTATE or 42824
SQLSTATEs:
SQL0133
Message Text: Operator on correlated column in SQL function not valid.
Cause Text: An aggregate function appearing in a subquery of a HAVING clause is not valid if the
argument of the function is an expression that contains an operator (+, -, *, /, **, ||) or a
scalar function that is applied to a correlated reference. An operation cannot be performed
on a correlated reference since the computed value of the group cannot be determined in
the outer (correlated) subselect without a possible value from the inner subselect.
Recovery Text: If the operator is a scalar function, make the aggregate function the argument of the scalar
function. Otherwise, remove the operator on the correlated reference or move the operator
so it is not in the argument of the aggregate function. For example, specifying the
expression in the form:
is valid.
SQLCODE or -133
SQLCODEs:
SQLSTATE or 42906
SQLSTATEs:
SQL0134
Message Text: String, argument, or path too long.
Cause Text: One of the following errors has occurred:
v The argument of a COUNT function is too long. The argument of a COUNT function
cannot be longer than 2000 bytes if DISTINCT is specified. If the argument is graphic,
then the argument cannot be longer than 1000 DBCS characters.
v More than 268 libraries were specified on the SET PATH statement or on the SET
OPTION SQLPATH statement.
SQL0136
Message Text: ORDER BY, GROUP BY, or join expressions too long.
Cause Text: The total length of all expressions cannot exceed 3.5 gigabytes for the following operations:
v ORDER BY
v GROUP BY
v OUTER JOIN and EXCEPTION JOIN
v OLAP ordering
v ARRAY_AGG function
v XMLAGG function
If the allow copy data option is ALWCPYDTA(*NO), the total length of all expressions
cannot exceed 32766 bytes.
SQL0137
Message Text: Result too long.
Cause Text: A concatenation operator or a HEX scalar function was specified, but the resulting length of
the operation exceeds the maximum allowed. The maximum length is:
v 32766 bytes if the result is fixed-length character or fixed-length binary.
v 32740 bytes if the result is varying-length character or varying-length binary.
v 16383 DBCS characters if the result is fixed-length graphic.
v 16370 DBCS characters if the result is varying-length graphic.
v 2147483647 bytes if the result is a binary or character LOB.
v 1073741823 DBCS characters if the result is a double-byte character LOB.
Recovery Text: Change the expression to decrease the resulting length to less than or equal to the
maximum allowed. If converting from graphic to character data, the result length specified
on the scalar function must be less than 8191. The SUBSTR scalar function can be used to
decrease the length of an operand. Try the request again.
SQLCODE or -137
SQLCODEs:
SQLSTATE or 54006
SQLSTATEs:
SQL0142
Message Text: SET SESSION AUTHORIZATION statement is not allowed.
Cause Text: Use of the SET SESSION AUTHORIZATION statement is restricted through this interface.
Recovery Text: Use the SET SESSION AUTHORIZATION statement through a different interface.
SQLCODE or -142
SQLCODEs:
SQLSTATE or 42612
SQLSTATEs:
SQL0143
Message Text: Statement &1 ignored.
Cause Text: Statement &1 is not supported by DB2 for IBM i. It has been ignored.
Recovery Text: No action is required.
SQLCODE or +143
SQLCODEs:
SQLSTATE or 01505
SQLSTATEs:
SQL0144
Message Text: Section number &1 not valid. Current high section number is &3. Reason &2.
Reason code 2, section number &1 is smaller than next possible number.
Reason code 3, section number on ENDBND is smaller than highest one assigned.
SQL0145
Message Text: Recursion not supported for application server other than &ibmdb2i..
Cause Text: Program &1 in &2 was called recursively when connected to an application server that is
not DB2 for IBM i. The program was connected to application server &3 with product
identification of &4. If the application server is an IBM product, the identification is in the
form pppvvrrm, where:
For example, if the application server is Version 7 Release 1 of DB2 for z/OS, the value of
the product identification is 'DSN07010'.
Recovery Text: Change your application so that it is not recursively called when connected to a server that
is not DB2 for IBM i.
SQLCODE or -145
SQLCODEs:
SQLSTATE or 55005
SQLSTATEs:
SQL0150
Message Text: View or logical file &1 in &2 read-only.
A view or logical file can be used only for read operations if one or more of the following
conditions are true:
-- The view or logical file references more than one table in the outer fullselect.
-- The view contains a subquery that refers to the same table as the table of the outer
fullselect. A view of this type may be used for inserting rows.
-- All the columns of the view are expressions, constants, or special registers.
-- The select list of the view omits a column of the based on table that does not allow null
values or default values. Inserting into the view is not allowed.
Recovery Text: Change the statement to insert, delete, update, merge, or truncate data using the base table
of view &1. All columns of the table that do not allow null values or default values must
be assigned a value when inserting a row into a table or view unless an INSTEAD OF
trigger is defined for the view. Try the request again.
SQLCODE or -150
SQLCODEs:
SQLSTATE or 42807
SQLSTATEs:
SQL0151
Message Text: Column &1 in table &2 in &3 is not updatable.
Cause Text: &1 is a column of an implicit or explicit column list for an INSERT statement or a SET
clause on an UPDATE statement. &1 is read only because it is:
v Derived from an expression, a constant, or a special register.
v Defined on a column of an underlying view that cannot be updated.
v A column of a logical file that is defined as input only.
Either extended indicator support is not enabled or extended indicator support is enabled
but the indicator value is not UNASSIGNED.
Recovery Text: Remove column &1 from the column list or the SET clause. If this is an INSERT and a
column list was not specified, then specify a column list to remove column &1. If extended
indicator support is enabled, specify an indicator variable that contains the UNASSIGNED
value. Try the request again.
SQLCODE or -151
SQLCODEs:
SQLSTATE or 42808
SQLSTATEs:
SQL0152
Message Text: Constraint type not valid for constraint &1 in &2.
SQL0153
Message Text: Column list required.
Cause Text: A column list must be specified because the result columns are unnamed. Result columns
are unnamed for one of the following reasons:
v An element of the SELECT list is not a column and the AS clause is not specified.
v Corresponding columns of the subselects in a UNION, EXCEPT, or INTERSECT do not
have the same name.
v Two result columns have the same column name. Every column name and
system-column name must be unique in a table or view definition. If two column names
are the same, the column name is &1.
Recovery Text: Do one of the following and try the request again:
v Provide a list of names for the columns in the table, view, or derived table.
v Specify an AS clause to assign a unique name to the unnamed elements or to rename the
duplicate columns in the SELECT list.
SQLCODE or -153
SQLCODEs:
SQLSTATE or 42908
SQLSTATEs:
SQL0155
Message Text: Transition table &1 read-only.
Cause Text: Statement is not allowed. Transition table &1 in an SQL trigger can be used only for read
operations.
Recovery Text: Change the statement to specify a table other than the transition table or remove the
statement. Transition tables can be specified on SELECT statements. Qualify table names in
an SQL trigger that may have the same name as transition tables. Try the request again.
SQLCODE or -155
SQLCODEs:
SQLSTATE or 42807
SQLSTATEs:
SQL0156
Message Text: &1 in &2 not correct type.
Cause Text: A DROP TABLE, CREATE INDEX, LOCK TABLE, ALTER TABLE, CREATE MASK,
CREATE PERMISSION, CREATE TRIGGER, or ALTER PROCEDURE statement was
specified but &1 in &2 is the wrong type. DROP TABLE, CREATE INDEX, LOCK TABLE,
ALTER TABLE, CREATE MASK, and CREATE PERMISSION must specify a table. CREATE
TRIGGER for a BEFORE or AFTER trigger must specify a table. CREATE TRIGGER for an
INSTEAD OF trigger must specify a view.
SQL0157
Message Text: &1 in &2 not valid in FOREIGN KEY clause.
Cause Text: View or logical file &1 in &2 was specified in the REFERENCES clause in the definition of a
FOREIGN KEY referential constraint on a CREATE TABLE or an ALTER TABLE statement.
Views and logical files cannot be specified in a FOREIGN KEY clause.
Recovery Text: Specify the base table that contains the parent key in the FOREIGN KEY clause. Try the
request again.
SQLCODE or -157
SQLCODEs:
SQLSTATE or 42810
SQLSTATEs:
SQL0158
Message Text: Number of columns specified not consistent.
Cause Text: One of the following has occurred:
v The number of column names specified for a view in a CREATE VIEW statement is not
the same as the number of elements specified in the following fullselect.
v The number of column names specified for a table in a CREATE TABLE statement is not
the same as the number of elements specified in the following fullselect.
v The number of column names specified in a correlation clause is not the same as the
number of elements in the table, derived table, table function, data change table
reference, or UNNEST.
v The number of column names specified in a column list of a common table expression is
not the same as the number of elements specified in the fullselect.
v The number of columns specified in the RETURNS TABLE clause of a user defined table
function is not the same as the number of elements specified in the fullselect in the
RETURN statement.
Recovery Text: Specify a column name for each column in the result. Try the request again.
SQLCODE or -158
SQLCODEs:
SQLSTATE or 42811
SQLSTATEs:
SQL0159
Message Text: &1 in &2 not correct type.
A GRANT or REVOKE with the USER keyword must specify a user profile. A GRANT or
REVOKE with the GROUP keyword must specify a group profile.
Recovery Text: Do one of the following to correct the problem and try the request again:
If this is a RENAME INDEX statement and &1 is a table or view, use a RENAME TABLE
statement.
If this is a CREATE TRIGGER, specify a table for a BEFORE or AFTER trigger, or a view for
an INSTEAD OF trigger.
If this is a GRANT or REVOKE statement, specify the correct type of profile or remove the
USER or GROUP keyword.
SQLCODE or -159
SQLCODEs:
SQLSTATE or 42809
SQLSTATEs:
SQL0160
Message Text: WITH CHECK OPTION not allowed for view &1 in &2.
SQL0161
Message Text: INSERT or UPDATE not allowed because a resulting row does not satisfy view definition
&1 in &2.
Cause Text: The INSERT or UPDATE could not be done because a resulting row did not satisfy the
view definition for &1 in &2. Either the view or an underlying view contains a WITH
CHECK OPTION clause. For an INSERT data change table reference, a view is treated as if
it contains a WITH CASCADED CHECK OPTION clause.
Recovery Text: Change the data being inserted or updated so that it conforms to the view definition.
SQLCODE or -161
SQLCODEs:
SQLSTATE or 44000
SQLSTATEs:
SQL0170
Message Text: Number of arguments for function &1 not valid.
SQL0171
Message Text: Argument &1 of function &2 not valid.
Cause Text: The data type, length, or value of argument &1 of function &2 specified is not valid.
Recovery Text: Refer to the DB2 for IBM i SQL Reference topic collection in the Database category in the
IBM i Information Center for more information on scalar functions. Correct the arguments
specified for the function. Try the request again.
SQLCODE or -171
SQLCODEs:
SQLSTATE or 42815
SQLSTATEs:
SQL0172
Message Text: Function &1 not allowed in INCLUDE.
Cause Text: Function &1 cannot be specified in the INCLUDE clause. Only the aggregate functions
AVG, COUNT, COUNT_BIG, SUM, STDDEV, STDDEV_SAMP, VARIANCE, and
VARIANCE_SAMP and functions sourced on these functions are allowed in the INCLUDE
clause.
Recovery Text: Change the function to be a supported aggregate function. Try the request again.
SQLCODE or -172
SQLCODEs:
SQL0175
Message Text: COMMIT, ROLLBACK, or SAVEPOINT failed.
Cause Text: A commit, rollback, savepoint failed due to reason code &2. The logical unit of work
identifier is &1. Reason codes and their meanings are:
v 1 -- A transaction program error occurred.
v 2 -- A commit resulted in a rollback.
v 3 -- The requested transaction operation failed.
v 4 -- The savepoint operation failed.
Recovery Text: Display the previous messages in the joblog and take the appropriate action.
SQLCODE or -175
SQLCODEs:
SQLSTATE or 3B504, 58028
SQLSTATEs:
SQL0177
Message Text: CHECK condition text too long.
Cause Text: The CHECK condition text for a CHECK constraint is longer than 2000 bytes and does not
fit in the SYSCHKCST catalog view. The CHECK condition text cannot be stored in the
system catalog views. The CHECK_CLAUSE column of the SYSCHKCST catalog view will
contain the null values for this constraint.
Recovery Text: No recovery is necessary. If the complete text is required in the system catalog views,
consider using multiple CHECK constraints instead of one large CHECK constraint.
SQLCODE or +177
SQLCODEs:
SQLSTATE or 01009
SQLSTATEs:
SQL0178
Message Text: Query expression text for view &1 in &2 too long.
Cause Text: The query expression text for view &1 in &2 is longer than 10000 bytes and does not fit in
the SYSVIEWS catalog view. The statement text cannot be stored in the system catalog
views. The VIEW_DEFINITION column of the SYSVIEWS catalog view will contain the null
value for this view.
Recovery Text: No recovery is necessary. If the complete text is required in the system catalog views,
recreate the view with the length of the query expression less than or equal to 10000 bytes.
SQLCODE or +178
SQLCODEs:
SQLSTATE or 0100A
SQLSTATEs:
SQL0180
Message Text: Syntax of date, time, or timestamp value not valid.
SQL0181
Message Text: Value in date, time, or timestamp string not valid.
Cause Text: The string representation of a date, time or timestamp value is not in the acceptable range.
&2 is either the character string constant that is not valid or the column or host variable
that contained the string. If the name is *N, then the value was found in an expression
specified in the statement. If the value was found in a host variable, then the host variable
number is &1. The proper ranges for date, time, or timestamp values are as follows:
v The range for years is from 0001 to 9999. For date formats *MDY, *YMD, *DMY, and
*JUL, the year must be in the range 1940 to 2039.
v The range for months is from 1 to 12.
v The range for days is from 1 - 30 for April, June, September, and November, from 1 - 28
for February and from 1 to 31 for all other months. In a leap year, the range for February
can be from 1 to 29.
v The range for days in a Julian date is from 001 to 366 for a leap year or 001 to 365 days
for all other years.
v The range for hours is from 0 to 24. If the hour is 24, then the other parts of the time
values must be zeros. If the time format is USA, then the hour cannot be greater than 12.
v The range for minutes is from 0 to 59.
v The range for seconds is from 0 to 59.
v The range for fractional seconds is from 0 to 999999999999.
Recovery Text: Ensure that the date, time, or timestamp value conforms to the ranges for the data type it
represents. Try the request again.
SQLCODE or +181, -181
SQLCODEs:
SQLSTATE or 01534, 22007
SQLSTATEs:
SQL0182
Message Text: A date, time, or timestamp expression not valid.
SQL0183
Message Text: Result of date or timestamp expression not valid.
Cause Text: The result of an arithmetic operation is a date or timestamp that is not within the valid
range of dates which are between 0001-01-01 and 9999-12-31. If the result is a date in the
format YMD, MDY, DMY, or JUL then the year must be between 1940 and 2039. If this is a
FETCH, embedded SELECT, SET or VALUES INTO, then the relative position of the host
variable in the INTO clause is &1 and the host variable name is &2.
Recovery Text: Correct the arithmetic expression or the data that was being processed at the time the error
occurred. If the date format is YMD, MDY, DMY or JUL and the result is not between 1940
and 2039, then specify USA, ISO, EUR, or JIS for the date format. The date format can be
specified on the STRSQL or CRTSQLxxx commands or can be changed for the job by using
the CHGJOB command. Try the request again.
SQLCODE or +183, -183
SQLCODEs:
SQLSTATE or 01535, 22008
SQLSTATEs:
SQL0184
Message Text: Parameter marker not valid in expression.
Cause Text: A parameter marker cannot be used as an operand in a date/time arithmetic expression.
Recovery Text: Correct the arithmetic expression. Try the request again.
SQLCODE or -184
SQLCODEs:
SQLSTATE or 42610
SQLSTATEs:
SQL0187
Message Text: Use of labeled duration not valid.
SQL0188
Message Text: &1 not a valid string representation of a name.
Cause Text: The host variable contains a string representation of a name that is not valid for one of the
following reasons:
v The host variable is empty.
v The first character is a period, a slash, or a blank.
v The number of identifiers is greater than the maximum allowed for the name of the
object. For example, the host variable identifies a table name but the host variable
contains 4 or more identifiers. A table name can contain a maximum of 3 identifiers. A
relational database name can contain a maximum of 1 identifier.
v An identifier is too long.
v A period not contained in a delimited identifier is followed by a period or a blank.
v A slash not contained in a delimited identifier is followed by a slash or a blank.
v A blank is followed by characters other than blanks.
v A delimited identifier contains no characters.
v A delimited identifier is followed by a character other than a period, a slash or a blank.
v The ending delimiter is missing from a delimited identifier.
Recovery Text: Change the name. Try the request again.
SQLCODE or -188
SQLCODEs:
SQLSTATE or 22503, 28000, 2E000
SQLSTATEs:
SQL0189
Message Text: Coded Character Set Identifier &1 not valid.
SQL0190
Message Text: Attributes of column &3 in &1 in &2 not compatible.
SQL0191
Message Text: Mixed data or UTF-8 data not properly formed.
Cause Text: A mixed data string or UTF-8 data string does not have the proper format. For mixed data,
every shift-out character ('0E'X) must have a corresponding shift-in character ('0F'X). If these
characters are not paired, the data is not valid. For upper-case CCSID's, lower-case
characters are not valid. The conversion was from column or host variable &2 to column or
host variable &4.
Recovery Text: Ensure that all mixed character data has paired shift characters and that all UTF-8 data is
valid. For more information about UTF-8, refer to the Programming support topic in the
Information Center, http://www.ibm.com/systems/i/infocenter/.
SQLCODE or +191, -191
SQLCODEs:
SQL0192
Message Text: Argument of translation function not valid.
Cause Text: The argument of the TRANSLATE, UCASE, UPPER, LCASE, or LOWER scalar function is a
DBCS-only string. The argument must be SBCS, DBCS-open, or DBCS-either.
Recovery Text: Change the argument of the function to one that is valid. Try the request again.
SQLCODE or -192
SQLCODEs:
SQLSTATE or 42937
SQLSTATEs:
SQL0194
Message Text: KEEP LOCKS not allowed.
Cause Text: KEEP LOCKS was specified for cursor &1 but is not allowed because the cursor is not
opened for read only. The cursor must be opened for read only to allow locks to be kept.
For an explanation of read only cursors, see the DB2 for i SQL programming topic
collection in the Database category in the IBM i Information Center
Recovery Text: Do not specify KEEP LOCKS, or specify a cursor that is read only.
SQLCODE or -194
SQLCODEs:
SQLSTATE or 42848
SQLSTATEs:
SQL0195
Message Text: Last column of &1 in &2 cannot be dropped.
Cause Text: An attempt was made to drop one or more columns using an ALTER TABLE statement.
The columns cannot be dropped from table &1 in &2 because at least one of the existing
columns must be preserved when altering a table.
Recovery Text: Ensure table &1 in &2 will have at least one column once the ALTER statement is complete.
Either remove the DROP of one of the columns and try the request again, or, if all of the
columns should be removed, drop the table and create it again.
SQLCODE or -195
SQLCODEs:
SQLSTATE or 42814
SQLSTATEs:
SQL0196
Message Text: Column &3 in &1 in &2 cannot be dropped.
Cause Text: An attempt was made to drop column &3. The column cannot be dropped because a view,
a constraint, a trigger, or an index is dependent on the column and RESTRICT was
specified, or the column is part of the partition key, or the column is referenced by a text
search index.
SQL0197
Message Text: Column &1 cannot be qualified.
Cause Text: Column names in an ORDER BY clause of a SELECT statement cannot be qualified if a
UNION, EXCEPT, or INTERSECT operator is specified.
Recovery Text: Remove the qualifier from the column name. Ensure the name specified in the ORDER BY
clause is a named column of the result table. Try the request again.
SQLCODE or -197
SQLCODEs:
SQLSTATE or 42877
SQLSTATEs:
SQL0198
Message Text: SQL statement empty or blank.
Cause Text: The SQL statement is empty or blank. One of the following has occurred:
v During precompiling, the SQL statement referred to has no text between the EXEC SQL
and the ending delimiter. The statement is ignored.
v While running a program containing SQL statements, the operand of a PREPARE or
EXECUTE IMMEDIATE statement is blank or empty. The operand, host variable, global
variable, or literal string that was the object of either the PREPARE or EXECUTE
IMMEDIATE statement contained all blanks or was an empty string.
Recovery Text: If precompiling, correct the statement or remove it and precompile the program again. If
running a program containing SQL statements, correct the logic of the program to make
certain that a valid SQL statement is provided before issuing a PREPARE or EXECUTE
IMMEDIATE statement.
SQLCODE or -198
SQLCODEs:
SQLSTATE or 42617
SQLSTATEs:
SQL0199
Message Text: Keyword &1 not expected. Valid tokens: &2.
Cause Text: The keyword &1 was not expected here. A syntax error was detected at keyword &1. The
partial list of valid tokens is &2. This list assumes that the statement is correct up to the
unexpected keyword. The error may be earlier in the statement but the syntax of the
statement seems to be valid up to this point.
Recovery Text: Examine the SQL statement in the area of the specified keyword. A colon or SQL delimiter
may be missing. SQL requires reserved words to be delimited when they are used as a
name. Correct the SQL statement and try the request again.
SQL0203
Message Text: Name &1 is ambiguous.
Cause Text: The name &1 is ambiguous for one of the following reasons:
v Two or more of the tables specified in a FROM clause contain columns with the name
&1. The name specified can refer to a column name or a system column name in the
table.
v The name is specified in an ORDER BY clause and is the same as more than 1 result
column name.
v OLD_ROW and NEW_ROW are specified for an SQL trigger and a transition variable
specified in the routine body is not qualified.
Recovery Text: Qualify the column name with a table name or correlation name or use the AS clause to
provide a unique result column name that can be specified in the ORDER BY clause.
Qualify the transition variable in the trigger with the name specified for OLD_ROW or
NEW_ROW. Try the request again.
SQLCODE or -203
SQLCODEs:
SQLSTATE or 42702
SQLSTATEs:
SQL0204
Message Text: &1 in &2 type *&3 not found.
Cause Text: &1 in &2 type *&3 was not found. If the member name is *ALL, the table is not partitioned.
If this is an ALTER TABLE statement and the type is *N, a constraint or partition was not
found. If this is not an ALTER TABLE statement and the type is *N, a function, procedure,
trigger or sequence object was not found.
If a function was not found, &1 is the service program that contains the function. The
function will not be found unless the external name and usage name match exactly.
Examine the job log for a message that gives more details on which function name is being
searched for and the name that did not match.
Recovery Text: Change the name and try the request again. If the object is a node group, ensure that the
DB2 Multisystem product is installed on your system and create a nodegroup with the
CRTNODGRP CL command. If an external function was not found, be sure that the case of
the EXTERNAL NAME on the CREATE FUNCTION statement exactly matches the case of
the name exported by the service program.
SQLCODE or +204, -204
SQLCODEs:
SQLSTATE or 01532, 42704
SQLSTATEs:
SQL0205
Message Text: Column &1 not in table &2 in &3.
Cause Text: A column with the name &1 does not exist in table or view &2 in schema &3.
SQL0206
Message Text: Column or global variable &1 not found.
Cause Text: &1 was not found as a column of table &2 in &3 and was not found as a global variable in
&2. If the table is *N, &1 is not a column of any table or view that can be referenced.
Recovery Text: Do one of the following and try the request again:
v Ensure that the column and table names are specified correctly in the statement.
v If this is a SELECT statement, ensure that all the required tables were named in the
FROM clause.
v If the column was intended to be a correlated reference, qualify the column with the
correct table designator.
v If the column was intended to be a global variable, qualify the name with the schema
where the global variable exists or ensure the schema is in the path.
SQLCODE or -206
SQLCODEs:
SQLSTATE or 42703
SQLSTATEs:
SQL0208
Message Text: ORDER BY column &1 or expression not in result table.
Cause Text: Column &1 is specified in the ORDER BY clause and is not valid because it does not refer
to a named column of the result table when a UNION, EXCEPT, or INTERSECT operator is
specified. The result column is named if the corresponding columns in each SELECT list
have the same name.
Recovery Text: Do one of the following and try the request again:
v Ensure &1 is a named result column if UNION, EXCEPT, or INTERSECT is specified.
v Specify a numeric column identifier in place of &1 in the ORDER BY clause.
SQLCODE or -208
SQLCODEs:
SQLSTATE or 42707
SQLSTATEs:
SQL0213
Message Text: Parameter &1 not in routine &2 in &3.
Cause Text: A parameter with a name &1 does not exist in routine &2 in schema &3.
Recovery Text: Make certain that the parameter name, routine name, and any qualifiers are specified
correctly. Try the request again.
SQLCODE or -213
SQLCODEs:
SQLSTATE or 42703
SQLSTATEs:
SQL0214
Message Text: ORDER BY expression is not valid.
Cause Text: The expression in the ORDER BY clause in position &1 is not valid for reason code &3.
v 1 - The SELECT statement contains a UNION, EXCEPT, or INTERSECT.
v 2 - DISTINCT is specified in the SELECT clause and the expression or column cannot be
matched exactly with an expression or column in the select list.
v 3 - The select list uses an aggregate function or there is a GROUP BY clause and the
expression is not an aggregate function or does not match exactly with an expression in
the select list.
v 4 - An aggregate function in the ORDER BY clause requires grouping.
v 5 - A nested table expression is not supported in an ORDER BY clause.
SQL0216
Message Text: Number of values in predicate lists do not match.
Cause Text: The number of values on the left side of the predicate does not match the number of values
on the right side of the predicate.
If one side of the predicate is a fullselect that returns more than one result column, the
other side of the predicate must be a list of expressions containing the same number of
values. The fullselect must explicitly list the result columns.
If both sides of the predicate are expression lists, the lists must contain the same number of
values.
The subquery contains a correlated reference that is not supported. This may occur when
there is a UNION, EXCEPT, or INTERSECT in the subquery.
Recovery Text: Change the number of values in the predicate list or in the select list of a row fullselect so
both sides contain the same number of values. Change a SELECT * in the fullselect to list
the actual columns. Use a casting function for untyped parameter markers in an IN
expression list.
SQLCODE or -216
SQLCODEs:
SQLSTATE or 428C4
SQLSTATEs:
SQL0221
Message Text: Number of rows &2 not valid.
Cause Text: A blocked FETCH, a blocked INSERT, or a SET RESULT SETS statement is not valid. The
number of rows specified is not between 0 and 32767 or is greater than the dimension of
the host structure array. The number of rows specified is &2 and the dimension of the array
is &3. If this is a FETCH statement, the cursor name is &1.
Recovery Text: Either ensure the number of rows is from 0 through 32767 and less than or equal to the
dimension of the array, or increase the size of the array.
SQL0225
Message Text: FETCH not valid; cursor &1 not scrollable.
Cause Text: A FETCH statement was specified with PRIOR, FIRST, LAST, BEFORE, AFTER, CURRENT,
or RELATIVE for cursor &1, but cursor &1 is not scrollable. Only NEXT may be used for
cursors that are not scrollable.
Recovery Text: In order to specify PRIOR, FIRST, LAST, BEFORE, AFTER, CURRENT or RELATIVE on the
FETCH statement, the cursor must be scrollable. To create a scrollable cursor, add the
SCROLL keyword to the DECLARE CURSOR statement for cursor &1. SCROLL can also be
specified in the attributes string for the prepared statement associated with the cursor.
SQLCODE or -225
SQLCODEs:
SQLSTATE or 42872
SQLSTATEs:
SQL0226
Message Text: Current row deleted or moved for cursor &1.
Cause Text: A FETCH CURRENT was specified for scrollable cursor &1. The current row was either
deleted or updated. If the row was updated, one of the following could have occurred:
v A value of an ORDER BY column of the current row has changed.
v A value of a column in the index has changed.
v A column has been changed so it no longer meets the record selection criteria.
Recovery Text: Specify NEXT, PRIOR, FIRST, LAST, BEFORE, AFTER, or RELATIVE on the FETCH
statement to position the cursor and fetch another row.
SQLCODE or -226
SQLCODEs:
SQLSTATE or 24507
SQLSTATEs:
SQL0227
Message Text: FETCH not valid, cursor &1 in unknown position.
Cause Text: A previous blocked FETCH for cursor &1 resulted in an error (SQLCODE &2, SQLSTATE
&3) in the middle of processing a block of rows retrieved from the database manager. One
or more rows left in the block could not be returned to the program following the error,
leaving the position of the cursor unknown. If the SQLSTATE is *N, the error is unknown.
Recovery Text: Close and reopen the cursor to set the position. For scrollable cursors, FIRST, LAST,
BEFORE, or AFTER may also be used to position the cursor.
SQLCODE or -227
SQLCODEs:
SQLSTATE or 24513
SQLSTATEs:
SQL0231
Message Text: Position of cursor &1 not valid for FETCH of current row.
Cause Text: A FETCH CURRENT or a FETCH RELATIVE 0 was specified for scrollable cursor &1. The
operation is not valid because the cursor is not positioned on a record. A FETCH of the
current row is not allowed following a FETCH BEFORE, a FETCH AFTER, or a FETCH that
resulted in an SQLCODE of +100.
Recovery Text: Ensure the cursor is positioned on a record before attempting to fetch the current row.
SQLCODE or -231
SQLCODEs:
SQLSTATE or 22006
SQLSTATEs:
SQL0237
Message Text: Not enough SQLVAR entries were provided in the SQLDA.
Cause Text: The SQLDA only provided &2 SQLVAR entries. Since at least one of the columns being
described is a distinct type or a LOB, &3 SQLVAR entries should have been specified. None
of the secondary SQLVAR entries have been set. Since at least one of the columns is a
distinct type or a LOB, space should be provided for twice as many SQLVAR entries as the
number of columns. Only the base SQLVAR entries have been set.
Recovery Text: If there is no need for the additional information about the distinct type(s) or LOB(s), then
no action is required. If this information is needed, the value of the SQLN field in the
SQLDA should be increased to the value indicated in the message, and the statement
should be resubmitted.
SQLCODE or +237
SQLCODEs:
SQLSTATE or 01594
SQLSTATEs:
SQL0239
Message Text: Not enough entries were provided in the SQLDA or descriptor area.
Cause Text: The SQLDA or descriptor area only provided &1 entries. This is the number of SQLVAR
entries for the SQLDA or the value of DB2_MAX_ITEMS for a descriptor area. At least &2
entries should have been specified. None of the entries have been set. For the SQLDA, if
any of the columns is a distinct type or a LOB, then space should be provided for twice as
many SQLVAR entries as the number of columns.
SQL0242
Message Text: Duplicate attribute name or partition name &1.
Cause Text: Attribute name &1 or partition name or partition number &1 was already specified. The
value must be unique.
Recovery Text: Specify a unique name. Try the request again.
SQLCODE or -242
SQLCODEs:
SQLSTATE or 42713
SQLSTATEs:
SQL0243
Message Text: SENSITIVE cursor &1 cannot be defined for the specified SELECT statement.
Cause Text: The cursor &1 is defined as SENSITIVE but the query requires the creation of a temporary
result table. If the SELECT statement has a data change table reference, it requires a
temporary result table. A SENSITIVE cursor cannot be implemented.
Recovery Text: Redefine the cursor as ASENSITIVE or INSENSITIVE or change the query so that it no
longer requires the creation of a temporary result table.
SQLCODE or -243
SQLCODEs:
SQLSTATE or 36001
SQLSTATEs:
SQL0245
Message Text: Invocation of function &1 is ambiguous.
Cause Text: The invocation of function &1 is ambiguous. Multiple candidate functions exist, but the
parameters corresponding to argument &2 do not belong to the same data type precedence
list.
Recovery Text: Change the arguments in the function invocation to avoid matching more than one
function.
SQLCODE or -245
SQLCODEs:
SQLSTATE or 428F5
SQLSTATEs:
SQL0250
Message Text: Local relational database not defined in the directory.
SQL0251
Message Text: Character in relational database name &1 not valid.
Cause Text: &1 contains either a #, @, ., or a $, which are not valid character for a relational database
name. Valid characters include A-Z, 0-9, and underscore.
Recovery Text: Correct the name. Try the request again.
SQLCODE or -251
SQLCODEs:
SQLSTATE or 2E000, 42602
SQLSTATEs:
SQL0255
Message Text: Function not supported for query.
SQL0256
Message Text: Constraint &1 in &2 not allowed on distributed file.
Cause Text: Constraint &1 in &2 not allowed for one of the following reasons:
- The columns that make up the partitioning key must be a subset of the columns that
make up the foreign key. The columns may appear in any order.
- The node group of the dependent table in a foreign key constraint must match the node
group of the parent table.
Recovery Text: Ensure that every column that is in the partitioning key is also in the foreign key for the
table. Also ensure that the dependent table and the parent table are built over the same
nodegroup.
SQLCODE or -256
SQLCODEs:
SQLSTATE or 42998
SQLSTATEs:
SQL0270
Message Text: Function not allowed for table &1 in &2.
Cause Text: Table &1 in &2 is a distributed table or a partitioned table. The function is not allowed for
one of the following reasons:
- The unique index or unique constraint is not allowed because all unique indexes or
unique constraints of a distributed table or a partitioned table must contain all columns that
make up the partitioning key. If this is a CREATE TABLE statement and the
PARTITIONING KEY clause was not specified, then the default partitioning key is the first
column of the primary key, or the first valid column of the table.
- Data in one of the partitioning key columns was changed by an UPDATE statement which
would have forced the row to a different node.
- The table contains a LOB or XML column. LOB and XML columns are not allowed in a
distributed table.
- The node group of the materialized query table is different than the node group of one or
more tables referenced by the materialized query table.
Recovery Text: Ensure that all unique indexes or unique constraints contain all the columns of the
partitioning key. Ensure that data in the partitioning key columns is not changed, or is
changed to a value that would reside on the same node. Ensure the table does not contain
any LOB or XML columns. Ensure that the materialized query table references tables within
the same node group.
SQLCODE or -270
SQLCODEs:
SQLSTATE or 42997
SQLSTATEs:
SQL0302
Message Text: Conversion error on variable or parameter &2.
Cause Text: Variable or parameter &2 or entry &1 in a descriptor area contains a value that cannot be
converted to the attributes required by the statement. Error type &3 occurred. Error types
and their meanings are:
v 1 -- Overflow.
v 2 -- Floating point overflow.
v 3 -- Floating point underflow.
v 4 -- Floating point conversion error.
v 5 -- Not an exact result.
v 6 -- Numeric data that is not valid.
v 7 -- Double-byte character set (DBCS) or UTF-8 data that is not valid.
v 8 -- C NUL-terminator is missing for character variables or double NUL-terminator is
missing for graphic variables and the program was compiled with the *CNULRQD
option.
v 9 -- Truncation when mapping a variable or constant to a character or binary parameter
on a CALL statement, or when using a character or graphic variable in a GET
DESCRIPTOR or SET DESCRIPTOR statement.
v 10 -- Incompatible conversion from the input SQLDATA value to the specified SQLTYPE
in a REXX application.
v 11 -- Overflow on translation of UTF-8 character data.
If the variable name is *N and the statement is FETCH, a descriptor area was specified. If
the parameter name is *N and the statement is CALL, a descriptor area, a constant, or a
special register was specified.
Recovery Text: Change the value of the variable or parameter or entry in the descriptor area so that it can
be converted and is valid. Try the request again.
SQLCODE or -302
SQLCODEs:
SQLSTATE or 22001, 22003, 22023, 22024
SQLSTATEs:
SQL0303
Message Text: Variable &2 not compatible or value too long.
The relative position of the variable in the INTO clause, the SQLDA, or the CALL statement
is &1. If the variable name is *N, a descriptor area was specified on a FETCH statement.
Recovery Text: Ensure that the data types are compatible for each of the corresponding list items. Ensure
the variables are defined correctly for date, time, and timestamp values.
SQLCODE or -303
SQLCODEs:
SQLSTATE or 22001, 42806
SQLSTATEs:
SQL0304
Message Text: Conversion error in assignment to variable &2.
Cause Text: During an attempt to return a value to variable &2 on a FETCH, an embedded SELECT
statement, a CALL statement, a SET statement, a SET DESCRIPTOR statement, or a
VALUES INTO statement, error type &3 occurred. A list of the error types follows:
v Error type 1 is overflow.
v Error type 2 is floating point overflow.
v Error type 3 is floating point underflow.
v Error type 4 is a floating point conversion error.
v Error type 5 is not an exact result.
v Error type 6 is numeric data that is not valid.
v Error type 7 is double-byte character set (DBCS) data that is not valid.
The relative position of the variable is &1. If the variable name is *N, a descriptor area was
specified on the FETCH or CALL statement.
Recovery Text: Change the size and, if necessary, the type of the variable or entry in the descriptor area so
that it can contain the result value or correct the data that is not valid. Try the request
again.
SQLCODE or +304, -304
SQLCODEs:
SQLSTATE or 01515, 01547, 01565, 22003, 22023, 22504
SQLSTATEs:
If this error occurs on a GET DESCRIPTOR statement, the null value is being returned but
the INDICATOR item was not specified on the GET DESCRIPTOR statement.
Recovery Text: Specify an indicator variable, and precompile the program again.
If this is a GET DESCRIPTOR statement, specify both the DATA item and the INDICATOR
item. Precompile the program again.
SQLCODE or -305
SQLCODEs:
SQLSTATE or 22002, 22004
SQLSTATEs:
SQL0306
Message Text: REXX input host variable &1 not defined.
Cause Text: The REXX input host variable &1 appears in an SQL statement, but it is not defined
because a value has not been assigned to the variable.
Recovery Text: Verify that &1 is spelled correctly in the SQL statement and that a value is assigned to the
host variable before the SQL statement is run.
SQLCODE or -306
SQLCODEs:
SQLSTATE or 42863
SQLSTATEs:
SQL0311
Message Text: Length in varying-length, LOB, or XML host variable not valid.
Cause Text: Host variable &2 was specified. The value in the length portion of the variable length, LOB,
or XML host variable is either negative or greater than the declared length. If the host
variable is graphic the length should be the number of DBCS characters. The host variable
number is &1. The specified length is &4. The variable is declared to have length &3.
Recovery Text: Change the length portion of the varying-length, LOB, or XML host variable to a valid
positive number or zero. Try the request again.
SQLCODE or -311
SQLCODEs:
SQLSTATE or 22501
SQLSTATEs:
SQL0312
Message Text: Variable &1 not defined or not usable.
SQL0313
Message Text: Number of host variables not valid.
Cause Text: The number of host variables or entries in an SQLDA or descriptor area specified in either
an EXECUTE or OPEN statement is not the same as the number of parameter markers
specified in the prepared SQL statement &1. If the statement name is *N, the number of
host variables or entries in a SQLDA or descriptor area was specified in an OPEN
statement and is not the same as the number of host variables specified in the DECLARE
CURSOR statement for cursor &2.
Recovery Text: Change the number of host variables specified in the USING clause or the number of
entries in the SQLDA or descriptor area to equal the number of parameter markers in the
prepared SQL statement or the number of host variables in the DECLARE CURSOR
statement. Precompile the program again.
SQLCODE or -313
SQLCODEs:
SQLSTATE or 07001, 07004
SQLSTATEs:
SQL0327
Message Text: Partitioning key does not correspond to a defined partition.
Cause Text: An INSERT, UPDATE, CREATE TABLE, or ALTER TABLE statement was attempted for a
partitioned table but the values supplied for the partitioning key did not qualify the row
for any partition.
Recovery Text: If the error occurred on an INSERT or UPDATE statement, change the values supplied for
the row being inserted or updated so that they correspond to a partition of the table or
alter the partition definition to allow this key value. If the error occurred on a CREATE
TABLE or ALTER TABLE statement, alter the partition definitions so that all existing rows
will fit in the table or delete the rows which do not fit. Try the request again.
SQLCODE or -327
SQLCODEs:
SQLSTATE or 22525
SQLSTATEs:
SQL0328
Message Text: Column &1 not allowed in partitioning key.
SQL0329
Message Text: The SET PATH name list is not valid.
Cause Text: String constant or input host variable &1 contains a SET PATH name list that is not valid. A
host variable name *N indicates that an incorrect string constant was specified on the SET
PATH statement or for the SQLPATH on the SET OPTION statement. The name list must
have the following attributes:
v The length must be greater than 0.
v The length cannot be greater than 8843.
v It must contain a list of valid schema names, separated by commas.
v The list can contain a maximum of 268 schema names.
v Each schema name must be capitalized unless it is a delimited name.
v The list cannot contain the special values, *LIBL, CURRENT PATH, SYSTEM PATH, or
USER.
Recovery Text: Use a string constant or host variable with the correct value.
SQLCODE or -329
SQLCODEs:
SQLSTATE or 0E000
SQLSTATEs:
SQL0330
Message Text: Character conversion cannot be performed.
Cause Text: An attempt was made to convert column or host variable &2 to column or host variable
&3. The conversion cannot be performed. If the source data is character and has a mixed
Coded Character Set Identifier (CCSID), then double-byte characters were found. These
mixed data conversions are only allowed if the source data does not contain any
double-byte data. If the data is graphic, the CCSID values are not compatible or the string
contains single-byte characters. The source CCSID is &4, and the target CCSID is &5.
Recovery Text: Ensure that all character or graphic comparison, concatenation, or assignment is between
columns or host variables with compatible CCSID values. If character data and the source
CCSID is mixed, the source data should not contain any double-byte characters. If graphic
data, the string cannot contain single-byte characters. Use a casting function like VARCHAR
to convert between character, DBCS graphic, and Unicode graphic data.
SQLCODE or -330
SQLCODEs:
SQL0331
Message Text: Character conversion cannot be performed.
Cause Text: An attempt was made to convert column or host variable &2 to column or host variable
&3. The conversion cannot be performed. If the source data is character and has a mixed
Coded Character Set Identifier (CCSID), then double-byte characters were found. Mixed
CCSID character conversions are only allowed if the source data does not contain any
double-byte data. If the data is graphic, the CCSID values are not compatible. The source
CCSID is &4, and the target CCSID is &5.
Recovery Text: Ensure that all character or graphic assignments are between columns or host variables
with compatible CCSID values. If character and the source CCSID is mixed, the source data
should not contain any double-byte characters. Use a casting function like VARCHAR to
convert between character, DBCS graphic, and UCS-2 and UTF-16 graphic data.
SQLCODE or +331, -331
SQLCODEs:
SQLSTATE or 01520, 22021
SQLSTATEs:
SQL0332
Message Text: Character conversion between CCSID &1 and CCSID &2 not valid.
Cause Text: Character or graphic conversion has been attempted for data that is not compatible. There
is no conversion defined between CCSID &1 and CCSID &2.
If one CCSID is 65535, the other CCSID is a graphic CCSID. Conversion is not defined
between 65535 and a graphic CCSID.
If this is a CONNECT statement, conversion is not defined between the default application
requester SBCS CCSID and the application server SBCS CCSID. If the second CCSID is 0,
the application server did not return its default SBCS CCSID. An application server other
than DB2 for IBM i may not support a CCSID of 65535.
Recovery Text: Ensure that all character or graphic comparisons, concatenation, or assignments are
between columns or host variables with compatible CCSID values.
If this is a CONNECT statement, change either the SBCS CCSID of the application requester
or the application server, so conversion between the CCSID values is defined.
SQLCODE or -332
SQLCODEs:
SQLSTATE or 57017
SQLSTATEs:
SQL0334
Message Text: Character conversion resulted in truncation.
Cause Text: Character conversion of column or host variable &2 has resulted in truncation. An attempt
was made to convert mixed ASCII data to mixed EBCDIC data or to convert UCS-2 or
UTF-16 graphic data to mixed EBCDIC data. The length of the data has increased due to
the insertion of shift characters. The resulting string did not fit in the target, and truncation
occurred.
Recovery Text: When converting from mixed ASCII to mixed EBCDIC or from UCS-2 or UTF-16 graphic to
mixed EBCDIC, ensure that there is enough space in the target.
SQL0335
Message Text: Character conversion resulted in substitution characters.
Cause Text: Character column or host variable &2 has been converted to character column or host
variable &3. The conversion defines that several different character values in the source
data will translate to the same value in the target data. It will no longer be possible to
separate these values. The CCSID of the source data is &4 and the CCSID of the target is
&5. Host variable values of *N or CCSID values of 0 indicate the values are unknown.
Recovery Text: Change the definition of the columns or host variables so that CCSID values that are used
will allow all character values in the source to be converted to character values in the
target.
SQLCODE or +335
SQLCODEs:
SQLSTATE or 01517
SQLSTATEs:
SQL0336
Message Text: Identity or sequence attribute is not valid.
Cause Text:
For an identity column or a sequence, the values specified for the START WITH,
INCREMENT BY, MINVALUE, MAXVALUE, and RESTART WITH options must have a
scale of zero.
Recovery Text: Change the value to one that is valid. Try the request again.
SQLCODE or -336
SQLCODEs:
SQLSTATE or 428FA
SQLSTATEs:
SQL0338
Message Text: JOIN predicate or MERGE ON clause not valid.
Cause Text: The JOIN predicate, or ON clause of a MERGE statement, is not valid because a column is
specified that exists in a table that is outside the scope of the join predicate or ON clause.
The scope is generally determined from left to right but is also based on the position of the
join-condition. If parentheses are used, columns inside the parentheses cannot come from a
table outside the parentheses. If an implicit join (using a comma) is specified prior to a
joined table with an ON clause, columns in the ON clause cannot come from a table before
the comma.
Recovery Text: Do one of the following and try the request again:
v Make certain that the column names, table names, and any qualifiers are specified
correctly.
v Specify parentheses around joined tables to specify a join order other than left to right.
Ensure columns exist in tables that are in the same scope.
v For an ON clause in a MERGE statement, ensure referenced columns are within the
scope of the ON clause.
v Specify a CROSS JOIN instead of an implicit join.
SQL0340
Message Text: Duplicate name &1 for common table expressions.
Cause Text: Name &1 cannot be used to define more than one table expression.
Recovery Text: Change the name for one of the common table expressions. Try the request again.
SQLCODE or -340
SQLCODEs:
SQLSTATE or 42726
SQLSTATEs:
SQL0341
Message Text: Cyclic references between common table expressions.
Cause Text: The common table expressions specified are not valid. The subselect for table &1 refers to
table &2 and the subselect for table &2 refers to table &1. Cyclic references between
common table expressions are not allowed.
Recovery Text: Change the common table expressions to refer to a table that exists or a common table
expression that has already been defined. Try the request again.
SQLCODE or -341
SQLCODEs:
SQLSTATE or 42835
SQLSTATEs:
SQL0342
Message Text: Keyword not allowed in recursive common table expression &1.
Cause Text: The common table expression &1 is recursive. The recursive common table expression
contains one of the following errors:
v A fullselect within the common table expression cannot start with SELECT DISTINCT
because the common table expression is recursive.
v A fullselect within the common table expression specified UNION instead of UNION
ALL as required for recursive common table expressions.
Recovery Text: Remove the keyword DISTINCT from the fullselect. Change the UNION to UNION ALL,
or remove the recursive reference within the common table expression. Try the request
again.
SQLCODE or -342
SQLCODEs:
SQLSTATE or 42925
SQLSTATEs:
SQL0343
Message Text: Column list not valid for table.
SQL0345
Message Text: Recursive common table expression &1 is not valid.
Cause Text: The recursive common table expression is not valid for one of the following reasons:
v The initialization fullselect of the common table expression cannot refer to itself.
v Grouping, aggregate functions, and ORDER BY are not allowed within the fullselects of
the UNION that define the common table expression.
v EXCEPT DISTINCT is not allowed if the common table is specified as the right operand
of a join.
v LEFT OUTER JOIN and FULL OUTER JOIN are not allowed if the common table is
specified as the right operand of the join.
v RIGHT OUTER JOIN and FULL OUTER JOIN are not allowed if the common table is
specified as the left operand of the join.
v The common table expression cannot be referenced more than once in a FROM clause
and cannot be referenced in a subquery.
Recovery Text: Correct the recursive common table expression. Try the request again.
SQLCODE or -345
SQLCODEs:
SQLSTATE or 42836
SQLSTATEs:
SQL0346
Message Text: Recursion not allowed for common table expressions.
Cause Text: The common table expression specified is not valid. The subselect for table &1 refers to
itself. Recursive common table expressions are not allowed.
Recovery Text: Change the common table expressions to refer to a table that exists or a common table
expression that has already been defined. Try the request again.
SQLCODE or -346
SQLCODEs:
SQLSTATE or 42836
SQLSTATEs:
SQL0348
Message Text: &1 expression not used correctly.
SQL0350
Message Text: Column &1 not valid.
Cause Text: One of the following errors has occurred:
v A LOB, DataLink, or XML column is not valid as a key field, the key of an index, or the
foreign key of a referential constraint.
v A LOB or XML column is not allowed in the WHERE clause of an index.
v A DataLink column with the FILE LINK CONTROL option cannot be in a table in
QTEMP, QSYS, QSYS2, or SYSIBM, or in a temporary table.
v A column that is a LOB, ROWID, DataLink, or XML type or a distinct type based on a
LOB, ROWID, Datalink, or XML type is not valid as a partitioning key column for
RANGE partitioning. A partitioning key column cannot be defined AS IDENTITY.
Recovery Text: Remove the LOB, DataLink, or XML column from the specification of the table, index, key,
or constraint.
SQLCODE or -350
SQLCODEs:
SQLSTATE or 42962
SQLSTATEs:
SQL0351
Message Text: The AR is not at the same level and DB2 cannot transform the data type to a compatible
type.
SQL0352
Message Text: The AS is not at the same level and DB2 cannot transform the data type to a compatible
type.
Cause Text: The data type of entry &1 is not supported on the Application Server. The Application
Server is at less than Level 6 for the SQL Access Manager, and the Application Requester
cannot transform the data type to a compatible type.
Recovery Text: Change the data type to one that is supported by the corresponding Application Server.
SQLCODE or -352
SQLCODEs:
SQLSTATE or 56084
SQLSTATEs:
SQL0356
Message Text: Index expression &1 not valid.
Cause Text: Index expression &1 is not valid. If the expression number is 0, either the expression is
referenced in the WHERE clause or INCLUDE clause, or the index key column number is
not known. The expression is not valid for one of the following reasons:
v The expression does not reference a column.
v The expression refers to a special register or global variable.
v The expression contains a subselect.
v The expression contains ROW CHANGE TIMESTAMP or ROW CHANGE TOKEN.
v The expression uses an aggregate function (such as AVG or COUNT), a function that is
not deterministic, a user-defined function, or a system function that is not allowed.
v The expression uses the NODENAME, DBPARTITIONNAME, DATAPARTITIONNAME,
or DATAPARTITIONNUM scalar function.
v The expression involves LOBs or XML.
v The expression refers to a column that has a field procedure.
Recovery Text: Correct the error. Try the request again.
SQLCODE or -356
SQLCODEs:
SQLSTATE or 429BX
SQLSTATEs:
SQL0357
Message Text: File server &1 used in DataLink not currently available.
SQL0358
Message Text: Error &1 occurred using DataLink data type.
Cause Text: An error occurred while using a DataLink. Possible errors are:
v Error type 21 is format of DataLink value not valid.
v Error type 22 is the DataLink File Manager (DLFM) is not properly configured on the
server.
v Error type 23 is link type not valid.
v Error type 24 is file does not exist.
v Error type 25 is file already linked.
v Error type 26 is file not available.
v Error type 27 is length of comment or URL not valid.
v Error type 28 is user not authorized to link the file.
v Error type 29 is datalink cannot be unlinked.
Recovery Text: Correct that error in the DataLink and try the request again. For error type 22, it may be
that the host database or the prefix have not been added to the DLFM on the server. If that
is the case, use the commands Add Host Database to DLFM (ADDHDBDLFM) or Add
Prefix to DLFM (ADDPFXDLFM) to correct the error.
SQLCODE or -358
SQLCODEs:
SQLSTATE or 428D1
SQLSTATEs:
SQL0359
Message Text: Value for identity column or sequence not available.
Cause Text: The value for the identity column or sequence is not available for one of the following
reasons:
v The INSERT or UPDATE statement cannot be run because all values for the identity
column have already been assigned.
v The NEXT VALUE expression cannot be evaluated because all values for the sequence
have already been assigned.
Recovery Text: For identity columns, alter the column to allow a larger range of values for the identity
column or alter the column to allow for cycling of identity values. For sequences, alter the
sequence to allow a larger range of values or to allow cycling of the sequence.
SQL0360
Message Text: DataLink in table &1 in &2 may not be valid due to pending links.
Cause Text: Table &1 in schema &2 has DataLinks in link pending mode. While the DataLink can be
retrieved using FETCH or SELECT INTO, the DataLink may not be valid because the table
has DataLinks in link pending mode.
Recovery Text: Verify that the value retrieved is a valid URL. The command WRKPFDL (Work with
Physical File DataLinks) can be used to determine which tables have DataLinks in link
pending mode.
SQLCODE or +360
SQLCODEs:
SQLSTATE or 01627
SQLSTATEs:
SQL0362
Message Text: Flagging detected an error in the current SQL statement.
Cause Text: The SQL statement contains syntax that is not standard at position &1.
Recovery Text: See previous messages in the job log for a more complete description of the error. If
conformance to the standard is needed, change the statement to conform and try the
request again.
SQLCODE or +362
SQLCODEs:
SQLSTATE or 0168I
SQLSTATEs:
SQL0363
Message Text: Extended indicator variable value for item &1 not valid.
Cause Text: The value of the extended indicator variable for item &1 was not within the range of
acceptable values. The value must be positive or in the range of 0 to -7 inclusive.
Recovery Text: Change the value of the extended indicator variable to one which is allowed for the
statement or context in which it was used. Try the request again.
SQLCODE or -363
SQLCODEs:
SQLSTATE or 22010
SQLSTATEs:
SQL0364
Message Text: DECFLOAT exception &1 during arithmetic operation or assignment.
SQL0365
Message Text: Use of extended indicator variable value for item &1 not valid.
Cause Text: The value of DEFAULT or UNASSIGNED was used for an extended indicator variable for
item &1 in a context in which it is not allowed. These values are only allowed in INSERT,
MERGE, and UPDATE statements.
Recovery Text: Change the extended indicator variable to an allowable value for the context in which it
was used. Try the request again.
SQLCODE or -365
SQLCODEs:
SQLSTATE or 22539
SQLSTATEs:
SQL0372
Message Text: Only one ROWID, IDENTITY, or ROW CHANGE TIMESTAMP column allowed.
Cause Text: Column &1 cannot be created in table &2 in &3 because column &4 has already been
defined. There can be at most one IDENTITY column, one ROWID column, and one ROW
CHANGE TIMESTAMP column defined in a table.
Recovery Text: Remove one of the columns or change the attributes so that only a single column is defined
as ROWID, as an IDENTITY column, or as a ROW CHANGE TIMESTAMP column. Try the
request again.
SQLCODE or -372
SQLCODEs:
SQLSTATE or 428C1
SQLSTATEs:
SQL0373
Message Text: DEFAULT cannot be specified for column &1.
SQL0385
Message Text: SQL routine &1 in &2 created with assignment to SQLCODE or SQLSTATE.
Cause Text: SQL routine &1 in schema &2 was created, but contains an assignment statement that
specifies the SQLCODE or SQLSTATE variable as the target. Assignment statements that
modify SQLCODE and SQLSTATE only change the value in the variable, the error or
warning is not signaled.
Recovery Text: No recovery is necessary. If the intent was to signal an error or warning, specify the
SIGNAL or RESIGNAL statement instead of the assignment.
SQLCODE or +385
SQLCODEs:
SQLSTATE or 01643
SQLSTATEs:
SQL0387
Message Text: No additional result sets returned.
Cause Text: Procedure &1 in &2 was defined to return a maximum number of &4 result sets. The
procedure returned &3 result sets.
Recovery Text: None.
SQLCODE or +387
SQLCODEs:
SQLSTATE or 02001
SQLSTATEs:
SQL0390
Message Text: Use of function &1 in &2 not valid.
Cause Text: Use of function &1 in schema &2 is not valid. The specific name is &3. One of the
following has occurred:
v A table function was specified in a clause other than the FROM clause.
v A function was specified in the FROM clause but the function is not a table function.
v A table function was specified as a source function in a CREATE FUNCTION statement.
v UNNEST was specified but is only allowed in SQL procedures and functions.
v WITH RETURN was specified for a cursor that has a function with an array result in the
select-list.
SQL0391
Message Text: Table function cannot be argument of function &1.
Cause Text: The table designator for a table function cannot be used as the argument of function &1 in
schema &2.
Recovery Text: Use a table designator that does not represent a table function as the argument of this
function. Try the request again.
SQLCODE or -391
SQLCODEs:
SQLSTATE or 42881
SQLSTATEs:
SQL0392
Message Text: Assignment of LOB or XML to specified host variable not allowed.
Cause Text: The target host variable for all fetches of this LOB or XML value for cursor &1 must be a
locator, a LOB host variable, or an XML host variable.
Recovery Text: Change the target of this fetch to either a LOB or XML host variable or a LOB or XML
locator to be consistent with other fetches for this cursor. If it is necessary to use both host
variables and locators as targets for this fetch, use the *NOOPTLOB compiler option.
SQLCODE or -392
SQLCODEs:
SQLSTATE or 42855
SQLSTATEs:
SQL0393
Message Text: Value specified for condition or diagnostic is not valid.
Cause Text: The value specified for the DIAGNOSTICS SIZE on the SET TRANSACTION statement is
out of range, or the condition number specified on the GET DIAGNOSTICS statement is
greater than the number of conditions available for the previous SQL statement.
Recovery Text: Specify a correct value.
SQLCODE or -393
SQLCODEs:
SQLSTATE or 35000
SQLSTATEs:
SQL0398
Message Text: AS LOCATOR can only be specified for a LOB or XML parameter.
Cause Text: AS LOCATOR is only allowed for LOB or XML parameters and return values of a
procedure or function. AS LOCATOR is not allowed for arrays. AS LOCATOR was
specified for parameter or return value &1.
SQL0399
Message Text: Value for ROWID column &1 not valid.
Cause Text: The INSERT or UPDATE statement cannot be run because the value specified for ROWID
column &1 is not valid.
Recovery Text: Remove column &1 from the column list or specify a valid ROWID value or DEFAULT for
column &1.
SQLCODE or -399
SQLCODEs:
SQLSTATE or 22511
SQLSTATEs:
SQL0401
Message Text: Comparison operator &1 operands not compatible.
Cause Text: The operands of comparison operator &1 are not compatible.
v Numeric operands are compatible with any other numeric operands and with character
and graphic operands.
v Character operands are compatible with operands that are character, graphic, date, time,
timestamp, or numeric.
v Date, time, and timestamp operands are compatible with character and graphic operands
or with another operand of the same type. Date and timestamp operands are also
compatible.
v Graphic operands are compatible with graphic, character, date, time, timestamp, or
numeric operands.
v Binary operands are compatible only with binary operands.
v Operands that are user-defined types can only be compared to operands that are the
same exact type.
v DataLink operands cannot be compared.
v XML operands cannot be compared.
Recovery Text: Check the data types of all operands to see if the data types are compatible. If all the
operands of the SQL statement are correct and a view is being accessed, then check the data
types of all the operands in the view definition. Correct the errors. Try the request again.
SQLCODE or -401
SQLCODEs:
SQLSTATE or 42818
SQLSTATEs:
SQL0402
Message Text: &1 use not valid.
SQL0403
Message Text: Alias &1 in &2 created but table or view not found.
Cause Text: The alias &1 was created in &2, but the referenced table or view, &3 in &4, could not be
found.
Recovery Text: The alias was created, but cannot be used until &3 in &4 is created.
SQLCODE or +403
SQLCODEs:
SQLSTATE or 01522
SQLSTATEs:
SQL0404
Message Text: Value for column or variable &1 too long.
Cause Text: An INSERT, UPDATE, MERGE, SET, VALUES INTO, or GET DIAGNOSTICS statement
specifies a value that is longer than the maximum length string that can be stored in &1.
The length of &1 is &2 and the length of the string is &3.
Recovery Text: Reduce the length of the string from &3 to a maximum of &2 and try the request again.
SQLCODE or -404
SQLCODEs:
SQLSTATE or 22001
SQLSTATEs:
SQL0405
Message Text: Numeric constant &1 out of range.
SQL0406
Message Text: Conversion error on assignment to column &2.
Cause Text: During an attempt to assign a value to column &2 with an INSERT, UPDATE, ALTER
TABLE, or REFRESH TABLE statement, conversion error type &3 occurred. If precompiling,
the error occurred when converting a numeric constant to the same attributes as column
&2. A list of the error types follows:
v Error type 1 is overflow.
v Error type 2 is floating point overflow.
v Error type 3 is floating point underflow.
v Error type 4 is a floating point conversion error.
v Error type 5 is not an exact result.
v Error type 6 is numeric data that is not valid.
v Error type 7 is DBCS data that is not valid.
Recovery Text: Change the statement so that the result value fits in column &2 and is valid, or create the
table or view again, specifying a new type or length for column &2 so that the result value
can be assigned.
SQLCODE or -406
SQLCODEs:
SQLSTATE or 22003, 22023, 22504
SQLSTATEs:
SQL0407
Message Text: Null values not allowed in column or variable &5.
The null value was specified as either NULL, a host variable with an associated indicator
variable that contains a negative value, a column containing a null value, or an expression
that evaluated to NULL. If it is a host variable or column then the name is &7.
The null value for a column may be disallowed by a CHECK constraint that was added
implicitly to enforce the NOT NULL attribute of the column specified on the CREATE or
ALTER of the column.
The null value for a column may be disallowed by a CHECK constraint that was added
implicitly to enforce the partitioning key attributes of the column specified for the base
table on the CREATE TABLE or ALTER TABLE statement.
Recovery Text: If this is an ALTER TABLE statement, change the existing null values in the column to a
non-null value. Otherwise, change the value so the result is not null. If a host variable is
specified, change the value in the related indicator variable to be greater than or equal to
zero. Try the request again.
SQLCODE or -407
SQLCODEs:
SQLSTATE or 23502
SQLSTATEs:
SQL0408
Message Text: Value for column, variable, or parameter &1 not compatible.
Cause Text: The data type of the source value is not compatible with the data type of the target column,
variable, or parameter &1. If the statement is INSERT or UPDATE, &1 is a column in table
&2 in schema &3.
v Any numeric type value can be assigned to any numeric, character, or graphic type.
v Any character or graphic value can be assigned to any character, graphic, or numeric
type.
v Any binary value can be assigned to any binary type.
v A date, time, or timestamp value can be assigned to any character or graphic type.
v Any character or graphic value can be assigned to a date, time, or timestamp type.
v A date value can be assigned to a date or timestamp.
v A time value can be assigned to a time.
v A timestamp value can be assigned to a date, time, or timestamp.
v A value being assigned to a user-defined type must be promotable to the source type.
v The DLVALUE function must be specified when assigning to a DataLink.
v An XML value can only be assigned to an XML type.
v A result set locator value can be assigned to a result set locator.
SQL0410
Message Text: Floating point literal &1 not valid.
Cause Text: The number of characters in the floating point constant &1 cannot exceed 42 excluding
leading zeros. The number of digits in the first number cannot exceed 34 excluding leading
zeros, and the number of digits in the second number cannot exceed 4.
Recovery Text: Correct the indicated literal &1. Make certain that the floating point literal is in the correct
form shown by the following examples: +1.2E+3, 15E1, 2.E5, 2.2e-1, +5.E+2, -.1e1. Try the
request again.
SQLCODE or -410
SQLCODEs:
SQLSTATE or 42820
SQLSTATEs:
SQL0412
Message Text: Subselect with more than one result column not valid.
Cause Text: The subselect of a predicate must have only one result column specified when the other
operand of the predicate is a single expression. The result of the subselect can be zero, one,
or many rows to form a list, but it must have only one result column.
Recovery Text: Change the number of items returned by the subselect so only one result column is
specified or change the other operand of the predicate to be a list of expressions.
SQLCODE or -412
SQLCODEs:
SQLSTATE or 42823
SQLSTATEs:
SQL0414
Message Text: Operand not valid in LIKE predicate.
Cause Text: Operand 1 of a LIKE predicate has a type of date, time, timestamp, or DataLink or is a
user-defined type. Operands specified in LIKE predicates must be binary, character, graphic,
or numeric. If the ESCAPE character is specified, operand 1 cannot be DBCS-only. If the
operand is a column, the column name is &1.
Recovery Text: Change operand 1 of the LIKE predicate to be a binary, character, graphic, or numeric type.
Use a different predicate for date, time, or timestamp comparisons. Do not specify an
ESCAPE character if operand 1 is DBCS-only. Try the request again.
SQLCODE or -414
SQLCODEs:
SQLSTATE or 42824
SQLSTATEs:
SQL0415
Message Text: Operands of set operation, array constructor, or VALUES not compatible.
SQL0417
Message Text: Combination of parameter markers not valid.
Cause Text: The statement string specified as the object of a PREPARE statement contains a predicate or
expression where parameter markers have been used as operands of the same operator. The
following restrictions apply to the use of parameter markers:
v Both the operands in a predicate cannot be parameter markers. For example, specifying
predicates of the form:
?=?
or
? = ( SELECT ? FROM x )
?+?
is not valid.
v At least one of the operands in the BETWEEN predicate cannot be a parameter marker.
For example, specifying the predicate of the form:
? BETWEEN ? and ?
is not valid.
v At least, one of the operands of the IN predicate must not be a parameter marker. For
example, specifying the predicate of the form:
? IN (?, ?, ?)
is not valid.
Recovery Text: Correct the statement so that all operands of the predicate or expression are not parameter
markers. A CAST specification can be used in most cases to assign attributes to a parameter
marker. Try the request again.
SQL0418
Message Text: Use of parameter marker or NULL not valid.
Cause Text: Parameter markers and NULL are not allowed:
v As an operand of some scalar functions. If the scalar function is VALUE, COALESCE,
IFNULL, NULLIF, MIN, MAX, LAND, LOR, XOR, BITAND, BITANDNOT, BITOR,
BITXOR, or BITNOT then at least one of the arguments must be a value that is not a
parameter marker or NULL.
SQL0419
Message Text: Negative scale not valid.
Cause Text: A decimal division operation has produced a negative scale. To view the algorithm used to
determine the scale for decimal division, refer to the DB2 for i SQL Reference topic
collection in the Database category in the IBM i Information Center, http://www.ibm.com/
systems/i/infocenter/.
Recovery Text: Change one of the operands to floating point by using the FLOAT or DECFLOAT scalar
function. This will change the result of division to floating point. If a decimal result is
desired, use the DECIMAL scalar function in the floating point result. If one of the
operands is integer, small integer, or big integer, SQL has converted it to decimal prior to
the division. The DECIMAL function can be used to explicitly convert the integer, small
integer, or big integer to a precision that will not cause the division to produce a negative
scale. Try the request again.
SQL0420
Message Text: Character in CAST argument not valid.
Cause Text: A character in the argument for the CAST function was not correct.
Recovery Text: Change the result data type to one that recognizes the characters in the CAST argument, or
change the argument to contain a valid representation of a value for the result data type.
Try the request again.
SQLCODE or +420, -420
SQLCODEs:
SQLSTATE or 01565, 22018
SQLSTATEs:
SQL0421
Message Text: Number of columns not consistent.
Cause Text: The subselects of a UNION, INTERCEPT, or EXCEPT must have the same number of result
columns. All rows specified for a multiple row insert or for a VALUES clause must have
the same number of values.
Recovery Text: Correct the SQL statement so that the same number of columns are defined for each row.
Try the request again.
SQLCODE or -421
SQLCODEs:
SQLSTATE or 42826
SQLSTATEs:
SQL0423
Message Text: Locator &1 not valid.
Cause Text: The value of locator &1 is not currently valid. A LOB or XML locator may have been freed
by a previous FREE LOCATOR statement or a COMMIT or ROLLBACK. A result set
locator may have been freed by a CLOSE statement or a COMMIT or ROLLBACK. An
ALLOCATE CURSOR statement cannot be run for a result set locator value that has already
had a cursor allocated.
Recovery Text: Ensure that the locator value refers to an active locator that has not been freed because of a
FREE LOCATOR, CLOSE, COMMIT, or ROLLBACK statement. A LOB or XML value can
be assigned to a locator variable using a SELECT INTO statement, a VALUES INTO or SET
statement, a GET DESCRIPTOR statement, or a FETCH statement. A value can be assigned
to a result set locator variable using an ASSOCIATE LOCATORS statement or a DESCRIBE
PROCEDURE statement.
SQLCODE or -423
SQLCODEs:
SQLSTATE or 0F001
SQLSTATEs:
SQL0427
Message Text: Dynamic ROLLBACK is not valid for the application environment.
Cause Text: An application using DRDA two-phase commit protocols has attempted to issue a dynamic
ROLLBACK.
Recovery Text: Remove the dynamic ROLLBACK statement.
SQLCODE or -427
SQLCODEs:
SQLSTATE or 2D529
SQLSTATEs:
SQL0428
Message Text: SQL statement cannot be run.
Cause Text: A SET TRANSACTION, DISCONNECT, or SET SESSION AUTHORIZATION statement
cannot be run in the current application state. The reason code is &1. Reason codes and
their meanings are:
v 1 -- A connection is not at a commit boundary.
v 2 -- The current server is a local relational database and there is an active connection to a
remote relational database.
v 3 -- The SYSTEM_USER is one of the system-supplied user profiles such as QSYS,
QDFTOWN, or QSPL.
v 4 -- A stored procedure, user-defined function, or trigger is running.
v 5 -- Resources are being held because a COMMIT HOLD statement has been run.
v 6 -- Resources are being held because a HOLD LOCATOR statement has been run.
v 7 -- The maximum number of ProfileHandles have been generated.
SQL0429
Message Text: The maximum number of concurrent LOB and XML locators has been reached.
Cause Text: The LOB or XML locator could not be generated because there are already 16000000 valid
locators for this process.
Recovery Text: Use the FREE LOCATOR statement to free LOB or XML locators.
SQLCODE or -429
SQLCODEs:
SQLSTATE or 54028
SQLSTATEs:
SQL0432
Message Text: A parameter marker cannot have the user-defined type name &1.
Cause Text: A parameter marker in the statement has been determined as having the user-defined type
&1 based on the context in which it is used. A parameter marker cannot have a
user-defined type as its data type unless it is part of an assignment (VALUES clause of
INSERT or SET clause of UPDATE) or it is being explicitly cast to a user-defined type using
the CAST specification.
Recovery Text: Use an explicit cast to the user-defined distinct type for the parameter marker or cast the
columns that are user-defined types to their corresponding source data type.
SQLCODE or -432
SQLCODEs:
SQLSTATE or 42841
SQLSTATEs:
SQL0433
Message Text: Significant data truncated during CAST or XMLSERIALIZE.
SQL0435
Message Text: SQLSTATE value &1 not valid.
Cause Text: SQLSTATE value &1 specified in a handler or condition, in a SIGNAL or RESIGNAL
statement, or in a RAISE_ERROR function is not valid. SQLSTATE values must have a
length of 5 and must contain uppercase characters A-Z or numbers 0-9. The first two
characters of the SQLSTATE value cannot be '00'. The SQLSTATE value in a RAISE_ERROR
function cannot begin with '00', '01', or '02'. If the SQLSTATE value shown is '*N', an empty
string or null value was passed for the SQLSTATE.
Recovery Text: Change the SQLSTATE to one that is valid. Try the request again.
SQLCODE or -435
SQLCODEs:
SQLSTATE or 428B3
SQLSTATEs:
SQL0438
Message Text: Message &1 returned from SIGNAL, RESIGNAL, or RAISE_ERROR.
Cause Text: An application has executed a SIGNAL or RESIGNAL statement, the RAISE_ERROR
function has been invoked, or an error was signalled within a MERGE statement. If the
application is an SQL procedure, function, trigger, or a compound (dynamic) statement, the
SQLSTATE was not handled in the SQL routine. The message returned is &1.
Recovery Text: See the documentation for the application that issued the SIGNAL or RESIGNAL statement
or invoked the RAISE_ERROR function.
SQLCODE or +438, -438
SQLCODEs:
SQLSTATE or 01xxx, XXXXX
SQLSTATEs:
SQL0440
Message Text: Routine &1 in &2 not found with specified parameters.
Cause Text: A function or procedure with the specified name and compatible arguments was not found.
Recovery Text: Specify the correct number and type of parameters on the CALL statement, CREATE OR
REPLACE statement, or function invocation. Try the request again.
SQLCODE or +440, -440
SQLCODEs:
SQLSTATE or 0168L, 42884
SQLSTATEs:
SQL0442
Message Text: Too many parameters for procedure &1 in &2 on CALL statement.
Cause Text: Only 1024 parameters are allowed on the CALL statement. If the procedure is a REXX
procedure, only 32766 bytes of data can be passed on the CALL statement.
Recovery Text: Reduce the number of parameters specified to the maximum of 1024. If calling a REXX
procedure, limit the total number of bytes of parameter data to be less than 32766. Try the
request again.
SQLCODE or -442
SQLCODEs:
SQLSTATE or 54023
SQLSTATEs:
SQL0443
Message Text: Trigger program or external routine detected an error.
Cause Text: Either a trigger program, external procedure, or external function detected and returned an
error to SQL. If the error occurred in a trigger program, the trigger was on table &4 in
schema &5. If the error occurred in an external procedure or function, the external name is
&4 in schema &5. The associated text is &6. If the error occurred in a trigger program, the
associated text is the type of trigger program. If the error occurred in an external function,
the associated text is the text of the error message returned from the external function.
Recovery Text: Refer to the joblog for more information regarding the detected error. Correct the error and
try the request again.
SQLCODE or -443
SQLCODEs:
SQLSTATE or 38501, 38xxx
SQLSTATEs:
SQL0444
Message Text: External program &4 in &5 not found.
Cause Text: An attempt was made to CALL procedure or invoke function &1 in &2. External program
or service program &4 in schema &5 was not found.
SQL0445
Message Text: A value was truncated.
Cause Text: If the value was truncated when calling a procedure, the value of parameter &4 in
procedure &1 in &2 was too long. Parameter &4, which is declared as OUT or INOUT,
contains a value that is longer than the maximum length string that can be stored in host
variable &8. Parameter &4 is being returned from procedure &1 in &2 to host variable &8.
The length of the parameter is &6 and the length of the host variable is &7. Otherwise, the
truncation occurred during another SQL operation.
Trailing blanks are not included in the length of the string for character values. Trailing hex
zeros are not included in the length of the string for binary values.
Recovery Text: Increase the length of the host variable from &7 to &6, or ensure that the truncation is
expected and has not caused any unexpected consequences.
SQLCODE or +445
SQLCODEs:
SQLSTATE or 01004
SQLSTATEs:
SQL0446
Message Text: Conversion error in assignment of argument &2.
Cause Text: During an attempt to assign input argument number &1 on a CALL statement to the
corresponding parameter for the call, error type &3 occurred. A list of the error types
follows:
v 1 - Overflow.
v 2 - Floating point overflow.
v 3 - Floating point underflow.
v 4 - Floating point conversion error.
v 5 - Not an exact result.
v 6 - Numeric data is not valid.
v 7 - Double-byte character set (DBCS) data is not valid.
SQL0448
Message Text: Too many parameters or result sets for routine &1 in &2.
Cause Text: One of the following limits has been exceeded:
v 1024 parameters in a DECLARE PROCEDURE, CREATE PROCEDURE, or ALTER
PROCEDURE statement. The actual number may be less and depends on the language.
v 1023 parameters if GENERAL WITH NULLS is specified.
v 195 parameters if PARAMETER STYLE SQL is specified with PROGRAM TYPE SUB.
v 1024 parameters for an SQL procedure.
v 90 parameters in a CREATE FUNCTION statement.
v 124 parameters and return values in a CREATE FUNCTION(Table) statement.
v 255 for languages other than C and C++.
v 32767 result sets.
Recovery Text: Reduce the number of parameters defined to the maximum or change the value for the
number of result sets to be less than or equal to 32767. Try the request again.
SQLCODE or -448
SQLCODEs:
SQLSTATE or 54023
SQLSTATEs:
SQL0449
Message Text: External program name for routine &1 in &2 not valid.
Cause Text: The external program name specified on a DECLARE PROCEDURE, CREATE
PROCEDURE, CREATE FUNCTION, ALTER PROCEDURE, or ALTER FUNCTION
statement is not valid for the routine or the language specified.
v The external program name for a procedure or function must be of the form
'library-name/program-name' or 'library-name/program-name(entry-point-name)'.
v The external program name for a JAVA procedure or function must be
'class-name!method-name' or 'class-name.method-name'.
v The external program name for a REXX procedure must be 'library-name/source-file-
name(member-name)'.
Recovery Text: Specify the correct form of the external program name. Try the request again.
SQLCODE or -449
SQLCODEs:
SQLSTATE or 42878
SQLSTATEs:
SQL0451
Message Text: Attributes of parameter &1 not valid for procedure or function &3 in &4.
SQL0452
Message Text: Unable to access a file that is referred to by a file reference variable.
Cause Text: The file referred to by the file reference variable (host variable &1) could not be accessed
because of reason code &2. The reason codes and their meanings are:
v 1 - The file name or path has a format that is not valid.
v 2 - The length of the file name is greater than the maximum allowed length.
v 3 - The file option is not valid.
v 4 - The file or directory cannot be found.
v 5 - A file already exists with the same name as that specified for a file that has the NEW
option.
SQL0453
Message Text: Return type for function &1 in &2 not compatible with CAST TO type.
Cause Text: The data types specified in the RETURNS clause for function &1 in &2 are not valid. The
CAST TO and CAST FROM data types are not compatible.
Recovery Text: Correct the data type specified in the RETURNS clause for the function. Try the request
again.
SQLCODE or -453
SQLCODEs:
SQLSTATE or 42880
SQLSTATEs:
SQL0454
Message Text: Routine &1 in &2 already exists.
Cause Text: One of the following has occurred:
v Procedure &1 with the same number of parameters already exists in schema &2.
Procedures in a schema cannot have the same name and number of parameters.
v Function &1 with the same signature already exists in schema &2. All functions in the
same schema must have a unique signature. The database uses the name of the function
and the number and data types of the arguments to determine the signature for the
function.
Recovery Text: Change the routine name or the parameters or drop the existing routine. Try the request
again.
SQLCODE or -454
SQLCODEs:
SQLSTATE or 42723
SQLSTATEs:
SQL0455
Message Text: Schema &2 for specific name not same as routine schema &3.
Cause Text: The specific name schema &2 specified on a CREATE PROCEDURE, DECLARE
PROCEDURE, or CREATE FUNCTION statement is not the same as schema &3 for
procedure or function &1.
Recovery Text: Specify the same schema for the specific name as for the procedure or function name.
SQL0456
Message Text: Specific name &3 in &2 already exists.
Cause Text: An attempt was made to create a function or procedure &1 in &2 with specific name &3,
but specific name &3 already exists in the schema. All routines (functions and procedures)
in the same schema must have unique specific names.
Recovery Text: Specify a SPECIFIC NAME that does not exist or do not specify a SPECIFIC NAME and a
unique name will be generated for you. Otherwise, delete the existing routine. Try the
request again.
SQLCODE or -456
SQLCODEs:
SQLSTATE or 42710
SQLSTATEs:
SQL0457
Message Text: Name &1 in &2 not allowed for function.
Cause Text: Function &1 in &2 cannot be created or altered or cannot be used as the source function
name. Either the function name is a reserved word or the schema is specified as QSYS,
QSYS2, SYSIBM, SYSPROC, or QTEMP. Functions cannot be created or altered in QSYS,
QSYS2, SYSIBM, SYSPROC, or QTEMP.
Recovery Text: Change the name of the function to one that is not reserved or specify a different schema.
Try the request again.
SQLCODE or -457
SQLCODEs:
SQLSTATE or 42939
SQLSTATEs:
SQL0458
Message Text: Function &1 in &2 not found with matching signature.
Cause Text: Function &1 is specified in schema &2. The name of the function and the number and data
types of the parameters make up the function signature. A function with a matching
signature was not found.
Recovery Text: Ensure that the function name specified exists and that the number and data types of the
parameters match those in the function definition. Try the request again.
SQLCODE or -458
SQLCODEs:
SQLSTATE or 42883
SQLSTATEs:
SQL0460
Message Text: Truncation of data may have occurred for ALTER TABLE of &1 in &2.
Cause Text: Table &1 in &2 has been altered. The length of column &3 has been reduced and data may
have been truncated.
SQL0461
Message Text: CAST from &1 to &2 not supported.
Cause Text: CAST is not supported from data type &1 to data type &2. If the CAST is from date, time,
or timestamp to character, the length of the character result is too small.
Recovery Text: Change the result data type or length to one that is supported for the CAST function or
change the expression to have a data type that can be cast to &2. Try the request again.
SQLCODE or -461
SQLCODEs:
SQLSTATE or 42846
SQLSTATEs:
SQL0462
Message Text: Procedure or user-defined function &1 in &2 returned a warning SQLSTATE.
Cause Text: An SQLSTATE of the form 01xxx was returned by the procedure or user-defined function
&1 in &2 (with specific name &3), along with message text &4.
Recovery Text: The user must understand the meaning of the warning. See your database administrator, or
the author of the user-defined function or procedure.
SQLCODE or +462
SQLCODEs:
SQLSTATE or 01Hxx
SQLSTATEs:
SQL0463
Message Text: SQLSTATE &4 returned from routine &1 in &2 not valid.
Cause Text: SQLSTATE &4 cannot be returned from an external routine if PARAMETER STYLE SQL or
DB2SQL is specified. Routine &1 in &2 is either an external procedure that was called or an
external function that was invoked. The specific name is &3. The diagnostic text is &5.
Recovery Text: Change the external routine to only return a SQLSTATE that is valid for the PARAMETER
STYLE SQL or DB2SQL. Try the request again.
SQLCODE or -463
SQLCODEs:
SQLSTATE or 39001
SQLSTATEs:
SQL0464
Message Text: Procedure &1 returned &3 result sets, which exceeds the defined limit of &4.
SQL0466
Message Text: &3 result sets are available from procedure &1 in &2.
Cause Text: Procedure &1 in &2 was called and has returned one or more result sets.
Recovery Text: None.
SQLCODE or +466
SQLCODEs:
SQLSTATE or 0100C
SQLSTATEs:
SQL0467
Message Text: Another result set exists for procedure &1 in &2.
Cause Text: A result set was closed for &1 in &2. Another result set exists for the stored procedure. A
maximum of &3 result sets are possible for this procedure.
Recovery Text: None.
SQLCODE or +467
SQLCODEs:
SQLSTATE or 0100D
SQLSTATEs:
SQL0469
Message Text: IN, OUT, or INOUT not valid for parameter &4 in procedure &1 in &2.
Cause Text: The IN, INOUT, or OUT attribute specified for parameter &4 when the procedure was
defined is not valid. The parameter name is &5. One of the following errors occurred:
v A default cannot be specified for an OUT parameter.
v The attribute is not consistent with the parameter on the CALL statement. If the
parameter was declared INOUT or OUT, the parameter on the CALL statement must be
specified as a host variable or a global variable.
v The attribute was specified as INOUT or OUT and REXX was specified as the language.
The attribute must be IN if REXX is specified.
Recovery Text: Either change the attribute of the parameter on the DECLARE PROCEDURE, CREATE
PROCEDURE, or ALTER PROCEDURE statement or change the parameter. Try the request
again.
SQL0470
Message Text: Null values not allowed for parameter &4 in procedure &1 in &2.
Cause Text: Null values are not allowed on the CALL statement for procedure &1 because the
procedure was declared with GENERAL specified. The null value was specified as either
the NULL keyword, a host variable with an associated indicator variable that contains a
negative value, or a global variable with the null value. The parameter number is &4 and
the parameter name is &5.
Recovery Text: Specify PARAMETER STYLE SQL, DB2SQL, or GENERAL WITH NULLS on the CREATE
PROCEDURE, ALTER PROCEDURE, or DECLARE PROCEDURE statement or pass a value
other than the null value on the CALL statement. Try the request again.
SQLCODE or -470
SQLCODEs:
SQLSTATE or 39004
SQLSTATEs:
SQL0473
Message Text: Name &1 cannot be used for user-defined type.
Cause Text: Name &1 specified for a user-defined type is the same as a system predefined type or is a
function name that is reserved. Function names that cannot be used include CAST,
DATAPARTITIONNAME, DATAPARTITIONNUM, DBPARTITIONNAME,
DBPARTITIONNUM, EXTRACT, NODENAME, NODENUMBER, PARTITION, POSITION,
RID, RRN, STRIP, SUBSTRING, and TRIM.
Recovery Text: Change the name for the user-defined type. Try the request again.
SQLCODE or -473
SQLCODEs:
SQLSTATE or 42918
SQLSTATEs:
SQL0475
Message Text: RETURNS data type for function &3 in &4 not valid.
Cause Text: The data type specified for the RETURNS clause or the CAST FROM clause for function &3
in schema &4 is not appropriate for the data type returned from the sourced function or the
value specified on the RETURN statement in the SQL function body. The data type
specified in the RETURNS clause is &1 and the data type returned from the sourced
function or SQL function is &2.
Recovery Text: Correct the data types specified or specify another sourced function. Try the request again.
SQLCODE or -475
SQLCODEs:
SQLSTATE or 42866
SQLSTATEs:
SQL0478
Message Text: Object &1 of type &3 cannot be dropped or altered.
Cause Text: The base object &1 in schema &2 cannot be dropped or altered because another object
depends on it. The dependent object &4 in &5 is of type &6.
v If base object type is *N, the object being dropped or altered is a function, procedure,
trigger, mask, or permission. For other objects it may be that the dependency is indirect.
That is, the named object is dependent on another object which is dependent on the
object being dropped or altered.
v If the base object is a function, the dependent object is sourced on the base object, or is a
view, a materialized query table, or an SQL procedure, function, global variable, or
trigger that references the function.
v If the base object is a procedure, the dependent object is referenced in an SQL procedure,
function, or trigger.
v If the base object is a table and if there are other tables with triggers or foreign key
constraints dependent on the base table, then the RESTRICT clause of the DROP
statement will prevent the base table from being dropped.
v If the base object is *LIB and if there are tables, views, functions, procedures, distinct
types, aliases, global variables, or triggers in the schema, then the RESTRICT clause of
the DROP statement will prevent the schema from being dropped. A trigger can be
defined in one schema on a table that exists in a different schema.
v If the base object is *SQLUDT and if there are tables, views, indexes, functions,
procedures, sequences, global variables, or triggers dependent on the distinct type, then
the RESTRICT clause of the DROP statement will prevent the base distinct type from
being dropped.
v If the base object is *DTAARA and if there are SQL routines, global variables, or triggers
dependent on the sequence, then the RESTRICT clause of the DROP statement will
prevent the base sequence from being dropped.
v If the base object is *SRVPGM and if there are views, SQL routines, global variables, or
triggers dependent on the global variable, then the RESTRICT clause of the DROP
statement will prevent the base global variable from being dropped.
Recovery Text: Drop the dependent objects first. Try the request again.
SQLCODE or -478
SQLCODEs:
SQLSTATE or 42893
SQLSTATEs:
SQL0482
Message Text: Procedure &1 returned no locators.
Cause Text: Procedure &1 in schema &2 referenced in an ASSOCIATE LOCATOR statement returned no
result set locators to this invocation. This error will also occur for an ASSOCIATE
LOCATOR statement when connected remotely and the procedure has not been called or
does not exist.
Recovery Text: Determine if result set locators are returned from the identified procedure by using the
DESCRIBE PROCEDURE statement.
SQLCODE or +482
SQLCODEs:
SQLSTATE or 02503
SQLSTATEs:
SQL0483
Message Text: Parameters for function &1 in &2 not same as sourced function.
Cause Text: The number of parameters specified for function &1 in &2 is not the same as the number of
parameters specified for the sourced function.
Recovery Text: Specify the correct number of parameters for the function or specify another sourced
function. If not qualified, ensure the correct sourced function exists in the current path. Try
the request again.
SQLCODE or -483
SQLCODEs:
SQLSTATE or 42885
SQLSTATEs:
SQL0484
Message Text: Routine &1 in &2 already exists.
Cause Text: An attempt was made to create routine &1 in &2, but &1 already exists. All procedures and
functions in the same schema must have unique specific names.
Recovery Text: Specify a SPECIFIC name that does not exist or do not specify a SPECIFIC name and a
unique name will be generated for you. Otherwise, delete the existing routine. Try the
request again.
SQLCODE or -484
SQLCODEs:
SQLSTATE or 42733
SQLSTATEs:
If the error occurred in a procedure or function, the routine name is &1 and the specific
name is &2.
Recovery Text: Ensure routines created as NO SQL only invoke routines that do not contain SQL
statements. Do not specify NO SQL for an SQL procedure or function. Do not change the
client SQL special registers within a procedure, function, or trigger. Do not use SQL
statements in a field procedure program.
SQLCODE or -487
SQLCODEs:
SQLSTATE or 38001
SQLSTATEs:
SQL0490
Message Text: Numeric value &1 not valid.
Cause Text: &1 was specified, but it is not in the valid range of values for its use. The valid range of
values are &2 through &3.
Recovery Text: Change the value and try the request again.
SQLCODE or -490
SQLCODEs:
SQLSTATE or 428B7
SQLSTATEs:
SQL0491
Message Text: Clause not correct for procedure or function.
SQL0492
Message Text: Data type for function &1 in &2 not valid for source type.
Cause Text: The data type specified for parameter &3 for function &1 in library &2 is not valid for the
corresponding type of the SOURCE function.
Recovery Text: Correct the data type specified for parameter &3 or specify another sourced function. Try
the request again.
SQLCODE or -492
SQLCODEs:
SQLSTATE or 42879
SQLSTATEs:
SQL0494
Message Text: Fewer locators than number of result sets.
Cause Text: On an ASSOCIATE LOCATOR statement for procedure &1 in schema &2, fewer result set
locator variables were provided than the number of available result sets. &3 result set
locator variables were provided and &4 result sets are available.
Recovery Text: No recovery is necessary.
SQLCODE or +494
SQLCODEs:
SQLSTATE or 01614
SQLSTATEs:
SQL0501
Message Text: Cursor &1 not open.
Cause Text: The cursor &1 was specified in a FETCH or CLOSE statement, but the cursor is not open.
Cursor &1 has one of the following conditions:
v Cursor &1 was never opened.
v The cursor &1 was opened in another program or another call of this program and the
program was created with CLOSQLCSR(*ENDPGM).
v The cursor &1 was opened in another module or another call of this module and the
module was created with CLOSQLCSR(*ENDMOD).
v The cursor &1 was opened in another call of this program and programs which have run
SQL statements have ended and the program was created with CLOSQLCSR(*ENDSQL).
v The cursor &1 was opened in another call of this module and the activation group ended
between calls. The module was created with CLOSQLCSR(*ENDACTGRP).
v The cursor was closed by a CLOSE, COMMIT, or ROLLBACK statement.
v The cursor &1 was opened under a transaction which is different than the current
transaction.
Recovery Text: Do one of the following and precompile again:
v Make certain that cursor &1 is opened in the same program or module call prior to using
the cursor in an FETCH or CLOSE statement.
v Specify either CLOSQLCSR(*ENDSQL), CLOSQLCSR(*ENDJOB), or
CLOSQLCSR(*ENDACTGRP) when precompiling the application.
v If the cursor was closed by a COMMIT or ROLLBACK, specify HOLD on the COMMIT
or ROLLBACK statement to preserve any open cursors, prepared statements, and locks
on tables.
SQLCODE or -501
SQLCODEs:
SQLSTATE or 24501
SQLSTATEs:
SQL0502
Message Text: Cursor &1 already open or allocated.
Cause Text: The cursor specified in an OPEN statement or ALLOCATE CURSOR statement is already
open or allocated for this call of the program.
Recovery Text: Close cursor &1 and then try the OPEN statement or ALLOCATE CURSOR statement again
or change the name of the cursor, and then precompile the program again.
SQL0503
Message Text: Column &3 cannot be updated.
Cause Text: An UPDATE statement attempted to update column &3 in table or view &1 in &2. The
column cannot be updated because it was not specified in the FOR UPDATE OF clause in
the associated DECLARE CURSOR statement.
Recovery Text: Add column &3 to the FOR UPDATE OF clause in the related DECLARE CURSOR
statement. Precompile the program again.
SQLCODE or -503
SQLCODEs:
SQLSTATE or 42912
SQLSTATEs:
SQL0504
Message Text: Cursor &1 not declared.
Cause Text: Cursor &1 is not declared in the program before it is referred to. A cursor must be declared
before being referred to in other statements. All cursors used in the SET RESULT SETS
statement must be declared WITH RETURN if any cursors in the program are declared
WITH RETURN or WITHOUT RETURN.
Recovery Text: Verify that the application program is complete and has no spelling errors in the cursor
declarations. Make certain the declaration for a cursor is in an application program before it
is referred to by other statements. If any cursors are declared WITH RETURN or
WITHOUT RETURN, make sure all cursors used by the SET RESULT SETS statement are
declared WITH RETURN. Precompile the program again.
SQLCODE or -504
SQLCODEs:
SQLSTATE or 34000
SQLSTATEs:
SQL0507
Message Text: Cursor &1 not open.
Cause Text: Cursor &1 was specified in an UPDATE or DELETE statement, but the cursor is not open.
Cursor &1 has one of the following conditions:
v Cursor &1 was never opened.
v The cursor &1 was opened in another program or another call of this program and the
program was created with CLOSQLCSR(*ENDPGM).
v The cursor &1 was opened in another module or another call of this module and the
module was created with CLOSQLCSR(*ENDMOD).
v The cursor &1 was opened in another call of this program and programs which have run
SQL statements have ended and the program was created with CLOSQLCSR(*ENDSQL).
v The cursor &1 was opened in another call of this module and the activation group was
ended between calls. The program was created with CLOSQLCSR(*ENDACTGRP).
v The cursor was closed by a CLOSE, COMMIT, or ROLLBACK statement.
SQL0508
Message Text: Cursor &1 not positioned on locked row.
Cause Text: An UPDATE or DELETE statement with a WHERE CURRENT OF &1 was attempted, but
the cursor is not positioned on a row or is positioned on a row, but the row is not locked
because a COMMIT HOLD or ROLLBACK HOLD statement released the lock on the row.
A FETCH statement must be issued to position the cursor on a row and lock the row.
Recovery Text: Issue a FETCH statement to position the cursor on a row and lock the row; then, try the
request again.
SQLCODE or -508
SQLCODEs:
SQLSTATE or 24504
SQLSTATEs:
SQL0509
Message Text: Table &2 in &3 not same as table in cursor &1.
Cause Text: An UPDATE or DELETE statement with a WHERE CURRENT OF &1 specified the table
&2 in &3, but cursor &1 refers to a different table. The table specified in the UPDATE or
DELETE statement and the table referred to by cursor &1 must be the same.
Recovery Text: Change the specified table name to match the table specified in the cursor &1 and
precompile the program again.
SQLCODE or -509
SQLCODEs:
SQLSTATE or 42827
SQLSTATEs:
SQL0510
Message Text: Cursor &1 for table or view &2 read-only.
A view or logical file is read-only if one or more of the following conditions are true:
-- The view contains a subquery that refers to the same table as the table of the outer-most
subselect.
-- All the columns of the view are expressions, scalar functions, or constants.
-- The DECLARE CURSOR statement specified an ORDER BY clause but did not specify a
FOR UPDATE OF clause.
-- The DECLARE CURSOR statement specified the SCROLL keyword without DYNAMIC.
-- The cursor referred to a read-only view or logical file in the select list.
-- The fullselect specified in the DECLARE CURSOR statement contains any of the above
restrictions that would make a view read only.
-- A second INSTEAD OF trigger is required for the update or delete on a dependent view.
-- The DECLARE CURSOR statement specified a SELECT with a data change table
reference.
Recovery Text: Do one of the following and precompile the program again:
-- If the DECLARE CURSOR statement specified an ORDER BY clause but not a FOR
UPDATE OF clause, add a FOR UPDATE OF clause.
-- If the DECLARE CURSOR statement specified a FOR READ ONLY clause, remove the
FOR READ ONLY clause.
-- If the DECLARE CURSOR statement specified the SCROLL keyword, specify DYNAMIC
SCROLL.
-- If the referred to view or logical file is read only, remove the UPDATE or DELETE
statement.
-- If the DECLARE CURSOR statement contains any conditions that make the cursor read
only, remove the UPDATE or DELETE statement.
SQLCODE or -510
SQLCODEs:
SQLSTATE or 42828
SQLSTATEs:
SQL0511
Message Text: FOR UPDATE clause not valid.
SQL0512
Message Text: Statement references objects in multiple databases.
Cause Text: The statement refers to objects that reside on multiple databases. The objects could be either
explicitly qualified object names or alias names that are defined to reference a different
database. This SQL statement can only refer to a single database.
A CREATE TABLE AS that selects from a remote database cannot reference a table that has
a FIELDPROC defined. It cannot define a materialized query table. If the remote database is
not on an IBM i server, the INCLUDING clauses are not allowed.
Recovery Text: Ensure all objects used in the statement reside at the same database. Try the request again.
SQLCODE or -512
SQLCODEs:
SQLSTATE or 56023
SQLSTATEs:
SQL0513
Message Text: Alias &1 in &2 cannot reference another alias.
Cause Text: Alias &1 in &2 can only reference a table or a view. It cannot reference another alias.
Recovery Text: Change the referenced name and try the request again.
SQLCODE or -513
SQLCODEs:
SQLSTATE or 42924
SQLSTATEs:
SQL0514
Message Text: Prepared statement &2 not found.
SQL0516
Message Text: Prepared statement &2 not found.
Cause Text: &2 is not a valid prepared statement. The statement has one of the following conditions:
v The statement has never been prepared.
v The statement was prepared in another program or another call of this program and the
program was created with CLOSQLCSR(*ENDPGM).
v The statement was prepared in another module or another call of this module and the
module was created with CLOSQLCSR(*ENDMOD).
v The statement was prepared in another call of this program and programs which have
run SQL statements have ended and the program was created with
CLOSQLCSR(*ENDSQL).
v The statement was prepared in another call of this module and the activation group
ended between calls. The module was created with CLOSQLCSR(*ENDACTGRP).
v A COMMIT or ROLLBACK statement has destroyed all the prepared statements.
Recovery Text: Do one of the following and precompile again:
v Make certain that &1 has been prepared in the same program or module call prior to
using the DESCRIBE statement or specify either CLOSQLCSR(*ENDSQL),
CLOSQLCSR(*ENDJOB), or CLOSQLCSR(*ENDACTGRP) when precompiling the
application.
v If the statement was deleted by a COMMIT or ROLLBACK, specify HOLD on the
COMMIT or ROLLBACK statement to preserve any open cursors, prepared statements,
and locks on tables.
SQL0517
Message Text: Prepared statement &2 not select-statement.
Cause Text: An attempt was made to open cursor &1, which refers to statement &2. Statement &2 is a
valid prepared statement, but it is not a select-statement. OPEN can only refer to prepared
select-statements.
Recovery Text: Change the OPEN statement to refer to a prepared select-statement, or prepare statement
&2 using a valid select-statement and then try the open.
SQLCODE or -517
SQLCODEs:
SQLSTATE or 07005
SQLSTATEs:
SQL0518
Message Text: Prepared statement &1 not found.
Cause Text: An EXECUTE statement referred to the statement &1. &1 is not a valid prepared statement.
The statement has one of the following conditions:
v The statement has never been prepared.
v The statement identifies a prepared SELECT or DECLARE PROCEDURE statement.
v The statement was in error at prepare or bind time.
v The statement was prepared in another program or another call of this program and the
program was created with CLOSQLCSR(*ENDPGM).
v The statement was prepared in another module or another call of this module and the
module was created with CLOSQLCSR(*ENDMOD).
v The statement was prepared in another call of this program and programs which have
run SQL statements have ended and the program was created with
CLOSQLCSR(*ENDSQL).
v The statement was prepared in another call of this module and the activation group
ended between calls. The module was created with CLOSQLCSR(*ENDACTGRP).
v The prepared statement was destroyed by a COMMIT or ROLLBACK statement. This
only occurs when connected to a database other than DB2 for IBM i.
Recovery Text: Do one of the following:
v If &1 identifies a prepared SELECT or DECLARE PROCEDURE statement, a different
prepared statement must be named in the EXECUTE statement.
v If the statement had errors, correct the errors and either prepare the statement again or
precompile the program again.
v Make certain that &1 has been prepared in the same program or module call prior to
using the EXECUTE statement or specify either CLOSQLCSR(*ENDSQL),
CLOSQLCSR(*ENDJOB), or CLOSQLCSR(*ENDACTGRP) when precompiling the
application.
v If the statement was deleted by a COMMIT or ROLLBACK, either specify PREPARE
WITH HOLD or bind the program with the correct option to preserve prepared
statements.
SQLCODE or -518
SQLCODEs:
SQL0519
Message Text: Prepared statement &2 in use.
Cause Text: The application program has attempted to prepare statement &2. This statement is the
SELECT statement for cursor &1 that is currently open.
Recovery Text: Change the statement name in the PREPARE statement or correct the logic of the
application program so that it closes cursor &1 before attempting the PREPARE statement
again.
SQLCODE or -519
SQLCODEs:
SQLSTATE or 24506
SQLSTATEs:
SQL0520
Message Text: Cannot UPDATE or DELETE on cursor &1.
Cause Text: Cursor &1 is blocking records. An UPDATE or DELETE WHERE CURRENT OF cursor &1
was attempted but cannot be run because blocking was being used for the cursor.
Recovery Text: Do not block records for cursor &1 if UPDATE or DELETE statements will be used against
it.
SQLCODE or -520
SQLCODEs:
SQLSTATE or 42828
SQLSTATEs:
SQL0525
Message Text: Statement not valid on application server.
Cause Text: An attempt was made to run statement number &4 of package &2 in schema &3. Either the
statement is in error, or the statement is not supported by the application server. The
section number corresponding to the statement is &1.
Recovery Text: Correct the statement which is in error and verify that it is a valid SQL statement on the
application server. If the statement is a multiple-row FETCH, specify a single-row FETCH.
If the statement is a multiple-row INSERT, either specify a VALUES clause with one or
more rows to insert, or specify a subselect. If the statement is SET TRANSACTION, remove
it from the application or prevent it from being issued when the Distributed Relational
Database Architecture (DRDA) connection is used. Try the request again.
SQLCODE or -525
SQLCODEs:
SQLSTATE or 51015
SQLSTATEs:
SQL0526
Message Text: Statement not valid for &1 TEMPORARY TABLE &2 in &3.
SQL0527
Message Text: ALWCPYDTA(*NO) specified but temporary result required for &1.
Cause Text: The Allow Copy Data (ALWCPYDTA) parameter was specified on the precompiler
command or the STRSQL command with a value of *NO. This value indicates that the
queries should always use data directly retrieved from the database, so that the data always
reflects the current values. Certain types of SQL queries can not be resolved without
making a copy of the data. Examples would be queries using the keywords DISTINCT or
UNION. The query being run is a query which requires a copy of the data.
Recovery Text: Specify a different value for the ALWCPYDTA parameter or change the SQL statement so
that it can be evaluated without using a temporary result.
SQLCODE or -527
SQLCODEs:
SQLSTATE or 42874
SQLSTATEs:
SQL0530
Message Text: Operation not allowed by referential constraint &1 in &2.
Cause Text: If this is an INSERT, UPDATE, or MERGE statement, the value is not valid for the foreign
key because it does not have a matching value in the parent key. If this is a DELETE or
MERGE statement affected by a SET DEFAULT delete rule, the default value is not valid for
the same reason. If this is an ALTER TABLE statement, the result of the operation would
violate the constraint &1. Constraint &1 in &2 for table &3 in &4 requires that any non-null
value of the foreign key have a matching value in the parent key.
Recovery Text: To conform to the constraint rule, you must either:
v change the INSERT, UPDATE, or MERGE value to match a value in the parent key,
v insert a row in the parent file that matches the foreign key values being inserted or
updated.
v insert a row in the parent file that matches the foreign key default values of the
dependent rows. Otherwise, you must drop the referential constraint.
SQLCODE or -530
SQLCODEs:
SQLSTATE or 23503
SQLSTATEs:
SQL0531
Message Text: Update prevented by referential constraint &1 in &2.
SQL0532
Message Text: Delete prevented by referential constraint &1 in &2.
Cause Text: Constraint &1 in &2 identifies the table being modified as the parent table in a relationship
with dependent table &3 in &4, with a delete rule of RESTRICT or NO ACTION. The
deletion of a row is prevented when there are rows in the dependent table with matching
values.
Recovery Text: In order to delete the row, you must either drop the constraint, or delete the rows in the
dependent table that are dependent on this row.
SQLCODE or -532
SQLCODEs:
SQLSTATE or 23001, 23504
SQLSTATEs:
SQL0536
Message Text: Delete not allowed because table &1 in &2 in subquery can be affected.
Cause Text: The delete operation can not be performed because table &1 in &2, which is referenced in a
subquery, may be affected by the operation. &1 in &2 is a dependent table in a referential
constraint that has a delete rule of CASCADE, SET NULL, or SET DEFAULT.
Recovery Text: Change the statement so that the subquery does not refer to a dependent table, or drop the
constraint that defines the relationship between the two tables.
SQLCODE or -536
SQLCODEs:
SQLSTATE or 42914
SQLSTATEs:
SQL0537
Message Text: Duplicate column name &1 in definition of key.
Cause Text: Column &1 is specified more than once in the list of columns for a primary, unique,
foreign, or partitioning key or in the list of columns for the key expression of a CREATE
INDEX statement. Columns may only be specified once in the definition of a key. Index
columns named using the AS clause must have different names than the columns in the
table.
Recovery Text: Remove the duplicate column from the list of columns for the key or rename the column.
Try the request again.
SQLCODE or -537
SQLCODEs:
SQL0538
Message Text: The FOREIGN key in constraint &1 in &2 not same as the parent key.
Cause Text: The FOREIGN key in constraint &1 in &2 is not the same as the parent key of table &3 in
&4. The FOREIGN key must have the same number of columns as the parent key and the
data type, attributes, and field procedure of the FOREIGN key must be identical to the data
type, attributes, and field procedure of the corresponding column of the parent key.
Recovery Text: Correct the statement so that the description of the FOREIGN key conforms to that of the
parent key of the specified table.
SQLCODE or -538
SQLCODEs:
SQLSTATE or 42830
SQLSTATEs:
SQL0539
Message Text: Table &1 in &2 does not have a primary or unique key.
Cause Text: Table &1 in &2 was specified either as the parent table in a referential constraint, or as the
table from which to drop the primary or unique key in an ALTER TABLE statement. When
no referencing column list is specified in a referential constraint, an attempt is made to use
the primary key of the parent table. Table &1 has no primary key defined.
Recovery Text: Correct the statement so that a referencing column list is specified in the FOREIGN KEY
clause that matches the FOREIGN KEY column list, or define a primary key for the table
being used as a parent. If this is an attempt to drop a primary or unique key, no recovery is
necessary.
SQLCODE or -539
SQLCODEs:
SQLSTATE or 42888
SQLSTATEs:
SQL0541
Message Text: Duplicate UNIQUE constraint exists for table &1 in &2.
Cause Text: An attempt was made to add UNIQUE constraint &3 in &4. Table &1 in &2 already has a
UNIQUE constraint that is a duplicate of the constraint being added. A UNIQUE constraint
is a duplicate if the columns in the constraint are the same as the columns in another
UNIQUE constraint, even if the columns are not in the same order. Constraint &1 cannot be
added.
Recovery Text: The constraint is already in effect. To change the name of the UNIQUE constraint, drop the
duplicate constraint and try the request again.
SQLCODE or -541
SQLCODEs:
SQLSTATE or 42891
SQLSTATEs:
SQL0542
Message Text: Null values not allowed for column &1 of a PRIMARY key.
SQL0543
Message Text: Constraint &1 conflicts with SET NULL or SET DEFAULT rule.
Cause Text: Constraint &1 is a CHECK constraint that conflicts with an existing referential constraint
that has either a SET NULL or a SET DEFAULT rule.
Recovery Text: Change the CHECK constraint so it does not conflict with the referential constraint rule, or
drop the referential constraint.
SQLCODE or -543
SQLCODEs:
SQLSTATE or 23511
SQLSTATEs:
SQL0544
Message Text: CHECK constraint &1 cannot be added.
Cause Text: Existing data in the table violates the CHECK constraint rule in constraint &1. The
constraint cannot be added.
Recovery Text: Change the data in the table so that it follows the constraint specified in &1. Try the request
again.
SQLCODE or -544
SQLCODEs:
SQLSTATE or 23512
SQLSTATEs:
SQL0545
Message Text: INSERT, UPDATE, or MERGE not allowed by CHECK constraint.
Cause Text: The value being inserted or updated does not meet the criteria of CHECK constraint &1.
The operation is not allowed.
Recovery Text: Change the values being inserted or updated so that the CHECK constraint is met.
Otherwise, drop the CHECK constraint &1.
SQLCODE or -545
SQLCODEs:
SQLSTATE or 23513
SQLSTATEs:
SQL0546
Message Text: CHECK condition of constraint &1 not valid.
SQL0551
Message Text: Not authorized to object &1 in &2 type *&3.
Cause Text: An operation was attempted on object &1 in &2 type *&3. This operation cannot be
performed without the required authority.
Recovery Text: Obtain the required authority from either the security officer, the object owner, or a user
that is authorized to the QIBM_DB_SECADM function. If you are not authorized to a
logical file, obtain the authority to the based-on files of the logical file. Try the operation
again.
SQLCODE or +551, -551
SQLCODEs:
SQLSTATE or 01548, 42501
SQLSTATEs:
SQL0552
Message Text: Not authorized to &1.
SQL0553
Message Text: Schema name &1 not allowed.
Cause Text: Schema name &1 not allowed since it is a reserved word.
SQL0557
Message Text: Privilege not valid for &1 in &2.
Cause Text: The specified privilege is not valid for one of the following reasons:
v An INDEX privilege is valid for tables and physical files but not for views. An index
cannot be created on a view.
v The specified privilege is not valid because table or view &1 in &2 does not have that
capability. For example: DELETE, INSERT, and UPDATE privileges are not valid for a
read-only view.
v WRITE privilege is not valid because &1 in &2 is a read-only global variable.
Recovery Text: Specify a table or view that has the correct capability or remove the privilege that is not
valid from the SQL statement.
SQLCODE or -557
SQLCODEs:
SQLSTATE or 42852
SQLSTATEs:
SQL0567
Message Text: Authorization name &1 is not allowed.
Cause Text: The authorization name cannot be a system-supplied user profile such as QSYS,
QDFTOWN, or QSPL.
Recovery Text: Change the name and try the request again.
SQLCODE or -567
SQLCODEs:
SQLSTATE or 28000, 42501
SQLSTATEs:
SQL0569
Message Text: Not all requested privileges revoked from object &1 in &2 type *&3.
Cause Text: A REVOKE operation was attempted on object &1 in &2 type *&3, but the privilege was
not revoked. Either you do not have the specified privilege to object &1, you do not have
*OBJMGT authority to object &1, you are not authorized to the QIBM_DB_SECADM
function, or you tried to revoke the privilege from someone who does not currently have
that privilege.
If you do not have the privilege, change the REVOKE statement to specify valid privileges.
SQLCODE or +569, -569
SQLCODEs:
SQL0570
Message Text: Not all requested privileges to object &1 in &2 type *&3 granted.
Cause Text: A GRANT operation was attempted on object &1 in &2 type *&3 but the privilege was not
granted for one of the following reasons.
-- You are attempting to perform a GRANT statement using WITH GRANT OPTION but
are not the object owner.
-- You are attempting to perform a GRANT of WRITE privileges for a read-only global
variable.
SQL0573
Message Text: Table &1 in &2 does not have a matching parent key.
Cause Text: A referencing column list was specified in the FOREIGN KEY clause for constraint &3 in
&4. The parent table &1 in &2 does not have a matching PRIMARY or UNIQUE key. If the
file is partitioned, the access path of the parent file must be non-partitioned. The constraint
cannot be added.
Recovery Text: Do one of the following and try the request again:
v Specify a table in the FOREIGN KEY clause that has a PRIMARY or UNIQUE key that
matches the referencing column list.
v Change the referencing column list to match the definition of the PRIMARY or UNIQUE
key defined on the parent table.
v If the parent file is partitioned, add a non-partitioned access path.
SQLCODE or -573
SQLCODEs:
SQLSTATE or 42890
SQLSTATEs:
SQL0574
Message Text: Column, sequence, or variable attribute is not valid.
For a DEFAULT value, the incorrect value may either be specified in this statement or it
may already be defined for the column and is not compatible with the new attributes
specified on the ALTER TABLE statement.
For an identity column or a sequence, the values specified for the START WITH,
INCREMENT BY, MINVALUE, MAXVALUE, and RESTART WITH options must have a
scale of zero.
For an SQL variable, CONSTANT cannot be specified for DataLink or XML data types.
For a recursive common table expression cycle column name, the assignment value must be
a character string with a length of one.
Recovery Text: Change the value to one that is valid for the column, sequence, or variable. Try the request
again.
SQLCODE or -574
SQLCODEs:
SQLSTATE or 42894
SQLSTATEs:
SQL0577
Message Text: Modifying SQL data not permitted.
Statements that change data include INSERT, UPDATE, DELETE, MERGE, REFRESH
TABLE, GRANT, REVOKE, LABEL, COMMENT, and any CREATE, DROP, or ALTER
statements. If the error occurred in a procedure or function, the routine name is &1 and the
specific name is &2.
Recovery Text: Ensure procedures or functions created with READS SQL DATA or CONTAINS SQL DATA
do not call procedures or functions that change SQL data. Specify MODIFIES SQL DATA
when creating functions that change SQL data. The default value for a CREATE VARIABLE
statement cannot modify SQL data.
SQLCODE or -577
SQLCODEs:
SQLSTATE or 2F002, 38002, 42985
SQLSTATEs:
SQL0578
Message Text: RETURN statement not executed for SQL function &1 in &2.
Cause Text: During the execution of SQL function &1 in &2, the end of the routine body was reached
without executing a RETURN statement.
Recovery Text: Add a RETURN statement to the end of the function routine body. Try the request again.
SQLCODE or -578
SQLCODEs:
SQLSTATE or 2F005
SQLSTATEs:
SQL0579
Message Text: Reading SQL data not permitted.
Cause Text: One of the following errors has occurred:
v A procedure was called or a function was invoked that was created with CONTAINS
SQL DATA as the data access attribute. A procedure or function created with CONTAINS
SQL DATA or any procedure or function that is called by the procedure or function,
cannot read data and cannot call a procedure or function that has the READS SQL DATA
attribute.
v CONTAINS SQL DATA cannot be specified on the CREATE PROCEDURE, ALTER
PROCEDURE, CREATE FUNCTION, or ALTER FUNCTION statements for an SQL
procedure or function if the routine body contains statements that read data.
v A trigger containing SQL statements was activated.
If the error occurred in a procedure or function, the routine name is &1 and the specific
name is &2.
SQL0580
Message Text: At least one result in CASE expression must be not NULL.
Cause Text: The NULL value, a parameter marker, or the RAISE_ERROR scalar function is specified for
all results in a CASE expression. At least one result in a CASE expression must be a value
other than NULL, a parameter marker, or the RAISE_ERROR scalar function.
Recovery Text: Change the CASE expression to have at least one result expression following a THEN or
ELSE keyword to be some value other than NULL, a parameter marker, or the
RAISE_ERROR scalar function. Try the request again.
SQLCODE or -580
SQLCODEs:
SQLSTATE or 42625
SQLSTATEs:
SQL0581
Message Text: The results in a CASE expression are not compatible.
Cause Text: The expressions specified as the result values of a CASE expression are not compatible.
Recovery Text: Change the results in the CASE expression to values that are compatible. Try the request
again.
SQLCODE or -581
SQLCODEs:
SQLSTATE or 42804
SQLSTATEs:
SQL0583
Message Text: Use of function &1 in &2 not valid.
Cause Text: Function &1 in &2 cannot be invoked where specified because it is defined to be not
deterministic or contains an external action. Functions that are not deterministic cannot be
specified in a GROUP BY clause or in a JOIN clause, or in the default clause for a global
variable. Functions that are not deterministic or contain an external action cannot be
specified in a PARTITION BY clause or an ORDER BY clause for an OLAP function. The
RAISE_ERROR function cannot be specified in a GROUP BY or HAVING clause.
Recovery Text: Remove the function. Try the request again.
SQLCODE or +583, -583
SQLCODEs:
SQLSTATE or 01685, 42845
SQLSTATEs:
SQL0584
Message Text: NULL or parameter marker in VALUES not allowed.
SQL0585
Message Text: Schema &1 used incorrectly in the specified path.
Cause Text: An incorrect path was specified on the SET PATH or the SET OPTION SQLPATH
statement. One of the following errors has occurred:
v &1 is specified more than once in the path.
v *LIBL is not the only value specified in the path.
v If the schema name is *N, one of USER, CURRENT PATH, or SYSTEM PATH is specified
more than one time in the path.
Recovery Text: Specify a valid path. Try the request again.
SQLCODE or -585
SQLCODEs:
SQLSTATE or 42732
SQLSTATEs:
SQL0590
Message Text: Name &1 specified in procedure or function &2 not unique.
Cause Text: &1 is specified as a parameter, SQL variable, condition, or label in SQL procedure or
function &2. The name is not unique.
Recovery Text: Change the name so that it is unique.
SQLCODE or -590
SQLCODEs:
SQLSTATE or 42734
SQLSTATEs:
SQL0593
Message Text: Row change timestamp column &1 must be NOT NULL.
Cause Text: NOT NULL must be specified for column &1. ROW CHANGE TIMESTAMP columns do
not support null values.
Recovery Text: Change the statement to specify NOT NULL for column &1. Try the request again.
SQLCODE or -593
SQLCODEs:
SQLSTATE or 42831
SQLSTATEs:
SQL0595
Message Text: Commit level *&1 escalated to *&2 lock.
SQL0596
Message Text: Error occurred during DISCONNECT of relational database &1.
Cause Text: An error occurred during DISCONNECT of relational database &1. However, this did not
prevent the successful disconnect of relational database &1. Refer to the previous messages
for a description of the error.
Recovery Text: None required.
SQLCODE or +596
SQLCODEs:
SQLSTATE or 01002
SQLSTATEs:
SQL0601
Message Text: &1 in &2 type *&3 already exists.
Cause Text: An attempt was made to create &1 in &2 or to rename a table, view, alias, or index to &1,
but &1 already exists. All tables, views, aliases, indexes, SQL packages, sequences, global
variables, constraints, triggers, user-defined types, and XSR objects in the same schema
must have unique names.
v If &1 is a temporary table, it cannot be replaced unless the WITH REPLACE clause is
specified.
v If the schema name is *N, this is a CREATE SCHEMA statement. If this is a CREATE
TABLE or ALTER TABLE statement and the type is *N, &1 is a constraint.
Recovery Text: Change &1 to a name that does not exist, or delete, move, or rename the existing object. If
this is a temporary table, use the WITH REPLACE clause. If creating an SQL package,
specify REPLACE(*YES) on CRTSQLPKG. Try the request again.
SQLCODE or -601
SQLCODEs:
SQLSTATE or 42710
SQLSTATEs:
SQL0603
Message Text: Unique index cannot be created because of duplicate keys.
Cause Text: An attempt was made to create unique index &1 in &2 or add unique constraint &1 in &2.
The operation cannot be performed because the rows in table &3 in &4 contain one or more
duplicate values in the columns used to create the index.
Recovery Text: Do one of the following and try the request again:
v Remove the UNIQUE attribute from the CREATE INDEX statement.
v Remove the UNIQUE constraint from the ALTER TABLE statement.
v Change the data in the related table so that all key values are unique.
v Specify UNIQUE WHERE NOT NULL on the CREATE INDEX statement if the duplicate
keys contain nulls. The uniqueness restriction would not apply when the key value
contains nulls.
For information on what rows contain the duplicate key values, see the previously listed
messages in the job log.
SQLCODE or -603
SQLCODEs:
SQLSTATE or 23515
SQLSTATEs:
SQL0604
Message Text: Attributes not valid.
SQL0607
Message Text: Operation not allowed on system table &1 in &2.
SQL0612
Message Text: &1 is a duplicate column name.
Cause Text: One of the following errors has occurred:
v Column &1 is specified more than once on a CREATE TABLE or CREATE VIEW
statement. Column names and system column names must be unique in a table or view.
v Column &1 is specified in the ADD clause of an ALTER TABLE statement. Column &1
already exists in the table.
v Column &1 is specified more than once in the ALTER, DROP, or ADD clauses of an
ALTER TABLE statement.
v Column &1 is specified more than once in the column list of a common table expression
or in the correlation clause for a table or derived table.
v Column &1 is specified more than once in the column list of an UPDATE trigger.
v Column &1 is specified more than once in the RETURNS TABLE clause of a CREATE
FUNCTION statement. The return column names for a user defined table function must
be unique.
v Column &1 is specified more than once in the CYCLE column list of the recursive
common table expression.
v Column &1 is specified more that once in the COLUMNS clause for XMLTABLE.
v AS name &1 specified more than once for XMLTABLE.
Recovery Text: Do one of the following and try the request again:
v Specify unique names for each of the columns.
v Remove the column from all but one clause of a single ALTER TABLE statement.
Multiple statements can be specified, if required.
SQLCODE or -612
SQLCODEs:
SQLSTATE or 42711
SQLSTATEs:
SQL0613
Message Text: Key is too long or contains too many columns.
Either more than 120 columns were specified in a key or the sum of the lengths of the
columns specified in the key exceeds the maximum of 32768 bytes. If the list contains null
capable columns then an additional byte is required for the length of each null capable
column. If the list contains variable length columns, then the 2-byte length of the columns
is included in the total length. The key length may be too long if an ICU (UNICODE) table
is being used. The internal expansion of the key can be up to six times the user specified
key length due to translation. See previous messages for details.
Recovery Text: Remove some of the columns from the key or change the length attributes of the columns
so that the total length of the key does not exceed the maximum. Try the request again.
SQLCODE or -613
SQLCODEs:
SQLSTATE or 54008
SQLSTATEs:
SQL0614
Message Text: Length of columns for CREATE INDEX too long.
Cause Text: The sum of the lengths of the columns specified in a CREATE INDEX exceeds the
maximum of 32768 bytes. If the list contains null capable columns then an additional byte
is required for each null capable column. If the index contains variable length columns,
then the 2-byte length of the columns is included in the total length. The key length may be
too long if an ICU (UNICODE) table is being used. The internal expansion of the key can
be up to six times the user specified key length due to translation. See previous messages
for details.
Recovery Text: Reduce the length by deleting some of the columns from the CREATE INDEX column list.
Try the request again.
SQLCODE or -614
SQLCODEs:
SQLSTATE or 54008
SQLSTATEs:
SQL0615
Message Text: Object &1 in &2 type *&3 not dropped. It is in use.
Cause Text: Object &1 in &2 type *&3 was not dropped because it is already being used by the same
application process. If the object is a table, it may be in use by an open cursor. If the object
is an SQL package, the package may currently be running.
Recovery Text: If the object is a table, the cursor must be closed. If the object is an SQL package, the SQL
package cannot drop itself. Try the drop request again.
SQLCODE or -615
SQLCODEs:
SQLSTATE or 55006
SQLSTATEs:
SQL0616
Message Text: &1 in &2 type &3 cannot be dropped with RESTRICT.
SQL0624
Message Text: Table &1 in &2 already has a primary key.
Cause Text: An attempt was made to add a primary or unique key to table &1 in &2. Either a primary
key is already defined for this table, or the table has an access path which does not match
the key being added. A table can only have one primary key. The constraint cannot be
added.
Recovery Text: Drop the primary key currently defined on the table or add the constraint as a UNIQUE
constraint. If the table's access path does not match, make sure that the number of columns
in the constraint match the number of columns in the access path. Try the request again.
SQLCODE or -624
SQLCODEs:
SQLSTATE or 42889
SQLSTATEs:
SQL0628
Message Text: Clauses not valid in same definition.
SQL0629
Message Text: SET NULL not allowed for referential constraint &1 in &2.
Cause Text: SET NULL was specified in the REFERENCES clause for referential constraint &1. None of
the columns in the foreign key allows null values.
Recovery Text: Create the table so that at least one of the columns in the foreign key allows null values or
specify a different default action on the ON DELETE clause. Try the request again.
SQLCODE or -629
SQLCODEs:
SQLSTATE or 42834
SQLSTATEs:
SQL0631
Message Text: Foreign key for referential constraint &1 in &2 too long.
SQL0636
Message Text: Ranges specified for partition &1 not valid.
Cause Text: The ranges specified for the partitioning keys are not valid for one of the following reasons:
v Partitions are not specified in the correct order.
v ENDING value for a partition is less than the STARTING value.
v Values specified in the EVERY clause are not valid for the range.
v MINVALUE or MAXVALUE was specified for a start or end value and the statement
contained an EVERY clause.
v Partition keys overlap.
v MINVALUE or MAXVALUE was specified for a start or end value of a partition key
boundary and a subsequent key value for that range is not the same value.
Recovery Text: Specify valid ranges for the STARTING, ENDING, or EVERY clause. Try the request again.
SQLCODE or -636
SQLCODEs:
SQLSTATE or 56016
SQLSTATEs:
SQL0637
Message Text: Keyword or clause starting with &1 not valid.
SQL0642
Message Text: Maximum number of constraints exceeded for &1 in &2.
Cause Text: A constraint cannot be added to table &1 in &2 because the table is already associated with
5000 constraints. This limit includes all constraints defined on the table and all referential
constraints where the table is defined as a parent.
Recovery Text: Drop one of the other 5000 constraints, if possible, and try the request again.
SQLCODE or -642
SQLCODEs:
SQLSTATE or 54021
SQLSTATEs:
SQL0644
Message Text: ATTRIBUTES value &1 not valid.
Cause Text: The ATTRIBUTES string specified for the PREPARE statement contains &1, which is not
correct. The type of SQL statement being prepared is &2.
Recovery Text: Remove or correct the invalid attribute and try again.
SQL0645
Message Text: WHERE NOT NULL clause ignored for index &1 in &2.
Cause Text: UNIQUE WHERE NOT NULL was specified when creating index &1 in &2. However, none
of the columns in the index allow null values. The index is created as a unique index.
Recovery Text: Remove the WHERE NOT NULL clause from the CREATE INDEX statement.
SQLCODE or +645
SQLCODEs:
SQLSTATE or 01528
SQLSTATEs:
SQL0658
Message Text: Function &1 in &2 cannot be dropped.
Cause Text: Function &1 in schema &2 cannot be dropped because it was implicitly generated by the
CREATE DISTINCT TYPE statement.
Recovery Text: To drop the function, you must drop the distinct type with which this function is
associated.
SQLCODE or -658
SQLCODEs:
SQLSTATE or 42917
SQLSTATEs:
SQL0662
Message Text: Partitioned index cannot be created for &1 in &2.
Cause Text: PARTITIONED or NOT PARTITIONED was specified on a CREATE INDEX statement, but
table &1 in schema &2 is not a partitioned table.
Recovery Text: Remove the PARTITIONED clause from the statement. Try the request again.
SQLCODE or -662
SQLCODEs:
SQLSTATE or 53037
SQLSTATEs:
SQL0663
Message Text: Number of partitioning values is not correct.
Cause Text: Wrong number of values were specified in the STARTING or ENDING clause for partition
&1. The number of values specified must match the number of key columns for the
partitioning key.
Only one column can be specified in the partitioning key if the EVERY clause is used.
Recovery Text: Change the number of key limit values specified so that it matches the number of
partitioning key columns or change the number of columns in the partitioning key. Try the
request again.
SQL0665
Message Text: The partition name or number &1 is not valid.
Cause Text: Partition name or partition number &1 was specified in a DROP PARTITION clause but
does not refer to a partition in the table. The partition name or number specified must
identify an existing partition from the table.
Recovery Text: Specifiy the partition name or number for an existing partition. Try the request again.
SQLCODE or -665
SQLCODEs:
SQLSTATE or 53039
SQLSTATEs:
SQL0666
Message Text: SQL query exceeds specified time limit or storage limit.
Cause Text: A database query was about to be started whose estimated run time of &1 exceeds the
specified limit of &2 or whose estimated temporary storage usage of &3 exceeds the
specified limit of &4. The query time limit and temporary storage limit are specified on the
CHGQRYA CL command.
Recovery Text: The following changes to the query could reduce the estimated elapsed time or estimated
amount of temporary storage usage.
v Change the query so that fewer records are returned by adding more restrictive record
selection specifications.
v Change the record selection of the query so that an existing access path can be used to
process the records more quickly.
v Create an access path with keys that match the record selection of the query using the
SQL CREATE INDEX statement.
v Change the ordering specification so neither a temporary access path needs to be built
nor a sort needs to be performed.
v Change the grouping field specification to match the left-most key fields of an existing
access path. This allows an existing access path to be used.
v Specify the OPTIMIZE FOR NN ROWS clause where NN represents the actual number
of records which are to be retrieved before the query is ended. This clause will cause the
query optimizer to assume that the query will not be run to completion and
consequently reduce the estimates.
v Change the output type of your query to produce the results on the display.
v Specify a new value for the query time limit with the QRYTIMLMT parameter of the
CHGQRYA CL command.
v Specify a new value for the query temporary storage limit with the QRYSTGLMT
parameter of the CHGQRYA CL command.
v Examine the query debug messages contained in the job log for performance information
and suggestions. These messages will precede this message in the job log and will
provide additional information and suggestions.
SQLCODE or -666
SQLCODEs:
SQL0667
Message Text: FOREIGN key value does not match a value in the parent key of constraint &1 in &2.
Cause Text: Every value in the FOREIGN key of the dependent table must have a matching value in the
parent key of the parent table. For constraint &1 in &2, there is an existing value in
FOREIGN key of table &3 in &4 that does not have a matching value in the parent table.
The constraint cannot be added.
Recovery Text: Update the rows in either the dependent table or parent table so that all values of the
FOREIGN key have matching values in the parent key, or modify the definition of the keys
in the referential constraint. Try the request again.
SQLCODE or -667
SQLCODEs:
SQLSTATE or 23520
SQLSTATEs:
SQL0675
Message Text: Specified delete rule not allowed with trigger on table &1 in &2.
Cause Text: The delete rule specified in referential constraint &3 in &4 on table &1 in &2 is not allowed
for the specified trigger. Constraint rule DELETE CASCADE is not allowed with a delete
trigger. Constraint rules DELETE SET NULL and DELETE SET DEFAULT are not allowed
with an update trigger.
Recovery Text: Either use the RMVPFTRG command to remove the trigger, use the RMVPFCST command
to remove the constraint, define the constraint with a valid delete rule, or define the trigger
with a different event.
SQLCODE or -675
SQLCODEs:
SQLSTATE or 42892
SQLSTATEs:
SQL0678
Message Text: Data type of literal &1 not compatible with column &3.
Cause Text: The literal specified is not compatible. If literal &1 is specified for the STARTING,
ENDING, or EVERY clause, it is not compatible with column &3. The data type of column
&3 is &2. If the literal is specified in a comparison with a numeric value, the literal is not a
valid numeric value.
Recovery Text: Specify a valid literal. Try the request again.
SQLCODE or -678
SQLCODEs:
SQLSTATE or 53045
SQLSTATEs:
SQL0679
Message Text: Object &1 in &2 type *&3 not created due to pending operation.
SQL0680
Message Text: Too many columns specified.
Cause Text: Too many columns were specified in the definition of a user defined table function. A
maximum of 125 columns can be specified for the input parameters and the return columns
combined. This maximum is reduced by one if both the SCRATCHPAD and DBINFO
structures are requested.
Recovery Text: Reduce the number of parameters or return columns specified for the user defined table
function. Try the request again.
SQLCODE or -680
SQLCODEs:
SQLSTATE or 54011
SQLSTATEs:
SQL0681
Message Text: Field procedure on column &1 returned SQLSTATE &5.
Cause Text: Field procedure on column &1 returned SQLSTATE &5. The associated message text is &4.
Recovery Text: Change the field procedure to return a valid SQLSTATE. Try the request again.
SQLCODE or -681
SQLCODEs:
SQLSTATE or 23507
SQLSTATEs:
SQL0683
Message Text: Clause not valid for specified type.
Cause Text: One of the following has occurred:
v The FOR BIT DATA, the FOR MIXED DATA, the FOR SBCS DATA, or the CCSID clause
was specified for the CAST scalar function, for a CREATE DISTINCT TYPE source data
type, or for column or parameter &1. These clauses are not valid if the type is numeric,
date, time, timestamp, binary, NCHAR, or a user defined type. The FOR BIT DATA, FOR
MIXED DATA, or FOR SBCS DATA clause is not valid if the type is graphic, XML, or
DataLink.
v The LINKTYPE option was specified for a column that is not a DataLink.
v ROW CHANGE TIMESTAMP was specified and the data type is not timestamp with
precision of 6.
v FIELDPROC cannot be specified for a column that has a ROWID or DATALINK data
type or that is defined as a row change timestamp or identity column.
v FOR BIT DATA cannot be specified for result columns of the XMLTABLE function.
v A CCSID cannot be specified for XML variables in an SQL routine.
Recovery Text: Change or remove the clause that is not correct. Try the request again.
SQLCODE or -683
SQLCODEs:
SQLSTATE or 42842
SQLSTATEs:
SQL0684
Message Text: FIELDPROC list of constants too long.
Cause Text: The list of constants for FIELDPROC beginning with &1 is longer than 2000 bytes.
Recovery Text: Shorten the list by using shorter values or fewer values. Try the request again.
SQLCODE or -684
SQLCODEs:
SQL0685
Message Text: Field procedure on column &1 has returned invalid data.
Cause Text: Field procedure on column &1 has returned invalid data.
Recovery Text: Change the field procedure to return valid data.
SQLCODE or -685
SQLCODEs:
SQLSTATE or 58002
SQLSTATEs:
SQL0696
Message Text: Correlation name or table &3 not valid.
Cause Text: The correlation name or table &3 is not valid for trigger &1 in &2. The reason code is &4.
One of the following reason codes indicates the error:
v 1 - NEW correlation name or NEW_TABLE &3 was specified in a DELETE trigger.
v 2 - OLD correlation name or OLD_TABLE &3 was specified in an INSERT trigger.
v 3 - OLD_TABLE or NEW_TABLE was specified in a BEFORE trigger or was specified
with DB2ROW.
Recovery Text: Change the referencing clause or the type of trigger so that the statement is valid. Try the
request again.
SQLCODE or -696
SQLCODEs:
SQLSTATE or 42898
SQLSTATEs:
SQL0697
Message Text: REFERENCING OLD or NEW not valid for statement trigger.
Cause Text: REFERENCING OLD or NEW was specified for an SQL trigger. Old and new correlation
variables are not valid for statement triggers.
Recovery Text: Remove the REFERENCING clause or specify FOR EACH ROW on the CREATE TRIGGER
statement. Try the request again.
SQLCODE or -697
SQLCODEs:
SQLSTATE or 42899
SQLSTATEs:
SQL0707
Message Text: Name &1 in &2 not allowed.
Cause Text: Name &1 is not allowed for one of the following reasons:
v Distinct type, array type, sequence, or global variable &1 in &2 cannot be created or
dropped. Either the name is a reserved word or the schema is specified as QSYS, QSYS2,
SYSIBM or QTEMP. Distinct types, array types, sequences, and global variables cannot be
created in QSYS, QSYS2, SYSIBM, SYSPROC, or QTEMP.
v Savepoint &1 cannot have a name that starts with SYS.
SQL0713
Message Text: Value for &2 is not correct.
Cause Text: The value specified in the SET &2 statement is not correct. The NULL value cannot be used
to set the &2 special register. &2 can only be set using a character or UCS-2 or UTF-16
graphic string.
For SET ENCRYPTION PASSWORD WITH HINT, the hint value cannot be longer than 32
characters.
For SET SCHEMA, all letters in the schema name must be uppercase or the schema name
must be delimited.
For SET CURRENT DEGREE, the value cannot be longer than 5 characters.
For SET SESSION AUTHORIZATION, the authorization name cannot be longer than 10
characters. An authorization name specified as a string literal or with a host variable cannot
contain the special register strings USER, SYSTEM_USER, or SESSION_USER and cannot
contain lower case letters or special characters.
For SET CURRENT DECFLOAT ROUNDING MODE, the value must not contain lowercase
letters and must identify one of the supported rounding modes.
For SET CURRENT IMPLICIT XMLPARSE OPTION, the value must identify one of the
supported whitespace options.
Recovery Text: Specify a valid value for the special register. Make sure it does not have the NULL value.
Try the request again.
SQLCODE or -713
SQLCODEs:
SQLSTATE or 42815
SQLSTATEs:
SQL0723
Message Text: SQL trigger &1 in &2 failed with SQLCODE &3 SQLSTATE &4.
Cause Text: An error has occurred in a triggered SQL statement in trigger &1 in schema &2. The
SQLCODE is &3, the SQLSTATE is &4, and the message is &5.
Recovery Text: Refer to the joblog for more information regarding the detected error. Correct the error and
try the request again.
SQLCODE or -723
SQLCODEs:
SQLSTATE or 09000
SQLSTATEs:
SQL0724
Message Text: Too many cascaded trigger programs.
SQL0727
Message Text: Evaluation of an expression associated with &5 in &6 failed.
Cause Text: One of the following has occurred:
v An error occurred during evaluation of the DEFAULT clause of global variable &5 in &6.
v An error occurred during the evaluation of the DEFAULT clause for a parameter for
routine &5 in &6.
v An error occurred during the evaluation of the rule text for PERMISSION or MASK &5
in &6.
The SQLCODE associated with the failure is &2. The SQLSTATE is &3. The message tokens
are &4.
This failure may also indicate an error occurred on a system other than DB2 for IBM i
during implicit system action &1.
Recovery Text: Refer to the joblog or see the product documentation for more information regarding the
detected error. Correct the error and try the request again.
SQLCODE or -727
SQLCODEs:
SQLSTATE or 56098
SQLSTATEs:
SQL0751
Message Text: SQL statement &1 not allowed.
Cause Text: The statement &1 is not allowed in a stored procedure, user-defined function, or trigger.
v Statements not allowed in a trigger program are CONNECT, SET CONNECTION,
RELEASE, DISCONNECT, and SET RESULT SETS.
v RUNSQLSTM is not allowed in a trigger program.
v COMMIT and ROLLBACK are not allowed in a trigger program if the trigger program is
running in the same activation group as the triggering program. COMMIT and
ROLLBACK are not allowed in an SQL trigger.
v ALTER TABLE is not allowed in a trigger program when commitment control is active.
v COMMIT and ROLLBACK are not allowed if the procedure is defined as COMMIT ON
RETURN YES or for a distributed unit of work.
v The RETURN statement is not allowed in an SQL trigger.
v The TRUNCATE statement is not allowed in an SQL before trigger.
Recovery Text: Remove the statement &1 from your trigger program, user-defined function, or stored
procedure. Try the request again.
SQLCODE or -751
SQLCODEs:
SQLSTATE or 0W000, 2F003, 38003, 42985, 42987
SQLSTATEs:
SQL0771
Message Text: Use of ROWID not valid.
SQL0773
Message Text: Case not found for CASE statement.
Cause Text: A CASE statement without an ELSE clause was specified in the routine body of an SQL
procedure. None of the conditions specified in the CASE statement were met.
Recovery Text: Change the CASE statement to handle all conditions that can occur.
SQLCODE or -773
SQLCODEs:
SQLSTATE or 20000
SQLSTATEs:
SQL0774
Message Text: Statement cannot be executed within a compound SQL statement.
Cause Text:
Recovery Text:
SQLCODE or -774
SQLCODEs:
SQLSTATE or 2D522
SQLSTATEs:
SQL0775
Message Text: Statement not allowed in specified SQL routine.
Cause Text: A statement specified in the routine body of an SQL procedure, SQL function, or
compound(dynamic) statement is not allowed. A list of restrictions follows:
v A COMMIT or ROLLBACK statement cannot be specified in an atomic compound
statement in an SQL procedure or in an atomic compound(dynamic) statement.
v An ATOMIC compound statement cannot be specified in an SQL function.
v COMMIT, ROLLBACK, CONNECT, DISCONNECT, SET CONNECTION, SET RESULT
SETS, and SET TRANSACTION statements cannot be specified in an SQL function.
v The SET RESULT SETS statement cannot be specified in a compound (dynamic)
statement or in an SQL procedure routine body unless RESULT SET is specified for the
procedure.
Recovery Text: Remove the statement from the SQL function, procedure, on compound(dynamic)
statement.
SQLCODE or -775
SQLCODEs:
SQL0776
Message Text: Cursor &1 specified in FOR statement not allowed.
Cause Text: Cursor &1 is specified as the cursor name on a FOR statement in an SQL procedure. The
cursor cannot be specified on a FETCH, OPEN, or CLOSE statement within the FOR
statement.
Recovery Text: Remove the OPEN, CLOSE, or FETCH statement.
SQLCODE or -776
SQLCODEs:
SQLSTATE or 428D4
SQLSTATEs:
SQL0777
Message Text: CASE nested deeper than three levels.
Cause Text: CASE statements in the routine body of an SQL procedure, function, or trigger can be
nested up to three levels when used with a simple-when-clause. There is no nesting limit
when the CASE uses a searched-when-clause.
Recovery Text: Change the CASE statement to use a searched-when-clause.
SQLCODE or -777
SQLCODEs:
SQLSTATE or 42919
SQLSTATEs:
SQL0778
Message Text: End label &1 not same as begin label.
Cause Text: Label &1 specified at the end of a compound, FOR, WHILE, REPEAT, or LOOP statement
in an SQL routine body is not the same as the label at the beginning of the statement. The
end label cannot be specified if the begin label is not specified.
Recovery Text: Ensure the end label is the same as the begin label for compound, FOR, WHILE, REPEAT,
and LOOP statements.
SQLCODE or -778
SQLCODEs:
SQLSTATE or 428D5
SQLSTATEs:
SQL0779
Message Text: Label &1 specified not valid.
Cause Text: Label &1 is specified on a LEAVE or a GOTO statement in an SQL routine body. The label
is not a valid label or is not in the same scope as the current statement.
Recovery Text: Specify a valid label that is within the same scope. Try the request again.
SQLCODE or -779
SQLCODEs:
SQLSTATE or 42736
SQLSTATEs:
SQL0781
Message Text: Condition &1 specified in handler not defined.
Cause Text: Condition &1 specified in a handler in an SQL routine body is not defined.
Recovery Text: Define the condition using the DECLARE CONDITION statement or remove the condition
from the handler.
SQLCODE or -781
SQLCODEs:
SQLSTATE or 42737
SQLSTATEs:
SQL0782
Message Text: Condition value &1 specified in handler not valid.
Cause Text: Condition &1 specified in a handler in an SQL routine body is not valid for one of the
following reasons.
v The condition value has already been specified by another handler in the same scope.
v The condition or SQLSTATE was specified in the same handler as SQLEXCEPTION,
SQLWARNING, or NOT FOUND.
Recovery Text: Remove the condition from the handler.
SQLCODE or -782
SQLCODEs:
SQLSTATE or 428D7
SQLSTATEs:
SQL0783
Message Text: Select list for cursor &1 in FOR statement not valid.
Cause Text: The select list in the FOR statement must contain unique column names.
v The select list contains duplicate column names or unnamed expressions. If two column
names are the same, the column name is &2.
v The FROM clause of the select references a table on a remote server.
Recovery Text: Specify unique column names in the select list specified in the FOR statement.
SQLCODE or -783
SQLCODEs:
SQLSTATE or 42738
SQLSTATEs:
SQL0785
Message Text: Use of SQLCODE or SQLSTATE not valid.
Cause Text: SQLCODE or SQLSTATE was used as a variable in an SQL routine body, but is not valid
for one of the following reasons:
v SQLCODE is not declared as INT.
v SQLSTATE is not declared as CHAR(5).
v The variable is set to NULL.
v SQLCODE or SQLSTATE is declared as a CONSTANT.
Recovery Text: Declare the SQLCODE variable as INT and the SQLSTATE variable as CHAR(5). Set the
variable to a valid value.
SQLCODE or -785
SQLCODEs:
SQLSTATE or 428D8
SQLSTATEs:
SQL0787
Message Text: RESIGNAL statement not within a handler.
Cause Text: The RESIGNAL statement, specified in an SQL routine, must be specified inside a handler.
Recovery Text: Remove the RESIGNAL statement or use a SIGNAL statement. Try the request again.
SQLCODE or -787
SQLCODEs:
SQLSTATE or 0K000
SQLSTATEs:
SQL0788
Message Text: Duplicate row identified for MERGE target &1 in &2.
Cause Text: The set of rows identified in the USING clause of the MERGE statement identifies the same
row more than once in target table or view &1 in &2 specified in the INTO clause. Any row
in the target table or view may only be identified once by the input of the USING clause.
Recovery Text: Change the data identified in the USING clause such that no rows occur more than once in
the target table or view. Try the request again.
SQL0789
Message Text: Default value not valid for array parameter &1.
Cause Text: A default value cannot be specified for array parameter &1.
Recovery Text: Remove the default value for parameter &1. Try the request again.
SQLCODE or -789
SQLCODEs:
SQLSTATE or 429BB
SQLSTATEs:
SQL0798
Message Text: Value cannot be specified for GENERATED ALWAYS column &1.
Cause Text: A value cannot be specified for column &1 because it is defined as GENERATED ALWAYS.
Recovery Text: Do one of the following and try the request again:
v Remove the value from the INSERT or UPDATE statement, or specify DEFAULT to have
a system value generated for the column.
v Specify the OVERRIDING USER VALUE clause on the INSERT or UPDATE statement to
override the GENERATED ALWAYS attribute and assign the value to the column.
v Remove the column from the SET statement.
SQLCODE or -798
SQLCODEs:
SQLSTATE or 428C9
SQLSTATEs:
SQL0799
Message Text: Special register &1 does not exist at the application server.
Cause Text: A SET statement references special register &1. This special register does not exist on the
application server so it cannot be referenced in the statement.
Recovery Text: Remove the reference to the unsupported special register from the statement. Try the
request again.
SQLCODE or +799
SQLCODEs:
SQLSTATE or 01527
SQLSTATEs:
SQL0802
Message Text: Data conversion or data mapping error.
If the error occurred when assigning a value to a host variable of a FETCH, embedded
SELECT, SET, or VALUES INTO statement, the host variable name is &2 and the relative
position of the host variable in the INTO clause is &1. If the host variable name is *N, the
error occurred when attempting to resolve a search condition.
If more than one data mapping error occurred, this is a description of the first error that
occurred. For a description of any other data mapping errors, see the previously listed
messages in the job log.
Recovery Text: The error was caused by data that was not valid or that was too large. Look at the
previously listed messages in the job log (DSPJOBLOG command) or press F10 (Display
messages in job log) on this display to determine what row and columns were involved in
the error. Correct the data and then try the request again.
SQLCODE or +802, -802
SQLCODEs:
SQLSTATE or 01004, 01519, 01547, 01564, 01565, 22001, 22003, 22012, 22023, 22504
SQLSTATEs:
SQL0803
Message Text: Duplicate key value specified.
Cause Text: A unique index or unique constraint &1 in &2 exists over one or more columns of table &3
in &4. The operation cannot be performed because one or more values would have
produced a duplicate key in the unique index or constraint.
Recovery Text: Change the statement so that duplicate keys are not produced. For information on what
rows contain the duplicate key values, look at the previously listed messages in the job log
(DSPJOBLOG command) or press F10 (Display messages in job log) on this display.
SQLCODE or -803
SQLCODEs:
SQLSTATE or 23505
SQLSTATEs:
SQL0804
Message Text: SQLDA or descriptor area not valid.
SQL0805
Message Text: SQL package &1 in &2 not found at DRDA Server.
Cause Text: A remote request was attempted to &4 for SQL package &1 in &2. The SQL package was
not found. If you are using Interactive SQL or Query Manager, an attempt to create a
package on the remote system failed and the package requested does not exist.
In other cases, the SQL package can be created by using the CRTSQLPKG command. Also,
precompiling an SQL program with the RDB parameter specified will create an SQL
package on the system. Create or restore the SQL package. Run the application again.
If you are using Interactive SQL or Query Manager or SQL Call Level Interface, exit the
product or application and enter a CL COMMIT or ROLLBACK command. This will enable
you to continue processing at the local system. Determine why the package creation failed
by examining the job log. Correct the problem and attempt the Interactive SQL or Query
Manager session again.
SQLCODE or -805
SQLCODEs:
SQLSTATE or 51002
SQLSTATEs:
SQL0809
Message Text: Row length exceeds 3.5 gigabytes.
Cause Text: The lengths of the values used as input in the INSERT or UPDATE statement would cause
the row length to exceed the maximum length of 3.5 gigabytes.
Recovery Text: Change the statement so that the sum of all field lengths result in a row length of less than
3.5 gigabytes.
SQLCODE or -809
SQLCODEs:
SQLSTATE or 54018
SQLSTATEs:
SQL0811
Message Text: Result of SELECT more than one row.
Cause Text: The result table of a SELECT INTO statement, a subquery, or a subselect of a SET statement
contains more than one row. The error type is &1. If the error type is 1 then a SELECT
INTO statement attempted to return more than one row. If the error type is 2 then a
subselect of a basic predicate has produced more than one row. Only one row is allowed.
Recovery Text: Change the selection so that only one result row is returned and then try the request again.
The DECLARE CURSOR, OPEN, and FETCH statements must be used to process more
than one result row. For a subquery the IN, EXISTS, ANY or ALL predicates can be used to
process more than one result row. If one row was expected, there may be data errors, such
as duplicate rows, that are causing more than one row to be returned.
SQLCODE or -811
SQLCODEs:
SQLSTATE or 21000
SQLSTATEs:
SQL0817
Message Text: Update operation not allowed.
SQL0818
Message Text: Consistency tokens do not match.
Cause Text: Package &3 in &4 on application server &5 cannot be run with the current application
program because either the application program has been recompiled without rebuilding
the package or the package has been restored from a back level version.
Recovery Text: Rebuild the package by using the CRTSQLPKG command or by using a CRTSQLxxx
command specifying the correct relational database. Otherwise, restore the package from a
version which matches the application program being run.
SQLCODE or -818
SQLCODEs:
SQLSTATE or 51003
SQLSTATEs:
SQL0822
Message Text: Address in the SQLDA or descriptor area not valid.
Cause Text: The SQLDA or descriptor area contains an address, SQLDATA or DATA value, or SQLIND
or INDICATOR value in entry number &1 that is not valid. The incorrect address or value
is type &2.
v Type 1 indicates that the SQLDATA or DATA address is not valid.
v Type 2 indicates that the SQLIND or INDICATOR address is not valid.
v Type 3 indicates that the SQLDA address is not valid.
v Type 4 indicates that the row storage area is not large enough.
v Type 5 indicates that the indicator area for a blocked FETCH statement is not large
enough.
v Type 6 indicates that the SQLDATA field was not initialized to a value in a REXX
procedure.
v Type 7 indicates that the SQLIND field was not initialized to a value in a REXX
procedure.
v Type 8 indicates that the SQLDATAL address is not valid.
Recovery Text: For types 1, 2, 3, or 8, change the address in entry &1 to a valid address. For types 4 and 5,
allocate enough area for all of the rows being requested. For types 6 and 7, initialize the
SQLDATA or SQLIND fields to a valid value. Try the request again.
SQLCODE or -822
SQLCODEs:
SQLSTATE or 0700C, 51004
SQLSTATEs:
SQL0840
Message Text: Number of selected items exceeds 8000.
Cause Text: The number of items returned in a select list or presented in the insert list exceeds the
maximum of 8000.
Recovery Text: Reduce the number of selected items and try the request again.
SQLCODE or -840
SQLCODEs:
SQLSTATE or 54004
SQLSTATEs:
SQL0842
Message Text: Connection to relational database &1 already exists.
Cause Text: An attempt was made to do one of the following:
v CONNECT to a relational database when the connection is active.
v CONNECT to a relational database that has the same communication information as a
connection to a relational database that is active.
SQL0843
Message Text: Connection to relational database &1 does not exist.
Cause Text: A SET CONNECTION, RELEASE, or DISCONNECT statement or a call to the SQLESETI
API specified relational database name &1 which is not active.
Recovery Text: Specify the name of a relational database which has an active connection.
SQL0845
Message Text: PREVIOUS VALUE for sequence &1 cannot be used.
Cause Text: A PREVIOUS VALUE expression specified sequence &1 in &2, but a value is not available
in this application process.
v A NEXT VALUE expression must be evaluated before a PREVIOUS VALUE expression
can be used.
v A NEXT VALUE expression must be evaluated after a sequence is altered or dropped.
Recovery Text: Evaluate the NEXT VALUE expression for sequence &1 in &2 in the same application
process before using PREVIOUS VALUE.
SQLCODE or -845
SQLCODEs:
SQLSTATE or 51035
SQLSTATEs:
SQL0846
Message Text: Attributes not valid for IDENTITY column or sequence.
Cause Text: Error &6 occurred for an IDENTITY column or sequence. For an IDENTITY column, &2 in
schema &3 is the name of the table. For a sequence, &2 in &3 is the name of the sequence.
v Code 1 -- The data type of an IDENTITY column or sequence is not INTEGER, BIGINT,
SMALLINT, or DECIMAL or NUMERIC with a scale of zero. An IDENTITY column that
is DECIMAL or NUMERIC must have a precision less than or equal to 31.
v Code 2 -- The value specified for START WITH, INCREMENT BY, MINVALUE, or
MAXVALUE is outside the range for the data type specified.
v Code 3 -- The value specified for MINVALUE is larger than the value specified for
MAXVALUE.
v Code 4 -- The value specified for CACHE is not valid. The minimum value for CACHE
is 2.
v Code 7 -- A sequence can only be altered to a distinct type if the current data type is a
built-in data type and it is promotable to the source data type of the distinct type. If the
current data type is a distinct type, it can only be changed to its source data type.
Recovery Text: Specify valid attributes for the IDENTITY column or sequence. Try the request again.
SQLCODE or -846
SQLCODEs:
SQLSTATE or 42815
SQLSTATEs:
SQL0858
Message Text: Cannot disconnect relational database &1 due to LU6.2 protected conversation.
Cause Text: The DISCONNECT statement cannot be used to disconnect relational database &1 because
the conversation uses an LU6.2 protected conversation.
Recovery Text: Use the RELEASE statement followed by a COMMIT statement to end LU6.2 protected
conversations.
SQL0862
Message Text: Local program attempted to connect to a remote relational database.
Cause Text: Local program &1 in &2 attempted to connect to a remote relational database. Either the
CONNECT statement or the SET CONNECTION statement was specified and the relational
database specified was a remote relational database.
Recovery Text: Specify the RDB parameter on the SQL precompile command.
SQLCODE or -862
SQLCODEs:
SQLSTATE or 55029
SQLSTATEs:
SQL0863
Message Text: Mixed or DBCS CCSID not supported by relational database &1.
Cause Text: The connection was completed, but remote relational database &1 does not support either
the mixed or DBCS CCSID. SBCS data can be used. The product identification is &2.
Recovery Text: No recovery needed.
SQLCODE or +863
SQLCODEs:
SQLSTATE or 01539
SQLSTATEs:
SQL0864
Message Text: Constraint attempted to update or delete a row of table &3.
Cause Text: Referential constraint &1 in &2 attempted to update or delete a row of table &3 in &4 that
was modified by a data change table reference. A data change table reference was specified
in the FROM clause, but the target table of the data change table reference has a referential
constraint which modifies the same table. Modifying the same row is not allowed.
Recovery Text: Remove the data change table reference from the FROM clause, or remove the referential
constraint from table &3.
SQLCODE or -864
SQLCODEs:
SQLSTATE or 560C6
SQLSTATEs:
SQL0871
Message Text: Too many CCSID values specified.
Cause Text: More than 80 unique combinations of character data type and Coded Character Set
Identifier (CCSID) were used. When accessing remote data, there is a limit of 80 different
CCSID values.
Recovery Text: Change that request to only access 80 different combinations of character data type and
CCSID.
SQL0880
Message Text: Savepoint &1 does not exist or is not valid in this context.
Cause Text: The RELEASE TO SAVEPOINT or ROLLBACK TO SAVEPOINT statement does not identify
a savepoint that exists at the current savepoint level.
Recovery Text: Correct the statement to use a valid savepoint name, then try the statement again.
SQLCODE or -880
SQLCODEs:
SQLSTATE or 3B001
SQLSTATEs:
SQL0881
Message Text: Savepoint &1 already exists.
Cause Text: The savepoint name was previously defined at the current savepoint level and either an
existing savepoint or the new savepoint is defined with the UNIQUE keyword.
Recovery Text: Either use a different savepoint name or omit the UNIQUE clause if the existing savepoint
was created without the UNIQUE clause and the savepoint name is intended to be reused.
An existing savepoint can be released using the RELEASE TO SAVEPOINT statement.
SQLCODE or -881
SQLCODEs:
SQLSTATE or 3B501
SQLSTATEs:
SQL0882
Message Text: Savepoint does not exist.
Cause Text: A ROLLBACK TO SAVEPOINT without a savepoint name was attempted but no savepoint
exists at the current savepoint level.
Recovery Text: Correct the application logic to either set a savepoint or to not attempt to rollback to a
savepoint.
SQLCODE or -882
SQLCODEs:
SQLSTATE or 3B502
SQLSTATEs:
SQL0900
Message Text: Application process not in a connected state.
Cause Text: One of the following occurred:
v The current connection was disconnected using the DISCONNECT statement.
v The current connection was released and a commit occurred.
v A previous error has left the application process in an unconnected state. Use the Display
Job Log (DSPJOBLOG) command to see previous errors.
SQL0901
Message Text: SQL system error.
Cause Text: An SQL system error has occurred. The current SQL statement cannot be completed
successfully. The error will not prevent other SQL statements from being processed.
Previous messages may indicate that there is a problem with the SQL statement and SQL
did not correctly diagnose the error. The previous message identifier was &1. Internal error
type &2 has occurred. If precompiling, processing will not continue beyond this statement.
Recovery Text: See the previous messages to determine if there is a problem with the SQL statement. To
view the messages, use the DSPJOBLOG command if running interactively, or the WRKJOB
command to view the output of a precompile. An application program receiving this return
code may attempt further SQL statements. Correct any errors and try the request again.
SQLCODE or -901
SQLCODEs:
SQLSTATE or 58004
SQLSTATEs:
SQL0904
Message Text: Resource limit exceeded.
Cause Text: Resource limit type &1 exceeded with reason code &2. A list of the limit types follows:
v Type 1 indicates that the user profile storage limit or the machine storage limit was
exceeded.
v Type 2 indicates that the machine lock limit was exceeded.
v Type 3 indicates that the query resource limit was exceeded. For more information see
the previously listed message CPD4365.
v Type 4 indicates that a journal error has occurred.
v Type 5 indicates that the commit lock limit was exceeded.
v Type 6 indicates that the maximum size of the table has been reached.
v Type 7 indicates that the maximum size of the prepared statement area has been reached.
v Type 8 indicates that the maximum number of cursors have been opened for this job.
v Type 9 indicates that the maximum number of entries in the lock table have been used
for this job.
v Type 12 indicates that the maximum DRDA communications buffer size was exceeded.
v Type 13 indicates that the maximum amount of blocked data was exceeded.
v Type 14 indicates that the maximum amount of descriptor space has been allocated.
v Type 15 indicates that the maximum size of the parameter default area has been reached.
SQL0906
Message Text: Operation not performed because of previous error.
Cause Text: A previous error has made cursor &1 not usable.
Recovery Text: The cursor is not usable. Perform the following steps:
SQL0907
Message Text: Data change violation occurred.
Cause Text: The row referenced by the statement which caused a trigger program to be invoked was
referenced again in the trigger program. The reference in the trigger program attempted to
update or delete the row. This is called a destructive data change and is not allowed.
Recovery Text: Remove the statement which caused the error from your trigger program and attempt the
request again.
SQLCODE or -907
SQLCODEs:
SQLSTATE or 27000
SQLSTATEs:
SQL0913
Message Text: Row or object &1 in &2 type *&3 in use.
Cause Text: The requested object &1 in &2 type *&3 is either in use by another application process or a
row in the object is in use by either another application process or another cursor in this
application process.
If this error occurs frequently, use the Change Physical File (CHGPF), Change Logical File
(CHGLF), or Override Data Base File (OVRDBF) command to change the object or record
wait time out.
SQLCODE or -913
SQLCODEs:
SQLSTATE or 57033
SQLSTATEs:
SQL0918
Message Text: ROLLBACK required.
Cause Text: The activation group requires a ROLLBACK to be performed prior to running any other
SQL statements. One of the following has occurred:
v An SQL statement updated a distributed database server, but the database server can be
used only for read-only operations.
Recovery Text: Issue a ROLLBACK CL command or an SQL ROLLBACK statement and then continue. If
SQL server mode was used, consider switching to use the distributed unit of work setting.
SQLCODE or -918
SQLCODEs:
SQLSTATE or 51021
SQLSTATEs:
SQL0950
Message Text: Relational database &1 not in relational database directory.
Cause Text: A request for relational database &1 was made. However the relational database name was
not found in the relational database directory.
SQL0951
Message Text: Object &1 in &2 not altered.
Cause Text: Object &1 in &2 was not altered because it, or a related object, is being used by the same
application process. A table may be related in a referential constraint relationship with
another table being used by the same application process.
Recovery Text: Close the cursor and try the alter request again.
SQLCODE or -951
SQLCODEs:
SQLSTATE or 55007
SQLSTATEs:
SQL0952
Message Text: Processing of the SQL statement ended. Reason code &1.
Cause Text: The SQL operation was ended before normal completion. The reason code is &1. Reason
codes and their meanings are:
v 1 -- An SQLCancel API request has been processed, for example from ODBC.
v 2 -- SQL processing was ended by sending an exception.
v 3 -- Abnormal termination.
v 4 -- Activation group termination.
v 5 -- Reclaim activation group or reclaim resources.
v 6 -- Process termination.
v 7 -- An EXIT function was called.
v 8 -- Unhandled exception.
v 9 -- A Long Jump was processed.
v 10 -- A cancel reply to an inquiry message was received.
v 11 -- Open Database File Exit Program (QIBM_QDB_OPEN).
v 0 -- Unknown cause.
Recovery Text: If the reason code is 1, a client request was made to cancel SQL processing. For all other
reason codes, see previous messages to determine why SQL processing was ended.
SQLCODE or -952
SQLCODEs:
SQLSTATE or 57014
SQLSTATEs:
SQL0971
Message Text: Constraint &4 in check pending state.
Cause Text: The operation being performed on table &2 in &3 failed. Constraint &4 in &5 could not be
enforced because of reason code &1. The reason codes and their meanings are:
v 1 -- The dependent file is in check pending status due to a referential constraint violation.
v 2 -- The dependent or parent file's access path is not valid.
v 3 -- The file is in check pending status due to a check constraint violation.
Recovery Text: For reason codes 1 and 3, use the CHGPFCST command to disable the constraint. Then use
the DSPCPCST command to see the records causing the check pending status. Correct the
data in the file and then use the CHGPFCST command to enable the constraint. For reason
code 2, use the EDTRBDAP command or Manage Index Rebuilds in System i Navigator to
rebuild the file's access path.
SQLCODE or -971
SQLCODEs:
SQLSTATE or 57011
SQLSTATEs:
SQL0989
Message Text: Trigger &1 attempted to modify a row in table &3.
Cause Text: Target table &3 in &4 of a data change table reference has an AFTER trigger &1 in &2 that
modifies the same table. Modification of the same table by an AFTER trigger is not allowed.
Recovery Text: Remove the data change table reference from the FROM clause, or change the AFTER
trigger to not modify the same table as the data change table reference.
SQLCODE or -989
SQLCODEs:
SQLSTATE or 560C3
SQLSTATEs:
SQL0990
Message Text: Outcome unknown for the unit of work.
Cause Text: The unit of work completed but the outcome is not fully known at all sites. Either a
conversation failure occurred and resynchronization is occurring to correct the problem, or
a ROLLBACK occurred at one of the resources.
Recovery Text: No user action is necessary.
SQLCODE or +990
SQLCODEs:
SQL1530
Message Text: SET CURRENT DEGREE statement not fully enabled.
Cause Text: Parallel processing is not enabled on this machine because the system feature DB2
Symmetric Multiprocessing is not installed on the system.
Recovery Text:
SQLCODE or +1530
SQLCODEs:
SQLSTATE or 01623
SQLSTATEs:
SQL1583
Message Text: PAGESIZE value &1 not correct.
Cause Text: The PAGESIZE value of &1 was not correct for one of the following reasons.
v It cannot be specified for an ENCODED VECTOR index.
v The valid values for PAGESIZE are 8, 16, 32, 64, 128, 256, and 512.
v The PAGESIZE value may conflict with the key length of the index.
Recovery Text: Change the PAGESIZE value to one of the allowed values. Make sure this is not an
ENCODED VECTOR index. Try the request again.
SQLCODE or -1583
SQLCODEs:
SQLSTATE or 428DE
SQLSTATEs:
SQL1596
Message Text: WITH EMPTY TABLE not valid for &1 in &2.
Cause Text: The ALTER TABLE cannot have the WITH EMPTY TABLE clause specified for table &1 in
&2. The table is either a materialized query table or the parent table in a referential
constraint which conflicts with the WITH EMPTY TABLE clause.
Recovery Text: Change the name of the table and try the request again.
SQLCODE or -1596
SQLCODEs:
SQLSTATE or 42928
SQLSTATEs:
SQL4300
Message Text: Java support is not installed or properly configured on this platform.
Cause Text: Support for Java stored procedures and user-defined functions is not installed and
configured on this server.
Recovery Text: Ensure that a compatible Java Development Kit is installed.
SQLCODE or -4300
SQLCODEs:
SQL4301
Message Text: Java interpreter startup or communication failed for reason code &1.
Cause Text: An error occurred while attempting to start or communicate with a Java interpreter. The
reason codes and their meanings follow:
v 1 -- Java environment variables or Java database configuration parameters are invalid.
v 2 -- A Java Native Interface call to the Java interpreter failed.
v 4 -- The Java interpreter has terminated itself and cannot be restarted.
Recovery Text: Ensure that Java environment variables or Java database configuration parameters are valid.
Ensure that a Java method called by the Java interpreter does not use System.out. Ensure
that internal DB2 classes (com.ibm.db2) are not overridden by user classes.
SQLCODE or -4301
SQLCODEs:
SQLSTATE or 58004
SQLSTATEs:
SQL4302
Message Text: Java stored procedure or user-defined function &1, specific name &2 aborted with an
exception "&3".
Cause Text: The Java stored procedure or user-defined function aborted with a Java exception. If
SQJAVA component trace is on, then the component trace for the job contains a Java stack
traceback for the aborted method.
Recovery Text: Debug the Java method to eliminate the exception.
SQLCODE or -4302
SQLCODEs:
SQLSTATE or 38000
SQLSTATEs:
SQL4303
Message Text: Java stored procedure or user-defined function &1, specific name &2, could not be
identified from external name &3.
Cause Text: The CREATE PROCEDURE, ALTER PROCEDURE, CREATE FUNCTION, or ALTER
FUNCTION statement that declared this stored procedure or user-defined function had a
badly formatted EXTERNAL NAME clause. The external name must be formatted as
follows: "package.subpackage.class.method".
Recovery Text: Change the external name on the statement. Try the request again.
SQLCODE or -4303
SQLCODEs:
SQLSTATE or 42724
SQLSTATEs:
SQL4304
Message Text: Java stored procedure or user-defined function &1, specific name &2 could not load Java
class &3 for reason code &4.
SQL4306
Message Text: Java stored procedure or user-defined function &1, specific name &2 could not call Java
method &3, signature &4.
Cause Text: The Java method given by the EXTERNAL NAME clause of a CREATE PROCEDURE or
CREATE FUNCTION statement could not be found. Its declared argument list may not
match what the database expects, or it may not be a "public" instance method.
Recovery Text: Ensure that a Java instance method exists with the "public" flag and the expected argument
list for this call.
SQLCODE or -4306
SQLCODEs:
SQLSTATE or 42724
SQLSTATEs:
SQL4701
Message Text: Too many partitions specified.
Cause Text: One of the following has occurred:
v There are too many partitions specified on the CREATE TABLE statement.
v There was an attempt to add a partition to a existing table with an ALTER TABLE
statement but the table already has the maximum number of partitions.
SQL4729
Message Text: Procedure &1 in &2 cannot be called because call stack already contains an autonomous
procedure.
SQL4903
Message Text: The length of parameter &1 of function &2 is not valid.
Cause Text: The length of parameter &1 of function &2 is not valid.
Recovery Text: Correct the specified parameter and call the function again.
SQLCODE or -4903
SQLCODEs:
SQLSTATE or 42611
SQLSTATEs:
SQL4905
Message Text: The value of parameter &1 of function &2 is not within the valid range.
Cause Text: The value of parameter &1 of function &2 is outside the valid range for that parameter. If
the specified parameter is a structure, it may contain values that are within the valid range
but are not valid when considered together. Some structures contain headers that specify
the allocated size and how much of that size is being used. It is not valid for the allocated
size to be less than the used size.
Recovery Text: Correct the specified parameter and call the function again.
SQLCODE or -4905
SQLCODEs:
SQLSTATE or 42611
SQLSTATEs:
SQL4917
Message Text: Element &1 in the option array is not valid.
Cause Text: The option array contains an element with an option type or option value that is not valid.
Array element &1 contains this value.
Recovery Text: Correct the values passed in the option array. Call the function again.
SQLCODE or -4917
SQLCODEs:
SQLSTATE or 42611
SQLSTATEs:
SQL5001
Message Text: Column qualifier or table &2 undefined.
If a correlation name is specified following the table name in a FROM clause, the
correlation name is considered to be the table designator. If a correlation name is not
specified, the table name is considered to be the table designator. If using SQL naming and
the table is qualified with authorization name, then the table designator is
authorization-name.table-name. If the authorization name is not specified, the table
designator is the implicit authorization name followed by the table name.
Correlation from a nested table expression to a higher level table is only allowed if the
TABLE keyword is used for the definition of the nested table expression.
If the name is *N, a lateral correlation reference from a nested table expression is not
allowed. You cannot correlate to a table at a higher level than the nested table expression
for one of the following reasons:
v The nested table expression contains a UNION, EXCEPT, or INTERSECT.
v The nested table expression uses the DISTINCT keyword in the SELECT clause.
v The nested table expression contains an ORDER BY clause.
v The correlated provider is in the same FROM clause as the nested table expression but is
part of a RIGHT OUTER JOIN, RIGHT EXCEPTION JOIN, or FULL OUTER JOIN.
v The nested table expression is in the FROM clause of another nested table expression that
contains one of these restrictions.
In an OLAP function, the ORDER OF table designator must refer to a table designator in
the FROM clause of the subselect.
Recovery Text: Ensure all column names are qualified with a valid table designator. Make sure a table
designator is specified as the argument to the function. Use the TABLE keyword to allow
correlated columns within a nested table expression. Try the request again.
SQLCODE or -5001
SQLCODEs:
SQLSTATE or 42703
SQLSTATEs:
SQL5002
Message Text: Collection must be specified for table &1.
Cause Text: Table &1 is not implicitly or explicitly qualified by a collection name. A collection name is
required for the CREATE TABLE statement in system naming mode.
Recovery Text: Explicitly qualify the table &1 with the collection name. The correct form of a qualified
table name in system naming is collection-name/table-name. For a program, the table name
can be implicitly qualified with the default collection by specifying the DFTRDBCOL
parameter on the CRTSQLxxx command. Try the request again.
SQLCODE or -5002
SQLCODEs:
SQLSTATE or 42812
SQLSTATEs:
SQL5005
Message Text: Operator &4 not consistent with operands.
Cause Text: The operator specified is not consistent with the previous operands. The arithmetic
operators (*, /, and **) are not valid with concatenation operators or with the DIGITS and
SUBSTR scalar functions.
The concatenation operator is not valid with other operations or functions that result in a
numeric value, such as the arithmetic operators (* and /) or the LENGTH, DECIMAL,
FLOAT, or INTEGER scalar functions.
Recovery Text: Change the SQL statement so all expressions are valid numeric expressions, string
expressions, or date/time expressions.
SQLCODE or -5005
SQLCODEs:
SQLSTATE or 42815
SQLSTATEs:
SQL5012
Message Text: Host variable &1 not numeric with zero scale.
Cause Text: Host variable &1 was specified in a position where it is not allowed. The host variable was
not usable for one of the following reasons:
v It is not numeric.
v The scale is not zero.
Recovery Text: Change the host variable to a numeric type with zero scale.
SQLCODE or -5012
SQLCODEs:
SQLSTATE or 42618
SQLSTATEs:
SQL5016
Message Text: Qualified object name &1 not valid.
SQL5017
Message Text: Too many users specified for GRANT or REVOKE.
Cause Text: More than the maximum of 50 users are specified on the GRANT or REVOKE statement.
Recovery Text: Change the GRANT or REVOKE statement to specify a maximum 50 users. Try the request
again.
SQLCODE or -5017
SQLCODEs:
SQLSTATE or 54009
SQLSTATEs:
SQL5021
Message Text: FOR UPDATE column &1 not valid.
Cause Text: One of the following has occurred:
v A column in the FOR UPDATE clause is specified in the ORDER BY clause. If the column
name is *N, a list of columns was not specified in the FOR UPDATE clause. This is the
same as listing all columns.
v A DATALINK column in the FOR UPDATE clause is specified in the SELECT list.
Recovery Text: Remove the duplicate column from one of the clauses. If no columns were specified in the
FOR UPDATE clause, remove either the FOR UPDATE clause or the ORDER BY clause. Try
the request again.
SQLCODE or -5021
SQLCODEs:
SQLSTATE or 42930
SQLSTATEs:
SQL5024
Message Text: Variable &1 not character, UCS-2 graphic, or UTF-16 graphic.
Cause Text: Host variable or global variable &1 is not defined as character, UCS-2 graphic, or UTF-16
graphic. Host variables in a precompiled program or REXX procedure or global variables
must be character, UCS-2 graphic, or UTF-16 graphic if used as:
v The statement string in a PREPARE or EXECUTE IMMEDIATE statement.
v The table name in a DESCRIBE TABLE statement.
v The procedure name in a CALL statement.
v The server name, authorization name, or password in a CONNECT, SET CONNECTION,
RELEASE, DISCONNECT, SET ENCRYPTION PASSWORD, or SET SESSION
AUTHORIZATION statement.
v The special register value in a SET special register statement such as SET PATH, SET
SCHEMA, or SET CURRENT DECFLOAT ROUNDING MODE.
v The SQLSTATE value or signal information value in a SIGNAL statement.
v A descriptor name.
Recovery Text: Specify a variable that is character, UCS-2 graphic, or UTF-16 graphic. Try the request
again.
SQLCODE or -5024
SQLCODEs:
SQLSTATE or 42618
SQLSTATEs:
SQL5027
Message Text: OPTION(*SYS) valid only if relational database &1 (product identification &2) is DB2 for
IBM i.
Cause Text: SQL naming is required when the create of a SQL package is to a relational database that is
not another DB2 for IBM i.
Recovery Text: Change the program to use SQL naming, then retry the CRTSQLxxx command with the
parameter OPTION(*SQL).
SQLCODE or -5027
SQLCODEs:
SQLSTATE or 560C4
SQLSTATEs:
SQL5047
Message Text: Error processing SRTSEQ or LANGID parameter. Message is &3, &4.
Cause Text: An error occurred during an attempt to retrieve the sort sequence table for the SRTSEQ
parameter &1 and LANGID parameter &2. Message &3 was returned.
Recovery Text: Correct the errors as indicated by message &3 and issue the request again. If a sort
sequence table is not required, specify *HEX as the SRTSEQ parameter.
SQLCODE or -5047
SQLCODEs:
SQLSTATE or 42616
SQLSTATEs:
SQL5051
Message Text: Qualifier &1 not same as name &2.
Cause Text: One of the following has occurred:
v An object created in a CREATE SCHEMA statement is qualified by a name other than the
schema name. All objects created in a CREATE SCHEMA statement must be either
qualified by the schema name &2 or not qualified. Unqualified objects are implicitly
qualified by the schema name.
v A constraint name was qualified by a name that is not the same as the qualifier for the
table. A constraint for a table must be qualified by the same schema as the table. If not
explicitly qualified, a constraint name is implicitly qualified by the default schema, if one
is specified. Otherwise, the constraint name is implicitly qualified by the authorization ID
for SQL names and by the qualifier of the table name for system names.
Recovery Text: Do one of the following and try the request again:
v Explicitly qualify the object in the schema with &2 or remove qualifier &1 from the object
name.
v Use the same qualification for constraint names and table names.
SQLCODE or -5051
SQLCODEs:
SQLSTATE or 42875
SQLSTATEs:
SQL7001
Message Text: Table &1 in &2 not database file.
Cause Text: SQL processing is only valid for a database file. All other file types are not allowed.
Recovery Text: Make certain that the table and schema names are correct.
SQL7002
Message Text: Override parameter not valid.
Cause Text: An Override Data Base File (OVRDBF) command was issued for one of the files referenced
in the SQL statement. A parameter on the OVRDBF command is not valid for SQL. See
message CPF4276 in the job log for information about which parameter is not valid.
Recovery Text: Delete the override (DLTOVR command). Use the OVRDBF command again without the
parameter that is not valid, if necessary, and then try the operation again.
SQLCODE or -7002
SQLCODEs:
SQLSTATE or 42847
SQLSTATEs:
SQL7003
Message Text: File &1 in &2 has more than one format.
Cause Text: SQL cannot process a file unless it has only one format.
Recovery Text: Make certain that the correct filename was specified. Try the request again.
SQLCODE or -7003
SQLCODEs:
SQLSTATE or 42857
SQLSTATEs:
SQL7006
Message Text: Cannot drop schema &1.
Cause Text: &1 is a schema that is in the library list.
Recovery Text: Remove &1 from the library list before attempting the DROP. Try the request again.
SQLCODE or -7006
SQLCODEs:
SQLSTATE or 55018
SQLSTATEs:
SQL7007
Message Text: COMMIT, ROLLBACK, or SAVEPOINT not valid.
Cause Text: A COMMIT, ROLLBACK, or SAVEPOINT statement was issued, but commitment control is
not active.
Recovery Text: Change the commitment control level *NONE to *CHG, *CS, or *ALL. The SET
TRANSACTION statement can be used to change the isolation level to something other
than *NONE. Try the request again.
SQLCODE or -7007
SQLCODEs:
SQLSTATE or 51009
SQLSTATEs:
4 and 5 -- &1 is in or being created into production library but the user has debug mode
UPDPROD(*NO).
v 6 -- Schema being created, but user in debug mode with UPDPROD(*NO).
v 7 -- A based-on table used in creation of a view is not valid. Either the table is program
described table or it is in a temporary schema.
v 8 -- Based-on table resides in a different ASP than ASP of object being created.
v 9 -- Index is currently held or is not valid.
v 10 -- A constraint or trigger is being added to an invalid type of table, or the maximum
number of triggers has been reached, or all nodes of the distributed table are not at the
same release level.
v 11 -- Distributed table is being created in schema QTEMP, or a view is being created over
more than one distributed table.
v 12 -- Table could not be created in QTEMP, QSYS, QSYS2, or SYSIBM because it contains
a column of type DATALINK having the FILE LINK CONTROL option.
v 13 -- The table contains a DATALINK, LOB, or XML column that conflicts with the data
dictionary.
v 14 -- A DATALINK, LOB, XML, or IDENTITY column cannot be added to a non SQL
table.
v 15 -- Attempted to create or change an object using a commitment definition in a
different ASP.
v 16 -- Sequence &1 in &2 was incorrectly modified with a CL command.
v 17 -- The table is not usable because it contains partial transactions.
SQL7009
Message Text: &1 in &2 not valid for operation.
Cause Text: The reason code is &3. Reason codes are:
v 1 -- A materialized query table that was deferred when it was restored cannot be
refreshed using REFRESH TABLE or altered using ALTER TABLE.
v 2 -- The target of a data change table reference is a distributed file.
v 3 -- Distributed table &1 exists on the requester system but does not exist on the target
system.
v 4 -- Field procedure &1 in &2 failed.
v 5 -- Service program &1 in &2 is not a global variable.
v 22 -- MERGE target &1 in &2 is a logical file with multiple members that is not an SQL
view.
v 40 -- Row or column access control cannot be defined on a global temporary table or a
table in QTEMP.
v 45 -- The table contains multiple columns defined as date or time that do not have the
same date or time format.
v 47 -- External function &1 in &2 cannot be created as SECURED because the associated
program or service program cannot be marked as SECURED.
SQL7010
Message Text: Logical file &1 in &2 not valid for CREATE VIEW.
Cause Text: Logical file &1 in &2 is specified in the subselect clause of a CREATE VIEW. Views cannot
be created over logical files.
Recovery Text: Remove logical file &1 from the CREATE VIEW statement and try the request again.
SQLCODE or -7010
SQLCODEs:
SQLSTATE or 42850
SQLSTATEs:
SQL7011
Message Text: &1 in &2 not table, view, or physical file.
Cause Text: The SQL statement &3 cannot be performed on a file which is not a table, view, single
format logical file, or physical file.
Recovery Text: Do one of the following:
v Use a control language (CL) command to do the function.
v Select the correct table, view, logical, or physical file.
SQLCODE or -7011
SQLCODEs:
SQLSTATE or 42851
SQLSTATEs:
SQL7017
Message Text: Unable to run statement with specified commit level.
Cause Text: SQL is unable to run the statement with the specified commit level because SQL cannot
register a resource with commitment control.
Recovery Text: See previous messages for more information.
SQL7018
Message Text: COMMIT HOLD or ROLLBACK HOLD not allowed.
Cause Text: COMMIT HOLD or ROLLBACK HOLD was attempted to an application server or from an
application requester that is not DB2 for IBM i. HOLD is only allowed when the application
requester and the application server are both DB2 for IBM i.
Recovery Text: Remove HOLD and submit the statement again.
SQLCODE or -7018
SQLCODEs:
SQLSTATE or 42970
SQLSTATEs:
SQL7020
Message Text: SQL package creation failed.
Cause Text: An SQL package must exist on the application server to run SQL statements. Creation of a
package for this purpose failed on the application server and returned SQLCODE &1,
SQLSTATE &2. The name of the package being created was &3 in schema &4 on relational
database &5.
Recovery Text: Do the response as indicated for the SQLCODE &1 and SQLSTATE &2. If you are running
with commitment control, exit Interactive SQL or Query Manager and issue a CL COMMIT
or ROLLBACK command. This will enable you to continue processing at the local system.
SQLCODE or -7020
SQLCODEs:
SQLSTATE or 42969
SQLSTATEs:
SQL7021
Message Text: Local program attempting to run on application server.
Cause Text: An attempt was made to run an SQL program in a process that is an application server.
Recovery Text: Initiate another job and run the SQL program in that job.
SQLCODE or -7021
SQLCODEs:
SQLSTATE or 57043
SQLSTATEs:
SQL7022
Message Text: User &1 not the same as current user &2.
Cause Text: One of the following occurred.
v User &1 was specified in a CONNECT statement that specified the local relational
database name. The user specified is not the same as the current job user &2.
v User &1 was specified in a CONNECT statement and a connection using &2 already
exists to the specified relational database using connection method *DUW.
If connecting to a remote relational database, either use the SET CONNECTION statement
to use the existing connection or end the current connection and issue the CONNECT
statement with the new user id.
SQLCODE or -7022
SQLCODEs:
SQLSTATE or 42977
SQLSTATEs:
SQL7024
Message Text: CCSIDs incompatible.
Cause Text: An attempt was made to create an index or to group columns, but the columns have
incompatible CCSIDs. The sort sequence is not *HEX. If the statement is CREATE INDEX,
index &1 in schema &2 was not created. The CCSIDs of character key columns or character
columns in a GROUP BY clause must be associated CCSIDs when the sort sequence is not
*HEX. All associated CCSIDs must have the same single-byte code page.
Recovery Text: Do one of the following:
v - Change the sort sequence to *HEX and try the statement again.
v - Change the CCSIDs of the columns so that they are either 65535 or associated CCSIDs
and try the statement again.
SQLCODE or -7024
SQLCODEs:
SQLSTATE or 42876
SQLSTATEs:
SQL7026
Message Text: Auxiliary storage pool &4 or &5 not found.
Cause Text: Object &1 in &2 type *&3 was not created because auxiliary storage pool (ASP) &4 or
device name &5 does not exist on the system or in the ASP group of the thread.
Recovery Text: Specify a correct ASP number or ASP device name and try the request again.
SQLCODE or -7026
SQLCODEs:
SQLSTATE or 42896
SQLSTATEs:
SQL7027
Message Text: Cannot GRANT specified privileges on object &1 in &2 type *&3.
Cause Text: A GRANT operation was attempted on view &1 in &2 type *&3. This operation cannot be
performed because it would give the user specified additional privileges to the underlying
file &4 in &5. The user has *OBJOPR or *OBJMGT system privileges to the underlying file.
Recovery Text: One of the following may be done:
v Grant the specified privileges to &4
v Obtain the required authority from either the security officer or the object owner
v Delete the current authority to &4.
SQL7028
Message Text: Owner and primary group cannot be the same.
Cause Text: While attempting to create an object, SQL attempted to change the owner of the object. The
new owner was the same as the primary group for that object. This is not allowed.
Recovery Text: Change the primary group for the user profile and try the request again.
SQLCODE or -7028
SQLCODEs:
SQLSTATE or 42944
SQLSTATEs:
SQL7029
Message Text: System name &3 cannot be specified.
Cause Text: For a CREATE TABLE, CREATE VIEW, CREATE INDEX, RENAME, or CREATE SCHEMA
of &1 in &2, &3 was specified as the system name. If two names are specified in the
CREATE TABLE, CREATE VIEW, CREATE INDEX, or RENAME statement, only the name
following SYSTEM NAME can be a valid system name. For CREATE VIEW with the
REPLACE option, the original system name and the new system name must be the same. If
two names are specified in the CREATE SCHEMA statement, only the name following FOR
SCHEMA can be a valid system name.
Recovery Text: Do one of the following and try the request again:
v Remove the SYSTEM NAME or FOR SCHEMA clause.
v Change the first name specified for the CREATE TABLE, CREATE VIEW, CREATE
INDEX, RENAME, or CREATE SCHEMA to be a name that is not valid as a system
name.
SQLCODE or -7029
SQLCODEs:
SQLSTATE or 428B8
SQLSTATEs:
SQL7030
Message Text: Alias &1 for table &2 in &3 not valid for statement.
Cause Text: The SQL statement cannot be performed on alias &1 because the alias refers to a member of
table &2 in schema &3.
Recovery Text: Specify a valid table or an alias that does not refer to a member. Try the request again.
SQLCODE or -7030
SQLCODEs:
SQLSTATE or 55042
SQLSTATEs:
SQL7031
Message Text: Sort sequence table &1 too long.
SQL7032
Message Text: SQL procedure, function, trigger, or variable &1 in &2 not created.
Cause Text: SQL procedure, function, trigger, or variable &1 in &2 was not created.
The compile was not successful. SQL creates an SQL procedure, function, trigger, or
variable as a C program that contains embedded SQL. Errors not found during the initial
parsing of the CREATE PROCEDURE, ALTER PROCEDURE, CREATE FUNCTION, ALTER
FUNCTION, CREATE TRIGGER. or CREATE VARIABLE statement can be found during
the precompile.
Recovery Text: If a compile error occurred, see the appropriate listing in QSYSPRT. If the SQL precompile
failed, there is always a listing with the error. If the C compile failed, the listing is only
created if requested. Specify SET OPTION OUTPUT=*PRINT prior to the routine body in
the CREATE PROCEDURE, CREATE FUNCTION, or CREATE TRIGGER statement if
listings are required.
SQLCODE or -7032
SQLCODEs:
SQLSTATE or 42904
SQLSTATEs:
SQL7033
Message Text: Alias name &1 in &2 not allowed.
Cause Text: Alias name &1 cannot be used. This program was compiled on a release before alias names
were supported. The table name it is using has now been defined as an alias name.
Recovery Text: Recompile the program on a release that supports alias names or remove the alias from the
system.
SQLCODE or -7033
SQLCODEs:
SQLSTATE or 42923
SQLSTATEs:
SQL7034
Message Text: LOB and XML locators are not allowed with COMMIT(*NONE).
Cause Text: LOB and XML locators cannot be used with commitment control level of *NONE or *NC.
Recovery Text: Use a commitment control level of *CHG, *UR, *CS, *ALL, *RS, or *RR.
SQLCODE or -7034
SQLCODEs:
SQLSTATE or 42926
SQLSTATEs:
SQL7037
Message Text: Data in a distributed file &1 in &2 cannot be redistributed.
Cause Text: An attempt was made to change the node group, partitioning file, partitioning key, or an
attribute of a partitioning key. These changes can cause data to be redistributed, but data in
file &1 in &2 cannot be redistributed because it contains a DataLink with FILE LINK
CONTROL.
Recovery Text: Change the request so that data will not be redistributed, and try the function again.
SQLCODE or -7037
SQLCODEs:
SQLSTATE or 429B6
SQLSTATEs:
SQL7038
Message Text: Delete cascade not valid for &1 in &2.
Cause Text: A delete cascade rule can not be added to &1 in &2 as it contains a DataLink column.
Recovery Text: Either remove the DataLink column or remove the specified delete cascade rule.
SQLCODE or -7038
SQLCODEs:
SQLSTATE or 429B7
SQLSTATEs:
SQL7048
Message Text: Operation not allowed because trigger is invalid.
Cause Text: An open of an SQL table or view failed as a result of inoperative trigger &1 in schema &2.
The open could be due to an insert, update, delete, or open cursor statement.
Recovery Text: Drop and recreate trigger &1 in &2. See the previous CPF418A escape message for the
name of the file that failed to open. Preceding the CPF418A will be CPD502B messages for
each invalid trigger found. The SYSTRIGGERS catalog can also be used to determine the
SQL table an invalid trigger is attached to.
SQLCODE or -7048
SQLCODEs:
SQLSTATE or 51037
SQLSTATEs:
SQL7049
Message Text: An internal object limit has been exceeded.
SQL7050
Message Text: Result sets are not available from procedure &1 in &2.
Cause Text: An SQL CALL statement was performed for procedure &1 in &2. It opened &3 result sets,
but all were closed before they could be processed. This can be caused by the ending of an
activation group, or by some other function that closes SQL cursors, such as a Reclaim
Resources (RCLRSC) CL command. This can also happen if the procedure contains a SET
RESULT SETS statement, and an error occurred on that statement.
Recovery Text: If the procedure was created with *NEW as the activation group, change it to *CALLER or
a named activation group. Remove any functions that might be closing SQL cursors. If the
procedure contains the SET RESULT SETS statement, make sure it completes successfully
and does not identify cursors that are not open.
SQLCODE or +7050
SQLCODEs:
SQLSTATE or 01646
SQLSTATEs:
SQL7051
Message Text: MODE DB2SQL before trigger converted to MODE DB2ROW.
Cause Text: MODE DB2SQL before triggers are not supported. The SQL trigger &1 in &2 will be
converted from MODE DB2SQL to MODE DB2ROW.
Recovery Text: MODE DB2ROW should be specified for all BEFORE triggers. Change the statement and
try the request again.
SQL7052
Message Text: Object &1 type *&3 cannot be created in &2.
Cause Text: An attempt to create object &1 type *&3 in &2 failed because the library is not valid for
user objects.
Recovery Text: Perform the operation using a different library.
SQLCODE or -7052
SQLCODEs:
SQLSTATE or 55050
SQLSTATEs:
SQL7053
Message Text: Relational database directory not available.
Cause Text: An attempt to connect to relational database (RDB) &1 failed because the RDB directory is
not available. A vary on operation may be in progress for the Auxiliary Storage Pool (ASP)
devices.
Recovery Text: If a vary on operation is in progress for any ASP devices, wait until the operation is
complete. If repeated attempts fail, you may need to run the command RCLSTG
SELECT(*DBXREF).
SQLCODE or -7053
SQLCODEs:
SQLSTATE or 57011
SQLSTATEs:
SQL7054
Message Text: The open failed due to exit program &1.
Cause Text: An exit program was installed to examine all file opens using the ADDEXITPGM
EXITPNT(QIBM_QDB_OPEN) FORMAT(DBOP0100) command. The exit program ended
this open request.
Recovery Text:
SQLCODE or -7054
SQLCODEs:
SQLSTATE or 58002
SQLSTATEs:
SQL7055
Message Text: Cursor &1 is ambiguous.
Cause Text: Cursor &1 will become ambiguous because there is another cursor with the same name
already opened from a different invocation of the procedure.
Recovery Text: Close all other cursors with the same name opened in other invocations of the procedure or
include the cursor in the set of result sets specified on this SET RESULT SETS statement.
Try the request again.
SQL7056
Message Text: Database support not available for reason &1.
Cause Text: A required licensed program is not installed. The reason code is &1.
v 1 - IBM XML Toolkit for i (5733XT2) or International Components for Unicode (5770-SS1)
is not installed.
v 2 - Java Developer Kit 5.0 (5770JV1), or J2SE 5.0 32 bit (5770JV1), or J2SE 5.0 64 bit
(5770JV1), or Portable App Solutions Environment (5770-SS1) is not installed.
v 3 - IBM Advanced Data Security for i (5770SS1 option 47) is not installed.
Recovery Text: Make sure the required licensed programs are correctly installed. Try the request again.
SQLCODE or -7056
SQLCODEs:
SQLSTATE or 560CR
SQLSTATEs:
SQL7057
Message Text: &1 was changed to PROGRAM TYPE MAIN.
Cause Text: An SQL procedure &1 in &2 has been changed from PROGRAM TYPE SUB to PROGRAM
TYPE MAIN. The specific name of the procedure is &3. A PROGRAM TYPE SUB procedure
is implemented using an ILE *SRVPGM, while a PROGRAM TYPE MAIN procedure is
implemented using an ILE *PGM. The procedure call processing for an ILE *SRVPGM is
faster than the procedure call processing for an ILE *PGM, so it is beneficial to create SQL
procedures with the PROGRAM TYPE SUB option to achieve the best performance. If you
see this message, it indicates that a procedure is being changed from PROGRAM TYPE SUB
to PROGRAM TYPE MAIN on behalf of an ALTER PROCEDURE SQL statement or a
RESTORE OBJECT (RSTOBJ) system command.
Recovery Text: Either recreate the procedure using CREATE PROCEDURE or alter the procedure using the
ALTER PROCEDURE SQL statement.
SQLCODE or +7057
SQLCODEs:
SQLSTATE or 01693
SQLSTATEs:
SQL7058
Message Text: Table &1 in &2 not allowed on MERGE statement.
Cause Text: Table &1 in schema &2 cannot be specified as the target of a MERGE statement containing
a global variable, a function, or a subselect because it has a trigger or is a parent of a
referential constraint with a delete rule of CASCADE, SET NULL, or SET DEFAULT. If &1
is a view, the view definition cannot reference a table with these attributes.
Recovery Text: Remove the global variable, subselect, or function in order to specify table &1 in &2 for the
MERGE. Try the request again.
SQLCODE or -7058
SQLCODEs:
SQL7059
Message Text: The activation group for procedure &1 in &2 is not valid.
Cause Text: The activation group of the program or service program referenced by procedure &1 in &2
is not valid for one of the following reasons:
v Procedure &1 is defined as an autonomous external procedure but the external program
or service program is not created to run in activation group QSQAUTOAG. An
autonomous procedure must run in activation group QSQAUTOAG.
v Procedure &1 is not an autonomous external procedure but the external program or
service program is created to run in activation group QSQAUTOAG. Only an
autonomous procedure is allowed to run in activation group QSQAUTOAG.
Recovery Text: Change the procedure, program, or service program and try the request again.
SQLCODE or -7059
SQLCODEs:
SQLSTATE or 51047
SQLSTATEs:
SQL7905
Message Text: Table &1 in &2 created but was not journaled.
Cause Text: The table &1 was created in &2, but the table was not journaled. Either a QDFTJRN data
area indicated that journaling should not be started, the default journal did not exist, or the
default journal did exist but the journaling could not be started. The default journal may be
damaged, unable to accept journal entries, or may not exist. The SQL name for the table is
&1 and the system name for the table is &3. For a distributed table, journaling could not be
started on all of the systems. The default journal must exist, and be able to accept journal
entries, on each of the systems in the node group.
Recovery Text: The table was created, but until the table is journaled, COMMIT(*CHG), COMMIT(*CS),
COMMIT(*RS), COMMIT(*RR), COMMIT(*UR), and COMMIT(*ALL) will not be allowed
for table &1.
If the default journal does not exist, create the journal (CRTJRN command) and start
journaling (STRJRNPF command).
If the table is distributed, correct the problems on all the systems in the node group and
start journaling (STRJRNPF command).
SQLCODE or +7905
SQLCODEs:
SQLSTATE or 01567
SQLSTATEs:
SQL7906
Message Text: SQL function not supported on prior release. Function is - &1.
Cause Text: The *PRV or VxRxMx value was specified for the Target Release (TGTRLS) parameter on
the precompile command or for the SET OPTION statement. The created program cannot
be saved and restored to that release because an SQL function is not supported on the
target release.
If the SET OPTION statement is used for a routine, the routine will not create unless all
SQL statements within the routine are supported on the release specified for the TGTRLS
value.
SQLCODE or -7906
SQLCODEs:
SQLSTATE or 42997
SQLSTATEs:
SQL7909
Message Text: &1 was created, changed, or dropped, but object not modified.
Cause Text: The routine or global variable &1 in &2 was created, changed, or dropped successfully but
the object's attributes could not be saved, changed, or removed from the associated
program or service program object. For a routine, the specific name is &3. If the object was
just created or modified, when the *PGM or *SRVPGM object is saved and then restored,
the SQL catalogs will not be updated with the new attributes for this routine. If the object
was just dropped, the SQL catalogs could be incorrectly updated on a future restore of the
object due to not removing the object information from the associated program or service
program.
SQL7941
Message Text: Application process not at a commit boundary.
Cause Text: A commitment control level other than *NONE was specified on the RUNSQLSTM
command, but the application process is not at a commit boundary.
Recovery Text: Issue a COMMIT or ROLLBACK to get to a commit boundary, or specify
COMMIT(*NONE) on the RUNSQLSTM command.
SQLCODE or -7941
SQLCODEs:
SQLSTATE or 42981
SQLSTATEs:
SQL9012
Message Text: IBM DB2 Query Manager and SQL Development Kit for i not available.
Cause Text: Either IBM DB2 Query Manager and SQL Development Kit for i is not installed, or the limit
for the number of concurrent licensed users has been reached. Refer to the job log for
details.
Recovery Text: Do one of the following and try the request again.
v Install IBM DB2 Query Manager and SQL Development Kit for i.
v Request that a current user discontinue use of the product.
v Ask your system administrator to contact the software vendor to increase the limit for
the number of licensed users.
SQLCODE or -9012
SQLCODEs:
SQLSTATE or 42968
SQLSTATEs:
Related concepts:
“SQL message concepts” on page 28
SQL messages are displayed when Db2 for i returns an error or warning code to the application that uses
it.
IBM may not offer the products, services, or features discussed in this document in other countries.
Consult your local IBM representative for information on the products and services currently available in
your area. Any reference to an IBM product, program, or service is not intended to state or imply that
only that IBM product, program, or service may be used. Any functionally equivalent product, program,
or service that does not infringe any IBM intellectual property right may be used instead. However, it is
the user's responsibility to evaluate and verify the operation of any non-IBM product, program, or
service.
IBM may have patents or pending patent applications covering subject matter described in this
document. The furnishing of this document does not grant you any license to these patents. You can send
license inquiries, in writing, to:
For license inquiries regarding double-byte (DBCS) information, contact the IBM Intellectual Property
Department in your country or send inquiries, in writing, to:
The following paragraph does not apply to the United Kingdom or any other country where such
provisions are inconsistent with local law: INTERNATIONAL BUSINESS MACHINES CORPORATION
PROVIDES THIS PUBLICATION "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR
IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Some
states do not allow disclaimer of express or implied warranties in certain transactions, therefore, this
statement may not apply to you.
This information could include technical inaccuracies or typographical errors. Changes are periodically
made to the information herein; these changes will be incorporated in new editions of the publication.
IBM may make improvements and/or changes in the product(s) and/or the program(s) described in this
publication at any time without notice.
Any references in this information to non-IBM Web sites are provided for convenience only and do not in
any manner serve as an endorsement of those Web sites. The materials at those Web sites are not part of
the materials for this IBM product and use of those Web sites is at your own risk.
IBM may use or distribute any of the information you supply in any way it believes appropriate without
incurring any obligation to you.
IBM Corporation
Software Interoperability Coordinator, Department YBWA
3605 Highway 52 N
Rochester, MN 55901
U.S.A.
Such information may be available, subject to appropriate terms and conditions, including in some cases,
payment of a fee.
The licensed program described in this document and all licensed material available for it are provided
by IBM under terms of the IBM Customer Agreement, IBM International Program License Agreement or
any equivalent agreement between us.
Trademarks
IBM, the IBM logo, and ibm.com are trademarks or registered trademarks of International Business
Machines Corp., registered in many jurisdictions worldwide. Other product and service names might be
trademarks of IBM or other companies. A current list of IBM trademarks is available on the Web at
“Copyright and trademark information” at www.ibm.com/legal/copytrade.shtml.
Adobe, the Adobe logo, PostScript, and the PostScript logo are either registered trademarks or trademarks
of Adobe Systems Incorporated in the United States, and/or other countries.
Java and all Java-based trademarks and logos are trademarks of Oracle, Inc. in the United States, other
countries, or both.
Other product and service names might be trademarks of IBM or other companies.
Personal Use: You may reproduce these publications for your personal, noncommercial use provided that
all proprietary notices are preserved. You may not distribute, display or make derivative works of these
publications, or any portion thereof, without the express consent of IBM.
Commercial Use: You may reproduce, distribute and display these publications solely within your
enterprise provided that all proprietary notices are preserved. You may not make derivative works of
these publications, or reproduce, distribute or display these publications or any portion thereof outside
your enterprise, without the express consent of IBM.
Except as expressly granted in this permission, no other permissions, licenses or rights are granted, either
express or implied, to the publications or any information, data, software or other intellectual property
contained therein.
IBM reserves the right to withdraw the permissions granted herein whenever, in its discretion, the use of
the publications is detrimental to its interest or, as determined by IBM, the above instructions are not
being properly followed.
You may not download, export or re-export this information except in full compliance with all applicable
laws and regulations, including all United States export laws and regulations.
Notices 257
258 IBM i: SQL messages and codes
IBM®
Printed in USA