Error Messages Version 5x PDF
Error Messages Version 5x PDF
Error Messages
December 2001
Part No. 000-4168A
Note:
Before using this information and the product it supports, read the information in the appendix
entitled “Notices.”
This document contains proprietary information of IBM. It is provided under a license agreement and is
protected by copyright law. The information contained in this publication does not include any product
warranties, and any statements provided in this manual should not be interpreted as such.
When you send information to IBM, you grant IBM a nonexclusive right to use or distribute the information
in any way it believes appropriate without incurring any obligation to you.
© Copyright International Business Machines Corporation 1996, 2001. All rights reserved.
US Government User Restricted Rights—Use, duplication or disclosure restricted by GSA ADP Schedule
Contract with IBM Corp.
This manual includes error messages for the following Informix products up
to and including the version listed:
Introduction 1
Organization of This Manual
Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta
Error messages with positive numbers are presented first, followed by error
messages with negative numbers. Error messages with positive numbers are
listed in ascending order, and those with negative numbers are listed in
descending order.
For backward compatibility, a single error message number might have more
than one listing. These multiple listings reflect changes in the wording or
functionality of the error message for different versions of the software. Be
sure to locate the error message listing appropriate for your software version
to learn the cause of the error and the corrective action.
The error codes from -1 through -99 are return codes from functions of the
host operating system. Most UNIX-based hosts use these numbers in a consis-
tent way, but differences exist among operating systems, particularly for
codes -32 through -99.
The explanations that this manual provides reflect the meaning of the kernel
return codes. To be sure of the meaning of one of these codes, consult the
manuals for your operating system. UNIX programmers can also find help in
the file /usr/include/errno.h. Windows NT programmers can find help in the
errno.h file of the include subdirectory for Microsoft Visual C++.
The error codes from -100 to -199 relate to ISAM (Indexed Sequential Access
Manager). ISAM is the bottom level of the database server; it is the part that
executes disk I/O and maintains data structures such as indexes. You can
write programs using the C-ISAM product, or you can use ISAM indirectly
through SQL statements.
ISAM messages reflect problems with physical access to data or with corrup-
tion of fundamental data structures.When you use C-ISAM, functions that
you call return these error codes. When you use SQL, ISAM error codes are
always issued with an SQL error code. Both codes are returned to a program
in the SQL Communications Area (SQLCA).
Error codes from -200 to -899 indicate SQL errors. The database server issues
them to reflect errors or problems in the execution of an SQL statement. These
codes are returned to the SQLCA. An ISAM error code accompanies many of
these messages.
Specific Informix products and product components use the error codes
numbered -900 and above.
Types of Users
This manual is written for users of current Informix products and earlier, still
supported Informix products.
Introduction 3
Documentation Conventions
Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta
Documentation Conventions
This section describes the conventions that this manual uses. These conven-
tions make it easier to gather information from this and other Informix
manuals.
■ Typographical conventions
■ Icon conventions
■ Command-line conventions
Typographical Conventions
This manual uses the following standard set of conventions to introduce new
terms, illustrate screen displays, describe command syntax, and so forth.
Convention Meaning
italics Within text, new terms and emphasized words appear in italics.
Within syntax diagrams, values that you are to specify appear
in italics.
monospace Information that the product displays and information that you
enter appear in a monospace typeface.
(1 of 2)
Convention Meaning
KEYSTROKE Keys that you are to press appear in uppercase letters in a sans
serif font.
Icon Conventions
Throughout the documentation, you will find text that is identified by several
different types of icons. This section describes these icons.
Comment Icons
Comment icons identify warnings, important notes, or tips. This information
is always displayed in italics.
Icon Description
Introduction 5
Command-Line Conventions
Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta
Command-Line Conventions
This section defines and illustrates the format of commands that are available
in Informix products. These commands have their own conventions, which
might include alternative forms of a command, required and optional parts
of the command, and so forth.
Each diagram displays the sequences of required and optional elements that
are valid in a command. A diagram begins at the upper-left corner with a
command. It ends at the upper-right corner with a vertical line. Between
these points, you can trace any path that does not stop or back up. Each path
describes a valid form of the command. You must supply a value for words
that are in italics.
Element Description
Element Description
' ' Single quotes are literal symbols that you must enter as
shown.
Privileges
A reference in a box represents a subdiagram. Imagine
p. 5-17 that the subdiagram is spliced into the main diagram at
this point. When a page number is not specified, the
Privileges subdiagram appears on the same page.
Introduction 7
Command-Line Conventions
Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta
pathname
To construct a command correctly, start at the top left with the command.
Then follow the diagram to the right, including the elements that you want.
The elements in the diagram are case sensitive.
The scripts are in the $INFORMIXDIR/bin directory. The ASCII file has the
following path:
$INFORMIXDIR/msg/errmsg.txt
The negative error message numbers range from -1 through -55933. When
you specify these numbers for the scripts, you can omit the minus sign. More
than 100 messages have positive numbers, ranging from 0 through 38095. If
you want to display them, you must precede the message number with a +
sign.
Introduction 9
Using the ASCII Error Message File on UNIX
Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta
finderr msg_num
-
+
You can specify any number of error messages per finderr command. The
finderr command copies all the specified messages and their corrective
actions to standard output.
For example, to display the -359 error message, you can enter the following
command:
finderr -359
The following example shows how to specify a list of error messages. This
example pipes the output to the UNIX more command to control the display.
finderr 233 107 113 1304 21414 144 33020 | more
You can also redirect the output to another file so that you can save or print
the error messages.
rofferr start_msg
end_msg
-
+ -
+
start_msg is the number of the first error message to format. This error
message number is required.
end_msg is the number of the last error message to format. This error
message number is optional. If you omit end_msg, only
start_msg is formatted.
The following example formats error message -359. It pipes the formatted
error message to nroff and sends the output of nroff to the default printer.
rofferr 359 | nroff -man | lpr
The following example formats and then prints all the error messages
between -1300 and -4999:
rofferr -1300 -4999 | nroff -man | lpr
Introduction 11
Additional Documentation
Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta
Additional Documentation
In addition to the ASCII error message files, the following types of on-line
documentation are available:
■ On-line manuals
■ Printed manuals
■ Documentation notes
On-Line Manuals
An Answers OnLine CD that contains Informix manuals in electronic format
is provided with your Informix products. You can install the documentation
or access it directly from the CD. For information about how to install, read,
and print on-line manuals, see the installation insert that accompanies
Answers OnLine.
Printed Manuals
To order printed manuals, call 1-800-331-1763 or send email to
moreinfo@informix.com.
Documentation Notes
In addition to printed documentation, the ERRORDOC_x.x file supplements
the information in this manual. For UNIX, this file is located in the
$INFORMIXDIR/release/en_us/0333 directory. For Windows, this file is
located in the $INFORMIXDIR\release\en_us\04e4 directory
doc@informix.com
650-926-6571
Introduction 13
Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta Beta Error
Messages
0 Success.
The database server did not find any more data. This message is
an ANSI-standard SQLCODE value. If you attempted to select or
fetch data, you encountered the end of the data, or no data
matched the criteria in the WHERE clause. Check for an empty
table. Use this SQLCODE value to determine when a statement
reaches the end of the data. For more information, see the
discussion of SQLCODE in the INFORMIX-ESQL/C Programmer’s
Manual. The database server can return this SQLCODE value to a
running program.
The database that is specified in the DATABASE section does not contain the
table name that is included in the TABLE section of the form specification
file. Check the table name for correct spelling.
You must include one or more table names in the TABLES section of the
form-specification file.
For this 4GL compiler message, you need a C compiler to finish compiling
your program. Change your execution path so that a C compiler can be
executed under the name cc.
For this 4GL compiler message, look up the message for -number.
The indicated line contains incorrect code that generated this 4GL runtime
message. Sometimes the actual error or omission exists in the preceding lines
of code. Look for additional messages that explain the error.
For this 4GL runtime error, check the message for -number.
For this 4GL runtime error, check the message for -number.
This 4GL runtime message tells where a program stopped due to an error.
Look for additional messages that explain the error.
For this 4GL runtime error, check the message for -number.
4156 ISAM error number -number.
For this 4GL runtime error, check the message for -number.
For this 4GL runtime error, check the message for -number.
Check the accompanying message for an indication of system action. Use the
finderr utility or the Informix Error Messages manual to locate the indicated
error message.
The VPCLASS parameter in the onconfig file has a duplicate name. The
VPCLASS name must be unique. Correct the onconfig file and restart oninit.
There are too many VPCLASS parameter lines in the onconfig file. Reduce the
number of VPCLASS lines and restart oninit.
x: use processor x
CPU VPs can be configured using either VPCLASS CPU or the old parameters
NUMCPUVPS and so on. However, CPU VPs cannot be configured by mixing
both formats.
AIO VPs can be configured with VPCLASS AIO or the old parameter
NUMAIOVPS. However, AIO VPs cannot be configured with both formats.
19572 oninit: VPCLASS VPCLASS_name number of VPs is out of the range 0 to 10000.
The initial number of VPs specified by a VPCLASS parameter line must be in
the range 0 to 10,000. Correct the onconfig file and restart oninit.
19573 oninit: VPCLASS VPCLASS_name maximum number of VPs is out of the range
1-10000.
19574 oninit: VPCLASS VPCLASS_name number of VPs is greater than the maximum
specified.
One of the options for a VPCLASS parameter is illegal. Check the INFORMIX-
Universal Server Administrator’s Guide for legal values. Correct the onconfig
file and restart oninit.
19813 Cannot add CRCOLS when the table already has replication shadow columns.
The specified table was created with the WITH CRCOLS clause and therefore
already has the replication shadow columns defined. You cannot alter this
table to add CRCOLS to it.
19814 Cannot drop CRCOLS when table does not have replication shadow columns.
The specified table was not created with the WITH CRCOLS clause, or it has
not been altered to include the CRCOLS. You cannot alter this table and drop
the CRCOLS because these columns do not exist on this table.
You have specified inadequate block size for the tape device in your onload
or onunload command. Make the block size larger than the size (in kilobytes)
that the accompanying error message indicates. The onload and onunload
utilities require a block-size parameter with a minimum value of 4 for
2-kilobyte-page machines or 8 for 4-kilobyte-page machines.
You entered an incorrect serial number or serial-number key while you were
running the Informix client/server product installation script. Obtain the
proper serial number and key, and reinstall your Informix client/server
product.
25502 The sqlexecd daemon cannot execute the fork system call.
The sqlexecd daemon does not support your network connections. Check
that you specified the correct database or database server in the DBPATH
environment variable. Consult your system administrator about
INFORMIX-NET licensing issues.
Check that you correctly installed the TCP/IP network. Check for
malfunctions in the TCP/IP network.
Enter your request again. If the problem persists, refer to your system manual
for more information.
Check that you correctly installed the TCP/IP network. Check for
malfunctions in the TCP/IP network.
Tell your database administrator to examine the sqlhosts file entry. Check
that the NETTYPE settings in the ONCONFIG file match the NETTYPE settings
in the sqlhosts file.
If you are using the TCP/IP protocol, check that the correct service name
appears in the /etc/services file. If you are using NFS, use ypmake to check the
/etc/services file. Sometimes the daemon does not recognize service names
that are added after a default boot.
25510 execv could not start the database engine server-name, system errno
error number.
Enter your request again. If the problem persists, refer to your system manual
for more information.
25511 The sqlexecd daemon could not receive data from client.
Check that you correctly installed the TCP/IP network. Check for
malfunctions in the TCP/IP network.
Check that you can access the requested database server program.
Refer to your Informix product manuals. Check the version information that
is associated with your Informix client/server products to verify
compatibility between those products.
Enter your request again. If the problem persists, refer to your system manual
for more information.
Enter your request again. If the problem persists, refer to your system manual
for more information.
Enter your request again. If the problem persists, refer to your system manual
for more information.
Enter your request again. If the problem persists, refer to your system manual
for more information.
The sqlexecd daemon process attempted to use the same service number that
is allocated to another running process. Check that the system administrator
does not need to use the running sqlexecd process. Then kill the sqlexecd
process, and start a new one. Or add a new entry to the /etc/services file, and
start a daemon for the service using the new service number. Refer to your
system manual for more information.
Enter your request again. If the problem persists, run your network
diagnostics to determine the source of the problem.
Check that you correctly installed your network hardware and software.
Check for malfunctions in the network.
Check that you requested a valid host name. Verify that the /etc/hosts file
contains the requested host-name entry.
25530 The sqlexecd daemon cannot bind to the required port address.
Enter your request again. If the problem persists, refer to your system manual
for more information.
Enter your request again. If the problem persists, refer to your system manual
for more information.
Enter your request again. If the problem persists, refer to your system manual
for more information.
Check that you correctly installed your TCP/IP or StarGROUP network. Check
for malfunctions in the network.
Examine the /etc/services file to verify that the requested service name exists.
Also check that the /etc/services file specifies the correct protocol and/or port
number.
Check that you requested a valid server name. Examine the /etc/hosts file to
verify that you correctly defined the requested server name, client address,
and host names.
25545 The sqlexecd daemon cannot advertise the specified service name.
You are starting the sqlexecd daemon on a system that is running portable
INFORMIX-OnLine for NetWare with IPX/SPX as the network protocol, but the
daemon is unable to advertise the service name for the database server on the
INFORMIX-OnLine for NetWare network. Possibly another sqlexecd daemon is
already using the same service name, a recently stopped sqlexecd daemon
with the same service name was unable to de-advertise its service, or the
portable INFORMIX-OnLine for NetWare software on your system is down.
The service name of each database server must be unique across the entire
INFORMIX-OnLine for NetWare network. The default service name is sqlexec.
If another sqlexecd daemon or database server on the network already uses
the name, use a different service name to start the sqlexecd daemon. You can
explicitly specify a service name as a parameter in the sqlexecd command
line.
The SQL statement has executed successfully, but the EDA client or server
issued a warning. The EDA_warning field contains the warning information.
The format of the EDA_warning field is the same as for the EDA_Error field that
is described for error message -29060.
The program cannot open the license file. It first tries to open the file that the
user specified in LM_LICENSE_FILE. If you have not set this environment
variable, the program tries to open the license file in the default location
$INFORMIXDIR/etc/ifmxld.dat. If you intend to use LM_LICENSE_FILE,
check that you have set your license-file pathname correctly in that file.
This error occurs if the feature name, daemon name, or server name exceeds
the maximum length allowed, or if the feature line is incomplete. If you have
edited the license file after installation, check that you did not make a
mistake. The maximum length for the server name is 32 characters. The
feature name, daemon name, and feature lines are generated automatically
during installation.
If you edited the license file after installation, check that you did not make a
mistake. This error occurs if the daemon name specified in the license-file
feature line does not match the vendor-daemon name or if the attempt to
connect the vendor daemon on all server nodes was unsuccessful. Check that
the daemons on all license servers are still running and that the network is
working properly.
32703 Licensed number of users already reached. Check the daemon log.
The feature could not be found in the license file. Be sure that the license file
contains the feature line for the product that you are trying to use and that
the product is properly licensed.
Check the license file in use to ensure that the TCP/IP port number on the
server line or lines is valid. If the TCP/IP port number is not valid, modify the
license file to use a valid one.
This error indicates that the code in a license-file line does not match the other
data in the license file. This error usually occurs when all the software
components are not built with the same encryption code. Check
create_license.c, ls_vendor.c, and your application code carefully to make
sure that they have the same vendor code. Do not modify the encryption code
in the license file after it has been generated during installation.
This error occurs when the host ID specified in the license file does not match
the node on which the software is running.
The present date exceeds the expiration date of the feature in the license file.
Decide if you want to change from an evaluation version to a regular version
of this Informix product, and contact Informix for the procedure that you
need.
Check that the date field in the license file is in the format dd-mmm-yyyy
where dd is two digits for the day, mmm is three letters for the month, and
yyyy is four digits for the year. The installation procedure generates these
dates. If you did not modify the license file on those fields, report this
problem, along with the output of the license file, to the Informix Technical
Support Department.
Be sure that no other services use the port numbers on the server lines. Check
with your system administrator to ensure that the network is functioning
properly. Check the license-daemon-server log for all error messages.
No server line exists in the license file. All nonzero license-count features
need at least one server line.
Be sure that the daemons in all license servers are running. Check the daemon
log for any error message.
The feature has expired or has not yet started, or the version of the product
you are attempting to use is not the licensed version. Check that the license
files in both the license-daemon servers and the computer that is running this
Informix-licensed product are set up properly.
Be sure that the version of the product that you are attempting to use is
licensed. Check the license file to ensure that the version of the desired
product on the feature line is the same as or later than the version that you
want to use.
The check-in request did not receive a proper reply from the vendor daemon.
(The license might still be considered in use.) Check the daemon log output
to see if there are any more error messages. If the error recurs, please note all
circumstances and contact the Informix Technical Support Department.
32721 License daemon server does not support this version of this feature.
The version that you are attempting to use is more recent than the version for
which you are licensed. Check the feature line in the license file to ensure that
the version of the desired product is the same as or later than the version that
you are trying to use.
A checkout request was made for more licenses than are supported in the
license file. Be sure that you did not make a change to the license checkout
request to check out more licenses than it is capable of handling. Check out
only one license for each request.
Be sure that the license file has the correct read permission.
The runtime-feature data structures of the daemon are corrupt. This internal
daemon error indicates that a serious problem exists. If the error recurs,
please note all circumstances and contact the Informix Technical Support
Department.
The malloc() call failed to return sufficient memory. This error can occur
while reading the features from the license file (especially if the user has set
an extremely long LM_LICENSE_FILE path). Check with your system
administrator to ensure that the system is working properly.
The program that you have started cannot locate the Informix error message
file. The INFORMIXDIR environment variable is probably not set properly.
INFORMIXDIR points to the directory that contains the msg directory where
message files are stored.
The onspaces command that you used to create the external space was
successful.
The server could not add the external space. Check the error returned with
this failure.
The onspaces command that you used to drop the external space was
successful.
An attempt to drop the external space failed. Check the error associated with
this failure.
The reference count for this external space was not 0. Check the reference
count for the external space before you attempt to drop the space.
Unknown argument passed to onmode. Retry with the correct argument list.
Remove SQLCODE from the SQL statement and/or remove IN from the
parameter list. SQLCODE is an out parameter only.
35202 SQLCODE parameter must be declared with type SQLCODE_TYPE.
An invalid argument was passed while you were attempting to create a table.
If this internal error recurs, please note all circumstances and contact the
Informix Technical Support Department.
The table has not been created or was deleted. If this internal error recurs,
please note all circumstances and contact the Informix Technical Support
Department.
Table entries with the same key are not allowed. If this internal error recurs,
please note all circumstances and contact the Informix Technical Support
Department.
Table is full and cannot be extended. If this internal error recurs, please note
all circumstances and contact the Informix Technical Support Department.
Entry of a table is already locked (not yet used). If this internal error recurs,
please note all circumstances and contact the Informix Technical Support
Department.
Table is already locked (not yet used). If this internal error recurs, please note
all circumstances and contact the Informix Technical Support Department.
The required entry does not exist. If this internal error recurs, please note all
circumstances and contact the Informix Technical Support Department.
When you run the server in developer mode (not suid to root), this message
is a reminder that the number of file descriptors available to the server is now
limited by the shell from which the server is initialized. File descriptors are
needed for accessing chunks and making network connections. If the server
runs out of file descriptors, you need to choose among the following
solutions: limit the number of connections, limit the number of chunks used,
or run as root.
35590 You do not have the correct permission to run the database server without the
-U option.
The user was not root or informix and was not in the group informix. The
only way to run the server without permissions is with the -U option.
You are attempting to boot the database server but are not the owner. Try
again after you log in as the correct user.
You attempted to run onstat or onmode against a server that you do not own.
You have specified an invalid pathname. Check your entry and try again.
You have specified an invalid filename. Check your entry and try again.
You do not have read permission for the specified file. Check the permissions
and try again.
The specified file cannot be created. Check the path and directory
permissions and try again.
The set_msg function has exceeded the allocated storage in the error buffer.
If the error recurs, please note all circumstances and contact the Informix
Technical Support Department.
You have entered a serial number that is not valid. Check the installation
instructions for your product and try again.
Your add command for onaudit is incomplete; you did not specify a user
name. Check the usage information and try again.
Your modify command for onaudit is incomplete; you did not specify a user
name. Check the usage information and try again.
Your command line for onaudit has incorrect or incomplete syntax. You have
specified an unknown option. Check the usage information and try again.
Your command line for onaudit has incorrect or incomplete syntax. Actions
must be the first argument. Check the usage information and try again.
Your command line for onaudit has incorrect or incomplete syntax. You have
not included a required argument with an option. Check the usage
information and try again.
Your command line for onaudit has incorrect or incomplete syntax. You have
specified more than two event sets. Check the usage information and try
again.
The mask that was defined in a load file already exists. Either edit the load
file or delete the existing definition.
The -O option is not implemented for this platform. Delete it from the
command and try again.
The audit trail traversal contains a parsing error. Check the path and
directory permissions and try again.
The database server could not overwrite an existing audit-trail file. This
message might appear when the INFORMIX-OnLine Dynamic Server comes
up and ADTPATH holds old audit data. Remove all old audit trails.
The database server could not open the next audit file because the call to
aio_fopen() failed. Check that ADTPATH points to a valid directory to which
the user or group informix can write.
The database server could not open the next audit file because the call to
aio_fopen() failed. Check that the ADTPATH points to a valid directory to
which the user or group informix can write.
The database server could not write the current audit record to the audit-trail
file. Check that ADTPATH points to a valid directory to which the user or
group informix can write and that space is available. Also, check the
directory and audit-trail file permissions.
The ONCONFIG file contains a bad parameter. Fix the ONCONFIG file so that
the parameter is 0/1.
An insert into this table cannot occur without the specified data. Verify that
the required data exists before you attempt another insert in this table.
Attempt to build a WHERE clause for the specified query failed. Verify that
the data needed to create the WHERE clause exists.
Updating the primary key for a table is not allowed. Delete the row and then
insert a new row with the new primary key.
The database server is in an incorrect state. Bring the database server to the
correct state. For a backup, the database server should be in on-line or
quiescent mode. For a warm restore, the database server should be in on-line,
quiescent, backup, or recovery mode. For a cold restore, the database server
should be off-line. Use the onmode or oninit commands.
Only users root and informix and are allowed to execute ON-Bar. Log in as
root or informix before you attempt the backup, restore, or database logging
mode change.
Only users listed in the Informix-Admin Group can execute ON-Bar. Ask
your system administrator to add your user name to the Informix-Admin
Group.
43039 Version version_number of the XBSA shared library is not compatible with
version version_number of ON-Bar.
Either Informix has not certified the XBSA shared library that the Storage
Management Vendor provides, or an error occurred during installation of
ON-Bar. Verify that ON-Bar was installed properly. Verify that the XBSA
library is certified.
The user wants to stop the restore at a logical log that is too early. A dbspace
or blobspace backup occurred after the log that the user specified. Retry the
restore up to the specified logical log or later.
The user wants to stop the restore at a logical log that is too early. A dbspace
or blobspace backup occurred after the log that the user specified. Retry the
restore up to the specified logical log or later.
The account under which you are logged on might not be a member of the
Informix-Admin group. Contact your Windows NT system administrator.
If you are sure that you want to initialize the OnLine root dbspace
completely, start OnLine Dynamic Server with the -iy option instead.
First, check access rights to path segments that lead to dbssodir, and aaodir.
If %INFORMIXDIR% is on a network drive, make sure the oninit process
privileges are not altered. In addition, make sure that the AAO and DBSSO
group names in the following registry are valid:
HKEY_LOCAL_MACHINE\SOFTWARE\Informix\OnLine\CurrentVersion\Security
71565 The root dbspace is not large enough for the specified configuration. The
actual size is xxx pages, and the required size is yyy pages.
Try to free some space on the drive that contains the root dbspace and re-
initialize OnLine Dynamic Server.
71566 The value specified for TAPEDEV or LTAPEDEV in the ONCONFIG file is
invalid.
Specify a valid value for TAPEDEV and/or LTAPEDEV. For specific infor-
mation about setting configuration parameters, see the administrator’s
manual for your database server.
71567 OnLine failed to start in Recovery Mode. Check Event Log for errors.
Check the Event Log for errors from OnLine and correct them.
71568 oninit: DBSERVERNAME ‘servername’ not found under SQLHOSTS key in the
Registry.
Add key into the Registry. For more information, refer to the administrator’s
manual for your database server.
Check the Registry settings for INFORMIXSERVER under the SQLHOSTS key.
71570 System() command in Stored Procedure cannot be executed because user did
not log on with a password.
The buffer size allocated for the error message is not sufficient. If the error
recurs, please note all circumstances and contact Informix Technical Support.
-1 Not owner.
-3 No such process.
-5 I/O error.
-10 No children.
Your application could not start a database server process or could not create
a process that some subordinate function such as a REPORT TO pipe or a
network-access program needed. This error probably reflects a limit that was
configured in your operating system. Look for other operating-system error
messages that might give more information.
Your application was unable to start a database server process or was unable
to create a process that was needed for some subordinate function such as a
REPORT TO pipe or a network-access program. This error probably reflects a
limit configured in your operating system. Look for other operating-system
error messages that might give more information.
-100 ISAM error: duplicate value for a record with unique key.
A row that was to be inserted or updated has a key value that already exists
in its index. For C-ISAM programs, a duplicate value was presented in the last
call to iswrite, isrewrite, isrewcurr, or isaddindex. Review the program logic
and the input data. For SQL products, a duplicate key value was used in the
last INSERT or UPDATE.
The ISAM processor has been asked to use an unopened file (table). For
C-ISAM programs, the program has tried to use a file before opening it with
a call to isopen or has tried to write to a file that was opened in read-only
mode. If the error recurs, please refer to the INFORMIX-OnLine Dynamic Server
Administrator’s Guide, Appendix B, "Trapping Errors," to acquire additional
diagnostics. Contact Informix Technical Support with the diagnostic
information.
A parameter that was presented to one of the C-ISAM functions is outside the
range of acceptable values. For C-ISAM programs, review the parameters that
were used in this function call, and compare them to the documentation for
the function. If the error recurs, please refer to the INFORMIX-OnLine Dynamic
Server Administrator’s Guide, Appendix B, "Trapping Errors," to acquire
additional diagnostics. Contact Informix Technical Support with the
diagnostic information.
-103 ISAM error: illegal key descriptor (too many parts or too long).
The ISAM processor has been given an invalid key descriptor. For C-ISAM
programs, review the key descriptor. Each key descriptor has a maximum of
8 parts and 120 characters. If the error recurs, please refer to the
INFORMIX-OnLine Dynamic Server Administrator’s Guide, Appendix B,
"Trapping Errors," to acquire additional diagnostics. Contact Informix
Technical Support with the diagnostic information.
The ISAM processor has reached its limit of open files. For C-ISAM programs,
review the program logic and change it so that fewer files are open
concurrently. Use isclose to close unneeded files. For SQL products, this
query is too complex; it uses too many tables concurrently. Perform the query
in steps, and use temporary tables.
The contents of an ISAM file (table or index) have been corrupted. For C-ISAM,
if you used transaction logging, you can use the isrecover program to recover
the file. Otherwise, re-create the file or restore it from backup. For SQL
products, use the bcheck or secheck utility to get more information on the
problem and possibly correct it (use tbcheck with the INFORMIX-OnLine
database server or oncheck with INFORMIX-OnLine Dynamic Server). If the
utility cannot recover the table or index, you will have to re-create or
restore it.
The ISAM processor has been asked to add or drop an index but it does not
have exclusive access. For C-ISAM programs, the file must be opened with
exclusive access before you perform this operation. Review the program
logic, and make sure that it opens this file by passing the ISEXCLLOCK flag to
isopen. For SQL products, INFORMIX-OnLine Dynamic Server or the
INFORMIX-SE database server return this error when an exclusive lock is
required on a table. For example, this error appears when a second user tries
to alter a table that the first user has locked.
Another user request has locked the record that you requested or the file
(table) that contains it. This condition is normally transient. A program can
recover by rolling back the current transaction, waiting a short time, and
re-executing the operation. For interactive SQL, redo the operation. For
C-ISAM programs, review the program logic and make sure that it can handle
this case, which is a normal event in multiprogramming systems. You can
obtain exclusive access to a table by passing the ISEXCLLOCK flag to isopen.
For SQL programs, review the program logic and make sure that it can handle
this case, which is a normal event in multiprogramming systems. The
simplest way to handle this error is to use the statement SET LOCK MODE TO
WAIT. For bulk updates, see the LOCK TABLE statement and the EXCLUSIVE
clause of the DATABASE statement.
The ISAM processor has been asked to create an index that already exists. For
C-ISAM programs, review the program logic. The program must delete this
existing index before it defines another. If the error recurs, please note all
circumstances and contact the Informix Technical Support Department.
The ISAM processor has been asked to delete the primary key index. For
C-ISAM programs, the isdelindex call cannot delete the primary key. If the
error recurs, please note all circumstances and contact the Informix Technical
Support Department.
The ISAM processor cannot locate the requested record. For C-ISAM
programs, no record was found with the requested index value or record
number, depending on the retrieval mode in use. Make sure that the correct
index is in use. For SQL products, see the SQL error message or return code.
Probably no row was found for this query.
The ISAM processor has been asked to return the current record, but none has
been established. For C-ISAM programs, review the program logic. Before the
program uses the ISCURR retrieval mode, it must use another retrieval mode,
such as ISFIRST, to establish a current record. If the error recurs, please note
all circumstances and contact the Informix Technical Support Department.
Another user request has opened the file (table) that was requested in
exclusive mode. In systems that use files for locking, a tablename.lok file
exists. Possibly such a file was left behind when another program terminated
abnormally. If you are sure that is the case, you can release the lock by
emptying that file. Lock files are not used in many systems, and they are
never used with INFORMIX-OnLine Dynamic Server.
For C-ISAM programs, rerun the program after the file has been unlocked. For
SQL products, tables are locked explicitly using the LOCK TABLE statement
and implicitly during the execution of the CREATE INDEX and ALTER TABLE
statements. Rerun the program or query when the table has been unlocked.
The ISAM processor has been asked to open or create a file with a filename
longer than 10 characters. For C-ISAM programs, this length exceeds the
maximum for the product. Choose a shorter filename. If the error recurs,
please note all circumstances and contact the Informix Technical Support
Department.
The ISAM processor has been asked to access a file or row using locking.
Because this operating system uses files for locking, ISAM must create a
tablename.lok file. When it tried to do so, it received an error code from the
operating system. The disk might be full, or your account might not have
write permission in the relevant directory. Look for operating-system error
messages that might give more information.
The ISAM processor needed to allocate memory for data storage but was
unable to do so. A problem may exist in the operating system; look for
operating-system error messages that might give more information. One
cause of this error might be selecting a row that contains large BYTE or TEXT
columns into a temporary table or as part of an INSERT or UPDATE. In some
releases, an entire row that includes BLOB values is buffered in memory. For
C-ISAM programs, review the program to look for ways that it can use less
memory. For SQL products, simplify the program, form, or report if possible.
No current Informix product displays this message. If the error recurs, please
note all circumstances and contact the Informix Technical Support
Department.
The ISAM processor is trying to roll back a transaction or recover a file but has
encountered an error while reading the transaction log. Look for
operating-system error messages that might give more information. Use the
dblog or selog utility to get more information about the problem. If the file
(table) cannot be recovered, you will have to re-create it or restore it from
backup.
The ISAM processor is trying to roll back a transaction or recover a file but has
encountered bad data in a transaction log record. The dblog or selog utility
can be used to get more information about the problem. If the file (table)
cannot be recovered, you will have to re-create it or restore it from backup.
The ISAM processor is trying to open the transaction log file but has received
an error from the operating system. Look for operating-system error
messages that might give more information. For C-ISAM programs, review
the parameter passed to islogopen. Make sure that it specifies the correct
filename of an existing, writable log file and that it includes a path if the file
is not in the current directory. For SQL products, the START DATABASE
statement establishes the transaction log file. Make sure that the log file still
exists in the same directory location as when START DATABASE was issued
and that your account has write access to it.
The ISAM processor is trying to add a record to the transaction log but has
received an error from the operating system. The disk might be full. Look for
operating-system error messages that might give more information. The
transaction-log file can grow quite large. To reduce its size, you must do two
things. First, make a backup copy of the data file (for C-ISAM) or all database
files (for SQL). Second, make the transaction-log file an empty file. If you
perform these steps routinely, you can control the size of the log file.
The ISAM processor has been asked to mark the start or end of a transaction,
but transaction logging is not in effect. For C-ISAM programs, this file was not
opened with logging. Review the calls to isopen, and make sure that the
ISTRANS parameter is included. For SQL products, this database does not
support transaction logging. If you are using the OnLine database server,
have the OnLine administrator enable logging for this database. Otherwise,
use the START DATABASE statement to begin transaction logging. In all cases,
logging should only start immediately after the database has been fully
backed up.
The ISAM processor has been asked to mark the end of a transaction, but no
transaction has been started. FOR C-ISAM programs, review the program
logic to make sure that it calls isbegin before it calls iscommit or isrollback.
For SQL products, make sure that you execute BEGIN WORK before COMMIT
WORK or ROLLBACK WORK.
The ISAM processor has been asked to open a file that is located on a disk
attached to another computer and that is accessed using the Network File
System (NFS). This action is not supported. Database files must be on disks
that are physically attached to the computer on which the ISAM processor is
running. To use a database on a different computer, you must install the
INFORMIX-STAR or INFORMIX-NET networking software. Then an
application on this computer can communicate with a database server that is
running on the computer to which the disks are attached.
The ISAM processor was asked to retrieve a row by its physical location but
could not find a row at that location. For C-ISAM programs, if you are using
access by record number, review the number stored in isrecnum; it is invalid.
Otherwise, the current index may be damaged; run the bcheck or secheck
utility. For SQL products, the index has been damaged; run the bcheck or
secheck utility to check and repair it if you are using the INFORMIX-SE
database server. Run tbcheck if you are using the INFORMIX-OnLine
database server, or run oncheck if you are using INFORMIX-OnLine Dynamic
Server.
The ISAM processor was called for a function that requires a unique
primary-key index, but no such index exists for this file. For C-ISAM
programs, review the design of the data file; it was created with a zero-part
primary index (that is, for retrieval by record-number sequence). If that is not
the case, the index might be damaged; run the bcheck or secheck utility. If
the error recurs, please note all circumstances and contact the Informix
Technical Support Department.
The ISAM processor was called for a function that requires a transaction log,
but none exists for this file. For C-ISAM programs, review the creation of the
data file. Before the program uses functions such as isbegin, it must set up a
log using islogopen. For SQL products, this database does not support
transaction logging. If you are using the OnLine database server, have the
OnLine administrator enable logging for this database. Otherwise, use the
START DATABASE statement to begin transaction logging. In all cases, start
logging only immediately after the database has been fully backed up.
This implementation of ISAM uses shared memory, and it has reached the
maximum number of concurrent users for which the shared memory was
configured. You might need to increase the value of the USERTHREADS and
TRANSACTIONS configuration parameters in the ONCONFIG file. If the
problem recurs, contact the system administrator or the person who installed
the product.
The word users can be misleading; the limit is on the number of concurrent
application programs using the database server. It is possible for one user to
start multiple applications at the same time. For example, when a user starts
the INFORMIX-4GL Programmer's Environment, it opens a session with the
database server. When that user issues a command to compile a 4GL
program, the 4GL compiler starts and also opens a session with the database
server. During a compile, this user has two sessions running.
This code indicates one of two problems. The most likely problem is that this
operation specifies a dbspace by name (for example, in the IN clause of a
CREATE TABLE statement or in the DBSPACETEMP environment variable
setting), but that name has not been defined. You can run the tbstat or onstat
utility with the -d option to see the names of defined dbspaces. Ask the
OnLine administrator about creating a new dbspace.
If the operation does not explicitly name a dbspace, or if the name is correct,
the problem might be more serious. The error might reflect corruption of
reserved pages in the root dbspace. Use the tbcheck or oncheck utility with
the -cr option to check for this condition.
Not enough contiguous free disk space is available to complete the current
operation. For C-ISAM programs, if transaction logging is in use, roll back the
current transaction. Make some disk space available, and run the program
again. For SQL products, roll back the current transaction, if possible. Contact
the system administrator about acquiring more disk space for databases.
The limit on a single row is the disk page size that OnLine supports. Define
the table differently, so that each row is shorter. Consider splitting the table
into two or more tables or using more compact data types.
The ISAM processor has been asked to operate on a file in a way that is
incompatible with an audit trail, yet an audit trail exists for the file. For
C-ISAM programs, you cannot call iscluster while an audit trail exists. First
call isaudit with the AUDSTOP mode. For SQL products, you cannot create a
clustered index on a table while it has an audit trail. First use the DROP AUDIT
statement to drop the audit trail.
The ISAM processor needs to lock a row or an index page, but no locks are
available. The number of locks that an operation requires depends primarily
on the number of rows that a single transaction modifies. You can reduce the
number of locks that an operation needs by doing less in each transaction or
by locking entire tables instead of locking rows. Depending on the
implementation that you are using, the number of locks that is available is
configured in one of three places: the operating-system kernel, the
shared-memory segment, or OnLine. Consult your OnLine administrator
about making more locks available.
The OnLine database server needs to add an extent to a table but cannot do
so. Either not enough disk space is available in the dbspace, or the table has
been given the maximum number of extents that is allowed. The OnLine
administrator can determine the cause as follows:
1. Determine the tblspace number for the table. It is the value in the
partnum column of the systables table for this table.
2. Convert the tblspace number to hexadecimal and extract its
most-significant 2 digits (the high-order byte). This chunk number
indicates where the table resides.
3. Use the tbstat or onstat utility -t option to find out disk usage for this
table. Note particularly the values reported for npages (disk pages
available), nused (disk pages used), and nextns (number of extents).
If nused is less than npages, and nextns is large (over 200), the table has too
many extents. The upper limit of extents per table is between 200 and 50. The
limit varies with the table definition and the disk-page size in use. Reallocate
the table using fewer, larger extents. Unload the table data to a flat file. Drop
the table. Re-create the table, specifying a first-extent size sufficient to hold
all its current data and a next-extent size between one-fourth and
one-sixteenth its current size. Then reload the data into the table.
If nextns is small or the difference between npages and nused is less than the
size of the next-extent size for the table, not enough disk space is available in
the dbspace where the table resides. Use the chunk number from step 2 and
the ON-Monitor or ON-Monitor Chunks display to determine the dbspace,
then add a new chunk to that dbspace.
The OnLine administrator sees this error message. The OnLine database
server is configured to handle a certain number of disk chunks. The limit has
been reached, so a chunk could not be added. Increase the CHUNKS
parameter of the TBCONFIG or ONCONFIG file, and initialize shared memory.
The OnLine administrator sees this error message. The OnLine database
server is configured to handle a certain number of dbspaces. The limit has
been reached, so a dbspace could not be added. Increase the DBSPACES
parameter of the TBCONFIG or ONCONFIG file, and initialize shared memory.
The OnLine administrator sees this error. The OnLine database server is
configured to handle a certain number of logical logs. The limit has been
reached, so a log could not be added. Increase the LOGSMAX parameter of the
TBCONFIG or ONCONFIG file and initialize shared memory.
This error occurs only in the VMS operating system. An internal error has
occurred while initializing shared memory. If the error recurs, please note all
circumstances and contact the Informix Technical Support Department.
An internal error (probably obsolete) occurred. If the error recurs, please note
all circumstances and contact the Informix Technical Support Department.
The current operation inserts a row with a certain primary key value or
updates a row with a certain primary key value, but a transaction that has not
yet been committed has deleted that key value from the index. This error
occurs only when the lock mode is set to NOT WAIT. Treat it the same as error
-107 (record is locked). Roll back the current transaction, and re-execute it
after a delay. Then, if the other transaction was committed, the lock no longer
exists. If it was rolled back, the key exists, and this operation receives a
duplicate-key error.
The OnLine administrator sees this error. This OnLine system has not been
initialized to support disk mirroring. Before you can add a mirror chunk, you
must reinitialize the Initial Disk Parameters selection to show Y in the field
labelled Mirror. This action incorporates disk-mirror support.
-146 ISAM error: the other copy of this disk is currently disabled or non-existent.
The OnLine administrator sees this error. You must bring the other chunk of
this mirror pair to on-line status before you can take this chunk off line.
The OnLine administrator sees this error. The action that you have requested
cannot be carried out while an archive is being made. For example, you
cannot add a log or a mirror during archiving. Cancel the archive, or wait
until it is complete, and then reissue the command.
The OnLine administrator sees this error. You cannot remove a dbspace until
all tables that are in it have been dropped. To find the names of remaining
tables, use the tbcheck or oncheck utility with the -pe option; its report lists
tables by chunk within dbspaces.
-150 The limits of the INFORMIX Demo Version have been exceeded.
You are using a demonstration version of the database server. This version
has severe limits on the number of tables and the size of the tables that it can
manage. The current operation causes it to exceed one of those limits. Contact
your Informix representative about buying the production version of the
software.
This internal error occurs when the leading byte in a VARCHAR column on
disk indicates a VARCHAR length greater than the column was defined to
hold when the column was created. If the error recurs, please refer to the
INFORMIX-OnLine Dynamic Server Administrator’s Guide, Appendix B,
"Trapping Errors," to acquire additional diagnostics. Contact Informix
Technical Support with the diagnostic information.
-152 ISAM error: Illegal message type received from remote process.
This internal error should not occur. Note all the details about the network
software in use and the version level of the database servers in this and the
other host system. If the error recurs, please note all circumstances and
contact the Informix Technical Support Department.
The ISAM processor has been asked to lock or unlock the current file (table),
but the file was not opened in the appropriate mode. For C-ISAM programs,
review the uses of isopen, and make sure that the ISMANULOCK flag is
passed when the program opens a table for manual locking. If the error
recurs, please note all circumstances and contact the Informix Technical
Support Department.
This code is also returned when an explicit wait time limit expires; that is, if
you have SET LOCK MODE TO WAIT 3, and your request is queued for more
than 3 seconds for a lock, the operation ends with this ISAM error code.
The primary chunk (and the mirror chunk, if one exists) are unusable. Roll
back the current transaction and terminate the application. Contact the
OnLine administrator. New disk chunks must be defined, and then the
system must be restored from tape.
An interrupt that was detected from client process has terminated the
operation. Restart the operation.
You are attempting to use a collation sequence that is either not supported or
does not match the sequence originally used to create the ISAM file. Use
islanginfo() to determine the language of the ISAM file.
-160 ISAM error: only one blob may be open at any time.
This internal error should not occur. The database server has called the blob
manager isbopen twice in a row. If the error recurs, please note all
circumstances and contact the Informix Technical Support Department.
This internal error should not occur. The database server has called a blob
manager function without first calling isbopen. If the error recurs, please
note all circumstances and contact the Informix Technical Support
Department.
The most likely cause of this error is that the current statement attempts to
define a BYTE or TEXT column using the clause IN blobspace, but no blobspace
of that name has been defined. However, if the blobspace was correctly
spelled and should exist, a reserved page in the root dbspace might have
been corrupted. In that case, the OnLine administrator should run the
tbcheck or oncheck utility with the -cr option to check the situation. If the
statement makes no reference to blob columns, possibly the root dbspace is
full or corrupted; contact the OnLine administrator for further help.
-163 ISAM error: begin and end page stamps are different.
This operation has returned an invalid BYTE or TEXT value. Possibly the data
pages have been corrupted. Roll back the current transaction. Have the
OnLine administrator run tbcheck or oncheck with the -D option to get more
information about the problem.
When a program uses Committed Read isolation, it does not see a row that
has been marked for deletion; however, no lock is placed on a row that is not
read for update. BYTE or TEXT data is read in a second step, after the row has
been fetched. During this lengthy step, it is possible for another program to
delete the row and commit the deletion and for the blobspace to be reused.
To determine if this has occurred, the program should stop processing the
BYTE or TEXT value and reread the row. If the program can no longer read the
non-blob values in the row, the row has been deleted. If the program can still
read the row, the blobspace is corrupted.
This internal error should not occur. The database server has called the blob
manager isbcreate function for a table column that is not defined as BYTE or
TEXT. If the error recurs, please note all circumstances and contact the
Informix Technical Support Department.
When BYTE and TEXT values are deleted or replaced, the pages that they
occupy in the blobspace do not become available for reuse until the logical
log in which that transaction appears has been freed. A logical log has been
freed if the log is backed up to tape and all transactions in the log are closed.
The OnLine administrator sees this error. When you define a blobspace, you
must specify a page size that is an integral multiple of the system page size.
The system page size is set in the Parameters screen when OnLine is first
initialized.
-169 ISAM error: BLOB pages can't be allocated from a chunk until chunk add is
logged.
When a blobspace has been extended by adding a new chunk, no pages can
be allocated until the log record showing the addition of the chunk has been
logged. If this rule were not enforced, certain anomalies could occur during
recovery. You do not have to wait until the log is full; you can run the tbmode
or onmode utility with the -l option to force a switch to the next log.
You attempted to add a log to a blobspace. You can add logs only to
dbspaces.
If you are migrating files from a platform that uses another index-node size,
you must run the bcheck or secheck utility with the -s option against all of
the ISAM files (.dat and .idx) to resize the index nodes.
-173 ISAM error: An error has occurred during logical log back up.
This generic message indicates that the logical-log backup has failed. The SQL
API also contains useful error text that is associated with this error.
-174 ISAM error: An error has occurred during archive back up.
This generic message indicates that the archive backup has failed. The SQL
API also contains useful error text that is associated with this error.
This generic message indicates that the physical restore has failed. The SQL
API also contains useful error text that is associated with this error.
This generic error indicates that the logical restore has failed. The SQL API also
contains useful error text that is associated with this error.
A request has been made to change the logging status of a database. Until a
level-0 archive is done for all the dbspaces and blobspaces that the database
uses, access to the database is blocked.
While performing a sort, OnLine did not find enough contiguous free disk
space to create necessary temporary files. You might have insufficient disk
space and need to make more disk space available before you run the
program again. You might have made an error when you specified the names
of temporary dbspaces in DBSPACETEMP or directory names in
PSORT_DBTEMP. Check the spelling of your temporary space names as
specified in DBSPACETEMP. If you specified multiple temporary dbspaces,
check that you used colons (:) or commas (,) as delimiters.
The Optical subsystem is not present. This message usually means that you
requested an Optical operation on an INFORMIX-OnLine Dynamic Server that
is being used without the INFORMIX-OnLine/Optical configuration.
A blobspace has been defined with the same name as an Optical family name.
No more slots are available in the transaction table. To see this table, run
onstat with the -x option.
Logical recovery cannot roll forward a chunk add because the chunk already
exists. This error results when the chunk is dropped from a dbspace or
blobspace, or the space is dropped, and the chunk is reused for another
dbspace or blobspace without a level-0 backup performed first.
-197 ISAM error: Partition recently appended to; can't open for write or logging.
If this internal error recurs, please note all circumstances and contact the
Informix Technical Support Department.
-198 Cannot alter table. Too many in-place alters of the table in progress.
To recover from this error, you must take one of the following steps:
■ Wait until the first in-place alter is complete, and issue another
in-place ALTER TABLE statement.
■ Change the format of the ALTER TABLE statement to request an alter
that does not add columns to the end of the table. Such a statement
will use the older algorithm instead of the in-place alter algorithm.
■ Perform an update of each row in the table to force the outstanding
alters to complete. Because rows are only modified to the latest
schema as they are updated, the only way to force an in-place alter to
complete physically is to update each row in the table. To accomplish
this result, use a dummy update in which a column in the table is set
to its own value. The dummy update forces the row to be updated to
the latest schema in the process without actually changing column
values. Rows are always altered to the latest schema, so a single pass
through the table that updates all rows will complete all outstanding
in-place alters.
-199 Smart Disk Error.
An error has occurred with the Smart Disk system. See the accompanying
message for more information.
Database servers that provide full NIST compliance do not reserve any words;
queries that work with these database servers might fail and return error -201
when they are used with earlier versions of Informix database servers.
-204 An illegal floating point number has been found in the statement.
-205 Cannot use ROWID for views with aggregates, group by or on multiple tables.
The keyword ROWID stands for a virtual column that exists only in simple
tables. This message refers to the ROWID of a table that is actually a view that
is based on a selection involving aggregate functions, grouping, or a join of
two or more tables. Such query products do not have ROWID columns.
Therefore this view does not have a ROWID, even though it appears to be a
table. In order to use ROWID in a query, you have to apply the query to the
tables that underlie the view.
Inspect the names of tables in the statement. If they are spelled as you
intended, check that you are using the database you want. If so, the database
must have been changed. Perhaps the table was renamed or dropped. You
can find out the names of all tables in the database by querying the systables
table.
The cursor that is used in this statement was declared FOR UPDATE but with
a SELECT statement that joins two or more tables. This action is not
supported; the database server does not know how to distribute update
values across multiple tables. If you declared the SELECT statement with the
cursor, modify either it or the FOR UPDATE clause. If a program constructed
the SELECT statement and associated it with the cursor dynamically, the
program should inform its user not to use a multitable SELECT statement in
this application. (This message occurs only with Version 4.0 or earlier.)
When you declare a cursor, you may not use both the INTO clause and the
FOR UPDATE clause. To use this cursor to update selected rows, omit the
INTO clause. Instead, use an INTO clause on the FETCH statement (or in 4GL,
the FOREACH statement).
Try the query again after a delay. If it still fails, consult your system
administrator. If possible, revise your query to join fewer tables, to order or
group on fewer columns, or to operate in two or more separate statements.
On DOS systems, exit to the operating-system command line, free some disk
space or reduce the complexity of your program, and resubmit the program.
In versions later than 5.01, only this error message informs you that the
database server is unable to allocate memory.
An obsolete version of the database software built this database. Convert the
database to work with the current software. Use the dbupdate utility. You
will have to run it before you use the data. (This message is not current since
Version 4.0.)
This statement contains a file pathname that exceeds the maximum length of
64 characters. Inspect the statement to make sure that the pathname really is
that long; possibly a punctuation error has caused other parts of the
statement to be included in the pathname. If not, either relocate the file or
rename some directories along the path with shorter names.
The database server refers to the tables of the system catalog while it
processes most statements. When it cannot read one of these important
tables, a serious error results. Check the accompanying ISAM error code for
more information. The effect of the error depends on the statement that is
being executed and the particular table, as follows:
Other statements may be partially complete before the error is detected. Roll
back the current transaction and then investigate the cause of the error. Use
the bcheck or secheck utility (tbcheck with INFORMIX-OnLine or oncheck
with INFORMIX-OnLine Dynamic Server) to check and repair indexes. If
necessary, restore the database from backup and logical-log tapes.
The database server received an interrupt signal from the user, probably
because the user pressed the interrupt key (usually DELETE or CONTROL-C).
The statement ended early. A program should roll back the current
transaction and terminate gracefully. If the statement could modify a table,
an interactive user should execute the ROLLBACK WORK statement to
remove any partial modifications.
The database server cannot completely remove the table. Check the
accompanying ISAM error code for more information. Problems with
operating-system file permissions, read-only files, or hardware might cause
this error.
The database server cannot open the operating-system file or files in which
the table is stored. Check the accompanying ISAM error code for more
information. Problems with operating-system file permissions, insufficient
memory, or hardware might cause this error.
The database server cannot completely drop an index. Check the accompa-
nying ISAM error code for more information. Problems with operating-
system file permissions, read-only files, or hardware might cause this error.
-217 Column column-name not found in any table in the query (or SLV is
undefined).
The column name appears in the select list or the WHERE clause of this query
but is not defined in the table. Check that the name and the names of the
selected tables are spelled as you intended. If they are spelled correctly, either
you are not using the right database, or the database has been changed.
Possibly a column has been renamed or dropped.
The column name appears in the select list or the WHERE clause of this query
but is not defined in the table. Check that the name and the names of the
selected tables are spelled as you intended. If they are spelled correctly, either
you are not using the right database, or the database has been changed;
possibly a column has been renamed or dropped. To list all the columns in a
table, see the discussion of error -328.
The synonym is not defined in this database. Check that the name is spelled
as you intended. Check that you are using the right database. If so, the
synonym was probably dropped. Possibly it was dropped automatically
when the table for which it stood was dropped. To display all defined
synonyms, query systables as follows:
SELECT tabname FROM systables WHERE tabtype = 's'
Every SELECT statement must include a FROM clause to name the table or
tables that it queries. Check that FROM was spelled and that no extra
semicolon ends the statement prematurely. To select only a constant, or to
select the only value of a function that is unrelated to any table (such as USER
or TODAY), you nevertheless have to name a table. You can select a known
row from a system catalog, as in this example.
SELECT 'today is', TODAY, 'and I am', USER
FROM systables WHERE tabid = 100
The tabid value of the first user-defined table in a database is always 100, so
this query always returns exactly one row if any tables are defined.
(Version 4.1 and later produce syntax error -201 when the FROM clause is
missing.)
Version 4.1 and later can detect this internal error. If the error recurs, please
note all circumstances and contact the Informix Technical Support
Department.
The database server cannot create a temporary disk file. The file should be
created in the directory specified by the DBTEMP environment variable. If
DBTEMP is not defined, the database server searches by default in the root
directory for a subdirectory named tmp in which to create the temporary disk
file. Check the accompanying ISAM error code, and look for operating-system
error messages that might give more information. Possibly your account does
not have write permission in that directory, or the disk might be full. Since
Version 5.01, INFORMIX-SE database server uses the DBTEMP environment
variable, but INFORMIX-OnLine Dynamic Server does not.
The database server created a temporary disk file but received an error while
it attempted to write into the file. Check the accompanying ISAM error code,
and look for operating-system messages that might give more information.
On UNIX systems, the file should have been created in the directory specified
by the DBTEMP environment variable (/tmp by default); on DOS systems, the
file should be in the current directory. Possibly that disk is full, or a hardware
error occurred. Since Version 5.01, the INFORMIX-SE database server uses the
DBTEMP environment variable, but INFORMIX-OnLine Dynamic Server does
not.
When you use table aliases (the words main and sub in the example), the
table may be selected from two or more times.
The database server cannot open the file in which transaction-log entries are
made. No transactions can start until this file is repaired. (In an
ANSI-compliant database, nothing can be done; in other databases, only
queries can be made.) For INFORMIX-OnLine Dynamic Server, report this
problem to the OnLine database administrator. For other database servers,
check the accompanying ISAM error code, and look for operating-system
error messages that might give more information. A START DATABASE
statement specifies the path to the log file. If the file has been deleted, you can
re-create it as an empty file. If the path has changed, you can issue a new
START DATABASE statement to redefine it.
The database server (which is not OnLine) is trying to create one of the tables
for the system catalog, probably as part of a CREATE DATABASE statement. A
problem with the host operating system prevents it. Check the
accompanying ISAM error code for more information, and look for
operating-system error messages. A shortage of disk space or
operating-system file-access permission problems probably caused this error.
The database server (which is not OnLine) is trying to create one of the tables
for the system catalog, probably as part of a CREATE DATABASE statement. It
created the table, but a problem with the host operating system prevents it
from making an index. Check the accompanying ISAM error code for more
information, and look for operating-system error messages. Insufficient disk
space probably caused this error.
This statement attempts to change the column named ROWID. That column
is a part of every table except a fragmented table. You can select it with a
SELECT statement and compare it in a WHERE clause, but you cannot alter it
with a DDL statement.
This statement names the column ROWID in the list of columns for insertion
or update. The row ID is an intrinsic property that cannot be modified. You
can select it in a SELECT statement and compare it in a WHERE clause, but you
cannot modify its contents.
The database server cannot create a temporary disk file. The file should be
created in the directory specified by the DBTEMP environment variable (or
/tmp by default on UNIX systems). Check the accompanying ISAM error code,
and look for operating-system error messages that might give more
information. Possibly your account does not have write permission in that
directory, or possibly the disk is full. Since Version 5.01, the INFORMIX-SE
database server uses the DBTEMP environment variable, but
INFORMIX-OnLine Dynamic Server does not.
The database server created a temporary file in the directory specified by the
DBTEMP environment variable (or /tmp by default on UNIX systems) but
encountered an error when it tried to read the file back. Check the
accompanying ISAM error code, and look for operating-system error
messages that might give more information. Possibly a hardware failure
occurred, or possibly another user erased the temporary file accidentally.
Since Version 5.01, the INFORMIX-SE database server uses the DBTEMP
environment variable, but INFORMIX-OnLine Dynamic Server does not.
You cannot alter the contents of a column with the SERIAL data type in the
UPDATE statement, even when the updating value is zero. (You can specify a
value of zero for a serial column when you use the INSERT statement; the
database server ignores the zero and inserts a generated number.) Revise the
statement so that only nonserial columns are updated.
Another user has locked a row that this statement selects. If you executed the
statement interactively, you can do one of two things. You can wait a short
time and reenter the statement. Or you can execute the statement SET LOCK
MODE TO WAIT, after which you will rarely see this message again.
In a program, you should roll back the current transaction, wait for an
interval of random length, and rerun the transaction. If you run the
transaction with a LOCK MODE of WAIT, you can reduce the frequency of this
error. But it can still arise in some cases, such as when deadlock is detected.
An ISAM error code (-107, -113, -134, -143, -144, or -154) usually accompanies
this error, and a program might need to make a different response to each of
these errors.
This INSERT statement is directed to a view, not to a real table, and one of the
columns that is defined in the view is actually the value of an expression.
Insertions and updates are not allowed on views that have such columns.
Apply the INSERT to the real table on which the view is based.
This statement specifies a width for a column of CHAR data type that is
greater than 32,767, or a width for a VARCHAR column that exceeds 255. If
you need a column of this size, use the TEXT data type, which allows
unlimited lengths. Otherwise, inspect the statement for typographical errors.
The database server cannot execute a BEGIN WORK statement. Check the
accompanying ISAM error code for more information. A problem probably
exits in accessing the transaction log.
The database server cannot execute a COMMIT WORK statement. Check the
accompanying ISAM error code for more information. A problem probably
exists in accessing the transaction log.
-239 Could not insert new row - duplicate value in a UNIQUE INDEX column.
The row that is being inserted (or being updated to have a new primary key)
contains a duplicate value of some row that already exists, in a column or
columns that are constrained to have unique values. The row is not inserted.
Roll back the current transaction, and execute it again without any duplicate
rows.
The database server cannot finish execution of a DELETE statement. Roll back
the current transaction; then check the accompanying ISAM error code for
more specific information.
The database server cannot execute a ROLLBACK WORK statement. Check the
accompanying ISAM error code for more information. A problem probably
exists in accessing the transaction log.
The database server cannot begin reading a table. Check the accompanying
ISAM error code for more information. The problem might be file
permissions, a hardware error, or a corrupted system catalog. Unless the
ISAM error code or an operating-system message points to another cause, run
the bcheck or secheck utility to verify file integrity.
The database server cannot set the file position to a particular row within the
file that represents a table. Check the accompanying ISAM error code for
more information. A hardware error might have occurred, or the file might
have been corrupted (truncated). Unless the ISAM error code or an
operating-system message points to another cause, run the bcheck or
secheck utility to verify file integrity.
The database server cannot read the disk page that contains a row of a table.
Check the accompanying ISAM error code for more information. A hardware
problem might exist, or the table or index file might have been corrupted.
Unless the ISAM error code or an operating-system message points to another
cause, run the bcheck or secheck utility to verify file integrity.
The database server could not apply an audit trail to roll a database forward.
Check the accompanying ISAM error code for more information.
Version 4.1 and later products can detect this internal error. If the error
recurs, please note all circumstances and contact the Informix Technical
Support Department.
When you select INTO TEMP, you are creating a table. As with any table, the
columns of a temporary table must all have names. When you select a single
column, the column in the temporary table receives the same name. When
you select an expression, you must supply a name using a column alias, as in
the following example:
SELECT order_num, ship_date, ship_date + 14 expected FROM orders
INTO TEMP ord_dates
The temporary table ord_dates has three columns, which are named
order_num, ship_date, and expected. The same principle applies to a view:
each column must have a name. When you select every column of a view
from a table, the view can have the same column names by default. When you
derive any column of a view from an expression, you must give all the
columns explicit names, as in the following example:
CREATE VIEW ord_dates(order_num, ship_date, expected) AS
SELECT order_num, ship_date, ship_date + 14 FROM orders
The database server cannot get a row of a table prior to update. Check the
accompanying ISAM error code for more information. Possibly another user
has locked the row or the table, or possibly a more serious problem exists.
The database server cannot read from one or more of the system catalog
tables. Check the accompanying ISAM error code for more information.
Unless the ISAM error code or an operating-system message points to another
cause, run the bcheck or secheck utility to verify file integrity.
A name in the statement exceeds the maximum length. Check the length of
the names and whether a typographical error caused two names to run
together.
The number of host variables that you named in the INTO clause of this
statement does not match the number of "?" place holders that you wrote into
the statement. Locate the text of the statement (in a PREPARE or DECLARE
statement), and verify the number of place holders. Then review the list in the
INTO clause to see which item is incorrect.
The database server cannot execute this COMMIT WORK or ROLLBACK WORK
statement because no BEGIN WORK was executed to start a transaction. Since
no transaction was started, you cannot end one. Any database modifications
that were made are now permanent; they cannot be rolled back but do not
need to be committed. Review the sequence of SQL statements to see where
the transaction should have started.
You cannot begin a transaction in this database because it does not have a
transaction log. In order to support transactions, you must start a transaction
log. With the INFORMIX-OnLine Dynamic Server, the OnLine administrator
uses the Databases screen of the Logical Logs menu of DB-Monitor or
ON-Monitor to start a transaction log. With other database servers, use the
START DATABASE statement.
The database server can handle only a fixed number of prepared SQL
statements for each user. This limit includes statements that were prepared
with the PREPARE statement and cursors that were declared with the
DECLARE statement. This statement (PREPARE, DECLARE, or PREPARE
IMMEDIATE) exceeds that limit and is not executed. The FREE statement
releases prepared statements. Review the logic of your program, and change
it so that it frees prepared statements when it no longer needs them.
Version 5.0 and later database servers do not have this restriction. However,
programs that must be compatible with earlier versions should use FREE to
stay under the limit.
The current statement refers to a cursor that has not been opened. Review the
logic of the program to see how it failed to execute the OPEN statement before
it reached this point. Statements that end transactions (COMMIT WORK and
ROLLBACK WORK) also close cursors unless the cursors are declared WITH
HOLD.
-260 Cannot execute a SELECT statement that is PREPAREd - must use cursor.
Although you can prepare a SELECT statement, the only way you can then
execute that SELECT statement is to associate its statement id with a cursor
(use a DECLARE statement) and then open the cursor.
You can execute other prepared statements with the EXECUTE statement. If
you know the contents of this SELECT statement at the time you are writing
the program, and if you are certain that it will return only a single row of
data, you can embed it in the program. If it must be prepared dynamically
while the program is running, revise your program to execute it through a
cursor.
In general, the database server cannot create the file that will represent this
table. Check the accompanying ISAM error code for more information. The
file would be created in the database.dbs directory (unless you supplied an IN
pathname clause) with INFORMIX-SE. Its filename would begin with the first
few letters of table-name, followed by a 3-digit number and the suffix .dat, or
.idx. With INFORMIX-SE, a problem might exist with file permissions, or
possibly the disk is full.
This internal error should not occur. Note all the details of the network
software in use and the version number of the database servers in this and the
other host system. If the error recurs, please note all circumstances and
contact the Informix Technical Support Department.
The database server created a temporary file in the directory that the
DBTEMP environment variable (or /tmp by default on UNIX systems)
specifies, but it encountered an error when it tried to write data into the file.
Check the accompanying ISAM error code, and look for operating-system
error messages that might give more information. Possibly a hardware
failure occurred, or the disk is full. Since Version 5.01, the INFORMIX-SE
database server uses the DBTEMP environment variable, but
INFORMIX-OnLine Dynamic Server does not.
You attempted to open an insert cursor. This database has a transaction log.
In such a database, you must execute a BEGIN WORK statement before you
open a cursor that is declared with an INSERT statement or with the FOR
UPDATE clause. Revise the logic of your program so that it starts a transaction
before it opens the cursor.
You can ensure that the program also works in databases that do not have a
transaction log. Change the program so that immediately after it executes the
DATABASE statement, it saves the contents of the second element of the
SQLAWARN array of warning flags in the SQL communications area. This
element will contain a space if the database does not use transactions, and the
letter W if it uses them. At each point where a transaction logically begins or
ends, test the saved value. If it contains W, execute the transaction statement
to begin or end a transaction.
The current statement uses the WHERE CURRENT OF cursor-name clause, but
that cursor has not yet been associated with a current row. Either no FETCH
statement has been executed since it was opened, or the most recent fetch
resulted in an error so that no row was returned. Revise the logic of the
program so that it always successfully fetches a row before it executes this
statement.
The FREE statement released the resources that are attached to the cursor
named in this statement. Before you can use the cursor, you must again
prepare the SQL statement that is associated with it. If the cursor was
declared FOR a statement, re-execute its DECLARE statement. If it was
declared FOR a statement identifier, execute the PREPARE statement again.
-269 Cannot add column column-name that does not accept nulls.
This statement requests a new column that has the NOT NULL constraint.
However, when a column is added to an existing table, null values have to be
installed in the existing rows. Define a new table that includes this column,
then INSERT the data from the old table into it to provide some suitable
nonnull values for this column.
The database server created a temporary file in the directory specified by the
DBTEMP environment variable (or /tmp by default on UNIX systems) but
encountered an error when it tried to position (seek) within it. Check the
accompanying ISAM error code, and look for operating-system error
messages that might give more information. Possibly a hardware failure
occurred, or another user truncated the file. Since Version 5.01, the
INFORMIX-SE database server uses the DBTEMP environment variable, but
INFORMIX-OnLine Dynamic Server does not.
This problem has many possible causes, including a locked table or a full
disk. Check the accompanying ISAM error code for more information.
-272 No SELECT permission.
The person who created this table has not granted Select privilege to your
account name or to the public. The owner of the table or the DBA must grant
this privilege before you can select data from the table.
The person who created this table has not granted Update privilege to your
account name or to the public. The owner of the table or the DBA must grant
this privilege before you can update a row in this table.
The person who created this table has not granted Delete privilege to your
account name or to the public. The owner of the table or the DBA must grant
this privilege before you can delete a row in this table.
The person who created this table has not granted Insert privilege to your
account name or to the public. The owner of the table or the DBA must grant
the privilege before you can insert a row into this table.
The cursor that is named in this statement has not been declared in the
current session. The current session runs from the execution of a DATABASE
statement to the next DATABASE or CLOSE DATABASE statement. Review the
logic of the program to see that it executes the DECLARE statement for this
cursor after the DATABASE statement.
Database servers after Version 5.01 do not use this error message.
-277 UPDATE table table-name is not the same as the cursor table.
This SELECT statement calls for ordering on more columns than the database
server can support. The limit depends on the database server in use, but all
can handle sorting on as many as eight columns. Revise the statement to
order on fewer columns. (Version 4.0 and later products have no arbitrary
limit on the number of ORDER BY columns. But complex sorts may cause the
database server to run out of memory or disk space while it carries out the
sort operation.)
Version 4.1 and later products can detect this internal error. If the error
recurs, please note all circumstances and contact the Informix Technical
Support Department.
A character literal in this statement exceeds the maximum length. Check the
punctuation and length of all quoted strings in the statement. Possibly two
missing quotes make a long string out of two short ones. You must revise the
statement to use a shorter character string.
Check the accompanying ISAM error code to find out the specific problem,
and look for operating-system error messages that might give more
information. Possibly the disk is full.
Inspect the current statement, and examine the punctuation of comments and
quoted strings. You can use curly braces to insert comments into SQL
statements, but the braces must balance. Or you can use the double-hyphen
to append comments to the end of a line.
This error can also occur when you use a singleton SELECT statement to
retrieve multiple rows. You must use the DECLARE/OPEN/FETCH series of
statements or the EXECUTE INTO statement to retrieve multiple rows.
The cursor that this statement uses has not been properly declared or
prepared, or the FREE statement has released it. Review the program logic to
ensure that the cursor has been declared. If it has, and if the DECLARE
statement refers to a statement id, check that the referenced statement has
been prepared.
You cannot add a column of SERIAL data type to an existing table. Such
columns may not contain null values, but when you add a column, the
database server must put null values in all existing rows. You can add a serial
column in three steps. First, add the column with an INTEGER data type. Then
update the table with nonnull, unique values in each row of the new column.
Finally, use ALTER TABLE MODIFY to change the data type of the column to
SERIAL.
This UNLOCK TABLE statement names a table that has not been locked. If you
locked the table earlier, it has already been unlocked. Tables are unlocked
automatically when a transaction ends or when the database is closed. If
another user locked the table, you cannot unlock it.
The table is already locked in exclusive mode. You will have to wait for the
table to be unlocked before you proceed.
In an ANSI-compliant database, any cursor can be used for updating; the FOR
UPDATE clause is not required (and generates a warning).
The current LOCK TABLE statement cannot be executed because you have
already locked the same table using a different mode (EXCLUSIVE or SHARE).
To change the lock mode, arrange to unlock the table before you lock it again.
This INSERT statement does not supply values for all the columns in the table.
At least one of the columns that it omits is constrained to be not null. Since
the database server would have to insert a null value for every unmentioned
column, it cannot perform this insert. Review the statement against the
definition of the table. Possibly the definition of the table has been changed.
-293 IS [NOT] NULL predicate may be used only with simple columns.
The test for a null value can be applied only to a column name (not to a
subscripted character column or an expression, for example). Review the use
of these keywords in the WHERE clause.
-297 Cannot find unique constraint or primary key on referenced table table-name.
The clause WITH GRANT OPTION allows the receiver of the grant to grant the
same privilege to others. In this case, the receiver of the grant is PUBLIC. If this
statement were executed, everyone would have the privilege, and everyone
could grant the privilege. This operation is prohibited. Either name specific
grantees, or omit the clause WITH GRANT OPTION.
This GRANT statement includes your user id as one of the grantees. If you can
grant the privilege, you already have the privilege. Rewrite the statement to
omit your user name from the TO clause.
This GRANT statement cannot be executed. You do not have the right to grant
the specified privilege for this table, the table name is a synonym, or the table
is a view on which this option cannot be granted. To grant any privilege for
a table, you must have DBA privilege in this database, you must be the owner
of the table, or you must have been granted the same privilege WITH GRANT
OPTION. If one of these conditions is true, probably the table in question is
really a synonym or a view that is not modifiable and cannot be used for
insert, update, or delete operations.
This SELECT statement uses an aggregate function in its WHERE clause. This
action is not allowed. The WHERE clause must be applied row by row as a
table is scanned, but an aggregate function can only be calculated after all
rows have been chosen and grouped. Review the statement with this fact in
mind. If you intended to select only certain groups of records, you can put
that test in the HAVING clause; it is applied to grouped rows.
The text of this message is somewhat deceptive. You can, in fact, mix column
names and aggregate functions in expressions. However, you can do so only
in the select list or the HAVING clause (not in the WHERE clause), and the
columns must appear in the GROUP BY clause.
Database servers after Version 5.01 do not use this error message.
-304 HAVING can only have expressions with aggregates or columns in GROUP BY
clause.
The HAVING clause is used to select completed rows after grouping has been
done. Therefore, the only selected values that it can test are values that are
available in completed groups of rows, namely the single columns that are
named in the GROUP BY clause and aggregate values. Review the HAVING
clause with this rule in mind. If you want to select particular rows before
grouping has taken place, use the WHERE clause.
-305 Subscripted column column-name is not of type CHAR, VARCHAR, TEXT nor
BYTES.
You may select substrings only from columns of the types mentioned.
Review all uses of square brackets in this statement, and make sure that each
follows the name of a column that has one of these types. If that is the case,
verify that you are using the database you intended, and double-check the
definition of the table. Possibly one of the columns in the table has been
altered to use a different type.
-308 Corresponding column types must be compatible for each UNION statement.
All rows produced in a UNION of SELECT statements must have the same
format, so every column should have the same data type. In the current
statement, a column in the second or subsequent SELECT does not agree with
the same column in a preceding SELECT. Review and compare all the SELECT
statements. Check each point at which one selects something that is not
identical to the preceding SELECT statement. No automatic data conversion
is supplied during a UNION; the data types must be identical as selected. If
this proves impossible, consider setting up a temporary table and using a
series of INSERT statements to fill it with the combination of rows desired.
Automatic data conversion is applied during an INSERT, so differing but
compatible data types can be coerced to the same type.
The indicated column appears in the ORDER BY clause of this SELECT, but it
is not in the select list (the list of values that follows the word SELECT). This
action is not supported. All sort keys must be present in the output rows in
order to sort. Revise the statement to follow this rule. If you want to sort only
on an expression that involves this column, not on the column itself, refer to
the expression by the number of its position in the select list.
This statement tries to create a table with the name that is shown, but one
with that name already exists. Only one table with a given name can exist in
a single database. (In an ANSI-compliant database, the name of the user that
created a table name qualifies it, so one table of a given name per user can
exist.)
Check the spelling of the name; if it is as you intended, and you are sure it
should not exist, check that you are using the right database. You can review
the names of all tables in this database by querying systables as follows:
SELECT tabname FROM systables WHERE tabid > 99
This statement will display only names of permanent tables, not temporary
tables. Temporary tables do not appear in systables. If the name does not
appear, end your database session and start a new one. Temporary tables will
be dropped.
The database server cannot access one of the tables in the system catalog.
Check the accompanying ISAM error code for detailed information, and look
for operating-system error messages that might give more information.
This statement tries to do something, such as dropping a table, that only the
owner of the table or a user who has Database Administrator privileges can
do. Check that the statement names the table you intended. If it does, you will
have to get its owner or a DBA to execute this statement. To find out who to
contact, you can query the system catalog as follows:
SELECT tabname, owner FROM systables WHERE tabid > 99;
SELECT username FROM sysusers WHERE usertype = 'D'
This statement tries to create an index for a table. Either you do not have
INDEX privilege on this table, or the table itself is a view or synonym. If the
table that is named really is a table, contact the owner of the table or a
database administrator (see the discussion of error -313) and ask to be
granted this privilege.
This statement tries to create an index with the name shown, but an index of
that name already exists. Only one index of a given name can exist in a single
database. (In an ANSI-compliant database, the name of the user who creates
an index name qualifies it, so one index of a given name per user can exist.)
Check the spelling of the name; if it is as you intended, and you are sure it
should not exist, make sure you are using the right database. To review the
names of all indexes and their owners, join systables and sysindexes as
follows:
SELECT T.tabname, I.idxname, I.owner
FROM systables T, sysindexes I
WHERE I.tabid = T.tabid
AND T.tabid > 99
-317 Must have the same number of selected columns in each UNION element.
All rows that are produced in a union must have the same format, so each
SELECT statement in the union must select the same number of columns. In
this union, one of the second or subsequent SELECT statements does not list
the same number of columns as the preceding one. Review the entire union,
and check that all select lists are alike in number and data type. If no
appropriate column exists for one of the statements, specify a literal value of
the appropriate type at that position. For example, where you need to match
a numeric column, specify a literal zero.
-318 File with the same name as specified log file already exists.
The transaction log file you specify in the WITH LOG IN clause cannot already
exist. The database server must start a new log file; it cannot append log data
to an old log file. An existing log file contains recovery information that
might be crucial, so it does not simply empty an existing file. To begin
logging for a database that has not been logged before, lock the database,
copy all of the database directory to a backup medium, and use the START
DATABASE statement to name a new file. To make a partial archive
subsequently, lock the database, copy the log file to a backup medium and
store it with the full archive, erase or rename the log file, and use the START
DATABASE statement.
This statement refers to an index that does not exist. Review the spelling of
the index name; if it is as you intended, and you are sure it should exist, make
sure you are using the right database.
This statement tries to do something, such as dropping an index, that only the
owner of the index or a user who has Database Administrator privileges can
do. Check that the statement names the index that you intended. If it does,
you will have to get its owner or a DBA to execute this statement. See the
discussion of error -316 for a way to list the names and owners of indexes.
You can create a trigger only on a table. Consider creating the trigger on the
table from which the view is derived, or consider creating view view-name as
a table and then creating the trigger on it.
You can also receive this message if you issue the START VIOLATIONS TABLE
statement or the STOP VIOLATIONS TABLE statement for a view. You must
specify the name of a base table in both of these statements.
The column name appears in more than one of the tables that are listed in the
FROM clause of this query. The database server needs to know which
columns to use. Revise the statement so that this name is prefixed by the
name of its table (table-name.column) wherever it appears in the query. If the
statement becomes unwieldy, give the table a shorter alias name in the FROM
clause (see the discussion of error -316 for an example).
This error occurs if you attempt to create a table using the WITH LOG IN
clause but do not specify a complete path to the log file. This error can also
occur if you use INFORMIX-SE to create database logging but do not specify
the full path of the log file. Make sure to specify a full pathname, including
the name of the log file, where the log file will reside.
The statement UNLOCK TABLE is not allowed within a transaction, that is,
following the execution of BEGIN WORK. You can still use LOCK TABLE when
you use transactions, but the table will be unlocked automatically when the
transaction ends. All locks are released at the end of a transaction. In an
ANSI-compliant database, BEGIN WORK is not used, a transaction is always
in effect, and the UNLOCK TABLE statement is never used.
This statement tries to add the column shown, but one with that name
already exists. Check the spelling of the name; if it is as you intended, then
the table is not arranged as you expected it to be. You can review the names
of all the columns in a table by querying syscolumns. Supply a table-name in
the following query:
SELECT colname, colno FROM syscolumns C, systables T
WHERE C.tabid = T.tabid AND T.tabname = 'table-name'
The database you tried to open is not visible to the database server. Check the
spelling of the name. Possibly the database is located in a different database
server (or network system), and you have omitted to specify the server name
(or site name) with the database name. If you are sure the database should
exist just as you spelled it, your next step depends on the database server you
are using.
If you are using INFORMIX-SE, the visible databases are directories with
names in the form dbname.dbs. You must be able to read from and write to
them. The database server looks first in the current working directory and
then in each directory named in the DBPATH environment variable. The most
common cause of this error is an incorrect setting or no setting for the
DBPATH environment variable.
If you are using INFORMIX-OnLine Dynamic Server, the database does not
exist as you spelled it. In some environments, two or more instances of
OnLine can run at once, and each instance has its own collection of databases.
For Version 6.0 and later, the value of the INFORMIXSERVER environment
variable determines which instance of INFORMIX-OnLine Dynamic Server
that you use. For Versions 5.01 and earlier, the TBCONFIG environment
variable points to the configuration file that determines which instance of
INFORMIX-OnLine that you use. See your OnLine administrator if you think
you might be using the wrong instance of OnLine.
Possibly you tried to create a database with the same name as one that
already exists; if so, choose a different name. Otherwise, check the
accompanying ISAM error code for more detailed information on the cause.
Possibly a shortage of disk space or a problem with file permissions exists.
While the database server was executing the DROP DATABASE statement, it
removed all database-related files from the dbname.dbs directory and tried to
remove the directory itself, but an error occurred. Check the accompanying
ISAM error code for more detailed information on the cause. The most likely
cause is that you or another user created nondatabase files in the same
directory, and the directory cannot be removed because it is not yet empty.
An error occurred while reading the audit-trail file. Re-execute the latest
statement; if the error recurs, the audit-trail file is corrupt. In that case you
will need to drop and restart the audit.
-333 The audit trail file already exists with a different name.
Before you start a new audit trail, you must drop an existing one. Use the
DROP AUDIT statement.
Some problem prevents the database server from initializing the audit-trail
file. Check that you specified a complete, correct pathname for the file. Look
for operating-system error messages that might give more information.
Common problems include a lack of disk space and file-permission
problems.
This statement requires an audit trail to work, but no current audit trail exists
for the table. Either none was ever started, or it was dropped. Check that you
specified the table you intended. In a recovery situation (the statement was
RECOVER TABLE), check that the table has just been restored from a backup
copy. If so, the table did not have an audit trail at the time that this backup
was made. If an audit trail was specified later, an unknown period remains
between the backup and the start of auditing during which unaudited
updates might have been made.
Views can be created only on permanent tables. The SELECT statement that
defines the view in this latest statement contains the name of the temporary
table, table-name. If you did not intend to name a temporary table, check the
spelling of table-name. See the discussion of error -313 for a way to display the
names of all permanent tables in the database.
-339 The audit trail file name must be given in full directory path.
The audit-trail file that is specified in the CREATE AUDIT statement requires
a full directory path. Because it is not required to be in a particular directory,
the database server cannot use the current directory or the DBPATH variable
to search for it.
The database server needs to use the audit-trail file for this table, but some
unexpected problem prevents it. Likely causes include hardware errors,
file-permission problems, or the accidental erasure of the file. Look for
operating-system error messages that might give more information.
-343 Row from audit trail was added to a different position than expected.
While the database server was reconstructing a table from the audit trail, it
found a discrepancy between the position of an inserted row now and the
position that was recorded in the audit trail when the row was first inserted.
Either the audit-trail file has been corrupted, or the audit-trail file is
incomplete, with missing records for some alterations. The table cannot be
recovered as it stands. Try the operation again after you make sure that the
table has been restored to exactly the same state as when the audit trail was
created. If the error recurs, rebuild the table by other means.
-344 Cannot delete row - row in table does not match row in audit trail.
While the database server was reconstructing a table from the audit trail, it
found a discrepancy between the position of a deleted row now and the
position that was recorded in the audit trail when the row was first deleted.
Either the audit-trail file has been corrupted, or the audit-trail file is
incomplete, with missing records for some alterations. The table cannot be
recovered as it stands. Try the operation again after you make sure that the
table has been restored to exactly the same state as when the audit trail was
created. If the error recurs, rebuild the table by other means.
-345 Cannot update row - row in table does not match row in audit trail.
While the database server was reconstructing a table from the audit trail, it
found a discrepancy between the contents of an updated row now and the
contents that were recorded in the audit trail when the row was first updated.
Either the audit-trail file has been corrupted, or the audit-trail file is
incomplete, with missing records for some alterations. The table cannot be
recovered as it stands. Try the operation again after you make sure that the
table has been restored to exactly the state it had when the audit trail was
created. If the error recurs, rebuild the table by other means.
The database server cannot complete a LOCK TABLE statement or the implicit
LOCK TABLE that must be performed as part of other statements that change
the definition of a table (for example ALTER TABLE, RENAME, or CREATE
INDEX). Check the accompanying ISAM error code for more detailed
information on the cause. Possible causes include lock conflicts, a full lock
table, or low-level problems with the host operating-system lock mechanism.
While the database server was trying to fetch a row from a table, it received
an unexpected error. Check the accompanying ISAM error code for more
detailed information on the cause. Possible causes include hardware errors
and lock conflicts.
The sysindexes table is not normalized (the part columns are a repeating
group), so no simple SELECT statement will return all the column names in
an index.
The column, or one of the columns, named in this CREATE INDEX statement
does not exist. Review the spellings of all columns in the statement. See the
discussion of error -328 for a way to list all column names in a table.
Both database and cursor names must begin with a letter and contain only
letters, numbers, and underscore characters. For Version 6.0 and later,
database and cursor names can begin with an underscore.
-356 Data type of the referencing and referenced columns do not match.
The data types of the columns in the child constraint must be identical to
those in the parent constraint.
The view is based on data from a table that has been altered since the view
was defined. The alteration removed or renamed a column that is used in the
view. The view can no longer be used. Drop the view, and redefine it to use
the current schema.
These statements choose a new current database, but the present database
must be closed first. Use the CLOSE DATABASE statement before this
statement.
The database that is currently open cannot be dropped. First use the CLOSE
DATABASE statement; then you can drop it.
This UPDATE or INSERT statement uses data taken from the same table in a
subquery. This action is not allowed because of the danger of getting into an
endless loop. First select the input data into a temporary table; then refer to
the temporary table in the UPDATE or INSERT statement.
A table can have at most only one column of type SERIAL and one column of
type SERIAL8. You are attempting to add a second column of type SERIAL or
SERIAL8, or you are attempting to create a table with more than one column
of either type. If you intended to have a foreign key (that is, a column that
refers to a SERIAL or SERIAL8 column in a different table), the data type of the
column in this table should be INTEGER or INTEGER8.
Only one SERIAL column can exist in a table. This CREATE TABLE statement
specifies two or more. Review the statement, and remove all but one of the
columns with SERIAL data type. If you intended to have a foreign key (that is,
a column that refers to a SERIAL column in a different table), the data type of
the column in this table should be INTEGER.
The cursor named in this statement (probably an OPEN) has been associated
with a prepared statement that is not a SELECT statement. Review the
program logic, especially the DECLARE for the cursor, the statement id
specified in it, and the PREPARE that set up that statement. If you intended to
use a cursor with an INSERT statement, you can only do that when the INSERT
statement is written as part of the DECLARE statement. If you intended to
execute an SQL statement, do that directly with the EXECUTE statement, not
indirectly through a cursor.
This error is also returned when you attempt to associate a cursor with a
SELECT…INTO TEMP statement. Because of the INTO TEMP clause, the
SELECT statement can return no rows and so cannot be used with a cursor.
This statement contains a use of the SUM or AVG function applied to a column
that has a character data type (CHAR or VARCHAR). If you did not intend to
take the sum or average of character strings, review the spelling of column
names against the table definition. If a character column actually contains
numeric values in character form, you can trick the database server
(Version 4.0 and later) into performing an automatic conversion. Instead of
applying the function to the column name alone, apply it to the expression in
parentheses (column+0).
The version of the database server does not agree with the version of the
database library routines in the application program. This incompatibility
must be resolved before the program can be executed. The database server is
selected through the SQLEXEC environment variable (for database server
versions prior to 6.0). It contains a complete pathname to the database server
code, which is usually named sqlexec or sqlturbo (for database server
versions prior to 6.0). The access routines linked into the program were
chosen when the program was compiled. If the program you are running was
supplied by Informix, then it or another Informix product might have been
installed incorrectly.
Some error has been made in the installation of your Informix product(s).
Check the value in the SQLEXEC environment variable (for database server
versions prior to 6.0) and INFORMIXDIR environment variable; then consult
the person who installed the software, and review the installation
instructions.
This ALTER TABLE DROP statement would drop every column from the table.
At least one column must be retained. Revise the statement to leave one
column. Or if you do not want the table at all, use DROP TABLE to remove it.
This statement can be extended to handle the case of multiple columns using
AND.
Once an audit trail has been started for a table, the table should not be altered.
If you must alter the table, do the following. Copy the table to a backup
medium. Use DROP AUDIT to remove the audit trail. Delete the audit-trail
file. Alter the table. Again, copy the table to a backup medium. Finally, use
CREATE AUDIT to start a new audit trail. The first backup is needed to restore
the table if a failure occurs while the table is being altered (a lengthy,
disk-intensive procedure if the table is large). The second backup is required
because, if the table has to be recovered later, the new audit trail must be
applied against a backup that has the same layout of columns.
While the database server was trying to locate a database using the DBPATH
environment variable, it constructed a full-path string that exceeds its limit
of 80 characters. A limit exists on the length of one complete database
directory pathname, from the starting slash or backslash through the .dbs
suffix. You will have to locate your databases higher up in the directory
hierarchy in order to use them. (The message text is misleading; there is no
specific limit on the total length of the contents of DBPATH.)
-374 Can only use column number in ORDER BY clause with UNION.
This query has both a UNION and an ORDER BY clause. In a union query,
where several select statements exist and the names of the selected columns
in each are not necessarily the same, you cannot use column names in the
ORDER BY clause. Instead you must use column position numbers, where 1
stands for the first selected column, 2 for the second, and so on. Rewrite the
query to use only numbers in the ORDER BY clause.
While the database server was trying to execute a START statement, it got an
unexpected error in trying to create the transaction-log file. Check the
accompanying ISAM error code for more detailed information on the cause.
Typical causes include a shortage of disk space, file permission problems, or
a limit on the number of open files.
The transaction log file you specify in the WITH LOG IN clause must not
already exist. The database server must start a log file fresh; it has no means
of appending log data to an old log file. An existing log file contains recovery
information that may be crucial, so it will not simply empty an existing file.
To make a full backup, lock the database, copy all of the database directory
to a backup medium, erase the log file (it is no longer needed), and use the
START DATABASE statement. To make a partial backup, lock the database,
copy the log file to a backup medium and store it with the full backup, erase
or rename the log file, and use the START DATABASE statement.
A row of a table that this statement needs is not accessible because it has been
locked. Check the accompanying ISAM error code for more detailed
information. It will probably be -107, -113, -134, -143, -144, or -154. Each notes
a slightly different relationship between your program and the other user's
program. You can prevent most, but not all, occurrences of this error with SET
LOCK MODE TO WAIT.
For database servers prior to Version 4.1, this error message is produced in
conjunction with the UPDATE and the DELETE WHERE CURRENT OF
statements only. In Version 6.0, this error message is no longer used.
The database server, while trying to initialize a transaction log file, received
an unexpected error. Check the accompanying ISAM error code for more
detailed information on the cause. Typical causes include hardware errors
and file permission problems.
-381 Cannot grant to someone who has granted you the same privilege before.
The privilege you are trying to grant is one that was first granted to you WITH
GRANT OPTION. The user who made that grant is among the list of users in
this present statement. For security reasons, you may not do a reciprocal
grant. Rewrite the statement leaving out the name of your original patron. To
see a list of the users to whom you may not grant, query systabauth as
follows:
SELECT grantor FROM systabauth WHERE grantee = USER
-382 Same number of columns must be specified for view and select clause.
In this VIEW statement, you have listed the names of the columns of the view.
However, their number is different from the number of columns in the
SELECT statement for the view. Check the punctuation of the two lists, and
make sure that you have supplied a name for each item in the select list.
In this VIEW statement, you have not listed specific names for columns. That
action is allowed when the SELECT statement selects only simple, named
columns. However, the SELECT statement here selects one or more
expressions. You must give names to these columns in a parenthesized list
that follows the name of the view. Because you cannot give names for only
some of the columns, you must list names for all.
This statement attempts to put data into a view that was defined WITH
CHECK OPTION, so new data has to satisfy the tests in the WHERE clause in
the view. However, one or more of the data values in this current statement
does not meet that test, so the alteration was not performed. Roll back the
current transaction. To see what tests new data must satisfy, display the
definition of the view, as follows:
SELECT seqno, viewtext FROM sysviews, systables
WHERE systables.tabname = 'viewname'
AND systables.tabid = sysviews.tabid
ORDER BY seqno
This ALTER TABLE statement contains a MODIFY clause that assigns the NOT
NULL attribute to an existing column. However, that column already
contains one or more null values. The modification cannot be made until the
null values have been deleted or updated to some nonnull value.
You cannot access the database that this statement requests because you have
not been granted CONNECT privilege to it. Contact a person who has
Database Administrator privilege to that database and ask to be granted
CONNECT privileges to it.
To recover from this error, contact a person who has the DBA privilege on this
database and ask to be granted the RESOURCE privilege on the database.
This statement cannot be executed because your account has not been
granted DBA privilege to this database. Contact a person who has DBA
privilege to the database and ask to be granted DBA privileges to it (or simply
ask to have this statement executed for you).
This statement tries to put a null value in the noted column. However, that
column has been defined as NOT NULL. Roll back the current transaction. If
this is a program, review the definition of the table, and change the program
logic to not use null values for columns that cannot accept them.
This internal error should not occur. If the error recurs, please note all
circumstances and contact the Informix Technical Support Department.
This query requests an outer join, but one or more conditions in the WHERE
clause interfere with the dominant-subservient relationship. Review the
query to ensure that every condition that relates two tables is actually
necessary.
The named view cannot be dropped as it does not exist. To see names of
existing views, query systables as follows:
SELECT tabname FROM systables WHERE tabtype = 'V'
This query requests an outer join, but the WHERE clause is written so as to
imply selecting every row of the subservient table for every row of the
dominant table, resulting in a very large output. Review the query, and check
that at least one condition relates each preserved-subservient pair of tables in
the query.
-396 Illegal join between a nested outer table and a preserved table.
This query requests an outer join, but the WHERE clause contains a condition
that relates a nested subservient table to a preserved table that is not its
immediate parent. This action is not supported. Review the query, and check
that every condition that relates two tables is between a preserved table and
its immediately subordinate table.
This internal error should not occur. The database server has encountered
something in one or more of the system catalog tables that violates integrity
constraints. Run the tbcheck or oncheck utility (for OnLine) or the bcheck or
secheck utility (for INFORMIX-SE). If the error recurs, please note all
circumstances and contact the Informix Technical Support Department.
Review the program logic, and check that it executes a BEGIN WORK
statement prior to this statement and that it ends the transaction at some
reasonable point. If the program has to work with both databases that use
transactions and those that do not, you can have it check the second element
of the sqlwarn array of the SQL Communications Area. This area will contain
the letter W after a DATABASE statement if the database has a transaction log,
and a space if it does not.
This query refers to a table named syslog. A row in the systables catalog has
syslog in the tabname column, but it is only a convenient place to store the
pathname to the transaction-log file. Under INFORMIX-SE, a table named
syslog cannot exist in a database with logging. (In general, you should avoid
table names that start with sys-, and syslog is not allowed.)
This FETCH statement names a cursor that has never been opened or has been
closed. Review the program logic, and check that it will open the cursor
before this point and not accidentally close it. Unless a cursor is declared
WITH HOLD, it is automatically closed by a COMMIT WORK or ROLLBACK
WORK statement.
This FETCH statement passed a cursor data structure that is invalid or a null
pointer. Possibly the cursor has been freed with the FREE statement, or
possibly the cursor data structure has been overwritten in memory.
Version 5.0 or later database servers do not return this error code. See errors
-267 and -404.
Review the way the program constructs the sqlda and related data
structures; somehow it is setting up a null pointer. If the program is in
INFORMIX-4GL or another language in which the sqlda is not constructed
directly by the program, or if this statement refers only to host variables by
name, this error should not occur. If the error recurs, please note all
circumstances and contact the Informix Technical Support Department.
-403 The size of a received row disagrees with the expected size.
You probably used a statement that names a cursor that was previously
released with the FREE statement. Review the program logic and check that
the cursor specified is declared and opened, but not freed, prior to reaching
this statement. If the error occurred on a command that specifies a variable
rather than a cursor, the statement was not prepared before you tried to
execute it.
Review the way the program constructs the sqlda and related data
structures; somehow it is setting up a null pointer. If the program is in
INFORMIX-4GL or another language in which the sqlda is not constructed
directly by the program, or if this statement only refers to host variables by
name, this error should not occur. Contact the Informix Technical Support
Department.
Only Version 4.1 and earlier database servers return this error code with the
meaning shown. For database servers starting with Version 5.0, see the next
entry.
Review the way the program constructs the sqlda and related data
structures; somehow it is setting up a pointer that is not word aligned. Also,
make sure that all host variables are aligned on proper address boundaries
for their types. If the program is in INFORMIX-4GL or another language in
which the programmer has no control over storage alignments, this error
should not occur. If the error recurs, please note all circumstances and contact
the Informix Technical Support Department.
Roll back the current transaction. Look for ways to make this statement
simpler or move less data. Also, confer with your UNIX system administrator
to solve memory problems or look for ways to make the operating system
give this program more virtual memory in which to run. On DOS systems,
exit to the operating-system command line, free some disk space, and
resubmit your program.
-409 Sqlexec was not found or was not executable by the current user.
Your application contacts the database server process while it starts up. This
action uses the value in the SQLEXEC environment variable (for database
server versions prior to 6.0); it should point to one of two executable files:
sqlexec for INFORMIX-SE or sqlturbo for INFORMIX-OnLine (versions prior to
6.0). Ordinarily these files will reside in the lib subdirectory of the directory
that the INFORMIXDIR environment variable names. Check that your
SQLEXEC environment variable is set up properly and that your account has
access to these directories and files.
This EXECUTE statement refers to a statement id that has not been prepared.
Either no PREPARE statement was done, or one was done but returned an
error code. Review the program logic to ensure that a statement is prepared
and the PREPARE return code is checked. A negative error code from
PREPARE usually reflects an error in the statement being prepared.
This statement has a USING DESCRIPTOR clause, but it also refers to a cursor
that was declared with host variables (that is, with SELECT...INTO or INSERT
using variables in the VALUES clause). The purpose of both the descriptor
structure and host variable names is to specify the location of the data values,
and only one method may be used. Review the declaration of the cursor, and
settle on a single method of specifying the location of data values.
This INSERT statement names a cursor that has never been opened or that has
been closed. Review the program logic, and check that it will open the cursor
before this point and not accidentally close it. An insert cursor is
automatically closed by a COMMIT WORK or ROLLBACK WORK statement.
This PUT statement specifies a cursor that is invalid. Possibly the cursor has
been freed with the FREE statement, or possibly the cursor data structure has
been overwritten in memory.
-416 USING option with open statement is invalid for insert cursor.
This OPEN statement refers to a cursor that was declared for an INSERT
statement. The USING clause of the OPEN is not appropriate in this case; it is
only used to specify the variables that are used with a SELECT statement.
Review the program to ensure that the correct cursor has been used in this
statement. If it has, and if the INSERT statement is written as part of the
DECLARE statement, you can name the host variables directly in it. If the
INSERT statement has been prepared, you can specify the host variables in a
FROM clause in the PUT statement.
Review the way the program constructs the sqlda and related data
structures; somehow it is setting up a null pointer. If the program is in
INFORMIX-4GL or another language in which the sqlda is not constructed
directly by the program, or if this statement only refers to host variables by
name, this error should not occur. If the error recurs, please note all
circumstances and contact the Informix Technical Support Department.
Review the way the program constructs the sqlda and related data
structures; somehow it is setting up a null pointer. If the program is in
INFORMIX-4GL or another language in which the sqlda is not constructed
directly by the program, or if this statement only refers to host variables by
name, this error should not occur. If the error recurs, please note all
circumstances and contact the Informix Technical Support Department.
Your application program is starting up and trying to make contact with the
database server process in another computer. It does this using the contents
of the SQLHOST environment variable. Check the SQLHOST variable, and
verify that the INFORMIX-NET or INFORMIX-STAR service has been started in
the other machine.
This FLUSH statement names a cursor that has never been opened or has been
closed. Review the program logic to ensure that it will open the cursor before
this point and not accidentally close it. An insert cursor is automatically
closed by a COMMIT WORK or ROLLBACK WORK.
This FETCH statement asks for the current row, but none exists. Either the
cursor was just opened, or the previous fetch returned an error code, perhaps
because it was at the end of the data. Review the program logic, and check
that it uses a FETCH NEXT statement or other FETCH operation to establish a
current row before it attempts this statement.
This error message should not appear for Version 5.0 and later.
Another user has opened the requested database in exclusive mode. Repeat
the statement after a short delay or when the database is known to be idle.
This internal error should not occur. If this error recurs, please note all
circumstances and contact the Informix Technical Support Department.
This internal error should not occur. If you can find no direct cause for the
error, please note all circumstances and contact the Informix Technical
Support Department.
This internal error should not occur. If you can find no direct cause for the
error, please note all circumstances and contact the Informix Technical
Support Department.
This statement names as an indicator variable, a host variable that was not
declared as a small integer. The value returned to an indicator variable is a
small integer value. Review the statement, especially the use of host variables
as indicator variables. Make sure the names of indicator variables are spelled
correctly and that they are properly declared. In a 4GL program, this error
should not occur. If the error recurs, please note all circumstances and contact
the Informix Technical Support Department.
-436 Call back function must be defined when time-out value is 0 or greater.
You did not provide a callback function with your time-out value. Make sure
that you provide both.
The locator structure provided for a BYTE or TEXT value in this statement
specifies a memory buffer that is smaller than the value (in the loc_bufsize
field). The actual size is in loc_indicator. No data was transferred. Revise the
program to use a larger buffer, to locate the value in a file instead of memory,
or to pass the value in segments through a user-provided read function.
Alternatively, you can specify a substring of the value in the SELECT
statement. If this is a 4GL program, this error should not occur. If the error
recurs, please note all circumstances and contact the Informix Technical
Support Department.
The loc_open() function provided in the locator structure for a BYTE or TEXT
value in this statement was called and returned a negative return code. When
the value is located using user-supplied functions (loc_loctype contains
LOCUSER), this function is part of the program, and you have to diagnose its
problems yourself. When the value is located in a file (loc_loctype contains
LOCFILE or, in a 4GL program, the variable has been located in a file), this
error indicates that the system-supplied loc_open() function was not able to
open the file. Possibly the file does not exist, you do not have read permission
for the file, or too many files are open.
The loc_close() function provided in the locator structure for a BYTE or TEXT
value in this statement was called and returned a negative return code. When
the value is located using user-supplied functions (loc_loctype contains
LOCUSER), this function is part of the program, and you have to diagnose its
problems yourself. When the value is located in a file (loc_loctype contains
LOCFILE or, in a 4GL program, the variable has been located in a file), this
error indicates that the system-supplied loc_close() function was not able to
close the file.
The loc_read() function provided in the locator structure for a BYTE or TEXT
value in this statement was called and returned a negative return code. When
the value is located using user-supplied functions (loc_loctype contains
LOCUSER), this function is part of the program and you have to diagnose its
problems yourself. When the value is located in a file (loc_loctype contains
LOCFILE or, in a 4GL program, the variable has been located in a file), this
error indicates that the system-supplied loc_read() function was not able to
read from the file.
The loc_write() function provided in the locator structure for a BYTE or TEXT
value in this statement was called and returned a negative return code. When
the value is located using user-supplied functions (loc_loctype contains
LOCUSER), this function is part of the program and you have to diagnose its
problems yourself. When the value is located in a file (loc_loctype contains
LOCFILE or, in a 4GL program, the variable has been located in a file), this
error indicates that the system-supplied loc_write() function was not able to
write to the file. Possibly the disk is full, you do not have write permission for
the disk, or a hardware error occurred.
The database server process or thread with which your application program
was working has terminated. The DBA might have shut the system down.
The next most likely cause is an internal error. Look for operating-system
messages that might give more information. If the error recurs, please note all
circumstances and contact the Informix Technical Support Department.
Check the ISAM error code that is returned with this error. If it is -129, the
database server has not terminated but simply reached a limit on the number
of concurrent user sessions (see the explanation of error -129).
The instance of OnLine that your application was using has been shut down
by its operator. Your current transaction will be rolled back automatically
when the database server starts up again. Rerun the application at that time.
This statement transfers a value between a file and a BYTE or TEXT column.
Since the locator structure field loc_loctype was set to LOCFNAME, the
database server tried to open the file using the pathname in loc_fname and
the flags in loc_oflags. An operating-system error was returned. Check the
accompanying ISAM error code for more information, and look for
operating-system messages. Typical causes include lack of disk space, file
permission problems, and limits on the number of open files.
This statement reads a value from a BYTE or TEXT column into a file. The
database server copied the data to the file but got an operating-system error
when it closed the file. Check the accompanying ISAM error code for more
information, and look for operating-system messages. Typical causes include
lack of disk space and hardware errors.
This statement writes a value into a BYTE or TEXT column from a file. The
database server got an operating-system error while reading the file. Check
the accompanying ISAM error code for more information, and look for
operating-system messages.
This statement reads a value from a BYTE or TEXT column into a file.The
database server got an operating-system error while writing the data. Check
the accompanying ISAM error code for more information, and look for
operating-system messages. Typical causes include lack of disk space and
hardware errors.
This query returns a BYTE or TEXT value that is located in memory, and the
locator structure asked (by setting -1 in loc_bufsize) that the database server
allocate the memory. It was unable to get the necessary memory for a buffer.
If you can use operating-system methods to allocate more data space
memory to your program, do so and run it again. Alternatively, locate the
value in a file, or use a substring to select the value in portions. If this is a 4GL
program, this error should not occur. On DOS systems, exit to the
operating-system command line, free some disk space, and resubmit your
program. If the error recurs, please note all circumstances and contact the
Informix Technical Support Department.
This statement stores a value in a BYTE or TEXT column from a file. The locator
structures specified a length for the data in loc_locsize, but the database
server found end of file before it had read that much data. Review the
program to ensure that the input file was properly positioned and that the
correct length was specified. Specify a length of -1 if the file should be read
to its end. If this is a 4GL program, this error should not occur. If the error
recurs, please note all circumstances and contact the Informix Technical
Support Department.
This program was compiled with the -icheck flag, and the current SQL
statement did return a truncated or null value, for which an indicator would
normally be set, to a host variable for which no indicator variable was
specified. Revise the program to use indicator variables.
-468 Cannot obtain user id from system: unable to start database server.
The name of the system descriptor area that is specified does not exist in the
list of system descriptor areas, so it has not been allocated. You must execute
the ALLOCATE DESCRIPTOR statement to allocate this descriptor name before
you use it.
This error is generated if the name of the SQL descriptor is either an empty
string or an uninitialized host variable. Descriptor names follow the same
naming rules as identifiers. Check the name of the descriptor, and verify that
it has been set with the SET DESCRIPTOR statement, allocated with the
ALLOCATE DESCRIPTOR statement, or otherwise initialized.
Change the value of the COUNT statement so that it is less than or equal to the
occurrences and greater than zero, and try again.
An unknown field type has been requested. Check that you are using one of
the valid field types in X/Open mode, and try again. The valid field types are
TYPE, LENGTH, PRECISION, SCALE, NULLABLE, INDICATOR, DATA, and
NAME.
This X/Open rule indicates that you must request the INDICATOR value in
the GET DESCRIPTOR statement when DATA is null.
-476 The LENGTH field must be specified when the type is SQLCHAR.
When you use a SET DESCRIPTOR statement, and TYPE is set to SQLCHAR, the
LENGTH field must also be specified and set in the same SET DESCRIPTOR
statement.
In a GET DESCRIPTOR statement, the buffer (the character host variable) that
is specified to store the NAME entry is too small. Increase the buffer size, and
call the GET DESCRIPTOR statement again. This error message also is
displayed when the host variable is a FILE type, and the buffer used to store
its name is too small.
In the initial state, when you execute a SET DESCRIPTOR statement, you must
specify TYPE as one of the fields to be set. Set the TYPE field in the SET
DESCRIPTOR statement, and execute it again.
-479 The number of DESCRIBED columns is greater than the allocated space.
The number of columns in the table is larger than the allocated descriptor.
Use the ALLOCATE DESCRIPTOR statement to reallocate a larger occurrence
value, and try the DESCRIBE statement again.
A system descriptor area with the same name has already been allocated, so
this descriptor name is not unique. Change the name of this descriptor in the
ALLOCATE DESCRIPTOR statement so that the descriptor is unique, and
execute the statement again.
The statement has not been prepared, or the statement name used is not
valid. A valid statement name is between 1 and 18 characters; it begins with
a nonnumeric character and does not contain any blanks or nonalphanumeric
characters except underscore.
You cannot issue a FETCH PRIOR, FETCH FIRST, FETCH LAST, FETCH
CURRENT, FETCH RELATIVE n, or FETCH ABSOLUTE n statement with a
non-scroll cursor. To do so, you must first declare the cursor as a scroll cursor.
This error can occur only if your database is ANSI compliant. The error
indicates that the number of host variables in an ESQL statement is not the
same as the number of values that the database server returns. In addition, a
warning flag is placed in the third element of the sqlwarn structure of sqlca.
If your database is not ANSI compliant, this and similar statements complete
without error, and the values of the host variables are set in sequence to their
respective returned values. If the number of returned values is smaller than
the number of host variables, the remaining host variables are undefined. As
with an ANSI-compliant database, a warning flag is placed in the third
element of the sqlwarn structure of sqlca.
The data type found in the system descriptor sqlvar entry is either invalid or
uninitialized. You cannot use the GET DESCRIPTOR statement to get a value
from an uninitialized sqlvar.
An exception number was requested that was either less than 1 or greater
than the number of diagnostic entries in the diagnostic area.
The version of the ixtomsg file, which holds the mapping table of SQLCODE
to SQLSTATE values, is illegal. The ixtomsg file is located in the directory
$INFORMIXDIR/msg. Check the date and size of the file. If the error recurs,
please note all circumstances and contact the Informix Technical Support
Department.
A table may be clustered on only one index at a time. This table is already
clustered on the index whose name is shown. Before you can cluster on
another index, you must execute ALTER INDEX index-name TO NOT CLUSTER.
To see which tables are clustered on which indexes, query sysindexes and
systables as follows:
SELECT tabname, idxname FROM systables T, sysindexes X
WHERE T.tabid = X.tabid AND X.clustered = 'C'
The table is no longer clustered on this index (if it ever was). Make sure that
this is the index you meant; if so, you do not need to alter this index. For a
way to see which tables are clustered, see the discussion of error -500.
While the database server was building a new copy of the table with rows in
clustered sequence, it got an unexpected error. Check the accompanying
ISAM error code for more information. Typical causes include a shortage of
disk space.
This database server in this host operating system has a limit on the number
of tables that can be locked at one time. It was unable to lock the table you
requested. Roll back the current transaction. Then redesign the operation to
lock fewer tables, to use row-level locking, or to open the database in
exclusive mode.
This LOCK TABLE statement cannot be carried out because the table specified
is really a view. Only real tables can be locked. Roll back the current
transaction. Then redesign the operation to work against the real tables on
which the view is based, or open the database in exclusive mode.
This UPDATE statement uses a SET clause in which a list of column names is
set equal to a list of expressions or to a SELECT statement. The number of
columns on the left of the equal sign is not the same as the number of data
values produced on the right. Roll back the current transaction. Then rewrite
this statement. If a list of expressions is used, check the punctuation to ensure
that each expression is distinct. If a SELECT statement is used, review it to see
how many columns it returns.
Your account has been granted the privilege of updating specific columns,
but this UPDATE statement updates all columns or columns for which you do
not have the privilege. Contact the owner of the table or someone with
Database Administrator privilege on this database, and ask to be granted full
UPDATE privilege. For a way to list table owners, see the discussion of
error -313.
The cursor that is named in the WHERE CURRENT OF clause in this UPDATE
or DELETE statement does not exist. Review the spelling of the name. If it is
as you intended, check the DECLARE statement to ensure that it has been
executed. Also make sure that the cursor has not been freed with the FREE
statement.
You are not allowed to update, insert, or delete rows in this table. If you are
absolutely sure that you must do so, sign on as user informix. That user
account can modify most system-catalog tables. However, this very risky
practice is not recommended unless you are specifically instructed by the
Informix Technical Support Department.
You do not have References privilege on the referenced columns. The owner
of the referenced table or a user who has References privilege with the grant
option on that table can grant you this privilege using the GRANT statement.
-513 Statement not available with this database server.
This statement (or a clause within it) is supported by some database servers,
but not by the database server you are currently using. The choice of database
servers (when there is a choice) is determined by the setting of the SQLEXEC
environment variable (for database server versions prior to Version 6.0). If
this statement worked before but does not now, look for a change in
SQLEXEC.
-514 Only DBA can create, drop, or grant for another user.
This data definition statement specifies a table, view, index, or synonym that
is owned by another user or grants a privilege as another user. Any of these
things requires Database Administrator privilege, which you do not have on
this database. If you intended to work on objects that you own, review the
punctuation of the statement. At some point in it, you have qualified a name
with the user ID of another account. Otherwise, get a DBA to grant you DBA
privilege or to perform this operation for you.
You are trying to drop a constraint that has already been dropped in the same
ALTER TABLE statement.
-517 The total size of the index is too large or too many parts in index.
All database servers have limits on the number of columns that can be
included in an index and on the total number of bytes in a key (the sum of the
widths of the columns). This CREATE INDEX statement would exceed that
limit for this database server. INFORMIX-Universal Server allows 16 key parts
(columnar or functional) and a width of 390 bytes.
-517 The total size of the index is too large or too many parts in index.
All database servers have limits on the number of columns that can be
included in an index and on the total number of bytes in a key (the sum of the
widths of the columns). This CREATE INDEX statement would exceed that
limit for this database server. All database servers support at least 8 columns
and a width of 126 bytes. OnLine allows 16 and 255, respectively.
If this internal error recurs, please note all circumstances and contact the
Informix Technical Support Department.
The OnLine database server cannot locate the disk partition in which it has
stored a table that is referenced in this command. Contact the OnLine
administrator to find out what the problem is. Possibly the chunk that
contains this tblspace has been taken off-line.
You cannot lock any of the tables that comprise the system catalog. All users
need them at all times. The database server handles concurrent access to them
correctly, so simply remove this statement from your program.
Because this database has a transaction log, a table can only be locked within
a transaction. Review the program, and ensure that a BEGIN WORK statement
is issued to start a transaction before this statement.
■ Open the update cursor using the ROWID value found by the
scrolling cursor.
■ Fetch the row, and check the error code (the row might have been
deleted).
■ If the fetch succeeded, verify that the row contents are unchanged
from those selected by the scrolling cursor (the row is now locked, so
it cannot change further, but it might have changed between the two
fetches).
■ If the row is unchanged, update it using the nonscrolling cursor.
■ Close the nonscrolling cursor.
■ This procedure ensures that the update reflects the current state of
the table but also retains the convenience of the scrolling cursor. A
fetch by ROWID of a recently fetched row will usually entail no disk
activity and so will not cost much time.
You tried to use the SET LOCK MODE TO WAIT statement on INFORMIX-SE,
but your INFORMIX-SE database server uses CREATE LOCKING rather than
System V locking. If the error recurs, please note all circumstances and
contact the Informix Technical Support Department.
The database server cannot execute the SET LOCK MODE TO WAIT statement
because the host operating system does not have adequate support for
locking to permit waiting for a lock to be released. On this system, your
program will be notified when a table or row is locked (with an error such as
-233 or -378); your program determines what to do next, such as rolling back
the transaction and trying it again.
The total number of bytes that this statement selects exceeds the maximum
that can be passed between the database server and the program. Make sure
that the columns selected are the ones that you intended. Check that you
have not named some very wide character column by mistake, neglected to
specify a substring, or specified too long a substring. If the selection is what
you require, rewrite this SELECT statement into two or more statements, each
of which selects only some of the fields. If it is a join of several tables, you
might best select all desired data INTO TEMP; then select individual columns
of the temporary table. If this is a fetch via a cursor in a program, you might
revise the program as follows. First, change the cursor to select only the
ROWID of the desired row. Second, augment the FETCH statement with a
series of SELECT statements, each of which selects one or a few columns
WHERE ROWID = the saved row ID.
This error message appears prior to Version 6.0. Your application program is
unable to initialize its connection to the database server because you are
using a shared-memory implementation. Either the database shared memory
has not been initialized, or the maximum number of users has already started
using the system. Check the accompanying ISAM error code for more
information.
This error message appears beginning with Version 6.0. Your application
program is unable to initialize its connection to the database server because
you are using a shared-memory implementation. Either the database shared
memory has not been initialized, or the maximum number of users has
already started using the system. Check the accompanying ISAM error code
for more information.
The check constraint placed on the table column(s) has been violated. To see
the check constraint associated with the column(s), you can query the
syschecks system catalog table. However, you must know the constrid for
the check constraint before you query sychecks. (The constrid is assigned in
the sysconstraints system catalog table.) Use the following subquery to show
the check constraint for constraint-name:
SELECT * FROM syschecks WHERE constrid =
(SELECT constrid FROM sysconstraints WHERE constrname =
constraint-name)
This CREATE VIEW statement gives a list of column names, and at least one of
them appears twice in the list. Review the list of column names, and make
sure that each appears only once.
The table shown is only a temporary table. It will vanish when this session
ends. Such tables cannot be altered. To alter the shape of the table, simply
drop it, and re-create it.
The size that is specified for a disk extent (either the EXTENT SIZE or the NEXT
SIZE clause) must be at least four times the disk page size, as shown.
Generally, set EXTENT SIZE large enough to hold all of the rows as you
initially estimate them, and set NEXT SIZE at an eighth or a quarter of that.
-534 Could not insert new row into table, table is locked.
Database servers at Version 4.0 and later do not return this error. In earlier
versions, its meaning is the same as error -271 with ISAM error code -113. Roll
back the current transaction, and run it again when the table has been
unlocked.
The statement SET EXPLAIN ON has been executed, and the database server
is trying to open the file sqexplain.out in the current working directory. An
operating-system error of some kind prevents it. See the ISAM error code for
more information. Look for operating-system error messages that might give
more detail. Likely problems include a lack of write permissions in the
current directory and a full disk. This error message appears beginning with
Version 4.1.
-536 Number of columns in child constraint does not match number of cols in
parent constraint.
The number of referencing columns (child key) does not match the number
of referenced columns (parent key) in the referential constraint. Check that a
one-to-one relationship exists between referenced and referencing columns.
The cursor that is named in this DECLARE statement has also been named in
a DECLARE statement that was executed earlier. Possibly the same DECLARE
is being executed in a loop, or possibly the program meant to execute a FREE
statement for this cursor but did not. Review the program logic to ensure that
it executes only a single DECLARE for each cursor (except after freeing one).
You must have the correct privilege before you can alter the name of a table
or the names, types, or number of columns in it. You must be the owner of the
table, have Database Administrator privilege in the database, or be granted
ALTER privilege for the table by its owner or a DBA. See the discussion of
error -313 for a way to list the owners of tables and users with DBA privilege.
-542 Cannot specify a column more than once in a constraint, trigger, or index.
You name the same column more than once in the triggering column list of
an update trigger. Remove the duplicate occurrence of the column name, and
try again. This error also will appear if duplicate column names exist in the
index list.
In the WHERE clause, a subclause ESCAPE char contains more than one
character as char. Review the punctuation of the clause, and revise it so that
it specifies just one character.
Check the accompanying ISAM error code for more information. With this
database server, a database is a directory with the name dbname.dbs, while
tables and indexes are files within that directory. You need to have read and
write access to all these files in order to exercise normal database functions.
Database servers after Version 5.01 do not use this error message.
-547 Must rollforward database in the directory where the database is.
Before you execute the ROLLFORWARD statement, make the current directory
the directory that contains the dbname.dbs directory for the database. Then
execute the statement again.
The column appears in the list of columns for a UNIQUE clause, but it is not
one of the columns defined in this table. Check the spelling of all column
names in this statement. If they are as you intend, then check the definition
of the table. See the discussion of error -328 for a way to list all column names
in a table.
Database servers after Version 5.01 do not use this error message.
The total size of all the columns listed in a UNIQUE, PRIMARY KEY, or
FOREIGN KEY clause is limited. The limit depends on the database server in
use, but all servers support a total of 120 bytes. The limit is the same as the
restriction on the total size of all columns in a composite index. For additional
information, see the CREATE TABLE statement in the Informix Guide to SQL:
Syntax.
The database server that you are using does not support this statement or
some clause in it. When a program starts, the database server in use is chosen
based on the SQLEXEC environment variable (for database servers prior to
Version 6.0). Several small differences in statement syntax exist between
Informix database servers. For example, the CREATE TABLE statement with
OnLine supports the clause IN dbspace (no quote characters used), but other
database servers support the clause IN 'pathname' (single quotes required).
The statement text that is presented with this PREPARE statement has
multiple statements divided by semicolons, and one is a SELECT, DATABASE,
CREATE DATABASE, or CLOSE DATABASE statement. These statements must
always be prepared as one-statement texts. Check the statement text string,
and make sure that you intended multiple statements. If you did, revise the
program to execute these four statement types alone.
-557 Cannot locate table on another server after level-count levels of synonym
mapping.
One of the tables named in this query was in fact a synonym, and it pointed
outside the current database. It named another synonym that pointed outside
its database, and so on for count synonyms with no real table being found.
The database server has given up on the query in case an endless chain of
synonyms exists. To review the synonyms in the current database that refer
to external databases, query systables and syssyntable as follows:
SELECT
T.tabname synonym, servername, dbname, user, S.tabname
FROM systables T, syssyntable S
WHERE T.tabtype = 'S'
AND T.tabid = S.tabid
AND S.btabid IS NULL
When this query returns no row, the requested tabname is not defined as a
synonym in that database (it is a table or view or not defined).
You are running a new version of the database server, and you just opened a
database for the first time with this level of the software. The database server
tried to upgrade the database automatically, probably by defining an
additional system-catalog table. An unexpected error occurred. Check the
accompanying ISAM error code for more information. If the error recurs,
please note all circumstances and contact the Informix Technical Support
Department.
Database servers after Version 5.01 do not use this error message.
You are running a new version of the database server, and you have just
opened a database for the first time with this level of the software. The
database server has tried to upgrade the database automatically, probably by
defining an additional system catalog table. However, it needs to lock the
database for exclusive use to do this conversion, and some other user has the
database open. Wait a short time, and try this statement again. At that time,
the database might be free (or another user's action might have updated it).
This internal error reflects an unexpected condition during a sort. Check the
accompanying ISAM error code for more information. If the error recurs,
please note all circumstances and contact the Informix Technical Support
Department.
This internal error reflects an unexpected condition during a sort. Check the
accompanying ISAM error code for more information. If the error recurs,
please note all circumstances and contact the Informix Technical Support
Department.
This internal error reflects an unexpected condition during a sort. Check the
accompanying ISAM error code for more information. If the error recurs,
please note all circumstances and contact the Informix Technical Support
Department.
This internal error reflects an unexpected condition during a sort. Check the
accompanying ISAM error code for more information. If the error recurs,
please note all circumstances and contact the Informix Technical Support
Department.
This statement refers to a database other than the current database. However,
the current database uses transaction logging, and the external one does not.
This action is not supported; the databases that are used in a single
transaction must all use logging or all not use it.
This statement refers to a database other than the current database. However,
the current database does not use transaction logging, and the external one
does. This action is not supported; the databases that are used in a single
transaction must all use logging or all not use it.
This statement refers to a database other than the current database. However,
the current database is not ANSI compliant, and the external one is. This
action is not supported; the databases that are used in a single transaction
must all be ANSI compliant, or all must not be.
This statement refers to a database other than the current database. However,
the current database is ANSI compliant, and the external one is not. This
action is not supported; the databases used in a single transaction must all be
ANSI compliant, or all must not be.
The maximum time that you can specify as the WAIT time in SET LOCK MODE
is 32,767 seconds. Review this statement, and make sure it specifies the
duration in seconds that you intended. If so, either use a shorter duration, or
(since 32,767 seconds is more than 9 hours) simply omit the duration to
specify an indefinite wait.
This statement tries to apply BUFFERED LOG mode, but the database is ANSI
compliant; that is, it was created with the clause MODE ANSI. One aspect of
ANSI compliance is that all transactions are logged immediately during the
execution of the COMMIT WORK statement. The use of a buffered log entails
a deferred write of log records. It improves performance at some slight risk
of failing to log a transaction. Such a risk is not allowed under the standard;
an ANSI-compliant database must use unbuffered logging.
-577 A constraint of the same type already exists on the column set.
You have placed a constraint (either UNIQUE, PRIMARY KEY, FOREIGN KEY,
or CHECK) on a set of columns, but a constraint of the same type on those
columns already exists. In the case of a FOREIGN KEY, this error only occurs
if the same foreign-key set of columns references the same existing parent key
set of columns. Either the constraint was established when the table was
created, or it was added later. Because the constraint already exists, it is not
added again.
This statement contains an owner name that qualifies the name of a table,
view, index or synonym, and the owner name is longer than the maximum of
8 characters (for example, overly_long.tablename). Review the punctuation
and spelling of all identifiers. Possibly an omitted space or comma causes two
names to run together. To check the names of all known owners, select the
owner column of the relevant system catalog: systables, sysindexes, or
syssynonyms.
You do not own the synonym that is specified in this DROP SYNONYM
statement. To drop an object you do not own, you must have Database
Administrator privilege.
This SET EXPLAIN statement could not be completed because the database
server was unable to find the file of message templates it uses when it
prepares explanatory output. Consult with the person who installed the
Informix software.
Version 4.0 and later do not use this message. For previous versions, check
the accompanying ISAM error code for more information.
-588 Invalid host variable number.
Database servers starting with Version 4.1 detect this internal error. If the
error recurs, please note all circumstances and contact the Informix Technical
Support Department.
This database server supports only single-site update. The operations within
one transaction can modify data at only one site in the network. Some
preceding statement within this transaction has already modified data at one
site; the current statement would modify data at a second site. The statement
is not executed. Roll back the current transaction. Examine the application in
the light of this restriction. Check the names of all tables that UPDATE,
INSERT, and DELETE statements affect to make sure they are all in the same
database or in databases that the same database server holds. (Check the
definition of any synonyms. Synonyms can make tables in external databases
appear to be in the current database.)
Database servers after Version 5.01 do not use this error message.
If this internal error recurs, please note all circumstances and contact the
Informix Technical Support Department.
If this internal error recurs, please note all circumstances and contact the
Informix Technical Support Department.
The specified default value is the wrong type for a column or a stored-
procedure variable. The default value for a column is specified with the
DEFAULT clause in a CREATE TABLE statement. The default value for a
variable in a stored procedure is specified with the DEFAULT clause in a
DEFINE statement in the procedure.
-592 Cannot specify column to be not null when the default value is null.
This CREATE or ALTER TABLE statement specifies that a column may not
contain nulls (the NOT NULL clause), but it also has a DEFAULT clause giving
the default value for new rows as NULL. This contradiction is not allowed.
This CREATE or ALTER TABLE statement specifies that a column has a SERIAL
data type, but it also has a DEFAULT clause for the column. The database
server generates values for a SERIAL column each time a row is created, so the
DEFAULT clause is meaningless.
This CREATE or ALTER TABLE statement specifies that a column has a data
type of BYTE or TEXT. It also has a DEFAULT clause for the column that
specifies something other than NULL. You can only designate the default
value NULL for columns of TEXT or BYTE data type.
The stored procedure EXIT and CONTINUE statements must be placed within
a FOREACH, WHILE, or FOR loop.
If this internal error recurs, please note all circumstances and contact the
Informix Technical Support Department.
This statement creates a new BYTE or TEXT value, but some unexpected error
prevented the creation of that value. Roll back the current transaction. Check
the accompanying ISAM error code for more information. Possibly the
blobspace or tblspace has filled up, or you are not referring to a valid
blobspace. If the error recurs, please note all circumstances and contact the
Informix Technical Support Department.
This statement replaces or deletes a BYTE or TEXT value, but some unexpected
error prevented the deletion of the old value. Roll back the current
transaction. Check the accompanying ISAM error code for more information.
Possibly a hardware error or data corruption of the blobspace or tblspace
occurred. If the error recurs, please note all circumstances and contact the
Informix Technical Support Department.
This statement refers to a BYTE or TEXT value, but some unexpected error
prevented locating the value. Roll back the current transaction. Check the
accompanying ISAM error code for more information. Possibly a hardware
error or data corruption of the blobspace or tblspace occurred. If the error
recurs, please note all circumstance, and contact the Informix Technical
Support Department.
This statement writes a BYTE or TEXT value, but some unexpected error
prevented finishing the creation of the value. Roll back the current
transaction. Check the accompanying ISAM error code for more information.
Possibly a hardware error or data corruption of the blobspace or tblspace
occurred. If the error recurs, please note all circumstances and contact the
Informix Technical Support Department.
This statement refers to a BYTE or TEXT value, but some unexpected error
prevented access to the value. Roll back the current transaction. Check the
accompanying ISAM error code for more information; possibly a hardware
error or data corruption of the blobspace or tblspace occurred. If the error
recurs, please note all circumstances and contact the Informix Technical
Support Department.
This statement writes a BYTE or TEXT value, but some unexpected error
prevented the creation of the value. Roll back the current transaction. Check
the accompanying ISAM error code for more information; possibly a
hardware error or data corruption of the blobspace or tblspace occurred. One
possible cause is that the blobspace for this column is full. Another is that
although a new chunk has been assigned to the blobspace, pages cannot be
allocated in it until the addition of the chunk has been logged and the log file
closed. The OnLine administrator can use the tbmode -l or onmode -l
command to force a log file to be closed. If the error recurs, please note all
circumstances and contact the Informix Technical Support Department.
This statement refers to a TEXT or BYTE value that uses substring notation
(numbers in square brackets that follow the name). However, the substring
is not correctly written. Review all uses of substrings, and make sure that the
first number in each is greater than zero but not greater than the length of the
value; the second number is not less than the first; and the numbers are
separated by a comma.
This statement uses a host variable that is a TEXT or BYTE locator structure but
combines it with data of some other type (for instance, in an expression or by
inserting it into a column of another type). This action is not supported; host
variables of these types may only be used for selecting from, creating, or
inserting into columns of the same type.
This CREATE INDEX statement names a column of the TEXT or BYTE type;
however, these types are not supported for indexing. Because no defined
lexical ordering exists for these types, the database server does not know how
to sort or compare them. Therefore it cannot build an inverted index. Possibly
you understand the data well enough to understand how to extract an
ordered set of key values from it. If so, perform the extraction into a separate
column in the same table, and index that column.
This SELECT statement selects one or more BYTE or TEXT values and also
specifies those columns in the GROUP BY clause. This action is not supported.
Since no defined lexical order to BYTE or TEXT values exists, the database
server cannot order or compare them. Therefore it cannot group rows on their
values. (This condition is true even of substrings selected from a BYTE or TEXT
column.) Review your SELECT statement to ensure that the correct columns
are named in the GROUP BY clause.
This statement specifies DISTINCT values, but it also selects a BYTE or TEXT
value. The database server does not know how to compare or order these
values, so it cannot sort them, and it cannot locate duplicate values. You
cannot use the DISTINCT keyword when these data types are selected.
Reword your SELECT statement to either remove the keyword or select only
normal columns.
This SELECT statement selects one or more BYTE or TEXT values, and also
specifies those columns in the ORDER BY clause. This action is not supported.
Because no defined lexical order to BYTE or TEXT values exists, the database
server cannot order them. (This is true even of substrings selected from a
BYTE or TEXT column.) Review your SELECT statement to ensure that he
correct columns are named in the ORDER BY clause.
This statement uses one of the aggregate expressions, such as COUNT, SUM,
MIN, MAX, or AVG, but applies it to a column that has a BYTE or TEXT data
type. This action is not supported. Review the use of functions, and check
that they are applied only to simple columns.
This statement copies a BYTE or TEXT value from one row to another, but
some unexpected error interfered with the operation. Roll back the current
transaction. Check the accompanying ISAM error code for more information;
possibly a hardware error, data corruption of the blobspace or tblspace, or a
shortage of disk space exists, or an invalid blobspace was named. If the error
recurs, please note all circumstances and contact the Informix Technical
Support Department.
This statement transfers a BYTE or TEXT value between the database and the
user program, but something has happened to prevent that. For example,
perhaps it was not possible to allocate a buffer for a value that was located in
memory. Check the accompanying ISAM error code for more information.
This internal error indicates the database server cannot change an internal
data structure (not a system catalog) that is stored in the root dbspace. Check
the accompanying ISAM error code for more information. Possibly corruption
of the root dbspace occurred. Have the OnLine administrator run the tbcheck
or oncheck utility.
This internal error indicates that the database server is unable to convert a
lock from shared to exclusive. Check the accompanying ISAM error code for
more information. Possibly a hardware error or a problem with shared
memory exists. If the error recurs, please note all circumstances and contact
the Informix Technical Support Department.
This internal error shows that the database server is trying to test a new or
updated row for uniqueness under a UNIQUE or PRIMARY KEY constraint,
but the index that implements the constraint cannot be found. Check the
accompanying ISAM error code for more information. Corruption of the
system catalog tables or the root dbspace or a hardware problem might have
occurred. If the error recurs, please note all circumstances and contact the
Informix Technical Support Department.
This internal error shows that the database server had an unexpected error
while dropping a constraint or the index that implemented it. Check the
accompanying ISAM error code for more information. Corruption of the
system catalogs or the root dbspace might have occurred, or a hardware
problem might exist. If the error recurs, please note all circumstances and
contact the Informix Technical Support Department.
The specified OnLine database server cannot prepare the local transaction
associated with this INFORMIX-STAR two-phase commit transaction.
Eventually, all participants roll back all work associated with the transaction.
No administrative intervention is required. See the ISAM error for more
information about why the database server could not prepare to commit the
local transaction.
You can only create optical clusters on columns of TEXT or BYTE data type.
The column name is some other type. Check that the column is the one you
meant to specify, and review the definition of the table.
An attempt to create an optical cluster has failed. See the ISAM error for more
information.
An attempt to drop an optical cluster has failed. See the ISAM error for more
information.
You are trying to drop a trigger that does not exist. Check that you are
spelling the name of the trigger correctly. Also, you might query the
systriggers system catalog table to review the names of triggers in the
database.
You are trying to drop a trigger that you do not own. You might query the
systriggers system catalog table to see who owns the trigger. You probably
need to ask the owner of the trigger or the DBA to drop the trigger.
-636 Total size of key fields is too large or there are too many key fields.
You have violated one of the following constraints on the cluster key that is
specified in the ON clause of the CREATE OPTICAL CLUSTER statement:
An attempt to alter the size of an optical cluster has failed. See the ISAM error
for more information.
You can create an optical cluster only on TEXT or BYTE columns that are
stored on optical media. Check that you have not specified the name of a blob
column that is stored in a dbspace or blobspace.
All of the blob columns specified in the FOR clause of the CREATE OPTICAL
CLUSTER statement must belong to the same optical family. Check that the
columns that are specified for an optical cluster do not belong to different
families.
Running UPDATE STATISTICS might fix this internal error. If the error recurs,
please note all circumstances and contact the Informix Technical Support
Department.
The family name that is specified in the RESERVE or RELEASE statement must
exist on optical media. Check that you have not specified a dbspace or
blobspace with either of these statements.
-644 FAMILY(), VOLUME(), and DESCR() require BLOB column on optical medium.
The data type of the argument is correct, but the value passed to the function
is not appropriate for the math function. Check that you are passing a
legitimate value to the function.
The argument that is specified for the debug file in the SET DEBUG statement
must be a character data type.
An attempt was made to define a local variable with a default value. Only
global variables and parameters can have default values.
A global variable was defined as LIKE. LIKE variables must be local variables.
Correction: Do not use the LIKE keyword with global variables. Instead,
specify the data type explicitly.
When the routine was declared, it did not contain a RETURNING clause to
indicate that the routine would not return any value, but then a RETURN
statement was found in the body of the routine.
A global variable was not given a default value. Global variables require a
default value.
Example of error:
DEFINE GLOBAL glob INT; -- error
Correction:
DEFINE GLOBAL glob INT DEFAULT 10;
A SELECT statement did not specify where to put the returned values. SELECT
statements within a procedure require either an INTO TEMP clause or an
INTO clause that references the appropriate procedural variables.
Example of error:
CREATE PROCEDURE testproc()
...
SELECT col1, col2 FROM tab; -- error
END PROCEDURE
Correction:
CREATE PROCEDURE testproc()
...
SELECT col1, col2 INTO var1, var2 FROM tab;
SELECT col1, col2 FROM tab INTO TEMP another_table;
END PROCEDURE
Example of error:
FOR i IN (1,2,3,4)
LET i = i + 1; -- error
END FOR
The number of variables on the left side of a LET statement does not match
the number of values on the right side.
Example of error:
LET a,b = 10,20,39;
LET i,j = proc1()+proc2();
LET a,b = (SELECT c1 FROM tab)
Example of error:
FOREACH SELECT col1, col2 INTO var, var FROM tab -- error
...
END FOREACH
Correction:
FOREACH SELECT col1, col2 INTO var1, var2 FROM tab
...
END FOREACH
-663 You are using more than one procedure-calling syntax for procedure
procedure-name.
While calling a procedure, some of the arguments were named, but others
were not.
Example of error:
LET var = proc (arg1 = 10, 20, arg3 = 30); -- error
Correction:
LET var = proc (arg1 = 10, arg2 = 20, arg3 = 30); --correct
LET var = proc (10,20,30);--correct
If this internal error recurs, please note all circumstances and contact the
Informix Technical Support Department.
Example of error:
DEFINE var CHAR(10);
FOR var IN (e1, e2 TO e3, e4) -- error
...
END FOR;
The specified variable was not declared. Check the spelling of the undeclared
variable to ensure that it is not causing the error.
A system call failed in the operating system. The following example shows a
statement that might cause an error:
SYSTEM 'hello';
A variable has been declared twice in the same scope. See the Informix Guide
to SQL: Tutorial, Chapter 12, for an explanation of the scope of procedural
variables.
THE SERIAL data type is not a legal procedure type. Use the INTEGER data
type to match the SQL SERIAL data type.
Example of error:
LET var = proc (arg1 = 10, arg2 = 20, arg1 = 30);-- error
Example of error:
LET var = proc (arg1 = 10, arg2 = 20, arg1 = 30);-- error
If this internal error recurs, please note all circumstances and contact the
Informix Technical Support Department.
You attempted to create a routine that already exists in the database. If you
want to create a new version of the routine, use the DROP ROUTINE statement
to drop the routine before you attempt to create the new version of the
routine.
You called a routine that does not exist in the database. If you invoke the
routine, but your application or another application drops the routine before
you execute the prepared statement, you receive this error.
Example of error:
CREATE PROCEDURE testproc (arg INT, id INT)
RETURNING INT;
UPDATE tab SET col = arg WHERE key = id; -- error
RETURN id;
END PROCEDURE;
A check constraint that is specified at the column level can reference only that
column. To specify a check constraint that spans more than one column,
specify the check constraint at the table level. You cannot create a check
constraint for columns across tables.
See THE ISAM error for more information. If this internal error recurs, please
note all circumstances and contact the Informix Technical Support
Department.
See THE ISAM error for more information. If this internal error recurs, please
note all circumstances and contact the Informix Technical Support
Department.
The system was unable to validate the constraint. See the ISAM error for more
information. If this internal error recurs, please note all circumstances and
contact the Informix Technical Support Department.
The evaluated value of the STEP expression in the FOR statement will lead to
an infinite loop.
Example of error:
FOR i = 10 TO 20 STEP -1; -- error
...
END FOR
Correction: Correct either the range or the step expressions so that the
incremented values are within the range.
The number of returned values from a function is more than the number of
values that the caller expects.
Example of error:
CREATE ROUTINE testroutine(arg INT)
RETURNING INT, INT;
RETURN 1,2;
END ROUTINE
SELECT col FROM tab WHERE col = testroutine(1); -- error
The number of returned values from a function is less than the number of
values that the caller expects.
Example of error:
CREATE ROUTINE testroutine (arg INT)
RETURNING INT, INT;
RETURN 1,2;
END ROUTINE
UPDATE tab SET (c1, c2, c3) = (testroutine(1)); -- eror
A function returned more than one row of values (for example, it executed
RETURN...WITH RESUME) when the caller expected only one row of values.
Example of error:
CREATE ROUTINE testroutine (limit INT)
RETURNING INT;
DEFINE i INT;
FOR i IN (1 TO limit)
RETURN i WITH RESUME;
END FOR
END ROUTINE;
CREATE ROUTINE gettest()
DEFINE var INT;
LET var = testroutine (10); -- error
END ROUTINE
A TRACE statement (except TRACE OFF) was executed before a SET DEBUG
FILE statement. It is unknown where the output of the TRACE statement
would go.
Example of error:
TRACE procedure; -- error
Correction:
SET DEBUG FILE TO 'trace.out';
TRACE procedure;
You declared the variable as a data type other than CHAR or VARCHAR.
Correct the declaration, and try again.
Two or more procedures were executed that defined the same global variable
with different data types.
Example of error:
CREATE PROCEDURE test1()
DEFINE GLOBAL glob INT DEFAULT 10;
...
END PROCEDURE
CREATE PROCEDURE test2()
DEFINE GLOBAL glob CHAR (9) DEFAULT USER;
...
END PROCEDURE
The referential constraint could not be validated. See the ISAM error for more
information. If you are using cascading deletes, database logging must be on.
You have violated a referential constraint. This situation usually occurs when
you are trying to delete a row in a column (parent key) that another row
(child key) is referencing. If you are using cascading deletes, database
logging must be on.
Example of error:
DEFINE c CHAR(100);
LET c = NULL;
...
SYSTEM c; -- error
Example of error:
CREATE PROCEDURE testproc (arg1 INT, arg2 INT)
RETURNING INT;
...
RETURN 1;
END PROCEDURE
SELECT col FROM tab WHERE testproc (arg1 = 10, arg5 = 20); --
error
Example of error:
DEFINE i, j INT;
LET i = j + 1; -- error
Correction: Assign all variables and parameters a legal value before you use
them.
Example of error:
LET e = -1;
FOR i = 10 TO 20 STEP e+1; -- error
...
END FOR
-698 Inconsistent transaction. Number and names of servers rolled back - servers.
This error is generated when you attempt to execute any of the following
statements within an X/Open distributed transaction-processing
environment:
✮ CLOSE DATABASE
✮ CREATE DATABASE
✮ DROP DATABASE
✮ SET LOG
Within this environment, you can execute a single DATABASE statement after
an xa_open call to specify a current database. However, after this database is
selected, no other DATABASE statement can be executed. This error is
generated when you attempt to execute a second DATABASE statement.
-703 Primary key on table table-name has a field with a null key value.
You cannot insert a null value into a column that is part of a primary key.
Example of error:
CREATE PROCEDURE testproc()
...
DROP PROCEDURE testproc; -- error
END PROCEDURE
Correction: You can use an ON EXCEPTION statement to trap this error and
not carry out the DROP PROCEDURE or UPDATE STATISTICS statement.
A user who does not own the procedure or is not DBA must have Execute
privilege in order to run a procedure.
The same column is specified more than once in the column list of the FOR
clause in the CREATE OPTICAL CLUSTER statement. Change your statement
so that no column appears more than once.
You have attempted to create a new optical cluster with the name of an
existing cluster. You must either drop the existing cluster or re-execute your
statement using a different cluster name.
You have already created an optical cluster using the named blob column.
Because a single blob column can be part of only one optical cluster, your
attempt to create a new cluster on this column has failed.
This error can occur with explicitly prepared statements. These statements
have the form:
PREPARE statement id FROM quoted string
After a statement has been prepared in the database server and before the
user executes it, the table has been renamed or altered, possibly changing the
structure of the table. Problems might occur as a result.
This error can also occur with stored procedures. Before the database server
executes a new stored procedure the first time, it optimizes the code
(statements) in the stored procedure. Optimization makes the code depend
on the structure of the tables that the procedure references. If the table
structure changes after the procedure is optimized, but before it is executed,
this error can occur.
Each stored procedure is optimized the first time that it is run (not when it is
created). This behavior means that a stored procedure might succeed the first
time it is run but fail later under virtually identical circumstances. The failure
of a stored procedure can also be intermittent because failure during one
execution forces an internal warning to reoptimize the procedure before the
next execution.
The database server keeps a list of tables that the stored procedure references
explicitly. Whenever any of these explicitly referenced tables is modified, the
database server reoptimizes the procedure the next time that the procedure
is executed.
To prevent this error, you can force reoptimization of the stored procedure.
To force reoptimization, execute the following statement:
UPDATE STATISTICS FOR PROCEDURE procedure name
You can add this statement to your program in either of the following ways:
■ Place the UPDATE STATISTICS statement after each statement that
changes the mode of an object.
■ Place the UPDATE STATISTICS statement before each execution of the
stored procedure.
For efficiency, you can put the UPDATE STATISTICS statement with the action
that occurs less frequently in the program (change of object mode or
execution of the procedure). In most cases, the action that occurs less
frequently in the program is the change of object mode.
When you follow this method of recovering from this error, you must execute
the UPDATE STATISTICS statement for each procedure that references the
changed tables indirectly unless the procedure also references the tables
explicitly.
You can also recover from this error by simply rerunning the stored
procedure. The first time that the stored procedure fails, the database server
marks the procedure as in need of reoptimization. The next time that you run
the procedure, the database server reoptimizes the procedure before running
it. However, running the stored procedure twice might be neither practical
nor safe. A safer choice is to use the UPDATE STATISTICS statement to force
reoptimization of the procedure.
You have attempted to use the DESCR() function to insert an encoded blob
descriptor into a TEXT or BYTE column that is stored in a dbspace or
blobspace. You can use this function only to insert descriptors into blob
columns that are stored on optical media.
The decoding of a blob descriptor prior to its insertion into a data row has
failed. See THE error from the optical subsystem (an error in the -7000 to -7199
range) for more information.
The encoding of a blob descriptor for storage on optical media has failed. See
THE error from the optical subsystem (in the -7000 to -7199 range) for more
information.
An error occurred in retrieving a transaction state. See the ISAM error for
more information.
An invalid data type has been passed to one of the arithmetic functions
(HEX(), TRUNC(), ROUND()).
A mismatch exists in the number of columns the SELECT returns and the
number of variables that are specified in the INTO list. Correct the number of
variables in the INTO list.
For example, the following sequence of code would cause this error:
$prepare pr_stat from 'execute procedure testproc()';
...
/* drop procedure testproc
create procedure testproc() ......
[same application or different]
*/
...
$execute pr_stat;/* triggers error -721 */
The database server has run out of memory for stack space. Ask the Informix
database administrator to increase the STACKSIZE parameter that is specified
in the $ONCONFIG (or $TBCONFIG) file to allocate more memory. OnLine
must be restarted for the change to take effect.
You attempted to use the START DATABASE <database> WITH NO LOG syntax
to remove database logging on an SE database that is ANSI compliant. You
cannot turn off logging by running this statement on this kind of database.
Check that the first argument to dbinfo() is a quoted string that corresponds
to one of the following values: 'dbspace', 'sqlca.sqlerrd1', or
'sqlca.sqlerrd2'.
You called the dbinfo() function with the 'dbspace' string constant as the
first parameter. You must provide either the number of a valid tablespace or
an expression that evaluates to such a number as the second parameter.
Check that you supplied a number as your second parameter and that it
corresponds to the number of a valid tablespace.
The valid arguments to the dbinfo() function are the quoted string
'dbspace' followed by the number of a valid tablespace, or one of the
following two values: 'sqlca.sqlerrd1' or 'sqlca.sqlerrd2'. Check that
you supplied one of these values and enclosed the string in quotes.
Your CREATE TRIGGER statement does not include a triggered action. Add a
triggered action list to the trigger definition, and resubmit the CREATE
TRIGGER statement.
-730 Cannot specify REFERENCING if trigger does not have FOR EACH ROW.
For insert and delete triggers, the offending column is being used in the INTO
clause of the EXECUTE PROCEDURE statement (which is only allowed for an
update trigger). Remove the column names from the INTO clause.
-732 Incorrect use of old or new values correlation name inside trigger.
You cannot use the new or old correlation name outside the FOR EACH ROW
section or in the INTO clause of the EXECUTE PROCEDURE statement. You
cannot use the new or old correlation name to qualify the SELECT COUNT
DISTINCT column. For example, the following statement returns this error:
You cannot specify an old correlation name for an insert trigger. You cannot
specify a new correlation name for a delete trigger.
You have a CREATE TRIGGER statement inside a stored procedure, and within
the CREATE TRIGGER statement, you reference a variable that is defined in the
stored procedure. This action is not legal. Remove the reference to the stored
procedure variable from the CREATE TRIGGER statement, and try again.
Change either the correlation name or the table name, and execute the
CREATE TRIGGER statement again.
Remove the confidence value from the statement. If the offending statement
were:
UPDATE STATISTICS HIGH RESOLUTION 0.1 0.99;
Change it to:
UPDATE STATISTICS HIGH RESOLUTION 0.1;
If you want a distribution that is based upon sampling rather than one that
uses all of the data in a column, replace HIGH with MEDIUM.
By default, LOW mode does not remove distributions, so you need to use the
DROP DISTRIBUTIONS clause. To remove HIGH or MEDIUM distributions, use
the DROP DISTRIBUTIONS clause.
If the value of the confidence desired is greater than 0.99, use HIGH mode. A
value of less than 0.80 is not allowed because it will probably yield a poor
distribution. If you are reducing the confidence to reduce the time that is
required to execute the UPDATE STATISTICS statement, consider using a
larger resolution value.
-740 Resolution must be greater than 0.005 and less than, or equal to, 10.0.
The value of this parameter determines how finely the data distribution is
resolved. A resolution of 10.0 implies that the accuracy of any estimate for the
application of any single selection filter is limited to (+ or -) 5 percent. A value
greater than 10.0 would be of little value because it would not provide
sufficient detail about the distribution of the data.
You are creating a trigger for an event, but another trigger already exists for
that event. You can have only one insert or delete trigger on a table. If you are
defining multiple triggers that occur on an update, the column lists in the
UPDATE statements must be mutually exclusive. You cannot name a column
as a triggering column in more than one UPDATE clause.
-742 Trigger and referential constraint cannot coexist.
You are trying to define an object that already exists in the database.
This error is returned when the triggered SQL statement is BEGIN WORK,
COMMIT WORK, ROLLBACK WORK, or SET CONSTRAINTS. These statements
are not allowed as triggered actions. Remove the offending statement.
This message is defined for general use to apply to error conditions that you
specify in a stored procedure that is a triggered action.
-746 message-string
You supply message-string for this message. You can apply this message to
error conditions that you specify in a stored procedure that is a triggered
action. The corrective action for this error depends on the condition that
caused it. You, the user, define both the condition and the message text.
This error is returned when a triggered SQL statement acts on the triggering
table, or when both statements are updates, and the column that is updated
in the triggered action is the same as the column that the triggering statement
updates.
You exceeded the maximum number of cascading triggers, which is 61. You
may be setting off triggers without realizing it. You can query the systriggers
system catalog table to find out what triggers exist in the database. To trace
the triggered actions, place the action clause of the initial trigger in a stored
procedure, and use the SPL TRACE statement.
An external database server before Version 5.01 sent the triggering statement
or cursor operation. This action is not allowed.
This internal error should not occur unless the database has been corrupted
in some way. To rebuild the distribution, use UPDATE STATISTICS. If the error
recurs, please note all circumstances and contact the Informix Technical
Support Department.
The action clause of the trigger contains a stored procedure that is not called
in a data manipulation statement, and an external database server before
Version 5.01 will execute the procedure. This action is not allowed. A stored
procedure that is called within a data manipulation statement cannot execute
certain SQL statements, including transaction-related statements.
Transaction-related statements are not allowed within a stored procedure
that is a triggered action. A database server before Version 5.01 cannot check
for this condition, so the procedure is not allowed. If possible, execute the
procedure on a Version 5.01 or later database server.
Licensing enforcement is configured for only one user; multiple users cannot
use the product at the same time. If you are using the product from a remote
machine, the product is licensed only for a nonnetworked environment.If
you are using the product from a local machine, wait until the current user
exits, and try again.
The system cannot find the user license file. The user license file might not
have been installed, or it might have been installed improperly. Also, you
might not have the correct file or directory permissions to access the user
license file. Consult your installation documentation.
You might not have appropriate permission for your particular action. Check
with your system administrator.
-756 Evaluation version has expired.
The evaluation version of this product will work only for a specified period
of time. This version allows you to evaluate the product but not use it
permanently. When the evaluation version expires, call Informix to order a
standard version of the product.
If this internal error recurs, please note all circumstances and contact the
Informix Technical Support Department.
This error indicates that an internal memory limitation in the SQL parser has
been reached. This condition can occur if your query contains many nested
expressions. For example, the query might contain many occurrences of AND
and/or OR in the WHERE clause. To work around this condition, rewrite the
query to eliminate some of the nested expressions.
-764 Only DBA can run update statistics on a database in this mode.
You tried to run the UPDATE STATISTICS statement with the DROP
DISTRIBUTIONS clause on the entire database in a mode other than LOW.
Only user informix or the database administrator can do perform this action.
You cannot execute a prepared statement that has been declared. However,
to specify output variables for a prepared singleton SELECT statement, use
EXECUTE INTO (or EXECUTE PROCEDURE INTO) instead of executing
DECLARE, OPEN, and FETCH statements.
-767 Cannot UPDATE/INSERT a remote table using views with check options.
If this internal error recurs, please note all circumstances and contact the
Informix Technical Support Department.
If you cannot find a direct cause for this internal error, please note all
circumstances and contact the Informix Technical Support Department.
If you cannot find a direct cause for this internal error, please note all
circumstances and contact the Informix Technical Support Department.
If you cannot find a direct cause for this internal error, please note all
circumstances and contact the Informix Technical Support Department.
This error can occur during a record insert or update. The most likely cause
is an incorrect fragmentation specification that did not specify a REMAINDER.
The easiest correction is to add a REMAINDER fragment to your SQL
statement. However, the best correction is probably to reexamine the original
fragmentation specification, figure out what is wrong, and fix it with an
ALTER FRAGMENT statement.
-776 Alter fragment error: unable to move rows to new fragmentation scheme.
If you cannot find a direct cause for this internal error, please note all
circumstances and contact the Informix Technical Support Department.
You cannot attach the same table multiple times. Check that your alter
fragment specification attaches the same table only once.
You cannot perform the ALTER FRAGMENT operation because the table or
index is not fragmented. Fragment the table or index, or do not perform the
fragmentation operation.
Incompatible table schemas do not allow you to perform an attach. When you
perform an attach, the table schemas must be identical. Use the ALTER TABLE
statement to first make the schemas compatible and then perform an ALTER
FRAGMENT...ATTACH operation.
The surviving table must be the first entry in the attach list.
If you cannot find a direct cause for this internal error, please note all
circumstances and contact the Informix Technical Support Department.
If you cannot find a direct cause for this internal error, please note all
circumstances and contact the Informix Technical Support Department.
You cannot create rowids multiple times. You attempted to add rowids to a
table that was already defined with rowids. Do not run the command that
caused this error.
-795 Error in finding interrupt. The INFORMIX-NET for Windows TSR probably is
not loaded.
The text editor cannot expand the buffer in which it stores your SQL
statements because no more data space memory is available. If you have
multiple statements in the buffer, execute them one at a time.
The SQL command file that you specified cannot be opened for reading.
Review the filename that you specified. If it is spelled as you intended, check
that it exists in the current directory or in a directory that is named in the
DBPATH environment variable and that your account has read permission
for it.
The SQL command file that you selected with the Choose option is too large
for the edit buffer to hold. The size of the edit buffer is dynamic, and the
program was unable to allocate enough memory to hold the contents of the
command file. (In DOS, this error also appears if the command file exceeds
64 kilobytes.) Check that you specified the file you intended and that it is in
fact an SQL command file. If it is the file that you intended, break it into
smaller parts, and use them separately.
The input file that is specified in this LOAD statement could not be opened.
Check the accompanying ISAM error code for more information. Possibly a
more complete pathname is needed, the file does not exist, or your account
does not have read permission for the file or a directory in which it resides.
The output file that is specified in this UNLOAD statement could not be
opened. Check the accompanying ISAM error code for more information.
Possibly a more complete pathname is needed; the file exists, but your
account does not have write permission for it; or the disk is full.
The program cannot create the file that you specified with the Save option.
The file should be saved in the current directory. Possibly your account does
not have write permission in that directory. Possibly a read-only file of the
same name exists (to eliminate this possibility, try to save the file under a
different name). Possibly the disk is full. Look for operating-system error
messages that might give more information.
The SQL command file that you specified for the Choose menu option cannot
be opened for input. Check that the file is in the current directory and
readable to your account.
The INSERT statement in this LOAD statement has invalid syntax. Review it
for punctuation and use of keywords.
The SQL command file could not be saved. Check that your account has
operating-system permission to write in the current directory and that the
disk is not full.
The application is trying to open the device that is specified in the DBPRINT
environment variable but is failing. Check the setting of that variable, and
rerun the program.
Under the Output option, you selected To-pipe and specified a program or
command to receive the output. However, INFORMIX-SQL was unable to
open the pipe to that program or command. Review the program or
command that you typed to en sure that it is a syntactically valid UNIX or DOS
command and that it names only programs that are in your current execution
path. Also look for operating-system error messages; you might have
exceeded a system quota on memory or processes.
Under the Output option, you sent output to a command or program through
a pipe. Although the pipe was established (indicating that the command had
correct syntax and named existing programs), it has since closed
unexpectedly. This condition indicates that the (first) program in the pipe
terminated before it had received all the output. Possibly it quit due to an
error, or possibly you or another user terminated it with a kill command.
Look for messages from the pipe program that might explain why it quit.
The file that is specified in the prior command cannot be written. Probably
your account does not have operating-system permission to write to the file.
Check the permissions, and run the program again.
The file that is specified in the prior command cannot be read. Probably your
account does not have operating-system permission to read the file. Check
the permissions, and run the program again.
The user menu that was requested cannot be found. Check the spelling of the
menu name. If it is as you intended, check the contents of the sysmenus table
in the current database; the menu might not be defined in this database.
The menu that you selected contains no items. You can choose a different
menu or modify the current one. If you think that the menu should have
items, check the contents of the sysmenuitems table in the current database.
The current SQL statement has already been saved under the name that is
shown at the top of the screen. (This message does not appear to occur any
longer.)
You selected the Run option, but no SQL statement has been entered. Either
enter a statement, or use Choose to load one.
No supporting executable file could be located. The file should have existed
in the directory that the INFORMIXDIR environment variable names. Consult
the person who installed the Informix software.
The SQL command file that you specified is not found in the current directory
or in the directory that is listed in the DBPATH environment variable. Check
the spelling of the name and the setting of DBPATH.
The compiled form specification that you specified is not found in the current
directory or in the directory that is listed in the DBPATH environment
variable. Check the spelling of the name and the setting of DBPATH.
The compiled report specification that you specified is not found in the
current directory or in the directory that is listed in the DBPATH environment
variable. Check the spelling of the name and the setting of DBPATH.
One or more errors was found during compilation of the report specification.
Edit the report-specification file, and compile it again. Follow the prompts to
see the error messages. To look them up, use the Informix Error Messages
manual or the finderr utility.
One or more errors was found during compilation of the report specification.
Edit the report specification file, and compile it again. Follow the prompts to
see the error messages. To look them up, use the Informix Error Messages
manual or the finderr utility.
The INSERT statement that was entered as part of this LOAD statement
requires a VALUES clause. Revise the statement to include one.
Database servers after Version 4.1 do not produce this error message. For a
related error, see error message -208.
Each line of the input file to LOAD must be read into storage in full to be
processed. INFORMIX-SQL resizes its memory buffer as required to hold the
current line. But in this case, it was not able to allocate a large enough buffer.
This error is most likely when the load file contains TEXT or BYTE data values
or very large CHAR values. All of the values for one row must be contained
in one line of the file. If you cannot rerun the program with more memory
available, modify the input file to have fewer or shorter values in each row.
Or use the dbload utility to try to load the file.
You specified the name of a table that does not exist in the current database.
Review the spelling of the table name, and check that you are using the
correct database. Refer to the discussion of error -310 for a way to display all
table names.
-841 Name must start with a letter or "_" and contain letters, digits, or "_".
Names of databases, reports, forms, and other files must conform to this rule.
Repeat this operation with a name that conforms to the rule. Beginning with
Version 6.0, the name of the following identifiers, as well as server and cursor
names, can begin with an underscore: column, connection, constraint,
database, index, procedure, synonym, table, trigger, and view.
INFORMIX-SQL is trying to write the current SQL source file into a temporary
file for editing but received an unexpected operating-system return code.
Look for operating-system error messages that might give more information.
On UNIX systems, possibly your account does not have write access to /tmp
or the directory that is named in the DBTEMP environment variable, or the
disk might be full. With Version 5.01 and later, the INFORMIX-SE database
server uses the DBTEMP environment variable, but INFORMIX-OnLine
Dynamic Server does not.
This database does not contain the sysmenus table, it is empty, or possibly
the top-level menu is not named main. Check that you are using the database
you intended. Consult with the person who defined the user menus for this
database.
The LOAD processor counts the delimiters in the first line of the file to
determine the number of values in the load file. One delimiter must exist for
each column in the table or for each column in the list of columns if one is
specified. Check that you specified the file that you intended and that it uses
the correct delimiter character. If the LOAD statement does not specify a
delimiter, verify that the default delimiter matches the delimiter that is used
in the file. If you are in doubt about the default delimiter, specify the
delimiter in the LOAD statement.
A problem exists with the data on the indicated line of the load data file. The
operation stopped after it inserted lines up to but not including the line that
is noted (number-1 rows have been inserted). If this operation is inside a
transaction, roll back the transaction. If not, either delete the inserted rows
from the table or remove the used lines from the file before you repeat the
operation. To correct the file, look for additional error messages that might
help isolate the problem. Possibly not enough, or too many, fields
(delimiters) exist on the indicated line. Possibly a data conversion problem
exists, (for example, nonnumeric characters in a numeric field, an improperly
formatted DATETIME value, or a character string that is too long). Possibly a
null (zero-length) field exists in a column where nulls are not allowed. Edit
the load file to correct the problem. Look for similar problems in following
lines, and then repeat the operation.
You asked for a form specification to be compiled, but the form compiler
reported one or more errors. Correct the errors in the form specification, and
repeat the operation. The error messages are in the formname.err file.
You asked for a form specification to be compiled, and it was done, but the
form compiler reported one or more warnings. You are not required to
correct a warning before you try the form, but Informix recommends it. The
error messages are in the formname.err file.
Only the user who created the sysmenus table in this database can modify
the menu structure. That user first selected the Modify option of the
User-Menu display while this database was current. To determine who that
user is, query systables as follows:
SELECT owner FROM systables WHERE tabname LIKE 'sysmenu*'
If this action is not appropriate, ask that person to drop the sysmenus and
sysmenuitems tables, and then have the person who should maintain the
menus re-create them.
You requested that a file be dropped, but it could not be dropped, probably
because your account does not have write permissions on it or on the
directory in which it is stored. Use operating-system commands to check the
file permissions.
-852 Write failed. count rows unloaded (check ulimit or disk space).
After writing count lines of output to the unload file, an error occurred trying
to write the next line. Look for operating-system messages that might give
more information. Possible causes include a full disk or a disk quota limit.
-853 Current transaction has been rolled back due to error or missing COMMIT
WORK.
In extreme situations where an internal error has occurred, you must exit the
application and kill the SE engine or the INFORMIX-NET PC communications
module from the DOS command line. To kill the SE engine, run PSTARTSQ
with the -T option. After you kill the SE engine, run PSTARTSQ with no
options to reload it.To kill the INFORMIX-NET PC communications module,
run SETNET with the -T option. After you kill the INFORMIX-NET PC
communications module, run REMSQL to reload it.
This error message also might appear when a client Windows application
uses the wrong .DLL file to connect to a database server across a network.
Client Windows applications that work with INFORMIX-NET PC Version 4.1
(such as Version 4.1 ESQL/C) can also work with INFORMIX-NET for Windows
Version 5.01. Check to see whether INFORMIX-NET PC Version 4.1 and
INFORMIX-NET for Windows Version 5.01 reside on the same client computer
concurrently. If so, check that Version 5.01 of the LDLLSQLW.DLL file
appears in your PATH environment variable setting before Version 4.1 of the
LDLLSQLW.DLL file. In addition, Version 4.1 of the LDLLSQLW.DLL file must
not reside in the current directory, the Windows directory, the Windows
\SYSTEM directory, or the directory that contains the executable file of the
application that you are running.
You tried to use the ALTER TABLE...DROP syntax to drop the rowid column
on a table that is not fragmented. A non-fragmented table has a rowid
column, but you cannot drop it.
A rowid column already exists for the specified table. You cannot create a
rowid for a table more than once. Change your SQL statement.
You cannot drop a nonexistent rowid. You specified a rowid that does not
exist in the specified table. Avoid using rowids in your SQL statement.
Instead, use a primary key to delete data.
You fragmented an object into one fragment. To put the object in a single
dbspace, use the IN clause instead of the FRAGMENT BY clause.
-862 Alter fragment attach must have at least one consumed table specified.
You have not specified a table to be consumed. See the syntax and usage for
ALTER FRAGMENT... ATTACH in the Informix Guide to SQL: Syntax.
You must first drop rowids before you use ALTER FRAGMENT... DETACH. See
the syntax and usage in the Informix Guide to SQL: Syntax.
You must first drop the rowids on the surviving table before you attach the
table.
-865 Cannot add or drop rowids in combination with other alter table options.
You must use separate statements to add or drop rowids with an ALTER
TABLE... ADD or ALTER TABLE... DROP statement.
Before you use an ALTER FRAGMENT... ATTACH statement, you must drop
any serial fields or modify the column type.
See the accompanying ISAM error for more information. A table cannot hold
more than 2 gigabytes of records if it has serial or rowid columns.
This internal error affects the cost calculations that the query optimizer
makes. If the error recurs, please note all circumstances and contact the
Informix Technical Support Department.
If you set the access mode to READ-WRITE, you cannot set the isolation level
to READ-UNCOMMITTED.
Your program attempted to reset the isolation level that a preceding SET
TRANSACTION statement established. Do not use a SET ISOLATION statement
after a SET TRANSACTION statement.
The TRIM function evaluated to NULL. However, the TRIM character value
expression must be null or contain a single character. Your program is
incorrectly written. Every time the TRIM function evaluates to NULL, the
value your program inserts into the TRIM character value expression is not
null or contains more than one character. Correct, recompile, and rerun your
program.
-880 Trim character and trim source must be of string data type.
You used a TRIM function where the TRIM character value expression and the
source character value expression were conflicting data types. The character
and source value expressions must be the string data type. Check the syntax
of the TRIM function, and check that the character and source values contain
string data type values.
-881 Resulting string length from TRIM must range from 1 character to
255 characters.
The TRIM function returned a string whose length did not span a range from
1 to 255 characters. The TRIM function returns a VARCHAR string. A
VARCHAR string must have a length that ranges from 1 character to
255 characters. Check that the TRIM function returns strings whose length is
within that range.
You tried to use the ALTER TABLE... ADD syntax to add a rowid column to a
table that is not fragmented. This usage is not valid. If a rowid column
already exists, rowids already exist on non-fragmented tables.
When you issue a DROP TABLE or DROP VIEW statement, you cannot drop the
table or view if you specify the RESTRICT option and a view or foreign-key
constraint exists that depends on that table or view.
You also cannot drop a table if you specify the RESTRICT option and a
violations and diagnostics table exists for that table.
You cannot use the RESTRICT option to REVOKE a privilege if that action will
cause abandoned privileges, abandoned views, or abandoned table
constraints. Refer to the Informix Guide to SQL: Tutorial for more information.
You attempted to attach a table that had constraints. Remove all referential
and primary constraints from that table, and attempt an attach.
-889 Internal dataskip condition, should reposition to next row and continue.
If this internal error recurs, please note all circumstance, and contact the
Informix Technical Support Department.
You cannot change the object mode of a temporary table object to the
disabled or filtering object mode.
-892 Cannot disable object object-name due to other active objects using it.
Other objects are using this object. If the object being disabled is an index,
then a unique constraint, primary constraint, or referential constraint might
be using that object. If the object is a unique or a primary-key constraint, then
a referential constraint might be using that object.
The user has issued a SET statement to set a database object to the enabled or
filtering object mode, or the user has issued a CREATE INDEX, CREATE
TRIGGER, or CREATE TABLE statement to create a database object in the
enabled or filtering object mode. However, this object needs other disabled
objects. For example, before enabling a referential constraint on a table, the
user must first enable the indexes that the constraint needs.
The object name that the user specified explicitly in the SET statement is not
found in the database.
The user has issued a START VIOLATIONS TABLE statement for a target table.
The database server is not able to create the violations and diagnostics tables
for this target table. Any one of the following situations might be the reason
for the failure:
If a violations and diagnostics table has not been started for the target table,
and an INSERT, DELETE, or UPDATE statement fails to satisfy any
filtering-mode object on the target table, the user who issued the INSERT,
DELETE, or UPDATE statement receives this message.
To recover from this error, you must start a violations and diagnostics table
for the target table. Then, when users issue INSERT, DELETE, or UPDATE
statements that fail to satisfy filtering-mode objects that are defined on the
table, they do not receive this message.
The user has tried to alter or drop a table that is serving as a violations table
or a diagnostics table for another table.
The user has tried to add, drop, or modify a column in a table that has a
violations and diagnostics table associated with it.
The number of records in the diagnostics table either exceeds or will exceed
the limit that is specified in the MAX ROWS clause of the START VIOLATIONS
TABLE statement. When a single statement on the target table (such as an
INSERT or SET statement) causes more records to be inserted into the
diagnostics table than the limit that is specified by the MAX ROWS clause, this
error is returned to the user who issued the statement on the target table.
This statement refers to another host computer system, and that system is
active and accessible. However, the sqlexecd network daemon has not been
started on it, so no database services can be gotten from it. Contact the DBA
of the other system. Check that the INFORMIX-STAR or INFORMIX-NET
software is correctly installed.
This statement seems to refer to a database from another database server, but
the database name, site name, server name, or punctuation is incorrect.
Review the statement, and check that all identifiers start with a letter (or
underscore, for Version 6.0 and later) and contain only letters, digits, and
underscores, and that the reference is in the form dbname@sitename or
//sitename/dbname (before Version 6.0) or dbname@servername or
//servername/dbname (Version 6.0 and later). If you are using
INFORMIX-OnLine for NetWare, check that you provided the remote database
name in one of the forms that is explained in the product manual.
The database server that you tried to access or a path that was specified in
your DBPATH environment variable is located on an NFS-mounted file
system. However, the database server or client application encountered an
error accessing the NFS-mounted table file /etc/mtab (or, on some operating
systems, /etc/mnttab). This condition probably occurred because your
account does not have read permission for the file. Contact your system
administrator, and have the file made readable to public.
The database server needs to check the system configuration file /etc/mtab to
verify the location of a file system. However, it got an error when it tried to
read that file, probably because your account does not have read permission
for it. Contact your system administrator, and have the file made readable to
public.
-923 INFORMIX is not licensed to access the current database server only.
This version of the Informix product is not licensed for network use. Locate
the version of the software that is licensed for use with INFORMIX-STAR or
INFORMIX-NET, and reset your INFORMIXDIR environment variable and the
SQLEXEC environment variable (for database servers prior to Version 6.0) to
point to it.
This statement contains references to more sites than the database server can
handle. Through Version 4.1, the limit on different site names that can appear
in one statement is 32 (later versions might allow more). Review the
statement, and check that only necessary sites are named. If so, revise the
operation to use fewer sites (for example, by selecting some data into a local,
temporary table).
-928 The database server is not licensed for distributed data access.
The application is trying to access another computer system but failed. Note
the server name in the current statement. Ask your network administrator
and DBA to check that the network is operational and that the particular
database server is active. This message appears with Version 6.0 and later.
In the ASCL context, this error might also indicate problems in your
informix.ini file. Verify that the SERVICE, HOST, and PASSWD entries are
correct.
This statement uses data from another computer system, but the connection
has been lost. Roll back the transaction, and try again after you reestablish the
connection.
The database server that you tried to access does not accept either your user
ID, the login name that is specified for the desired server host in your ~/.netrc
file, or the user name that is specified in the USER clause of a CONNECT
statement. If you are explicitly specifying your user name in the ~/.netrc file
or in a CONNECT statement, check that the name is correct. If you do not have
a valid user ID on the server machine, see your system administrator. This
message appears with Version 6.0 and later.
This statement refers to a database on another computer system, but the other
system does not accept your account name. You must have a valid login
identity on any computer system you access. See your network administrator
about getting a login ID. This message appears prior to Version 6.0.
-952 User's password is not correct for the database server.
The password that is specified for the server computer in your ~/.netrc file or
in the USER clause of a CONNECT statement is incorrect. The database server
does not accept (or cannot find) your account password. Check that your
password is specified correctly, and try again. This message appears with
Version 6.0 and later.
The database server resides on another computer system that does not accept
(or cannot find) your account password. Verify that your password is
correctly entered in the appropriate authorization or password file. This
message appears prior to Version 6.0.
The network server was unable to start the database server thread. The most
common cause for this error is a failure to define the INFORMIXDIR
environment variable, by root, at the time the database server process was
started. Contact your network administrator, and ask that the database server
process on the remote system be restarted with a valid path to the Informix
software. This message appears with Version 6.0 and later.
The network daemon, sqlexecd, on the other computer system was unable to
start the database server process. The most common cause of this error is a
failure to define the INFORMIXDIR and SQLEXEC environment variables, by
root, at the time the daemon was started. Contact your network
administrator, and ask that the daemon on the remote system be restarted
with a valid path to the Informix software. This message appears prior to
Version 6.0.
The desired database server does not consider the client computer or your
user ID trusted. Ask the system administrator to include the client computer
as a trusted host and/or your user id as a trusted user in the /etc/hosts.equiv
file on the server computer or in the .rhosts file in your home directory on the
server computer. See the UNIX manual pages on HOSTS.EQUIV(5) for more
information.
Alternatively, you can explicitly specify your user name and password in the
USER clause of a CONNECT statement or in the .netrc file in your home
directory on the client computer. See the Informix Guide to SQL: Syntax for
information on the CONNECT statement, and the UNIX manual pages
regarding NETRC(5) for information on the .netrc file. This message appears
with Version 6.0 and later.
Please note the specifics of your system when this internal error occurred,
and call Informix Technical Support.
The user has attempted to change the object mode of a disabled constraint or
disabled unique index to the enabled or filtering mode, but the SET statement
fails because the table contains data that violates the constraint or the
unique-index requirement. If a violations table has been started for the table
that contains the inconsistent data, this message is returned to the user. The
message is returned whether or not the SET statement included the WITH
ERROR option.
The in-place alter table operation cannot be performed. Please see the
accompanying ISAM error for more information.
-973 Cannot insert from the violations table to the target table.
The user issued a statement that attempts to insert rows from the violations
table into the target table. For example, the user enters the following
statement:
INSERT INTO mytable SELECT * FROM mytable_vio
If the target table has some filtering-mode objects, this error is returned to the
user. The user can recover in any of the following ways:
■ Set the object mode of the filtering objects to some other mode.
■ Stop the violations table.
■ Insert rows from the violations table into a temporary table, and then
insert rows from the temporary table into the target table.
-974 Cannot drop not null constraint on the serial column.
The user issued a statement to drop a NOT NULL constraint on a column that
has a SERIAL data type. Such constraints can be disabled, but they cannot be
dropped before the column is dropped.
The user tried to create a new object in an object mode that does not apply to
that object type, or the user set the object mode of an existing object to a mode
that does not apply to that type of object. For example, if the user tries to
create a trigger in the filtering mode or set an existing trigger to the filtering
mode, the user receives this error.
The user does not have the required fragment-level privilege on the table
fragment. This message is always followed by another message that
identifies the privilege that the user lacks. If an INSERT statement fails, the
second message is -271. If an UPDATE statement fails, the second message is
-346. If a DELETE statement fails, the second message is -240.
Similarly, if the user issued a SET statement to change the object mode of a
disabled constraint or a disabled unique index to the enabled or filtering
mode, and if a violations table has been started for the target table, the user
receives this message if the user lacks the INSERT privilege on the violations
or diagnostics table associated with the target table.
This internal error should not appear. If the error recurs, please note all
circumstances and contact the Informix Technical Support Department.
The key that the ACCEPTKEY environment variable specifies is one that
INFORMIX-SQL always uses. Set a different value in the environment
variable.
The error code that is shown was returned, but the program could not display
the message text for that number, probably because one of the .iem message
files is missing from the directory that the INFORMIXDIR environment
variable specifies. Look up number in this manual. Also consult with the
person who installed the Informix software to find out why the message files
are not available.
The only valid settings for the INFORMIXTERM environment variables are
termcap and terminfo. Setting the variable to termcap (or leaving it
undefined) directs 4GL to use the TERMCAP facility for terminal control.
Setting it to terminfo causes 4GL to use the TERMINFO facility. Other
settings, including variations of the words termcap and terminfo with capital
letters in them, cause this error.
In a termcap definition for a terminal, the entry tc= causes the use of a
definition for default values for a different terminal. That terminal might also
have a tc= entry, and so on. However, 4GL cannot follow more than four
tc= commands. The termcap definition in use at this time (as the TERM or
TERMCAP environment variable specifies) exceeds the limit. Write or find a
termcap definition that is more self contained.
If this internal error recurs, please note all circumstances and contact the
Informix Technical Support Department.
A common problem is the attempted use of field tags instead of field names.
The field tag is the name that is written in the screen picture and that appears
at the left side of the ATTRIBUTES statement for that field. It is not the name
of the field for input or display purposes. The field name is the column name
with which it is associated. This name appears to the right of the equal sign
in the ATTRIBUTES section.
ATTRIBUTES
f000 = customer.customer_num,color=red;
The name of the field in the preceding example is customer_num. Use of the
tag f000 in an INPUT statement will produce an error.
A list or range of acceptable values has been established for this column (via
an INCLUDE attribute in the form-specification file). You must enter a value
within the acceptable range.
-1104 The two entries were not the same -- please try again.
To guard against typographical errors, this field has been designated VERIFY
(in the form specification file). The value in this field must be entered twice,
identically. Carefully reenter the data. Alternatively, you can cancel the form
entry with the Interrupt key (usually CTRL-C, but see the operating
instructions that the program author supplied).
-1105 You cannot use this editing feature because a picture exists.
This field is defined (in the form specification file) with a PICTURE attribute
to specify its format. You cannot use certain editing keys (for example,
CTRL-A, CTRL-D, and CTRL-X) while you are editing such a field. Use only
printable characters and the backspace to enter the value.
You entered a value in this field that cannot be stored in the program variable
that is meant to receive it. For example, possibly you entered a decimal
number when the application provided only an integer variable, or you
entered a character string that is longer than the application expected. Note
all the circumstances and then discuss the problem with the person who
wrote the application program.
The number of program variables does not agree with the number of screen
fields in a CONSTRUCT, INPUT, INPUT ARRAY, DISPLAY, or DISPLAY ARRAY
statement. Review the statement in conjunction with the form specification to
see where the error lies. Common problems include a change in the definition
of a screen record that is not reflected in every statement that uses the record,
and a change in a program record that is not reflected in the form design.
The form file that is specified in an OPEN FORM statement was not found.
Inspect the "form-file" parameter of the statement. It should not include the
file suffix.frm. However, if the form is not in the current directory, it should
include a complete path to the file.
If this internal error recurs, please note all circumstances and contact the
Informix Technical Support Department.
-1112 A form is incompatible with the current 4GL version. Rebuild your form.
The form file that is specified in an OPEN FORM statement is not acceptable.
Possibly it was corrupted in some way, or it was compiled with a version of
the Form Compiler that is not compatible with the version of the 4GL
compiler that compiled this program. Use a current version of the Form
Compiler to recompile the form specification.
A BYTE or TEXT variable has been located in memory, and a value has been
assigned to the variable. However, not enough data memory is available to
hold the variable. Review the program, and locate the large value in a file
instead.
The current statement requires the use of a screen form. For example,
DISPLAY...TO or an INPUT statement must use the fields of a form. However,
the DISPLAY FORM statement has not been executed since the current
window was opened. Review the program logic to ensure that it opens and
displays a form before it tries to use a form.
For 4GL programs that were compiled at Version 5.0 and later or that are
running under 4GL/GX, this error cannot occur.
-1116 Default value from form field cannot be converted to input variable type.
This statement takes input from a form field whose default value (which the
ATTRIBUTES keyword DEFAULT specifies in the form) is not compatible with
the program variable that receives it. Review all the program variables that
are named in this statement, and compare them to the definitions of the fields
in the form specification. Check that each variable corresponds to the
intended field and has a compatible data type.
This message is not believed to be in use in any current product. If the error
recurs, please note all circumstances and contact the Informix Technical
Support Department.
This statement (INPUT or INPUT ARRAY) contains a NEXT FIELD clause that
names a field that is not defined in the form. Perhaps the form has been
changed, but the program has not. Also see the note for error message -1102.
The message file that is specified in the HELP FILE clause of the most recent
OPTIONS statement does not exist. Find that OPTIONS statement in the
program, and review the "help-file" parameter. It must contain the complete
filename of the prepared message file. If the file is not in the current directory,
it must have a full pathname. Message files are prepared with the
mkmessage utility.
The message file that is named in the most-recently executed OPTIONS HELP
FILE statement was not acceptable. Possibly it has been corrupted in some
way. Possibly the OPTIONS statement named the message source file instead
of the compiled message file (the output of mkmessage). Possibly the file was
compiled with an outdated version of the mkmessage utility. Recompile the
message file with the current version of the utility, and review the program
source to make sure that it names the correct file.
The cursor is in a form field that has been designated REQUIRED. You must
enter some value before the cursor can move on to another field. However, to
enter a null value, type any printable character and then backspace.
Alternatively, you can cancel the form entry with the Interrupt key (usually
CTRL-C, but see the operating instructions that the program author supplied).
The cursor is in a form field that has been designated VERIFY. You must enter
the value twice, identically, before the cursor can move on to another field.
This requirement helps to ensure that no typographical errors occur during
data entry. Alternatively, you can cancel form entry with the Interrupt key
(usually CTRL-C, but see the operating instructions that the program author
supplied).
You are entering data into an array of records that is represented in the
program by an array of program variables. That array is now full; no place is
available to store another record. Press the ACCEPT key (usually ESCAPE, but
see the operating instructions that the program author supplied) to process
the records that you have entered.
You pressed the Delete Row function key (usually F2, but see the operating
instructions that the program author supplied) in an empty row. Nothing
was deleted.
-1128 There are no more rows in the direction you are going.
You are attempting to scroll an array of records farther than it can go, either
scrolling up at the top or scrolling down at the bottom of the array. Further
attempts will have the same result.
This statement includes a BEFORE FIELD clause or an AFTER FIELD clause that
names a field that is not defined in the form that is currently displayed.
Review the program to ensure that the intended form was displayed, and
review this statement against the form specification to ensure that existing
fields are named. Also see the note on field names for error message -1102.
-1130 You cannot have multiple BEFORE clauses for the same field.
This statement includes at least two BEFORE FIELD clauses that name the
same form field. Only one is supported. Find all the BEFORE FIELD clauses
relate to one field, and combine them into a single clause.
-1131 You cannot have multiple AFTER clauses for the same field.
This statement includes at least two AFTER FIELD clauses that name the same
form field. Only one is supported. Find all the AFTER FIELD clauses that relate
to one field, and combine them into a single clause.
-1132 The destination string of the CONSTRUCT statement is not large enough.
The outcome of a CONSTRUCT statement is a character string that contains all
the conditions that the user entered. This string is in a form suitable for use
as the WHERE clause of a SELECT statement. In this CONSTRUCT statement,
the result string is longer than the program variable that is specified to
receive it. As a general rule, the length of the variable must allow enough
room for the names of all the screen fields that are used in the statement, plus
room for the field contents and for punctuation and relational operators.
Review the statement, and revise the definition of the receiving variable
accordingly.
The key that is specified in one clause of this OPTIONS statement is not
defined in the termcap file (or the terminfo file if you are using it instead).
Review the HELP KEY, INSERT KEY, NEXT KEY, PREVIOUS KEY, and DELETE
KEY clauses. Compare the function keys that they specify to the current
termcap definition.
-1135 The row or column number in DISPLAY AT exceeds the limits of your
terminal.
Review the DISPLAY...AT statement. Make sure that the position numbers are
in the correct order (row number first, then column) and that they make sense
for the current terminal or window. The dimensions of the terminal for UNIX
systems are determined when the program starts by reading termcap
information (or terminfo information, depending on the value of the
INFORMIXTERM environment variable). A screen location that is correct for
one user of the program might not be correct for all. On DOS systems, the
window size is always 24 lines by 80 characters.
The window dimensions that are specified in the WITH clause of this OPEN
WINDOW statement conflict with the size of the screen. The entire window
cannot be displayed, so the statement is not executed. If the WITH clause
specifies dimensions, you can use smaller ones; if it specifies a form, the
SCREEN statement in the form specification sets the dimensions.
Alternatively, you might be able to get the window into the screen by
changing the origin that is provided in the AT clause. The dimensions of the
terminal for UNIX systems are determined when the program starts by
reading termcap information (or terminfo information, depending on the
value of the INFORMIXTERM environment variable). Screen dimensions that
are correct for one user of the program might not be correct for all. On DOS
systems, the window size is always 24 lines by 80 characters.
The cause of the problem is a lack of data memory. Change the logic of the
program to keep fewer windows open concurrently, or use fewer global
variables.
The window that this OPEN WINDOW statement describes cannot be opened
because its border does not fit on the screen. Despite the wording of the
message, the window is not necessarily too large for the screen. However,
one or more of its borders (top, bottom, left, or right) cannot be drawn. The
position of the window is set in the OPEN WINDOWS statement; check that it
starts no higher than row 2 and no farther left than column 2 (or else remove
the BORDER attribute). The OPEN WINDOW statement or the form that it
names sets the size of the window.
The dimensions of the terminal for UNIX systems are determined when the
program starts by reading termcap information (or terminfo information,
depending on the value of the INFORMIXTERM environment variable). If the
termcap entry includes sg#1 (terminfo: xmc#1), 4GL reserves an additional
column to the left and right of a bordered window. On DOS systems, the
window size is always 24 lines by 80 characters.
This OPTIONS statement includes a FORM LINE clause that uses LAST. You
can specify an absolute form line or one relative to FIRST, but you cannot
specify it relative to LAST.
The option that is named in this NEXT OPTION statement has previously been
hidden with the HIDE OPTION statement. Because it is not visible to the user,
it cannot be highlighted as the next choice.
-1141 Cannot close window with active INPUT, DISPLAY ARRAY, or MENU
statement.
The window dimensions of the current window are too small to contain the
form that is to be displayed. Review the window dimensions, and compare
them to all forms that will be displayed in that window. The dimensions of
the form are established in the form-specification file with the SCREEN
statement. The dimensions of the window are set during the OPEN WINDOW
statement, either directly or by opening the window WITH a particular form.
The row and column position in the AT clause of this OPEN WINDOW
statement points off the physical screen. The statement is not executed.
Review the program, and check that the numbers are in the correct order (first
row, then column). The dimensions of the terminal are determined when the
program starts by reading termcap information (or terminfo information,
depending on the value of the INFORMIXTERM environment variable), so a
window origin that is correct for some users might not be correct for all.
Although 4GL truncates the output of MESSAGE and COMMENT to fit the
window dimensions, it does not do so for PROMPT and the user's response.
Reduce the length of the prompt string, or make the window larger. You
could display most of the prompting text with DISPLAY and then prompt
with a single space or colon.
The AT clause of this OPEN WINDOW statement uses a negative number. The
row and column sizes must be positive integers. Revise the statement.
Review the OPEN WINDOW statement for the current window in conjunction
with this MENU statement. The window must be at least two rows tall, and it
must be wide enough to display the menu title, the longest option name, two
sets of three-dot ellipses, and six spaces. Revise the program to make the
window larger or to give the menu a shorter name and shorter options.
This message is not believed to be in use in any current product. If the error
recurs, please note all circumstances and contact the Informix Technical
Support Department.
-1160 FMP has exceeded its number of concurrent DISPLAY ARRAY statements.
-1163 The FMP version number is incompatible with the 4GL program. Relink the
4GL program and run again.
-1164 A NEXT FIELD specified in the instructions section of the form is not used
within the current input statement.
The current form field has a NEXT FIELD specification (in the INSTRUCTIONS
section of the form). However, the specified next field is not named in the
current INPUT statement, so the cursor cannot move to that field.
The SHOW OPTION, HIDE OPTION, or NEXT OPTION statement cannot refer
to an option (command) that does not exist. Check the spelling of the name
of the option.
Check the setting of your TERM environment variable and the setting of your
TERMCAP or TERMINFO environment variable. Check with your system
administrator if you need help with this action.
In the indicated MENU statement, you defined a key value in more than one
COMMAND KEY keylist or both in a COMMAND KEY keylist and as the
default activation key for one or more nonhidden COMMAND clauses (for
example, that key value is also the first character of one or more menu-option
strings). This condition is illegal because MENU has no way to resolve what
to do if the given keystroke occurs.
A given key might appear as the default activation key for more than one
COMMAND (without the KEY clause) because the user will be prompted for
subsequent keystrokes until a unique string is obtained. This action is not
possible with COMMAND KEY because only one keystroke is compared.
Zero cannot be a divisor. In some cases, this error arises because the divisor
is a character value that does not convert properly to numeric.
The year in a DATE value or literal must be either two or four decimal digits;
that is, from 00 to 99 or from 0001 to 9999. The number 0000 and other
numbers of digits are not acceptable.
The month in a DATE value or literal must be a one- or two-digit number from
1 to 12.
The day number in a DATE value or literal must a one- or two-digit number
from 1 to 28, 30, or 31 depending on the month that accompanies it.
-1207 Converted value does not fit into the allotted space.
-1209 Without any delimiters, this date must contain exactly 6 or 8 digits.
When a literal date value is entered in numeric form, not enclosed in quotes
to make it a character string, it must be entered as a number of precisely
6 digits (representing mmddyy) or 8 digits (representing mmddyyyy). Because
no punctuation is present, a date with any other number of digits is
ambiguous; it cannot be divided into month, day, and year with certainty.
The DATE type is compatible with the INTEGER type, but not all integer
values are valid dates. This error arises in attempts to convert to character
from a date whose numeric value is less than -693,594 or greater than
2,958,464. Numbers that are outside this range have no representation as
dates.
4GL cannot allocate memory for a small, temporary work area that is used for
processing an expression. To avoid this error, simplify the program in almost
any way to release enough space
-1212 Date conversion format must contain a month, day, and year component.
When a date value is converted between internal binary format and display
or entry format, a pattern directs the conversion. When conversion is done
automatically, the pattern comes from the environment variable DBDATE.
When it is done with an explicit call to the rfmtdate(), rdefmtdate(), or USING
functions, a pattern string is passed as a parameter. In any case, the pattern
string (the format of the message) must include letters that show the location
of the three parts of the date: 2 or 3 letters d; 2 or 3 letters m; and either 2 or
4 letters y.
If you are using NLS, the decimal character or thousands separator might be
wrong for your locale.
The SMALLINT data type can accept numbers with absolute values from
0 through 32,767 (plus or minus (2 to the 15th power) - 1). To store numbers
that are outside this range, redefine the column or variable to use INTEGER or
DECIMAL type. (The value -32,768 is a 16-bit value but is not acceptable; it
indicates a null value in 4GL.)
The INTEGER data type can accept numbers with absolute values from
0 to 2,147,483,647 (plus or minus (2 to the 31st power) - 1). To store numbers
that are outside this range, redefine the column or variable to use DECIMAL
type. (The value -2,147,483,648 is a 32-bit value but is not acceptable; it
indicates a null value in 4GL.)
The exponent of a numeric literal cannot exceed 32,767. In fact, none of the
available data types can accommodate an exponent that large. However, the
exponent itself triggers this message before checking the destination of the
number. Check the statement for missing or misplaced punctuation that
might have caused two numbers to run together.
The pattern string that is used to format a date (either the DBDATE
environment variable or the pattern that is passed to rfmtdate() or the USING
function) is too long. The limit is 80 bytes.
The input to the rstrdate() function does not properly represent a date: either
it has nondigits where digits are expected, an unexpected delimiter, or
numbers that are too large or are inconsistent.
-1219 Numeric value from database is too large for COBOL data item.
This message is not believed to be in use in any current product. If the error
recurs, please note all circumstances and contact the Informix Technical
Support Department.
-1220 Numeric value from database is too small for COBOL data item.
This message is not believed to be in use in any current product. If the error
recurs, please note all circumstances and contact the Informix Technical
Support Department.
This message is not believed to be in use in any current product. If the error
recurs, please note all circumstances and contact the Informix Technical
Support Department.
The SMALLFLOAT data type can accept numbers within a certain range of
exponents. The maximum and minimum exponent values are different
depending on the host operating system (the range is the same as that
supported by the C compiler for float values in this system). In the current
statement, a constant number is being converted for storage in a FLOAT
variable or column, and the exponent is too large or too small.
This message is not believed to be in use in any current product. If the error
recurs, please note all circumstances and contact the Informix Technical
Support Department.
This statement attempted to store a null value in a column that has been
defined as not allowing nulls. Review the definition of the table, and revise
the statement so that it supplies values for all required columns.
4GL cannot find a message number that should appear in a message file that
was installed with the product. Reinstall all files of type .iem from the
distribution materials. If you have modified the contents of the file,
4glusr.msg, review all deletions that you might have made, and recompile
that file.
An invalid filename has been supplied for the message file that is used for
displaying error messages such as the ones in this book, so the file cannot be
opened. Check the value of the DBLANG environment variable, if one is
specified.
This message is not believed to be in use in any current product. If the error
recurs, please note all circumstances and contact the Informix Technical
Support Department.
This message is not believed to be in use in any current product. If the error
recurs, please note all circumstances and contact the Informix Technical
Support Department.
If this error arises in a 4GL program, please note all circumstances and contact
the Informix Technical Support Department.
The era name or the era offset that is given in the input string is invalid or has
not been entered in the required format. Check that the era name and offset
are valid and in the proper order in the input string. Check the format against
the value of DBTIME, DBDATE, or the format string passed to the SQL API
function, whichever is appropriate.
The date format requires an era name, but no name that matches the era
names in the GLS locale could be found in the input string. Check that you are
using the correct locale and that you entered the era name correctly.
The era offset that is given is not within the range for the era that is specified.
Check that the era offset is within the valid range for the era that is specified.
Back end refers to the database server. In this an internal error, look for
operating-system messages that might give more detail. In DOS systems, you
probably are out of memory; exit to the operating-system command line, and
resubmit your program. After you verify that no system limit or local
problem exists, please note all circumstances and contact the Informix
Technical Support Department.
-1258 Cannot attach to shared memory used to communicate with back end.
Back end refers to the database server. In this internal error, look for operating-
system messages that might give more detail. After you verify that no system
limit or local problem exists, please note all circumstances and contact the
Informix Technical Support Department.
The system will attempt any data conversion that makes sense. However, it
does not support some conversions, such as INTERVAL to DATE, or DATETIME
to MONEY. Possibly you referenced the wrong variable or column. Check that
you have specified the data types that you intended and that literal
representations of data values are correctly formatted.
The first field of a DATETIME literal must contain either 1 or 2 digits (if it is
not a YEAR) or else 2 or 4 digits (if it is a YEAR). The first field of an INTERVAL
literal represents a count of units and can have up to 9 digits, depending on
the precision that is specified in its qualifier. Review the DATETIME and
INTERVAL literals in this statement, and correct them.
The form of a DATETIME or INTERVAL literal is very limited. One can contain
only decimal digits and the allowed delimiters: the hyphen between year,
month, and day numbers; the space between day and hour; the colon
between hour, minute, and second; and the decimal point between second
and fraction. Any other characters, or these characters in the wrong order,
produce an error.
Inspect the DATETIME and INTERVAL literals in this statement; at least one of
them contains at least one incorrect field. In a DATETIME literal, the year
might be zero; the month might be other than 1 to 12; the day might be other
than 1 to 31 or inappropriate for the month; the hour might be other than 0 to
23; the minute or second might be other than 0 to 59; or the fraction might
have too many digits for the specified precision.
In an INTERVAL literal, the constraints are the same except that the first field
is a count and can have as many digits as the qualifier specifies.
This message was issued because a function that requires an argument that
is a locator (a reference to a BYTE or TEXT value) received something other
than a valid locator (such as a NULL parameter). Review the program logic to
make sure the arguments are correct. If the error recurs, please note all
circumstances and contact the Informix Technical Support Department.
You have not specified an input string for this function, so the conversion
cannot proceed. Set the input-string argument, and call the function again.
(This function might require that you define formatting directives with the
DBTIME environment variable.)
This error is returned when the function is called and the address space for
the output buffer is null or smaller than the format-string length. Redefine the
size of the address, and execute the function again. (This function might
require that you define formatting directives with the DBTIME environment
variable.)
The output buffer length is zero, or the buffer pointer is a null pointer.
Database servers after Version 5.01 do not use this error message.
A format conversion character in the format string is not valid. Check the
string against the table of format conversion directives for DATETIME and
INTERVAL format conversion functions in the manual for your embedded
language product. See also the discussion of the DBTIME environment
variable in Chapter 4 of the Informix Guide to SQL: Reference.
Check that the ASCII string that contains a DATETIME or INTERVAL value
conforms to the format string. For example, a percent character in a
DATETIME or INTERVAL ASCII string must have a matching "%%" sequence
in the format string. See also the discussion of the DBTIME environment
variable in Chapter 4 of the Informix Guide to SQL: Reference.
Check the pattern-matching string that the LIKE or MATCHES clause of the
statement specifies. In an ANSI database, the only valid characters that can be
escaped are: %, _, and the escape character for the LIKE clause, and *, ?, [, ],
and the escape character for the MATCHES clause.
This message applies only to ANSI databases. You tried to insert into a CHAR,
NCHAR, VARCHAR, or NVARCHAR column using a string host variable, but
the string is too long.
A list or range of acceptable values has been established for this column (via
an INCLUDE attribute in the form-specification file). You must enter a value
within the acceptable range.
-1302 The two entries were not the same -- please try again.
To guard against typographical errors, this field has been designated VERIFY
(in the form-specification file). You must enter the value in this field twice,
identically. Carefully reenter the data. Alternatively, you can cancel the form
entry with the Interrupt key (usually CTRL-C, but see the operating
instructions that the program author supplied).
-1303 You cannot use this editing feature because a picture exists.
This field is defined (in the form-specification file) with a PICTURE attribute
to specify its format. You cannot use certain editing keys (for example,
CTRL-A, CTRL-D, and CTRL-X) while you are editing such a field. Use only
printable characters and backspace to enter the value.
You entered a value in this field that cannot be stored in the program variable
that is meant to receive it. For example, possibly you entered a decimal
number when the application provided only an integer variable, or you
entered a character string that is longer than the application expected. Note
all the circumstances and then discuss the problem with the person who
wrote the application program.
The cursor is in a form field that has been designated REQUIRED. You must
enter some value before the cursor can move to another field. To enter a null
value, type any printable character and then backspace. Alternatively, you
can cancel the form entry with the Interrupt key (usually CTRL-C, but see the
operating instructions that the program author supplied).
The cursor is in a form field that has been designated VERIFY. You must enter
the value twice, identically, before the cursor can move to another field. This
procedure helps to ensure that no typographical errors occur during data
entry. Alternatively, you can cancel the form entry with the Interrupt key
(usually CTRL-C, but see the operating instructions that the program author
supplied).
You are entering data into an array of records that is represented in the
program by an array of program variables. That array is now full; no place is
available to store another record. Press the ACCEPT key (usually ESCAPE, but
see the operating instructions that the program author supplied) to process
the records that you have entered.
You pressed the Delete Row function key (usually F2, but see the operating
instructions that the program author supplied) in an empty row. Nothing
was deleted.
-1309 There are no more rows in the direction you are going.
You are attempting to scroll an array of records farther than it can go, either
scrolling up at the top or scrolling down at the bottom of the array. Further
attempts will have the same result.
A problem exists with a screen form. Look up error number in this document.
Consider it in relation to the current statement.
The current statement calls on the database server that detected an error and
returned an error code number. Look up number in this document. Also look
for other error messages.
At the indicated point in the program, an error was detected. Look for other
error messages that give details of the error. Use the numbers in this message
to locate the error in the program source file.
The program stopped because an error was detected. Look up error code
number in this document. Also look for other error messages for more details.
The current statement called on the database server, which detected an error
(probably reported in a display of error -1313). This message contains
additional detail on the cause of the error. Look up number in this document.
4GL converts between one data type and another automatically whenever it
can do so without losing information. In the current statement, it could not
do so. Look first for function calls, and inspect the values that are passed as
parameters. Check that the values that are passed agree in type with the
parameters as they are defined in the function bodies. (An example of such
an error would be calling a function fun("X") when within the function its
parameter was defined as an integer.) If the statement is a LET statement,
check that the value that is computed on the right can be accommodated in
the variable that is named on the left.
-1318 A parameter count mismatch has occurred between the calling function and
the called function.
Either too many or too few parameters were given in the call to the function.
The call is probably in a different source module from the called functions.
Inspect the definition of the function, and check all places where it is called
to ensure that they use the number of parameters that it declares.
-1319 The 4GL program has run out of runtime data space memory.
You must reduce the data space that the program requires. Review the size
of large character variables and the dimensions of arrays. You might need to
split the program into separate programs that load separately, if that is
possible.
-1320 A function has not returned the correct number of values expected by the
calling function.
Check that the correct function was called. Review the logic of the function,
especially its RETURN statements, to ensure that it always returns the
expected number of values.
The VALIDATE statement tests the current value of variables against rules that
are stored in the syscolval table. It has detected a mismatch. Ordinarily, the
program would use the WHENEVER statement to trap this error and display
or correct the erroneous values. Inspect the VALIDATE statement to see which
variables were being tested and find out why they were wrong.
The file that the REPORT TO statement specifies cannot be opened. Check that
your account has permission to write such a file, that the disk is not full, and
that you have not exceeded some limit on the number of open files.
The pipe that the REPORT TO PIPE statement specifies could not be started.
Check that all programs that are named in it exist and are accessible from
your execution path. Also look for operating-system messages that might
give more specific errors.
The file that the REPORT TO statement specifies was opened, but an error
occurred while writing to it. Possibly the disk is full. Look for operating-
system messages that might give more information.
-1326 An array variable has been referenced outside of its specified dimensions.
The subscript expression for an array has produced a number that is either
less than one or greater than the number of elements in the array. Review the
program logic that leads up to this statement to determine how the error was
made.
-1327 An insert statement could not be prepared for inserting rows into a
temporary table used for a report.
Within the report function, 4GL generated an SQL statement to save rows into
a temporary table. The dynamic preparation of the statement (see the
reference material on the PREPARE statement) produced an error. Probably
the database tables are not defined now, at execution time, as they were when
the program was compiled. Either the database has been changed, or the
program has selected a different database than the one that was current
during compilation. Possibly the database administrator has revoked SELECT
privilege from you for one or more of the tables that the report uses. Look for
other error messages that might give more details.
-1328 A temporary table needed for a report could not be created in the selected
database. The user must have permission to create tables in the selected
database.
Within the report definition, 4GL generated an SQL statement to save rows
into a temporary table. However, the temporary table could not be created.
Probably no disk space is left in the database. Or you already have a table in
your current database with the same name as the temporary table that the
report definition is attempting to create as a sorting table. The sorting table is
named "t_reportname". (For example, a report named "order_rpt" would name
its sorting table "t_order_rpt".) Users should avoid beginning table names
with "t_". Another possible cause of this error with some database servers is
that you have exceeded an operating-system limit on open files. Look for
other error messages that might give more details.
-1329 A database index could not be created for a temporary database table needed
for a report.
Within the report definition, 4GL generated SQL statements to save rows into
a temporary table. However, an index could not be created on the temporary
table. Probably an index with the same name already exists in the database.
(The sorting index is named "i_reportname"; for example, "i_order_rpt".)
Possibly no disk space is available in the file system or dbspace. Another
possibility with some database servers is that you have exceeded an
operating-system limit on open files. Look for other error messages that
might give more details.
Within the report definition, 4GL generated SQL statements that would save
rows into a temporary table. However, an error occurred while rows were
being inserted. Probably no disk space is left in the database. Look for other
error messages that might give more details.
Within the report definition, 4GL generated SQL statements to select rows
from a temporary table. The table was built successfully but now an error
occurred while rows were being retrieved from it. Almost the only possible
cause is a hardware failure or an error in the database server. Check for
operating-system messages that might give more details.
-1332 A character variable has referenced subscripts that are out of range.
-1333 Strings of length > 512 cannot be returned from function calls.
-1334 The 4GL program cannot allocate any more space for temporary string
storage.
You should not see this message from a program that is compiled at a version
later than Version 4.1; however, programs that are compiled by 4GL
Version 4.1 and earlier must deal with this issue.
These pending values remain in the string buffer for the duration of the call
to myfunc(). If the aggregate total of all temporary character values that are
used during the evaluation of myfunc() and its sub-functions exceeds the
buffer size, this error occurs.
You can usually prevent the error by isolating function calls in separate
statements, as in the following example:
LET charvar = myfunc()
LET charvar = numvar USING '###', charvar clipped
The string buffer is free during the call to myfunc() in the first statement and
free again as soon as the second statement completes.
...
The longer form of the WHEN clause does not do this because evaluation of
the character expression is completed before the function call begins.
CASE
WHEN charvar = 'A' CALL func_A()
WHEN charvar = 'B' CALL func_B()
-1335 A report is accepting output or being finished before it has been started.
-1336 Module name in the pcode file contains pcode version compile-version. This
program can run pcode version runner-version. Run the pcode compiler with
the -V option to check the pcode version that it produces. Then recompile all
modules of your program, and run it again.
-1337 The variable name has been redefined with a different type or length.
The variable that is shown is defined in the GLOBALS section of two or more
modules, but it is defined differently in some modules than in others.
Possibly modules were compiled at different times, with some change to the
common GLOBALS file between. Possibly the variable is declared as a module
variable in some module that does not include the GLOBALS file.
-1338 The function name has not been defined in any module in the program.
The named function is called from at least one module of the program, but it
is defined in none. If you are using the Programmer's Environment, possibly
one module was not defined as part of a multimodule program. If you are
working at the command line, possibly one or more compiled .4go modules
were omitted when the program files were concatenated to form the .4gi file.
This error indicates an internal problem in the runner. If the error recurs,
please note all circumstances and contact the Informix Technical Support
Department.
The program called the errorlog() function without first calling the startlog()
function. Review the program logic to find out the cause of this error.
The p-code file for the program (whose file suffix is .4go) has become
corrupted. Recompile the whole program, and run it again. If the same error
occurs, check that you are running the identical version of both the p-code
compiler and the p-code runner. If the error recurs, please note all
circumstances and contact the Informix Technical Support Department.
The DECIMAL data type accommodates numbers from 10 to the -130th power
through 10 to the 124th power in absolute value. The precision (number of
significant digits) varies from 1 to 32; however, the source of this error is not
the length of the number but its magnitude.
Zero cannot be a divisor. In some cases, this error arises because the divisor
is a character value that does not convert properly to numeric.
The system will attempt any data conversion that makes sense. However,
some conversions, such as INTERVAL to DATE, or DATETIME to MONEY, are
not supported. Possibly you referenced the wrong variable or column. Check
that you have specified the data types that you intended and that you
formatted literal representations of data values correctly.
-1351 The function (or report) name has already been defined. Function and report
cannot both have the same name.
Each function (or report, which is similar to a function) must have a unique
name within the program. You must change either this use or the prior one.
-1352 name may not be used as both a function (or report) name and a variable
name.
The name that is shown has been defined at least two ways. Names at the
global or module level (function names, report names, and names of global
or module variables) must be unique. Locate all the definitions of this name,
and change all but one of them.
The built-in form editor cannot deal with TEXT or BYTE columns. However,
you can designate an external program that can display or edit a value from
a TEXT or BYTE column. To call the external program for any field, put the
cursor in that field, and key the exclamation mark (!) character. If an external
program has been defined (with the PROGRAM attribute in the form
specification), it will be started. In a TEXT field, if no external program is
specified in the form, the program that the DBEDIT environment variable
names will be started.
A TEXT or BYTE variable has been located in a temporary file using the
LOCATE statement. The current statement assigns a value into that variable,
so 4GL attempted to create the temporary file, but an error occurred. Possibly
no disk space is available, or your account does not have permission to create
a temporary file. 4GL creates a temporary file in the directory that the
DBTEMP environment variable specifies. Look for operating-system error
messages that might give more information. Check the value of DBTEMP.
Since Version 5.01, the INFORMIX-SE database server uses the DBTEMP
environment variable, but INFORMIX-OnLine Dynamic Server does not.
The operating system signalled an error during input from a temporary file
in which a TEXT or BYTE variable was saved. Possibly a hardware failure
occurred. For more information, look for operating-system messages.
You pressed the exclamation-mark key (!) while the cursor was in a TEXT or
BYTE field. However, no external program has been designated for this field
(with the PROGRAM attribute in the form-specification file). If this field is a
TEXT field, you can set the DBEDIT environment variable before you start the
program to specify a text editor.
-1361 Illegal blob file name. Null names are not permitted.
The BYTE or TEXT variable has been located in a file using the 4GL statement
LOCATE. However, the filename that is given for the variable is a null string.
Because the file does not exist, 4GL cannot do anything with it.
The program attempted to access outside the boundaries of the stack. If the
error recurs, please note all circumstances and contact the Informix Technical
Support Department.
The program attempted to access outside the memory that belongs to the
application. If the error recurs, please note all circumstances and contact the
Informix Technical Support Department.
The mechanism that allows the application to catch and handle internal
errors could not complete its actions. Return to DOS, and restart Windows.
The Application Launcher, fglaunch, did not find the requested application.
The program options for the Application Launcher, fglaunch, specified that
the DLL dllname included resources, but no resources were found,
-1371 The field fieldname does not exist in the current form.
The indicated field name has been given to the NEXT FIELD statement or to
the pf_nxfield() function, but it is not defined in the current form. A common
error is to confuse the tag name, which is used in the screen layout and to the
left of the equal sign in the ATTRIBUTES section, with the field name, which is
the column name used to the right of the equal sign in the ATTRIBUTES
section. Use the latter when you refer to fields.
-1372 The number entered is too large to fit in the decimal or money variable.
-1373 The field fieldname is not in the list of fields in the CONSTRUCT/INPUT
statement.
The built-in function get_fldbuf() or field_touched() has been called with the
field name shown. However, input from that field was not requested in this
CONSTRUCT or INPUT statement. As a result, the function cannot return any
useful value. Review all uses of these functions, and compare them to the list
of fields at the beginning of the statement.
A database operation was performed that is not part of ANSI SQL, although
the current database is ANSI compliant. This message is informational only.
-1379 Report functions may not be called directly. Please use the OUTPUT TO
REPORT statement.
-1390 The class "class" has not been defined in any module in the program.
The named class has been declared, and it has been used, but it has never
been defined. It must be defined at the definition of the first member function
of that class.
-1396 A report PRINT FILE source file cannot be opened for reading.
The file that is named in a PRINT FILE statement cannot be opened. Review
the file name. If it is not in the current directory, you must specify a full path.
If the file is specified correctly, check that it exists and that your account has
file permissions to read it. Look for operating-system error messages that
might give more details.
-1778 The security subsystem could not be initialized for this command.
Log in with a user account that belongs to the Informix-Admin group, or ask
the INFORMIX-OnLine Dynamic Server for Windows NT administrator to add
your user account to the Informix-Admin group. Then try the procedure
again.
-1781 OnLine could not retrieve the account information for this user account.
The user does not have a valid account or password on the system where
INFORMIX-OnLine Dynamic Server for Windows NT is running. You must
create a user account and password for this user on the system where OnLine
is running.
Do you also want to remove all Informix product files and directories?
(Y,N,Q)
To verify that user informix has these rights, access the User Manager, and
use the Policies/User Rights dialog box.
-1785 pathname\buildsmi.ext
This message refers to the output of buildsmi.bat. For Windows NT, look into
the file %INFORMIXDIR%\etc\buildsmi.out if "Error building sysmaster"
appears in the online.log file.
Check the actual file size of the chunk against the size that is specified for the
mirror chunk in the ONCONFIG file.
-1788 The OnLine audit configuration-file pathname is too long. Its pathname
should contain at most maxnum characters.
-1789 OnLine could not get account information for user username.
Please ensure that the account used to start the INFORMIX-OnLine Dynamic
Server for Windows NT service is a member of the Informix-Admin group.
-1793 OnLine could not open the chunk chunkname. The system error value
returned was errno.
Ensure that this chunk exists and has the correct permissions for access.
-1794 The primary chunk chunkname containing the root dbspace is invalid. It needs
to be re-initialized.
The chunk that contains the root dbspace is corrupt or out of date. If you have
backed up your INFORMIX-OnLine Dynamic Server for Windows NT database,
you can perform a full-system restore to restore the root dbspace. If you have
not backed up your database server, you will need to reinitialize the root
dbspace by using the -iy parameters when you start INFORMIX-OnLine
Dynamic Server for Windows NT.
-1796 OnLine detected a mismatch in the registry subkey data for MIRRORPATH.
The data retrieved for MIRRORPATH was pathname.
The root dbspace has not been mirrored. To add mirroring, use onspaces or
onmonitor.
-1797 The root dbspace is not large enough for the specified configuration. The
actual size is sizenum, and the required size is sizenum.
The root dbspace will not fit on the specified drive. Free the amount of space
that is needed on the specified drive, or change the ROOTPATH configuration
parameter to specify a different drive with more space available. Then restart
OnLine with the -iy parameters to initialize the root dbspace.
Warning: Starting OnLine with the parameters -iy reinitializes the root dbspace and
effectively destroys any existing OnLine data. You will no longer be able to access
existing databases unless you subsequently perform a full-system restore. Do not
reinitialize the root dbspace unless you are certain that you want to do so.
-1800 Invalid transaction state.
You must commit or rollback the current transaction before you disconnect.
This error message can occur when you try to switch connections as follows:
A connection with the same connection name has already been made. Each
connection must have a unique connection name. Rename the connection,
and try again.
The database server cannot connect to the database environment that you
specified. The server cannot locate either the database server or the database
that you specified. Check the syntax of your statement. If you are specifying
a database server, you must use the @ sign. You cannot use //.
The connection name is invalid. It must conform to the same rules as any
other identifier; that is, it can be up to 18 characters long and can contain
letters, digits, and the underscore character. Also, it cannot be an ANSI
reserved word. If a connection name was used with the original CONNECT
TO statement, you must use the connection name in subsequent connection
statements. Check that the connection name is a valid identifier and that you
are using the connection name and not some other value.
You are attempting to disconnect a connection that does not exist at this time.
Check your program to see that you have not already performed a
DISCONNECT statement for this connection.
Check that you have permission to connect to the server that you specified. If
you specified both a database server and a database, check to see that you
have permission to access the database.
If this internal error recurs, please note all circumstances and contact the
Informix Technical Support Department.
The field name specified by the application does not exist in the description
of the collection or row host variable. Check the description of the field names
within the declaration and make sure the field name specified matches the
one in the declaration.
The host variable used in the derived table syntax is not a collection or row
host variable. Check the declaration of this host variable in the application
and change it to either a collection or row host variable declaration.
-1818 Input variable type does not match collection or row definition.
Certain data types cannot be cast on the client. The following situations
return this error:
■ Trying to cast any complex type into any other complex type (that is,
casting a set into list)
■ Trying to cast a built-in type (for example, INT) into a complex type
■ Trying to cast a complex type into a user-defined data type
■ Trying to cast a built-in type into a user-defined data type
Check the SQL statement and make sure the types are compatible.
-1821 Host variable is not large enough to hold the data returned from the server.
The memory allocated by the application to fetch the user-defined data type
is not sufficient. Change the application so that it allocates more memory
before it fetches this user-defined data type.
One of the arguments passed to the function has an illegal value or is NULL.
Check the documentation for the valid values that can be passed to this
function.
The server user-defined routine has been executed, but the message text
cannot be found. Check the user-defined routine to make sure all SQLSTATES
returned by the server have a corresponding message text associated with
them.
Only UPDATE and SELECT statements can be used with row host variables.
Check the derived table syntax that is using the row host variable and use
UPDATE or SELECT instead.
Possibly your account does not have permission to write in the specified
directory; possibly the disk is full. In some systems, the problem might be
related to a limit on the number of open files. Look for operating-system
messages for more information.
When you run the Form Compiler from the command line, you must specify
either the -d option or the name of a form.
-2015 An open comment symbol, {, was found inside an already open comment on
line line, character column. This could be due to a failure to close the
previously opened comment, which was begun on line line, character column.
Nested comments are not supported. Review the form specification, and
inspect all comments. Check that each open brace has a matching close brace.
-2016 A comment has been opened, but not closed. The last comment begun was
opened on line line, character column.
-2017 The character data value does not convert correctly to the field type.
You have entered a character value (a quoted string) into a field that has a
different data type (for example INTEGER). However, the characters that you
entered cannot be converted to the type of the field. Consult the operating
instructions for this application, then reenter the data.
-2018 A grammatical error has been found on line line, character column. The
construct is not understandable in its context.
This message points to the exact spot in a source file where the compiler
could no longer understand the input. The actual mistake might be earlier in
the file, perhaps several lines earlier, but it is not later. Other, more specific
error messages should also appear.
The INTEGER data type can accept numbers with absolute values from 0 to
2,147,483,647 (plus or minus (2 to the 31st power) - 1). If you have to store
numbers outside this range, redefine the column or variable to use DECIMAL
data type. (The value -2,147,483,648 is a 32-bit value but is not acceptable; it
is used in 4GL to indicate a null value.)
-2020 The table table-name could not be opened. The operating system was asked to
open it for writing.
You are using a database server that manages tables as ordinary disk files.
The current database is managed as a directory, and tables are files within it.
Look for operating-system error messages that might give more information.
Locate the database directory (either in the current directory or on a path that
is named in the DBPATH environment variable). Check that disk space is
available. In UNIX, your personal account does not have to have write access
to the directory and table files; however, they must be writable to the
group-id informix.
-2021 An illegal color has been specified. Colors 0 through 7 are white, yellow,
magenta, red, cyan, green, blue, and black.
-2022 This identifier exceeds the maximum length for identifiers, which is length.
Names of fields and other identifiers cannot exceed the length that is shown.
Revise the form specification, and recompile it.
-2023 This quoted string exceeds the maximum length for quoted strings, which is
length.
You cannot use longer quoted strings. In a form, you cannot join shorter
strings to make longer ones, so this maximum is an absolute length limit. You
must revise the form specification and recompile it.
-2024 There is already a record name specified. If the record name is the same as a
table name in the form, a default record of the same name has been created.
Check that the record-name of every screen record and screen array is unique
in the form specification. A screen record is automatically defined for each
table that is used in the ATTRIBUTES section to define a field. If you define a
record with the name of a table, it is seen as a duplicate.
-2025 The comment close symbol (}) has been found on line line, character column,
even though no comment has been opened.
-2026 The FORMONLY field fieldname did not have a type specified. A type must be
specified if include lists or default values are specified.
The usual way of defining a form-only field (one not linked to a database
column) is as follows:
tagname = DISPLAYONLY.fieldname TYPE datatype
The TYPE clause is required. Review the attribute statements and recompile
the form. (The keyword FORMONLY is used in forms that the 4GL compiler
compiles. Its meaning is the same as DISPLAYONLY.)
-2027 An illegal (invisible, control) character has been found on line line, character
column. It has been replaced by a blank in the listing, but it is still in the source
(input) table, and should be removed before attempting to compile again.
-2028 The symbol name does not represent a table prefix used in this form. It cannot
be used here to select record elements.
-2029 Screen record array name has component sizes which either differ from the
specified dimension of the array or differ among themselves.
The dimension of the screen array is written in square brackets that follow its
name, as in the following example where the dimension is 12:
SCREEN RECORD details [12]
In this case, exactly 12 screen fields should be associated with each of the
three columns that are listed in the screen record. This error message appears
when one or more of the columns appear a different number of times.
-2030 A typographical error has been found on line line, character column.
-2031 The WORDWRAP attribute can only be specified for CHAR, VARCHAR and
TEXT fields.
This PRINT statement applies the WORDWRAP function to a value that is not
character data. Check that the field named is the one that you intended, and
check the punctuation of the rest of the statement.
-2032 The number above could not be successfully converted to either an INTEGER
or a DOUBLE or a LONG.
Something is wrong with the numeric constant; probably it has too many
digits. Check the punctuation of the statement; possibly two numbers have
been run together.
-2033 The field name has a default value not within the range of its include list
values.
The indicated field has both a DEFAULT attribute and an INCLUDE attribute,
but they disagree. The default value is not one that is allowed. Modify one of
the attributes, and recompile the form specification.
The PERFORM form compiler and the 4GL form compiler accept very similar
form specifications, but they differ in some features. This statement uses a
4GL feature, but PERFORM cannot process it.
-2035 The WORDWRAP attribute, if specified, should apply to all the columns in a
join.
Ignore this message. It applies to a feature of PERFORM (joins) that 4GL does
not support.
-2036 The display lines of a multi-line field lie in different screen pages.
A multiline field (multiple fields with identical tags, given the WORDWRAP
attribute) must be complete within a screen page. Possibly you did not intend
the field to be on two pages. If your page layout, plus 4 reserved lines, is taller
than the physical screen (as specified in the SCREEN statement or in the lines
dimension on the command line), the form is divided by starting a new page
after the last line that can fit on the page, and this situation might accidentally
split a multiline field. In any case, rearrange fields so that the multiline field
fits on a single page.
-2037 The PROGRAM attribute can only be specified for BYTE and TEXT fields.
Columns of BYTE and TEXT types cannot be used in the ways that these
attributes imply. Check that the table and column names are as you intended,
and verify the current definition of the table in the database that the
DATABASE statement names.
-2040 The form name name exceeds the maximum length of length characters.
The limit of the form compiler on names might be shorter than that of the host
operating system. Rename the form-specification file, and issue the
command again.
-2041 The form filename cannot be opened. This is probably because it does not
exist, or the user does not have read permission.
Check the spelling of filename. Check that the form file exists in your current
directory. If it is in another directory, check that the correct pathname has
been provided. On a UNIX system, if these things are correct, verify that your
account has read permission on the file.
-2042 The usage of a BLOB field in or around the above statement is incorrect.
Columns of BYTE and TEXT types cannot be used in the ways that this
statement implies. Check that the table and column names are as you
intended, and verify the current definition of the table in the database that the
DATABASE statement names.
-2043 Screen layout exceeds the specified screen width. This is a warning only.
-2044 At most one color attribute may be specified for each field with each
condition.
-2045 The conditional attributes of a 4GL field cannot depend on the values of other
fields.
The Boolean expression in a WHERE clause of a COLOR attribute can use only
the name of that field and constants. Revise this attribute, and recompile the
form.
This name, which was found in the DATABASE statement at the start of the
form specification, is not a database that can be found. Unless you are using
OnLine, the database must reside either in the current directory or in a
directory that the DBPATH environment variable names.
-2811 The temporary table table-name could not be opened for writing.
-2820 The label name between brackets is incorrectly given or the label is missing.
-2830 A left square bracket has been found on this line, with no right square bracket
to match it.
A screen field cannot span lines. Review the SCREEN section to make sure all
fields are properly marked. To create a multiline field, mark off multiple
complete fields all with the same field tag.
-2831 The control block has exceeded the maximum of limit fields.
Too many columns or tables are listed in the OF clause of this control block.
Write separate control blocks, each for part of the list.
-2832 This form uses "|" to both start and end a field placement. Because of this, the
form must specify left and right delimiters which are the same character. This
is done with the DELIMITERS command in the INSTRUCTIONS section.
Make sure that a DELIMITERS statement is present and that it specifies the
same character for both left and right delimiters.
-2834 NULL cannot be used as the default. It is already the default if you specify
nothing.
The indicated name appears at the left of this ATTRIBUTES statement, but it
does not appear within brackets in the SCREEN section. Review the field tags
that have been defined to see why this one was omitted.
-2841 The form must include a tables declaration before the attributes section.
-2843 The column column-name does not appear in the form specification.
-2844 The column column-name is associated with more than one field in the form
specification.
Any one table column can be related to only one field in an ATTRIBUTES
statement. Possibly you are trying to display columns from two or more
tables that have the same column names; in that case, prefix the table names
to the column names to distinguish them.
-2845 The composite column for table table-name containing column column is not
indexed. Performance will be much improved by creating an index on the
column.
The presence of an index can greatly reduce the time that is needed to join
tables. However, an index is not essential, especially when the tables are
small, or during initial testing.
Something in this statement suggests that the name shown is part of this
table, but that is not true in the current database. Review the spelling of the
two names. If they are as you intended, check that the correct database is in
use and that the table has not been altered.
The tables that are specified in the TABLES section of the form exist, but the
column name, which is named in the ATTRIBUTES section, does not. Check its
spelling against the actual table. Possibly the table was altered, or the column
was renamed. You can use INFORMIX-SQL to check column names under the
Tables menu, Info selection.
The TODAY function (not attribute) returns the value of today's date. That
value can be assigned only to a field that has the DATE or DATETIME data
type. The field in this statement has a different type. Automatic data
conversion is provided in 4GL programs, but not in the context of a form.
-2857 There can be only one dominant composite column in a join list.
This statement defines a join list, a list of two or more column names that are
related to the same form field. In such lists, an asterisk preceding a column
name indicates that column is the dominant column in a verify join. Only one
such column is allowed in any join, but two or more are present in this list.
Review the documentation on verify joins, and choose a single dominant
table.
-2858 The table table-1 is joined to the table table-2, but its joined columns do not
belong to a composite key.
You have defined two or more different joining columns between the two
indicated tables. However, no composite index exists on the joining columns.
Such an index is required to ensure that a composite key exists; that is, that
any combination of values from the joining columns will occur only once.
Review the two or more ATTRIBUTES statements that define join columns for
these two tables. Make sure that they are as you intended; for example, make
sure that you intended to join two tables on two or more columns, instead of
joining three or more tables on one column each. If you intended the
composite key, then use the CREATE INDEX command to create a composite
unique index on those columns for at least table1.
-2859 The column column-name is a member of more than one table -- you must
specify the table name.
Two or more tables that are named in the TABLES section have columns with
the name shown. You must make clear which table you mean. To do this,
write the table name as a prefix of the column name, as table.column, wherever
this name is used in the form specification.
This statement assigns a value to the field with the DEFAULT clause or uses
its value with the INCLUDE clause, but it does so with data that does not
agree with the data type of the field. Review the data type of the field (which
comes from the column with which it is associated), and make sure that only
compatible values are assigned.
A limit exists on the number of tables that can be in use at one time. (This limit
might be different on different host systems or with different database
servers.) Reduce the number of tables that you use in the form.
-2863 The column column-name does not exist among the specified tables.
The tables that are specified in the TABLES section of the form exist, but
column-name, which is named in the ATTRIBUTES section, does not. Check its
spelling against the actual table. Possibly the table was altered, or the column
was renamed. You can use INFORMIX-SQL to check column names under the
Tables menu, Info selection.
The indicated table is used in this statement but is not defined in the TABLES
section of the form specification. Check its spelling; if it is as you intended,
add the table in the TABLES section.
-2865 The column column-name does not exist in the table table-name.
Something in this statement implies that the column shown is part of the
indicated table (most likely the statement refers to table-name.column).
However, it is not defined in that table. Check the spelling of both names. If
they are as you intended, then check the contents of the database; possibly
the table has been altered or the column renamed.
The CURRENT function (not attribute) produces the current date and time as
a DATETIME value, but the field that is referenced in this statement does not
have the DATETIME data type. Automatic data conversion is not supported in
this context. Review the statement to make sure that it refers to the field that
you intended, and revise the form to assign DATETIME values only to
DATETIME fields.
-2870 The subscripted column size does not match the space allocated in the
display field.
Every form specification must end in the keyword END and must contain the
keyword SCREEN. Both must begin in the first column of a line. Review the
contents of the form specification to make sure that all the necessary sections
are properly marked.
-2890 A screen definition must begin with a left curly bracket '{'.
Each screen layout must be enclosed in braces ({ }). The open brace must be
the first character on its line. Review the form specification to make sure that
the screen layout is punctuated properly.
-2892 The column column-name name appears more than once. If you wish a
column to be duplicated in a form, use the same display field label.
The expected way to display the same column in two or more places is to put
two or more fields in the screen layout, each with the same tag-name. Then
put a single statement in the ATTRIBUTES section to associate that tag-name
with the column name. The current column value will be duplicated in all
fields. If you intended to display different columns, the column names as
listed in the ATTRIBUTES section must differ. If you intend to display different
columns that happen to have the same column-names, prefix each with its
table-name.
-2893 The display field label tag-name appears more than once in this form, but the
lengths are different.
You can put multiple copies of a field in the screen layout (all will display the
same column), but all copies must be the same length. Review the SCREEN
section to make sure that, if you intended to have multiple copies of one field,
all copies are the same.
-2895 Display field length of field-size does not match the database column length
of column-size. This is a warning only.
The size of the character field that is defined in this statement (as shown by
its appearance in the SCREEN section) is different from the size of the
associate column. You specified the -v option to the form compiler to request
warnings of this type.
-2901 Field name contains two conflicting attributes, first and second.
-2920 The column column is a dominant column but it is not indexed. Performance
will be much improved by creating an index on the column.
-2921 The database dbname is not compatible with the current version of
INFORMIX-SQL.
A prior version of Informix software created the database that is named in the
DATABASE statement in this form. Before the present system can use the
database, you must use the sqlconv utility to convert it.
-2930 Portions of the column name are displayed on the screen more than once.
Check the content of the FORMAT string in this statement. It is not correct for
the data type; that is, it has characters other than # and . for a numeric
column, and it has an incorrect internal length for a DATE column (for
example, yyy, which calls for a three-digit year).
-2932 Formats may be specified only for float, smallfloat, decimal, or date columns.
This attribute statement specifies a FORMAT string, but the data type of the
field is not one of the four that support formatting: FLOAT, SMALLFLOAT,
DECIMAL (or MONEY), and DATE. If this column is not DISPLAYONLY, check
that it has been associated with the right column and that the column is
defined in the database as you expected.
-2933 The format width is larger than the allocated display width.
The length of the FORMAT string that is specified for this field is greater than
the length of the field itself as shown in the SCREEN section. Review the
screen layout, and revise it or the format so that they agree.
-2934 The format width is less than the allocated display width.
The length of the FORMAT string that is specified for this field is less than the
length of the field itself as shown in the SCREEN section. Review the screen
layout, and revise it or the format so that they agree.
-2935 The number of lines specified with the '-l' option or in the screen section must
be a positive integer from 6 to 600.
The vertical size of the screen, as indicated in the SCREEN statement or in the
-l (lowercase L) command-line option, is out of range. Change it to specify the
expected size of the terminal where the form will be used.
-2936 The number of columns specified with the '-c' option or in the screen section
must be a positive integer from 30 to 600.
-2940 The column name appears both with and without subscripts.
This form displays all of the indicated column, and subscripted portion of it,
in different fields. You can display different, subscripted parts of a column in
different fields, but the parts cannot overlap. That is, portions of a column
cannot be displayed twice on the same screen. Review all uses of the
indicated column. Perhaps you did not intend to name it in both places.
Perhaps two or more columns of the same name exist in different tables, and
you need to use the table name to distinguish them. Otherwise, use
nonoverlapping subscripts on each field of the column.
This statement refers to a field as name, but no such name is defined. Check
the spelling, and review the ATTRIBUTES section to see how the field was
defined.
The expression in this statement is too complex to process. Simplify it, and
recompile the form. (See also error message -2988.)
-2944 You may apply the after add, update, query, or remove commands to a table
only -- not a column.
The operations of Add, Update, Remove, and Query all apply to whole rows.
Consequently, these control blocks must list only table names, not names of
individual columns, in their opening command. Review the names in this
statement, and change column names to the names of their tables.
-2945 You may apply the after add, update, query, or remove commands to a table
only -- not a column.
Aggregates (AVG, MIN, MAX, COUNT, TOTAL) can only be performed on
fields that are associated with tables (not on DISPLAYONLY fields), and the
tables must be listed in the opening command of the same control block.
Revise the form specification, and recompile.
-2946 You may not calculate an aggregate on the display-only field name.
Aggregates can only be performed on fields that are associated with tables
(not on DISPLAYONLY fields), and the tables must be listed in the opening
command of the same control block. Revise the form specification, and
recompile.
-2950 The column name has no section which starts at 1. Remember that the first
subscript is one, not zero.
Multiple substrings from the same column are assigned to display fields.
However, the substrings do not cover adjacent, nonoverlapping portions of
the column. Either there is no first section (starting from column 1), or one
section overlaps another. Review the substrings that are specified. Consider
using a multiline edit field instead of a group of substrings; it is simpler to
code and provides better editing for data entry.
-2951 The left and right delimiters must be specified in a two character string.
-2952 In order to use a picture, the picture length must be the same as the display
field length.
The string that is specified with the PICTURE attribute must have exactly the
same length as the field as depicted in the SCREEN section. Review the
definition of this field, and make the two lengths agree.
All the columns that are named in a COMPOSITES list must be defined in the
ATTRIBUTES section. Check the spelling of all the names, and make sure that
they have been defined.
The INSTRUCTIONS section of this form has exceeded the ability of the form
compiler to handle it. Remove some instructions to simplify the form.
The name that is shown appears in the ATTRIBUTES section but nowhere in
the SCREEN section. Check the spelling of the name; it is wrong in one of
those places, or it has been omitted from the screen layout.
-2956 You may not set display field field-tag to a value because none of its
associated database column(s) belong to the same table as table, nor is it a
variable display-only field.
You cannot assign values in a LET statement across tables. All columns that
are associated to the field-tag in a LET statement must belong to tables that are
named in the opening command of the control block, or it must be a
display-only field.
-2957 You may not set the next field to that-tag because none of its associated
database column(s) belong to the same table as this-tag.
The field that is named in a NEXTFIELD statement must be associated with the
same table as the current field. Review the relationships between columns
and tables in this form, and revise it.
This improper call to an external C function has too many parameters. Find
some way to pass the same information in fewer parameters.
-2959 Two tables may join with a maximum of limit column pairs, including all
components of composite columns.
A limit exists on the number of columns that are involved in a join. This limit
includes both the join columns that are named in an ATTRIBUTES statement
and those that are named in a COMPOSITES statement for the same table.
-2970 The column name joins with other columns, but it is not indexed. It is
recommended that columns be indexed for cross-table queries. Performance
will be much improved by creating an index.
The presence of an index on at least one of the columns that are involved in
a join can make join operation much faster. However, an index is not required
when one or both tables are small (dozens of rows). Consider creating an
index on all join columns before you put the form into production.
-2971 This column is not a character column, and therefore cannot be subscripted.
-2972 This column cannot be right justified or zero-filled because its displayed
width does not match the actual column width.
In order to use the RIGHT or ZEROFILL attributes, make sure that the field size
(as depicted in the SCREEN section) is exactly the same as the width of the
database column. Review this statement, the screen layout, and the definition
of the table in the database to make sure these sizes agree.
-2973 There may be only one dominant column in a display field description.
This statement defines a join list, a list of two or more column names that are
related to the same form field. In such lists, an asterisk that precedes a column
name indicates that column is the dominant column in a verify join. Only one
such column is allowed in any join, but this list contains two or more. Review
the documentation on verify joins, and choose a single dominant table.
-2975 The display field label tag-name has not been used.
The indicated name was defined in the SCREEN section but not in the
ATTRIBUTES section. Review the tags in each section, and revise the form so
that all tags are defined.
-2977 Table table1 cannot be a master of table table2 because they do not join.
The two tables that are named in a MASTER OF instruction must be joined. A
join between tables is expressed by naming columns from both tables in one
statement in the ATTRIBUTES section. Check the spelling of the table names
here, and review the attribute statements.
-2978 The column column1 and the column column2 cannot be joined columns
because their types or lengths are different.
The columns in a join must contain data from the same domain. The fact that
these columns have different types or (if they are character columns) different
lengths indicates that their contents are not from the same domain. Check the
spelling of the column names to make sure that you named the correct
columns. Review the design of the database, and make sure that these tables
are meant to be joined on these columns.
Correct the statements in the TABLES section so that each table is defined just
once. Possibly you have defined an alias that is the same as a real table name.
-2985 The table identifiers name1 and name2 represent the same table.
In the TABLES section, these two names are defined in such a way that they
refer to the same database table. One or both of them is a table alias. Change
the statements so that each name stands for just one table and each table has
just one name.
-2986 The form specification has exceeded the maximum of limit master/detail
pairs.
-2987 The form specification has exceeded the maximum of limit screens.
The form compiler cannot get enough data memory to process the form
specification. You must find a way to simplify the form.
You have defined the indicated column as a reference column using the
LOOKUP attribute. Whenever the operator enters a value in the field, it will
be looked up in this column. Such a lookup operation is quick when an index
is present, but no index on the column exists at this time. Without one, a
lookup might be extremely slow. Unless the field does not allow operator
input (in which case you should remove the asterisk) or the table is very small
(a few dozen rows at most), you should create an index for this column before
you put the form into use.
-2990 The columns column1 and column2 are not in the same database table.
All columns that are cited in a single LOOKUP attribute must belong to the
same table. Check the spellings of the names, and make sure that they are the
columns you intended.
-2991 Warning: Only the first screen of your multiple-screen form will be displayed
under 4GL.
This warning appears when you use the 4GL forms compiler to compile a
multipage PERFORM screen. A 4GL program can display only the first page
of a multipage form. If the form specification has more than one SCREEN
section, it has been purposely divided into multiple pages, and you will have
redesign it for 4GL. If it has only a single screen layout, the 4GL forms
compiler has split it into two pages because it will not fit on the screen. The
form design might not allow for the four screen lines that 4GL reserves.
The forms compiler indicates that name has been defined twice. These names
must be defined uniquely in the form specification. Review all uses of the
name to see if one of them is incorrect.
This form defines a series of three or more joins such that table A joins to table
B, table B joins to table C, and table C joins to table A. The circularity might
not be obvious due to the use of table-alias names. Review all the statements
in the ATTRIBUTES section and any COMPOSITES statements, and draw a
diagram of the join relationships. Then modify the form so that no circular
joins are created.
-2994 The form has exceeded the maximum number of joins between tables.
A limit exists on the number of joins that can be specified. You must find a
way to simplify the form.
-2995 The form has exceeded the maximum number of tables contained in joins.
A limit exists on the number of tables that can be contained in one join. You
must find a way to simplify the form.
-2996 The unanticipated error number os-error has occurred. Please call RDS.
The error number that is displayed came from the host operating system. RDS
was at one time the name of Informix Software. This error should not occur.
If the error recurs, please note all circumstances and contact the Informix
Technical Support Department.
The database server returned the error number that is shown. Look it up in
this document. Also look for other error messages that might give more
information.
The error that is displayed came from the host operating system. This error
should not occur. If the error recurs, please note all circumstances and contact
the Informix Technical Support Department.
The application has lost contact with the database server. Under UNIX,
someone might have killed the database server daemon process or OnLine
thread accidentally, or an internal error might have damaged a pipe between
the application and the database server. In a local area network system, the
database server process or thread in the file server might have been
terminated, or the file server might be down. Look for other messages,
especially operating-system messages, that might give more detail.
You can run only forms that are present in the current directory or a directory
that is named in your DBPATH environment variable. Change directories to
the one that contains the desired form(s), or change the contents of DBPATH.
You selected the View menu option. This option lets you view the contents of
TEXT and BYTE fields of a form, but this form has none.
You selected the View menu option. The cursor is positioned in a field that
represents a BYTE column, and you pressed the ! key to edit the contents of
the field. However, the field is null; no data exists to view. Use Query to select
a row that includes nonnull data in this field.
The form file form-name does exist; however, your account does not have
operating-system permissions to read and write it.
-3006 An unknown code has been found in the .frm file. Please recompile your
form before running it again.
Recompile the form to make sure that the .frm file has not been corrupted. If
the same error occurs, check that you are running FORMBUILD and PERFORM
products at the identical version level (version numbers are displayed when
the commands are executed from the command line if you do not use the
-s option). If the error recurs, please note all circumstances and contact the
Informix Technical Support Department.
-3007 Your form is incompatible with the current version of PERFORM. Please
recompile your form before running it again.
The database that is named in the DATABASE section of the form could not be
opened. Either it could not be found, or your account has not been granted
CONNECT privilege for it. You can use INFORMIX-SQL to separate these cases.
Use Select option from the Database menu. If database-name is listed, the
database can be found but could not be opened.
The database server looks for a database first in the current directory and
then in directories that are named in the DBPATH environment variable.
Check to see if database-name.dbs exists in one of those directories.
Because another user has locked a table in exclusive mode, PERFORM cannot
continue. Rerun the transaction when the table is not locked.
-3019 Unanticipated error number has occurred, please call Informix Software.
Please note all circumstances and contact the Informix Technical Support
Department.
-3020 The table table-name is not in the database -- build your form again.
A table that is listed in the TABLES section of the form cannot be found.
Review the DATABASE statement to ensure that the form is using the correct
database. If so, and if the table name is spelled as you intended, the table has
been dropped or renamed. You can use INFORMIX-SQL to check table names
under Info selection in the Tables menu. Revise the form to use the correct
name.
-3030 The column column-name is not in the database -- build your form again.
The tables that are specified in the TABLES section of the form do exist, but the
column column-name, which was named in the ATTRIBUTES section, does not.
Check the spelling of column-name against the actual table. The table might
have been altered, or the column may have been renamed. You can use
INFORMIX-SQL to check column names under Info selection in the Tables
menu. Revise the form to use the correct column name.
-3035 The column column-name has changed column type -- build your form again.
-3037 The column column-name is not a composite column -- build your form again.
.dat
.idx
.aud
.per
.frm
.ace
.arc
.sql
.unl
The form user has keyed! in the display of a BYTE field. However, no
program= attribute was defined for this field.
When you added data to a table, you did not specify data for the column
shown. However, that column is defined in the database as not allowing null
values. You cannot add the row unless you supply a value.
The data that is entered into the current field is not appropriate for the data
type of the field.
You must first query the table before you execute the UPDATE, REMOVE,
NEXT or PREVIOUS command.
Another user has just deleted the row now displayed. That row no longer
exists. You cannot use the UPDATE, REMOVE, NEXT, or PREVIOUS commands
until you use QUERY to display a valid row.
This column has a verify join with a column in table table-name. Any value
that is entered in this field must be found in that table. The value just entered
was not found. Enter a correct value.
-3261 Invalid value -- its composite value does not exist in table-name table.
All dominant columns (those with asterisks before their names) in verify
joins must be indexed. Perhaps the index has been dropped since the form
was compiled. Re-create the index, and run the form again.
-3300 There are no more rows in the direction you are going.
You reached the beginning or the end of the current list of rows. You can start
a new query with the QUERY command, or use the PREVIOUS or NEXT
command to reverse through the list the other way.
No rows in the database match the values that are entered in the form. Enter
different values, and query again.
A list or range of acceptable values has been established for this column (via
an INCLUDE attribute in the form-specification file). You must enter a value
within the acceptable range.
-3421 The joined field table.column cannot be selected by the current user.
This form queries the column in the table shown in joining two tables.
However, your account name does not have SELECT privilege for that table
and column. Contact the owner of the table or a Database Administrator to
be given this privilege.
The row cannot be added to the table until a value has been entered in the
indicated field. A REQUIRED attribute in the form-specification file has been
associated with the column. Enter a value in the field.
Another user, accessing a table that is queried by your form, has deleted a
row that your latest query selected. Restart your query to get an accurate
selection of rows. Version 4.0 and earlier of PERFORM might return this error
message when you query a view. Early versions of the product did not
support views.
None of the fields in this form specification permit data entry; they are all
marked as either LOOKUP or DISPLAYONLY without the ALLOWING INPUT
keywords.
-3452 Add, Update and Remove operations not allowed on a remote table.
The table that is being queried is in a database that is external to the current
database (the one that is named in the DATABASE section of the form). Such
tables cannot be modified. (This message is not currently used. You might
encounter it with products of Version 4.0 or earlier.)
-3460 This row has been locked by another user -- try again later.
Another individual is currently using the table. Wait a few moments, and
reenter your statement.
-3500 The two entries were not the same -- please try again.
To guard against typographical errors, you must enter the value in this field
twice. The values that are entered must be identical. Carefully reenter the
data. (A VERIFY attribute in the form-specification file has been associated
with this column.)
You must first establish this table as the master of another table in the
INSTRUCTIONS section of the form.
You must first establish this table as the detail of another table in the
INSTRUCTIONS section of the form.
You do not have insert or update privilege for the table, so you cannot insert
or update a column. Check with the owner of the table or the person who has
Database Administrator (DBA) privilege for the database for the necessary
permission.
PERFORM earlier created a temporary file but now cannot write into it. The
most likely cause of this error is that the disk has filled up. Alternatively,
another user might have deleted the temporary file after it was created.
-3650 You must first remove table-name rows which join this row.
The row you wish to remove is the dominant member of a verify join. You
cannot remove this row without first removing any rows that join it.
-3651 You have exceeded the number of opened tables allowed by your system.
-3660 You must first update table-name rows which join this row.
The row you wish to update is the dominant member of a verify join. You are
not allowed to change a row value in this column that would invalidate
joined rows in other tables. You must first update the rows in table-name that
join this column.
Earlier PERFORM created a temporary file; now it cannot change the file
position in that file. Perhaps another user deleted the file after it was created.
Look for messages from the operating system that might give more detail on
the problem.
PERFORM cannot get the memory data space it needs. You will have to reduce
the complexity of the form.
-3690 Detail cannot be executed -- tables first and second do not join.
Your account has not been granted SELECT privilege for the table table-name.
The owner of the table, or a person who has Database Administrator (DBA)
privilege for the database, can grant this privilege level to you.
Your account has not been granted UPDATE privilege for the table table-name.
The owner of the table, or a person who has Database Administrator (DBA)
privilege for the database, can grant this privilege level to you.
Your account has not been granted INSERT privilege for the table table-name.
The owner of the table, or a person who has Database Administrator (DBA)
privilege for the database, can grant this privilege level to you.
Your account has not been granted DELETE privilege for the table table-name.
The owner of the table, or a person who has Database Administrator (DBA)
privilege for the database, can grant this privilege level to you.
The database server cannot open the file that represents this table. You might
have exceeded an operating-system limit on open files; if that is the case, you
will have to reduce the number of tables that are included in the form.
However, first make sure that a file exists for this table in the database
directory (its name is database-name.dbs) and that your account has read
access to it. The name of the table file is composed of table-name, a 3-digit
number, and the suffix .dat.
No current Informix product returns this message. If the error recurs, please
note all circumstances and contact the Informix Technical Support
Department.
No current Informix product returns this message. If the error recurs, please
note all circumstances and contact the Informix Technical Support
Department.
-3752 You cannot use this editing feature because a picture exists.
This field is defined (in the form-specification file) with a PICTURE attribute
to specify its format. You cannot use certain editing keys (for example,
CTRL-A, CTRL-D, and CTRL-X) while you are editing such a field. Use only
printable characters and backspace to enter the value.
Reduce the complexity of the form. In particular, reduce the level of nesting
of loops and IF statements, and break very complicated expressions in LET
statements up into simpler ones.
The field tag name that is passed to the C function pf_nxfield() is the name
of a display-only field. Because the user is not allowed to enter data in a
display-only field, the cursor cannot be located in one. Check the tag name
that is supplied; if it is the one that you intended, review the attributes of that
field, and find out why it has been set display-only.
-3756 The selected field tag-name cannot be assigned a value at this time.
The specified field is not in the current table. The cursor is not allowed to
enter such fields, and values cannot be set in them.
The data type of the value that is passed to pf_putval() could not be
converted into the data type of the screen field tag-name. Review the value
and the valtype flag versus the data type of the field in the form definition.
-3758 The next selected field tag-name is not in the current table.
The field tag name that is passed to the C function pf_nxfield() is the name
of a field that is not in the current table. The cursor is not allowed to enter
such fields.
-3759 The display field field-name does not exist in the form.
The field tag name that is passed to the C function pf_nxfield() is not defined
in this form. Review the string that is passed; if it is as you intended, inspect
the form definition to see what has been changed. A common error is to
confuse the tag name, which is used in the screen layout and to the left of the
equal sign in the ATTRIBUTES section, with the field name, which is the
column name used to the right of the equal sign in the ATTRIBUTES section.
The latter is used when referring to fields.
-3762 The user function funcname defined in the form could not be found in the
C function definition table userfuncs.
Check that you are executing the correct, customized version of sperform
(the original version of the program has no external functions linked to it).
Check to see if funcname is correctly spelled. Then examine the source of the
C functions to make sure that the userfuncs array is defined correctly.
-3763 This program has an invalid serial number. Please consult your installation
instructions.
The Informix software product has been improperly installed. Review the
installation procedure. If you need help, contact your Informix
representative.
The screen image as defined in the form file is larger (either wider or taller)
than the dimensions of the current window. If the current window is the
main window, its size is set by the dimensions of the terminal in use. If the
current window was opened with OPEN WINDOW, you should specify more
rows or columns. Review the form file, and either reduce the size of the
screen image or display it as a bigger window.
-3767 An unknown option option name was found on the command line.
This error should not occur. If the error recurs, please note all circumstances
and contact the Informix Technical Support Department.
This CLASS statement attempts to declare a class with the same name as a
built-in data type such as INTEGER. Find a different name for your class.
The compiler is aware of the member, but the access control for the member
makes it inaccessible in the statement. Check for a PUBLIC, PRIVATE, or
PROTECTED declaration. Member variables default to PROTECTED access,
but member constants and member functions default to PUBLIC.
This INCLUDE statement names a file that the compiler cannot find. If a
complete pathname is used, the file does not exist. Check the spelling of all
the directories and the filename. If only a filename is given, that file could not
be found in the current directory, in $INFORMIXDIR/incl, or in any directory
that is specified in a -H compiler argument. Perhaps one of these arguments
was omitted or misspelled.
This statement refers to a class of the indicated name, but no such class has
been declared to this point in the source module. Check the spelling of the
name. Make sure that all desired include files have been included.
-4012 You can only specify a base clause for class constructors.
The supported intrinsic member functions are !copy(), !derive(), and the
class-name (the constructor). No other functions can be declared with an
initial exclamation mark. Check the spelling of name. If it is not one of the
supported names, declare the function as a normal member function.
-4014 You cannot specify the RETURNING type for intrinsic member functions.
-4018 The columns specified in the THRU option do not belong to the same table.
This statement refers to some table first THRU (or THROUGH) last; however
first and last are not both columns in that table. Check the spelling of these
column names. Make sure that the correct database is current at this point in
the compilation (the most recent preceding DATABASE statement).
-4019 The columns specified in the THRU option appear in the reverse order.
This statement refers to some aggregate (table, record, or object) with the
qualification "first THRU (or THROUGH) last." However, first and last do not
appear in that order in the aggregate; last precedes first. Check the spelling of
the two names. Make sure that the correct database is current at this point in
the compilation (the most recent preceding DATABASE statement).
You cannot use SELF, regardless of letter case, as the name of a member
variable, member constant, or member function. The identifier SELF is a
built-in identifier that New Era provides automatically. You can refer to SELF
to make your code more readable when a member has the same name as an
identifier that is declared as in the global or module scope, or to access a
member when a local entity has the same name.
This CLASS statement asserts that the class is DERIVED FROM itself. This
action is not supported. Either remove the clause, or name another base class.
A function with the specified name has already been declared in the current
class.
A derived class inherits all the members of its base classes. You cannot add a
member that has the same name as a member from the base class.
-4029 The type of expression on which member "name" is selected is not an object
reference or record.
-4032 Warning: The structure part of the THRU member "name" is ignored.
-4033 Base member name "name" cannot be used for class name.
-4034 SQL statements and two-pass reports are not allowed when compiling with
the "-nosql" switch.
The compiler was invoked with the "-nosql" switch, but the source included
either explicit SQL statements or a two-pass report (which involves SQL
statements). Compiling with "-nosql" causes generation of .c code (instead of
.ec code) in which no SQL statements are allowed.
-4035 Function "name" cannot be redefined in a derived class "class" with different
access permissions.
The parent class of the function "name" has an access permission (PRIVATE,
PROTECTED, or PUBLIC) different from this declaration.
-4036 Function "name" cannot be redefined in a derived class "class" with different
scope of reference.
The base class of the function "name" is declared as SHARED and "name" is not,
or "name' is declared as SHARED and its base class is not.
-4042 This form of declaration can only appear in the global (module) scope.
The declaration for identifier::identifier can appear only in the global scope.
-4045 Member "name" is defined in class "class", but not as a variable or constant.
The identifier name is defined in the class, but as something other than a
variable or a constant, such as a member function. Check the spelling of the
member name and the class or object name.
-4046 Formal declaration appeared previously for this informal function definition.
The formal declaration is invalidated.
-4047 Mixed informal and formal function declaration syntax. Return type is
ignored.
-4048 Driver statements for a report are not allowed within the body of that report.
-4050 Function "name" has been used and hence declared as informal before this
formal declaration.
-4053 Function "name" has already been declared with a different prototype.
The function that is described in this FUNCTION statement has already been
declared, and the previous declaration disagrees with this one in the number
or type of the arguments. Review included files for declarations of this
function, and make those statements consistent.
-4054 Function "name" has already been declared with a different return type.
The function that is described in this FUNCTION statement has already been
declared, and the previous declaration disagrees with this one in the number
or type of returned values. Review included files for declarations of this
function, and make those statements consistent.
-4057 A class cannot be derived from a class with PRIVATE intrinsic functions.
This statement declares a new class with a DERIVED FROM clause. However,
the specified base class has one or more intrinsic functions (class constructor,
function such as !copy()) that are declared PRIVATE. The intrinsic functions of
a base class must be available for calling from within the same functions of
the derived class. Private members cannot be called so; therefore, you cannot
derive a class from a base class with private intrinsic functions. Make sure
that you specified the correct base class, and review its declaration.
-4059 More actual arguments than formal arguments for function "name".
-4060 Fewer actual arguments than formal arguments without defaults for function
"name".
-4062 Warning: Informal function "name" returns (or is expected to return) different
number of results at different places.
The function name is called at more than one place in this source module, and
it is implied to return different numbers of arguments. Possibly this correct;
it is possible to write functions that return different numbers of values in
different circumstances. However, you should check that this is the case and
that the expected number of values will be returned in each case.
This statement invokes the function "name" in a context that implies it should
return one or more values. However, that function has been declared earlier
in this module without a RETURNING clause or with RETURNING VOID.
Make sure that you have called the function you intended; then review its
declaration.
-4064 Type of returned value does not match the declared return type of function
"name".
The function "name" was not explicitly declared but has already been called
with one prototype, and the current call provides a different prototype. Make
sure that you have called the function you intended. Then review its earlier
call, or create an explicit declaration for it.
-4065 Multiple exception handlers for the same exception class "name".
Two or more ON EXCEPTION statements exist for the same exception class in
this block. Only one can be invoked. Review the statements, make sure that
each specifies the correct exception class, and remove or combine duplicate
handlers.
This RETURN statement does not specify a value to return, but the function
was declared with a RETURNING clause that specified other than VOID. If you
want to terminate a function early without producing a value, you could put
a label on the END FUNCTION statement and use a GOTO, or redesign the
function logic to avoid the need for an early exit.
-4069 The type of expression on which member function "name" is called is not a
class.
This statement attempts to invoke the specified function using either the scope
resolution (::) operator or the record membership (.) operator. However, the
name to the left of the scope resolution operator is not the name of a class in
which name is a member, or the name to the left of the record membership
operator is not the name of an object reference of which name is a member. If
you intended to call name through a reference to an object, use object.name
syntax. Otherwise, make sure that you have specified the class and member
names that you intended, and review the declaration of the class.
This statement would assign a new value to the implicit function argument
named SELF. Since the value of SELF is used implicitly in any reference to a
member of the self object, assignment to it is not permitted.
This statement would assign a new value to name, but name was declared (in
this scope) with a CONSTANT statement. Constants do not have memory
locations and cannot be assigned new values. Check that name is the identifier
you intended to use. Then review its declaration. Possibly you want to assign
into a module-level variable name, but it has been declared as a local constant
or a member constant that takes precedence in this context.
The compiler expected a string expression but found an expression that was
neither CHAR nor VARCHAR data type.
-4076 Class of CAST object must be a base of class specified as right argument.
You cannot cast an object to any class; you can only cast it as being of a class
that is derived from its stated class. In the CAST expression in this statement,
the stated class of the object reference on the left is not a base class of the class
that is named as the right argument. Review the expression to make sure that
you have specified the object that you intended (possibly you need to use
parentheses around the object reference) and the target class.
The operator cannot accept operands of this type. Correct any other errors
that might have been reported, and verify that this operator is defined for
operands of this type. Then compile the program again.
This is only a warning. This statement declares a variable with both the
EXTERNAL keyword and an initialization expression. You can initialize a
variable only at the point where it is defined (that is, where memory is
allocated for it). This is a declaration, not a definition, so the initialization is
ignored.
In this multiple-field assignment the values that are being assigned do not
correctly match to the fields in the receiving record or object. Examine the
syntax of the value expression(s); then review the declaration of the receiving
variable.
-4096 Expression class must be equal to or derived from result class.
This class has been declared previously in the source module (perhaps in an
included file). Only one declaration is allowed. Find all declarations of the
class, and reduce them to one.
This statement refers to name.* (or uses THRU notation); however, the name
it refers to is not declared as a record or as an object of some class. Check the
spelling of the name, and review its declaration.
Note the specified file name and line number. Then report this internal error.
-4104 The type of a column value does not match the type of a variable.
The INITIALIZE statement cannot establish a match between the type of the
column value and the type of the corresponding variable.
-4110 You cannot use more than one of the REPORT TO options in the OUTPUT
section of a REPORT routine.
In this OUTPUT section, the statement REPORT TO appears more than once.
Only one such specification is allowed. Remove all but one.
-4111 Warning: The function name is declared informally. For stronger type
checking, use a function defined formally.
-4118 Expressions of this data type are not allowed in constant expressions.
-4120 Declare variable "name" either external or local to module, but not both.
The specified variable has been declared or defined more than once. At least
one of those times declared it with EXTERNAL, and another was a definition
as a module variable (lacking either EXTERNAL or GLOBAL). Review the
declarations and definitions of name, recalling that some of them might be in
included files. If you intend name as a variable private to this module, give it
a unique name. (You can declare a variable as EXTERNAL more than once,
and you can declare it as EXTERNAL and then define it as GLOBAL. Both of
these things can happen as a result of including header files, and they have
well-defined meanings. But it is contradictory to have a variable that is both
external and local to the module.)
-4121 Reports cannot be invoked through the CALL statement or in function call
expressions.
-4122 Parser limitations have been exceeded. Try to reduce complexity or size of
module.
The parser has returned an error that is NOT a syntax error. This error could
be caused by a parser-stack overflow (too many levels of nesting within IF
statements, WHILE statements, or the like) or by the parser running out of
parser-stack space (the module is too large). Try to reduce the complexity of
the code by splitting complex functions into multiple functions or splitting
the module into multiple modules.
The element indicated is either not declared, or is declared but not defined,
as a member of the class hierarchy "name."
The identifier in the WITH clause of the HANDLE statement does not identify
a handler. If the identifier of the handler specifies a class, check to see that the
handler is declared as belonging to that class; otherwise, check to see that it
is declared as belonging to the declared class of the target object.
The identifier before the WITH clause of the HANDLE statement does not
identify an event. The event must be declared in or inherited by the declared
class of the target object (which can be the SELF object).
-4128 Handler should be a member of either the same class, or else a base class, of
the object.
The indicated handler is declared in the program but is not a member of same
class as the object or of a base class from which the object is derived.
In the HANDLE statement, the event was prefixed with a "name." qualifier, but
the name is not that of a known object.
A handler cannot be the object of an explicit CALL statement. The only way
to invoke a handler is through calling or posting the event to which the
handler has been assigned by a HANDLE statement.
-4131 No implied object for this non-shared function call ("SELF" is not defined in
this context).
No object reference has been supplied for this member function call. If the
member function call was made inside a member function, "self" would be
the implied object reference. This call was made in a nonmember function
body, so there is no implied object reference.
The program has declared a base class and has declared another class as
DERIVED FROM that base class. In the definition of the constructor for the
derived class, a base constructor clause specifies a call to a function that is
NOT the base class constructor. Suppose a derived class is called "bread" and
its base class is called "food"; if the constructor for loaf should have a
definition that begins FUNCTION bread::bread(args1):food(args1). If it begins
FUNCTION bread::bread(args1):beverage(args1), the error message appears.
-4135 Only shared class variables can be defined outside class declaration.
-4139 The constant "name" cannot be used within its own definition.
This error is output if an unrecoverable error occurs in the compiler (that is,
SEG VIO, BUS ERROR). This situation could occur if the user terminated the
compilation explicitly. Otherwise, if the error recurs, please note all
circumstances and contact the Informix Technical Support Department.
This error occurs when the user invokes components of the NewEra product
directly, instead of through standard interfaces. The executable fglc or fglp
has been passed a compiler switch that is not understood.
The WHENEVER statement in the program has the form WHENEVER condition
CALL function, and the function being called is declared to have parameters.
The function call in this context cannot even have parentheses, let alone
arguments. Note that main has implicit parameters, so it cannot be used in
this form of the WHENEVER statement.
-4144 A grammatical error has been found in an INCLUDED file. The construct is
not understandable in its context.
Too many compiler errors have been detected. The compiler reports the
errors it has found to this point and quits.
The CHAR(*) type is not allowed as an SQL type. It cannot be used in CREATE
TABLE, ALTER TABLE, and so on.
For calls to the built-in functions packrow() and unpackrow(), the first
argument must be of type ixRow.
-4153 Warning: The constant expression with the USING clause has been evaluated
based on the values of the environment variables at compile time.
-4154 The maximum size allowed for a constant of type CHAR or VARCHAR is 255.
-4155 Warning: Only static cursor names are allowed in the WHERE CURRENT OF
clause. Cursor name will be processed as a static cursor name.
This warning can occur for a FOR statement when the upper limit of the FOR
loop is within the STEP value of the maximum value of that type. As an
example, suppose the FOR statement tried to run IX from 1 to 32760 with a
step of 20, and IX was declared as SMALLINT; the compiler would issue the
warning because IX would overflow without satisfying the loop termination
condition.
-4158 INFORMIX-4GL FORM and WINDOW statements are not supported in this
product. Use the Visual Class Library for screen interaction.
The variable indicated has been used with an asterisk or with the THRU or
THROUGH keywords. However, it has not been defined as a record or an
object. Check the spelling of the name. If it is as you intended, locate the
definition of the variable, and find out why it was not defined as expected.
Only NewEra returns this error.
The type of the variable cannot be used in an assignment.That is, you cannot
assign a value (except for the nonvalue NULL) to a BYTE or TEXT variable. You
cannot assign any value to an ARRAY variable.
-4167 The PRAGMA LOCATION statement should be the last statement on the line.
A multibyte character (or other non-ASCII character that supports the locale)
was found in the name of a NewEra identifier. For this release of NewEra,
multibyte characters and other locale-specific characters are not valid in
NewEra identifiers.
The compiler failed to write some information to the output file because it ran
out of disk space.
The compiler failed to write some information to the output file, but the cause
of the error was not reliably determined. This usually means that the ulimit
was exceeded, but possibly the error was detected too late for the auxiliary
information to be accurate, or other errors have occurred since.
-4202 The compilation was not successful. Errors found: n. The file filename was not
written successfully either.
The compiler failed to produce the output file because of errors and it also
failed to produce the error file. Probably not enough disk space was
available.
-4203 The compilation was successful, with n warnings. The file filename was not
written successfully.
The compiler produced the output file. It also detected some warnings, and
it failed to produce the error file as well. Probably not enough disk space was
available.
-4300 This statement contains too many levels of function call nesting.
This statement has calls to functions that are nested within the parameter lists
of other function calls, to a level exceeding four. The maximum level
supported is four, as in the following expression:
Afun(2-Bfun(3+Cfun(4*Dfun(5)))).
Rewrite the expression to store the result of the innermost function calls in a
variable, and use the variable in the expression.
-4309 Printing cannot be done within a loop or CASE statement contained in report
headers or trailers.
4GL needs to know how many lines of space will be devoted to page headers
and trailers; otherwise, it does not know how many detail rows to allow on a
page. Since it cannot predict how many times a loop will be executed, or
which branch of a CASE will be execute, it forbids the use of PRINT in these
contexts within FIRST PAGE HEADER, PAGE HEADER, and PAGE TRAILER
sections. You have to rearrange the code to place the PRINT statement where
it will always be executed.
-4313 The NEED statement cannot be used within report headers or trailers.
-4314 The program cannot continue or exit a menu at this point because it is not
within a MENU statement.
This CONTINUE or EXIT statement uses the MENU keyword, but it is not
located within a COMMAND section of a MENU statement. Either the
statement is in error, or some other error has prevented 4GL from recognizing
the MENU statement.
-4315 The program cannot exit a FOREACH statement at this point because it is not
within a FOREACH statement.
This CONTINUE or EXIT statement uses the FOREACH keyword, but it is not
located within a FOREACH loop. Either the statement is in error, or some
other error has prevented 4GL from recognizing the FOREACH statement.
-4316 The program cannot exit a WHILE statement at this point because it is not
within a WHILE statement.
This CONTINUE or EXIT statement uses the WHILE keyword, but it is not
located within a WHILE loop. Either the statement is in error, or some other
error has prevented 4GL from recognizing the WHILE statement.
-4317 The program cannot exit a FOR statement at this point because it is not within
a FOR statement.
This CONTINUE or EXIT statement uses the FOR keyword, but it is not located
within a FOR loop. Either the statement is in error, or some other error has
prevented 4GL from recognizing the FOR statement.
-4318 The program cannot exit a CASE statement at this point because it is not
within a CASE statement.
This CONTINUE or EXIT statement uses the CASE keyword, but it is not
located within a CASE statement. Either the statement is in error, or some
other error has prevented 4GL from recognizing the CASE statement.
-4319 The symbol variable-name has been defined more than once.
The variable that is shown has appeared in at least one other DEFINE
statement before this one. If this DEFINE is within a function or the MAIN
section, the prior one is also. If this DEFINE is outside any function, the prior
one is also outside any function; however, it might be within the file included
by the GLOBALS statement.
-4320 The symbol table-name is not the name of a table in the specified database.
The named table does not appear in the database that is named in the latest
DATABASE statement. It may be spelled wrong in the program, or the table
might have been dropped or renamed since the last time the program was
compiled.
You have written more than three subscripts following the name of an array.
However, 4GL only supports arrays of three dimensions or fewer. Check the
syntax of the subscript; an extra comma might have been entered in error.
-4322 The symbol column-name is not the name of a column in the specified
database.
The preceding statement suggests that the named column is part of a certain
table in the database that is in the last DATABASE statement. The table exists,
but the column does not appear in it. Check the spelling of the column name.
If it is spelled as you intended, then either the table has been altered, or the
column renamed, or you are not accessing the database you expected.
The named variable is a record or an array. 4GL does not support the
assignment of whole records or arrays. In the case of a record, you must
assign the individual record components, or you can assign groups of
components to groups of components using asterisk notation. In the case of
an array, you must use a subscript to designate a single array element. This
error is not produced by any version of 4GL later than Version 4.1.
-4324 The variable variable-name is not a character type, and cannot be used to
contain the result of concatenation.
-4325 The source and destination records in this record assignment statement are
not compatible in types and/or lengths.
This statement uses asterisk notation to assign all components of one record
to the corresponding components of another. However, the components do
not correspond. Note that 4GL matches record components strictly by
position, the first to the first, second to second, and so on; it does not match
them by name. If the source and destination records do not have the same
number and type of components, you will have to write a simple assignment
statement for each component.
The value NULL is a whole value that is relevant to complete variables only.
You can assign NULL to the name of this variable (omitting the substring
notation) to make the entire variable contain the null string. Alternatively,
you can assign spaces to a substring to make it blank. The only way to delete
a portion of a string is to write an expression that extracts the leading and
trailing substrings that are to be retained and concatenates them.
The index variable in a FOR loop must be an integer type. Specify a different
variable, or redefine the one named.
-4328 The variable variable-name has too complex a type to be used as the
destination of a return from a function.
-4329 The variable variable-name is not a record. Only record variables may be
expanded using the .* or THROUGH shorthand.
You have used the displayed name with either dot-asterisk (.*) or the word
THRU (or THROUGH), which is shorthand notation to specify a list of the
components of a record. Unfortunately, the variable is not defined as a
record. Make sure that you specified the right variable and that it is defined
as a record.
-4333 The name has already been called with a different number of parameters.
Earlier in the program, there is a call to this same function or event with a
different number of parameters in the parameter list. At least one of these
calls must be in error. Examine the FUNCTION or EVENT statement for name
to find out the correct number of parameters. Then examine all calls to it, and
make sure that they are written correctly. When this error appears near the
top of a function in conjunction with error -4336, fix error -4336 first, and
-4333 will usually disappear. NewEra programs return this error.
-4334 The variable variable-name in its current form is too complex to be used in this
statement.
By "too complex" 4GL means "has too many component parts." In this
statement, only simple variables (those that have a single component) can be
used. If variable-name is an array, you must provide a subscript to select just
one element. If it is a record, you must choose just one of its components.
(However, if this statement permits a list of variables, as in the INITIALIZE
statement, you can use asterisk or THRU notation to convert a record name
into a list of components.)
-4336 The parameter variable-name has not been defined within the function or
report.
-4338 The symbol variable-name has already been defined once as a parameter.
The name that is shown appears in the parameter list of the FUNCTION
statement and in at least two DEFINE statements within the function body.
Only one appearance in a DEFINE statement is permitted.
The program is too large to compile. Divide it into modules, and compile the
modules separately.
-4341 Aggregate functions are only allowed in reports and SELECT statements.
Aggregate functions such as SUM, AVG, and MAX can only appear in SQL
statements and within certain statements you use in the context of a report
body. They are not supported in ordinary expressions in program
statements. You might be able to write an application-specific function to
form this aggregate function on your data; however, you must name it
something else because names such as SUM, AVG, and MAX are reserved
words.
These functions are only relevant in the body of a report function (one
following a REPORT statement). Only within the report-generating code is the
idea of a current page or line meaningful. You can make these values
available outside a report through global variables. For example, you could
put a statement such as this one in the PAGE HEADER control block:
This would assign the current page to a global variable (called CURR_PAGE
in the example) that could be tested by code outside the report function.
You can write a subscript expression (one, two, or three numbers in square
brackets) following the name of an array variable. You can write a substring
expression (two numbers in square brackets) following the name of a
variable of data type CHAR or VARCHAR. However, variable-name is none of
those things. Either it is not the variable you intended, or it is not correctly
defined. Error -4343 with this text is produced by 4GL through Version 4.1.
-4344 The variable variable-name cannot be used with substrings because it is not a
character variable.
-4345 The variable variable-name has already had substrings applied to it.
-4347 The variable variable-name is not a record. It cannot reference record elements.
-4348 This type of aggregate must be applied to an expression, not '*'. Only
PERCENT and COUNT aggregates use '*'.
An aggregate function in this statement is one of those, such as MIN and SUM,
that must be applied to a specific column or to an expression involving
specific columns. The asterisk notation in an SQL statement means "the whole
row." With an aggregate function, it is useful only when counting entire
rows.
-4349 The PERCENT and COUNT report aggregates cannot be used with an
expression.
These aggregate functions simply count entire rows, without regard for the
contents of the rows. COUNT returns a count of the rows, and PERCENT
returns the count of rows as a percentage of the entire table. The only
permitted parameters of these functions '*' mean "the entire row." They
cannot be applied to specific columns or to expressions that involve specific
columns.
-4350 The program cannot continue a FOR loop at this time because it is not within
a FOR loop.
A CONTINUE FOR statement is not between a FOR statement and its matching
END FOR statement. Perhaps the FOR statement has been accidentally
deleted, or perhaps you changed to another type of loop such as FOREACH or
WHILE.
-4351 The program cannot continue a WHILE loop at this time because it is not
within a WHILE loop.
-4352 The program cannot continue a FOREACH loop at this time because it is not
within a FOREACH loop.
-4353 The type of this ORDER BY or GROUP item specified for the report is not valid
for sorting.
-4356 A page header has already been specified within this report.
Only one PAGE HEADER control block is allowed in a report. The statements
in this control block must be suitable for all pages of the report (except the
very first page, for which you may write a FIRST PAGE HEADER block). Find
the other PAGE HEADER control block(s), and combine all their statements
into one control block.
-4357 A page trailer has already been specified within this report.
Only one PAGE TRAILER control block is allowed in a report. The statements
in this control block must be suitable for all pages of the report. Find the other
PAGE TRAILER control block(s), and combine all their statements into one
control block.
-4358 A first page header has already been specified within this report.
Only one FIRST PAGE HEADER control block is allowed in a report. (After all,
only one first page exists.) Find the other FIRST PAGE HEADER control
block(s), and combine all their statements into one control block.
-4359 An ON EVERY ROW clause has already been specified within this report.
Only one ON EVERY ROW control block is permitted in a report. Find the
other ON EVERY ROW control block(s), and combine their statements into one
block.
-4360 An ON LAST ROW clause has already been specified within this report.
Only one ON LAST ROW control block is permitted in a report. Find the other
ON LAST ROW control block(s), and combine their statements into one block.
-4362 The report cannot skip to the top of page while in a header or trailer.
When SKIP TO TOP OF PAGE is executed, the page trailer clause must be
executed (so as to display fixed page-end material) followed by the page
header clause. If the statement was allowed in a header or trailer clause, an
infinite loop could ensue.
-4363 The report cannot skip lines while in a loop within a header or trailer.
4GL needs to know how many lines of space will be devoted to the page
header and trailer (otherwise it does not know how many detail rows to
allow on the page). It cannot predict how many times a loop will be executed,
so it has to forbid the use of SKIP statements in loops in the PAGE HEADER,
PAGE TRAILER, and FIRST PAGE HEADER sections.
-4364 Type of initialization/default expression does not match declared type of the
variable/parameter.
The initialization expression for the specified variable does not evaluate to a
data type that is compatible with the declared type. Review the expression,
and make it and the declared type agree.
-4365 Deferments of interrupt or quit may be executed only in the main program.
The statements DEFER INTERRUPT and DEFER QUIT can only appear in the
MAIN section of the program. They can appear only once each in a program.
-4366 The number of variables does not match the number of database columns in
this statement.
There must be a program variable to receive data from or supply data to each
column named in the statement. Possibly there is an ambiguity between
column names and variable names. When a program variable has the same
name as a database column, you can force 4GL to use the database column by
prefixing it with the at-sign (@) character or with its tablename.
-4367 Interrupt has already been deferred once in the main program. Each main
program may defer interrupts only once.
The statements DEFER INTERRUPT and DEFER QUIT can only appear in the
MAIN section of the program. They can appear only once each in a program.
-4368 Quit has already been deferred once in the main program. Each main
program may defer quit only once.
The statements DEFER INTERRUPT and DEFER QUIT can only appear in the
MAIN section of the program. They can appear only once each in a program.
The name shown appears where a variable would be expected, but it does not
match any variable name in a DEFINE statement that applies to this context.
Check the spelling of the name. If it is the name you intended, look back and
find out why it has not yet been defined. Possibly the GLOBALS statement has
been omitted from this source module, or it names an incorrect file. Possibly
this code has been copied from another module or another function, but the
DEFINE statement was not copied also.
In the statement DECLARE cname CURSOR, the identifier cname can be used in
only one DECLARE statement in the source file. This is true even when the
DECLARE statement appears inside a function. Although a program variable
made with the DEFINE statement is local to the function, a cursor within a
function is still global to the whole module.
-4372 The cursor cursor-name has not yet been declared in this program module. It
must be declared before it can be used.
The name shown appears where the name of a declared cursor or a prepared
statement is expected; however, no cursor (or statement) of that name has
been declared (or prepared) to this point in the program. Check the spelling
of the name. If it is the name you intended, look back in the program to see
why it has not been declared. Possibly the DECLARE statement appears in a
GLOBALS file that was not included.
This general message shows an inability to parse a 4GL statement. The line
and character numbers show the point at which the parser detected a
problem. However, this is almost never the point at which the error exists.
Start there, and work backward in the program looking for other error
messages and for missing punctuation, missing END statements, and other
mistakes. If the statement at line-number is END FUNCTION, END MAIN, or
END REPORT, one probable cause is the absence of another END, possibly
many lines earlier. Usually a missing END IF is the culprit. If the cause for this
error is not obvious, concentrate on eliminating any other, more specific error
messages, and this one will probably go away also.
-4374 This type of statement can only be used within a MENU statement.
This statement, for example a SHOW OPTION statement, only makes sense
within the context of a MENU statement. Review the program in this vicinity
to see if an END MENU statement has been misplaced. If you intended to set
up the appearance of a menu before displaying it, use a BEFORE MENU block
within the scope of the MENU.
-4375 The page length is too short to cover the specified page header and trailer
lengths.
Examine the statements in the OUTPUT section and in any HEADER and
TRAILER clauses. The total of lines used by these statements must be
sufficiently less than the specified page length that some detail rows can be
printed.
Check that your account, on UNIX systems, has permission to create files in
the /tmp directory or in the directory named in the DBTEMP environment
variable if that is different. Look for other, more explicit, error messages from
the operating system. Possibly the disk is full, or you have reached a limit on
the number of open files.
On UNIX systems, check that your account has permission to create files in
the directory where filename would be created. Look for other, more explicit,
error messages from the operating system. Possibly the disk is full, or you
have reached a limit on the number of open files.
You invoked the C-code or the p-code compiler from the command line but
did not specify the name of a source file to be edited. Repeat the command,
specifying a source file.
Check that the directory path leading to the file is specified correctly and, on
UNIX systems, that your account has permission to create a file in that
directory. Look for other, more explicit, error messages from the operating
system. Possibly the disk is full, or you have reached a limit on the number
of open files.
-4381 The input file filename has an invalid extension. The file name must have .4gl
as the extension.
You do not need to enter the file extension or suffix of .4gl when you type the
name of a program source file. However, if you do type a file suffix it must
be .4gl; no other is allowed. If you type the suffix incorrectly, enter the
command again omitting the suffix. If the file really has a different suffix, you
will have to change it.
The ".*" and THROUGH notation cannot be used to expand a record with an
array member, except in the LET statement. Error -4382 with this meaning is
issued by NewEra.
-4382 Record variables that contain array type elements may not be referenced by
the ".*" or THROUGH shorthand, or used as a function parameter.
You can define a record that contains an array as one of its components.
However, you must always list that component by its full designation of
record.part[n]. The asterisk or THRU notation is only shorthand for a list of the
names of the components of the record. It cannot produce the bracketed
subscript after the name of the array component.
-4383 The elements name-1 and name-2 do not belong to the same parent record.
The two names shown are used where two components of one record are
required; however, they are not components of the same record. Check the
spelling of both names. If they are spelled as you intended, go back to the
definition of the record and see why it does not include both names as
component fields.
-4384 The symbol name does not represent the element of any record.
The name shown is used where 4GL expects the name of a record component.
Check the spelling of the name. If it is spelled as you intended, go back to the
definition of the record variable and see why it does not include name as a
component field.
-4386 There are too many ORDER BY fields in this report. The maximum number is
number.
A limit exists on the number of ordering fields. You will have to redesign the
report so that it requires ordering by no more than number columns.
Alternatively you can order the data before passing it to the report, and
specify the EXTERNAL keyword on the ORDER BY statement in the report
body. It is generally more efficient to have the database server produce the
rows in the correct order (using SELECT...ORDER BY in the cursor that
produces the rows).
-4387 The right margin must be greater than the left margin.
If the right margin of a report were no greater than the left margin, there
would be no room on each line for data. Check both MARGIN statements in
the OUTPUT section for reasonable values.
-4388 There is one BEFORE GROUP OF clause and one AFTER GROUP OF clause
allowed for each report input parameter.
-4389 There are too many levels of nesting of IF statements in this report.
You have exceeded the maximum of five levels of nesting of IF statements.
Possibly an END IF statement has been omitted. If not, you will have to revise
the logic of the report so that decisions are nested less deeply.
-4390 Only one BEFORE MENU clause is allowed for each MENU statement.
There can be only one BEFORE block of statements in a MENU. Make sure that
the scope of your MENU statements are correctly marked with an END MENU.
Then combine all the preparation code for this menu into a single BEFORE
MENU block. This error is returned only by 4GL at Version 4.1.
-4391 When doing INPUT BY NAME or INPUT ARRAY, the BEFORE/AFTER field
names can be specified only by the field name suffix. Screen array and screen
record elements are not allowed.
Only names of single form fields can be used with a BEFORE or AFTER clause.
The name of a field is defined in the ATTRIBUTES section of the form
definition; it is often the same as the name of a database column. Here are
example lines from an ATTRIBUTES section:
atag = customer.customer_num,noentry;
tag2 = formonly.total,format="#######.##";
In the 4GL statement in question, you have written a name prefixed with
another name and a dot. That syntax is used for specifying components of
screen records or screen arrays, or database columns of the same name in
different tables, but it is not appropriate here.
-4392 The 4GL compiler has run out of data space memory to contain the 4GL
program symbols. If the program module is very large, dividing it into
separate modules may alleviate the situation.
-4393 The MENU statement has exceeded the maximum number of selections.
There is a maximum of 25 selections in a menu. Make sure that you have not
omitted an END MENU statement, thus combining two menus. If the menu is
as you intended it, you will have to revise the program so as not to exceed the
limit, for example by creating a hierarchy of menus.
-4394 Warning: Formal parameters in informal function headers cannot have initial
values. The initial value of this parameter is ignored. If this value is intended
as the default parameter, then use formal function headers to specify
defaults.
-4395 There are too many subscripts specified with a database column name.
4GL could not identify an END IF statement to match the IF statement on the
line number shown. Start at that line and work down until you find where
the terminating statement should have been, and insert it.
4GL could not identify an END WHILE statement to match the WHILE
statement on the line number shown. Start at that line and work down until
you find where the terminating statement should have been, and insert it.
4GL could not identify an END FOR statement to match the FOR statement on
the line number shown. Start at that line and work down until you find where
the terminating statement should have been, and insert it.
-4401 A concatenation operation has created a string too long to fit in the
destination string variable.
This statement concatenates two or more character strings and stores the
result in another variable of type CHAR or VARCHAR. However, the result of
concatenation was longer than the receiving variable. If the excess length is
due to trailing spaces, you can use the CLIPPED function to prevent them
from being included in the combined result. Otherwise you will have to
define the length of the receiving variable as at least the sum of the lengths of
the input variables.
-4402 In this type of statement, subscripting may be applied only to array variables
to select individual array elements.
The statement contains a name followed by square brackets, but the name is
not that of an array variable. Check the punctuation of the statement and the
spelling of all names. Names that are subscripted must be arrays. If you
intended to use a character substring in this statement, you will have to revise
the program.
-4403 The number of dimensions for the variable variable-name does not match the
number of subscripts.
-4405 The function has exceeded the maximum number of allowed parameters.
This message is not returned by any current Informix product. If the error
recurs, please note all circumstances and contact the Informix Technical
Support Department.
The source line contains an odd number of quote symbols. Inspect it from left
to right and make sure that all literal character strings begin and end with a
quote. All literal strings must begin and end on the same logical line.
However, you can write long literal strings in two ways. First, you can escape
the end of line by making the final character in the line a backslash (however,
there is a fixed maximum of 80 characters on the total length of a single
quoted string). Second, in the DISPLAY and LET statements, you can
concatenate shorter literal strings using the comma. Here are two examples.
DISPLAY "abcdefghijkl\
mnopqrstuvwxyz"
DISPLAY "abcdefghijkl",
"mnopqrstuvwxyz"
This source line contains an unusual character. 4GL suggests that the source
file might be corrupt. Edit the file and remove the bad character. If you cannot
see or select it with your editor, you may have to delete and retype the line.
-4408 There is a quoted string that is too long in the above line.
This source line contains some character other than printable text and normal
white space. Remove the invalid characters (which may be invisible under
normal editing). If you cannot see or select the invalid characters with your
editor program, you might have to delete the line and retype it.
-4410 There is a numeric constant in the previous line that is too large or too small.
A numeric constant in this line cannot be processed. Check the digits and
punctuation of all literal numbers; for example, make sure that you have not
typed a letter for a digit. No number can have more than 50 digits. Depending
on the context, numbers might be restricted to one of three ranges.
SMALLINT: absolute value not exceeding 32,767
INTEGER: absolute value not exceeding 2,147,483,647
DECIMAL: absolute value from 10 to the 130th power through 10 to the
124th power
-4411 There is an alphanumeric identifier that is too long in the above line.
-4412 Values from the RUN command can be returned only to INTEGER or
SMALLINT variables.
The RUN command only returns the integer return code from the program
that was executed. No automatic conversion of data occurs in this case; its
result must be assigned to an integer variable.
-4413 The label label-name has already been defined within this function/report.
The name shown appears in two or more LABEL statements. Check the
spelling of the name; if it is as you intended, then look back through this
function, report, handler, or main program for other LABEL statements and
find the one that uses this same name. Change one of them to use a different
name. Only NewEra returns this error.
-4413 The label label-name has already been defined within this main program or
function.
The name shown appears in two or more LABEL statements. Check the
spelling of the name; if it is as you intended, then look back through this
function or main program for other LABEL statements and find the one that
uses this same name. Change one of them to use a different name. Only 4GL
returns this error.
-4414 The label label-name has been used but has never been defined within this
function/report.
-4414 The label label-name has been used but has never been defined within the
above main program or function.
-4415 An ORDER BY or GROUP item specified within a report must be one of the
report parameters.
The names used in a ORDER BY, AFTER GROUP OF, or BEFORE GROUP OF
statement must also appear in the parameter list of the REPORT statement. It
is not possible to order or group based on a global variable or other
expression. Check the spelling of the names in the statement and compare
them to the REPORT statement.
Statements such as PRINT, SKIP, or NEED are meaningful only within the
body of a report function, where there is an implicit report listing to receive
output.
-4418 The variable used in the INPUT ARRAY or DISPLAY ARRAY statement must be
an array.
The name following the words DISPLAY ARRAY or INPUT ARRAY must be that
of an array of records. Check the spelling of the name. If it is as you intended,
find and inspect the DEFINE statement to see why it is not an array. (If you
want to display or input a simple variable or a single element of an array, use
the DISPLAY or INPUT statement.)
-4419 The variable used in the CONSTRUCT statement must be a character variable.
The name following the word CONSTRUCT must be that of a variable defined
as CHARACTER or VARCHAR. It ought to be a long variable, since the string
it receives may be long. Check the spelling of the name. If it is as you
intended, find and inspect the DEFINE statement to see why it is not a
character type.
4GL needs to know how many lines will be filled in header and trailer
sections (otherwise it could not know how many detail rows to put on the
page). Because it cannot tell which part of an IF statement will be executed, it
requires that both produce the same number of lines of output.
-4421 You may not use an INPUT statement within another INPUT statement or
PROMPT statement, even if it is enclosed within a conditional or looping
statement.
You can execute an INPUT statement from within another one, or from a
PROMPT statement, but in order to do so you must place the INPUT statement
in a function and call the function. You cannot embed the text of an INPUT
statement within another.
-4422 You may not use a CONSTRUCT statement within another INPUT statement.
This includes situations when CONSTRUCT is enclosed within a conditional
or looping statement. You must call a function that executes the CONSTRUCT
statement.
-4423 The CLIPPED and USING options for the DISPLAY statement may not be used
when displaying to a form field.
The CLIPPED and USING keywords cannot be used in the DISPLAY TO and
DISPLAY BY NAME statements. The display format of a form field is
controlled by the attributes of that field, as specified in the form file. Trailing
spaces are not displayed in a field. To get the effect of USING, edit the form
file and add a USING attribute to the field or fields.
The variable indicated has been used with an asterisk, or with the THRU or
THROUGH keywords. However, it has not been defined as a record or an
object. Check the spelling of the name. If it is as you intended, locate the
definition of the variable and find out why it was not defined as expected.
Only NewEra returns this error.
The variable shown has been used with an asterisk, or with the THRU or
THROUGH keywords. However, it has not been defined as a record. Check
the spelling of the name. If it is as you intended, locate the definition of the
variable and find out why it was not defined as a record. Only 4GL returns
this error.
-4425 The variable variable-name has not been defined LIKE the table table-name.
The named variable has been used in the SET clause of an UPDATE statement.
However, it was not defined to be LIKE the table being updated. As a result,
4GL cannot associate record components with table columns. You can change
the definition of the variable, or you can rewrite the UPDATE statement to
show the explicit relationship between column names and record
components.
-4426 The PRINT statement can be used only within reports. If you wish to print
without screen positioning, use the DISPLAY statement without any field or
screen destination.
-4427 The COLUMN feature for the DISPLAY statement may be used only when
displaying without screen or field destination.
-4428 You may not use a PROMPT statement within an INPUT or PROMPT
statement, even if it is enclosed within a conditional or looping statement.
You can execute a PROMPT statement from within another one or from within
an INPUT statement, but in order to do so you must place the PROMPT
statement in a function and call the function. You cannot embed the text of a
PROMPT statement within an INPUT statement or another PROMPT.
You cannot pass a whole array as a parameter of a function. You can pass an
individual element of the array by using a subscript. Possibly the array that
is causing this error is one component of a record variable that is being passed
using asterisk notation. Only 4GL returns this error.
-4430 Record parameters for a report cannot contain elements that are arrays.
You cannot pass a whole array as a parameter of a function. You can pass an
individual element of the array by using a subscript. In this case, a record
variable is specified as a parameter using asterisk notation, but one of the
components of the record is an array.
-4431 The number of expanded report parameters has exceeded the maximum
allowed.
This message is not returned by any current Informix product. If the error
recurs, please note all circumstances and contact the Informix Technical
Support Department.
In order to perform grouping, the set of selected rows must be ordered on the
same columns. This is the only way to force all the equal values to be found
together, as a group. Rewrite the statement so that each selected value that
you want to group also appears in an ORDER BY clause. Note that both these
clauses allow you to refer to selected values by their position number, as in
the following example:
SELECT customer_num, month(order_date), avg(ship_weight)
FROM orders
ORDER BY 1, 2
GROUP BY 1,2
-4433 A variable used in the above statement must be of type CHAR or VARCHAR.
-4434 The limits of the INFORMIX-4GL Demo Version have been exceeded. Please
call Informix Software, Inc. at (415) 926-6300 for licensing information.
-4436 There are too many variables to VALIDATE or INITIALIZE in one statement.
There is a limit of 250 names (through Version 4.0) in the VALIDATE and
INITIALIZE statements. Simply divide this statement into multiple statements
so as not to exceed the limit.
-4437 All table names in the SELECT list must be the same as the table name in the
FROM clause.
One of the table names used in the list of columns to select does not appear
in the FROM clause. Possibly you simply misspelled the name in one of the
two places. Or you might have used a table alias in the select-list but forgot
to define it in the FROM clause.
Substring notation is not allowed in the INTO clause. You can specify a
substring of a column in the list of columns to select and in the WHERE clause.
But you have to select into an entire variable. Define a variable to select into,
and move the data into the destination substring using a LET statement.
-4439 You cannot SELECT into record record because element name is a record or an
array.
The INTO clause can name only simple variables. The use of asterisk or THRU
notation is a shorthand for listing all the component fields of a record. The
resulting list of fields must consist of simple variables. In this case, the field
name is not simple. Perhaps you have referred to the wrong record. If not, you
will have to list the name component separately, specifying one or more of its
component parts.
-4440 name1 precedes name2 in the record/object and must also precede it when
used with the THROUGH shorthand.
The THROUGH or THRU shorthand requires you to give the starting and
ending fields as they appear in physical sequence in the record. Check the
spelling of the names; if they are as you intended, then refer to the VARIABLE
statement where the record was defined to see why they are not in the
sequence you expected. Only NewEra returns this error.
-4440 The field name1 precedes name2 in the record record-name and must also
precede it when used with the THROUGH shorthand.
The THROUGH or THRU shorthand requires you to give the starting and
ending fields as they appear in physical sequence in the record. Check the
spelling of the names; if they are as you intended, then refer to the DEFINE
statement where the record was defined to see why they are not in the
sequence you expected. Only 4GL returns this error.
-4451 The size of the pcode generated from this function/report has exceeded the
32K per function limit.
The function or report will have to be simplified. Extract some portion of its
code to a separate function or report, and call that one. Only NewEra returns
this error.
-4451 The size of the pcode generated from this function has exceeded the 32K per
function limit.
The function will have to be simplified. Extract some portion of its code to a
separate function, and call that function.
-4452 The function (or report) name has already been defined.
No two functions can have the same name. No two reports can have the same
name. Change one of the two occurrences of name to a different name. Only
NewEra returns this error.
-4452 The function (or report) name has already been defined. Function and report
cannot both have the same name.
Each function (or report, which is similar to a function) must have a unique
name within the program. Change the function or report name.
-4453 Too many global identifiers and literal strings in your program.
A table 256K bytes long holds literal strings and identifiers used in the main
function and at the global and module levels. The table also holds the
identifiers of forms, windows, and cursors. To avoid this error, move some
code that uses many literal strings into a separate module or into a function.
Alternatively, find a way to initialize character variables without assigning
literal strings, for example by reading the initial values from a database or
file. Reducing the number of global and module variables will also help.
-4453 The size of the global string table has exceeded the limit of 32767.
The table is used to hold literal strings and identifiers used in the main
function and at the global and module levels. The table also holds the
identifiers of forms, windows, and cursors. To avoid this error, move some
code that uses many literal strings into a separate module or into a function.
Alternatively, find a way to initialize character variables without assigning
literal strings, for example by reading the initial values from a database or
file. Reducing the number of global and module variables will also help. Only
4GL returns this error.
-4454 Too many local identifiers and literal strings in this program block.
A table of 256K bytes holds literal strings and identifiers used in the current
function. To avoid this error, split the function into two or more
sub-functions. Alternatively, find a way to initialize character variables
without assigning literal strings, for example by reading the initial values
from a database or file. Only NewEra returns this error.
-4454 The size of the local string table has exceeded the limit of 32767.
The table is used to hold literal strings and identifiers used in the current
function. To avoid this error, split the function into two or more
sub-functions. Alternatively, find a way to initialize character variables
without assigning literal strings, for example by reading the initial values
from a database or file. Only 4GL returns this error.
-4458 Each dimension for an array must be between 1 and 32767, inclusive.
Array dimensions cannot be less than one or greater than 32,767. If you need
a larger array, you must either split the array into multiple arrays, or use
multiple dimensions.
-4475 "name" cannot be used as both a function (or report) name and an identifier
name.
The name shown has been defined at least two ways. Names at the global or
module level must be unique. Locate all the definitions and declarations of
this name and change all but one of them. Only NewEra returns this error.
-4475 "name" may not be used as both a function (or report) name and a variable
name.
The name shown has been defined at least two ways. Names at the global or
module level (function names, report names, and names of global or module
variables) must be unique. Locate all the definitions of this name and change
all but one of them. Error -4475 is issued with this meaning from 4GL at
versions after 4.1.
-4475 "name" may not be used as both a function (or report) name and an identifier.
The name shown has been defined at least two ways. Names at the global or
module level must be unique. Locate all the definitions and declarations of
this name and change all but one of them. Error -4475 is issued with this
meaning from 4GL at versions after 4.1.
-4476 Record members may not be used with database column substring. Possible
misspelling or usage of undefined host variables.
This statement has a reference of the form name1.name2[...]. This is the form
in which you would refer to a substring of a column: table.column[...].
However, the names are not a table and column in the database, so 4GL
presumes they refer to a field of a record. Inspect the statement and
determine what was intended: a reference to a column or to a record. If it is a
column reference, verify the names of the table and column in the database.
If it is a record reference, verify that the record and component are properly
defined. If the record has the same name as a table, prefix the name of the
table with @ to make it clear you mean the table, not the record.
-4479 Warning: non-ANSI comment indicator. Use "--" for ANSI compatibility.
If you want your SQL statements to comply with ANSI standards, you must
use the two-dash comment delimiter (- -). The comment delimiters of the
number sign (#) and the braces ({ }) are not portable to ANSI-compliant
systems. This message is seen because you specified that you wanted
warnings issued for constructs that are not ANSI compliant, by means of the
-ansi command-line parameter, the DBANSIWARN environment variable, or
the DBANSIWARN setting in the informix.ini file. Only NewEra returns this
error.
-4479 Warning: non-ANSI comment indicator. Use "--" for ANSI compatibility.
If you want your SQL statements to comply with ANSI standards, you must
use the two-dash comment delimiter (- -). The comment delimiters of the
number sign (#) and the braces ({ }) are not portable to ANSI-compliant
systems. This message is seen because you specified that you wanted
warnings issued for constructs that are not ANSI compliant, by means of the
-ansi command-line parameter, or the DBANSIWARN environment variable.
Only 4GL returns this error.
-4486 Blob variables and wordwrap fields cannot be printed in report headers or
trailers.
4GL has to be able to predict how many lines will be used in a report header
or trailer. Because the size of a TEXT variable is unpredictable, you cannot
display one in these contexts.
-4487 It is not possible to mix parameter and local record definitions where the
record contains variables of type TEXT or BYTE. Please make a second
definition for the local record variable.
In this report body, use separate DEFINE statements for parameters of the
report and for local variables of any type.
-4488 The program cannot CONTINUE or EXIT statement-type at this point because it
is not immediately within statement-type statement.
-4489 The statement above does not allow the use of local variables or report
parameters in its expressions.
-4490 You cannot have multiple BEFORE clauses for the same field.
You cannot specify more than one BEFORE clause for the same field.
More than one copy of the function prototype has occurred in the current
scope, and the one indicated by this message has specified a different name
for a formal parameter than that specified by any prototypes already
encountered.
More than one copy of the function prototype has occurred in the current
scope, and the one indicated by this message has specified a different default
value for a formal parameter than that specified by any prototypes already
encountered.
The indicated function reference uses named parameters, but the declaration
of the function or report used the informal style of parameter declaration, in
which only the names are specified in the parameter list and the types are
specified in subsequent, subsidiary declarations.
-4494 Missing named parameter "name" does not have default value.
The indicated function invocation does not list a value for a parameter, and
the declaration for the function does not provide a default value for it. Either
add a default value in the declaration, or add a name/value pair here in the
invocation.
The name of a parameter specified in the invocation of the function does not
match any of the names in the declaration of that function, or it is not a valid
NewEra identifier. Check its spelling.
Two events in the same class cannot have the same name.
You cannot declare an event or a handler with the same name as an intrinsic
member function (!copy(), !derive(), or the name of the class). Change the
name of the event or handler.
-4499 Member "name" is already declared in the class or in its base class.
Either a member called "name" already exists in the current class, and you
have attempted to declare another member with that name, or you are
attempting to override an event or a variable. Only member functions can be
overridden.
-4501 A parameter count mismatch has occurred between the calling function and
the called function.
-4502 The 4GL program has run out of runtime data space memory.
See error -1319, which has replaced this error.
-4503 A function has not returned the correct number of values expected by the
calling function.
See error -1321, which has replaced this error for products other than NewEra.
-4505 A report output file cannot be opened.
-4508 PRINT FILE error - cannot open file filename for reading.
-4509 An array variable has been referenced outside of its specified dimensions.
An array bound has been exceeded, and array-bounds checking has been
turned on. Array-bounds checking can be turned on through the compiler
switch "-a" or the PRAGMA ARRAY BOUNDS statement. Only NewEra returns
this error.
-4509 An array variable has been referenced outside of its specified dimensions.
See error -1326, which has replaced this error for products other than NewEra.
-4511 A temporary table needed for a report could not be created in the selected
database. The user must have permission to create tables in the selected
database.
-4512 A database index could not be created for a temporary database table needed
for a report.
-4516 A character variable has referenced subscripts that are out of range.
-4517 Strings of length > 512 cannot be returned from function calls.
-4518 The 4GL program cannot allocate any more space for temporary string
storage.
Either the program is attempting to return more than 32,768 bytes of CHAR,
VARCHAR, or CHAR(*) values from a function, or the number of bytes of
temporary CHAR(*) variables that the program creates implicitly has
exceeded 32,768. Only NewEra returns this error.
-4518 The 4GL program cannot allocate any more space for temporary string
storage.
For products other than NewEra, see error -1334, which has replaced this
error.
The p-code file for the program (whose file suffix is .4go) has become
corrupted. Recompile at least the module that contains the named function
(preferably the whole program) and run it again. If the same error occurs,
make sure that you are running both fglpc and fglgo at the identical version
level. If you are, refer to the Administrator’s Guide for your database server,
Appendix B, “Trapping Errors,” for additional diagnostics. Contact Informix
Technical Support with the diagnostic information.
The code that generates the INCLUDE statement, the Application Builder
front-end code that generated the INCLUDE statement is out of
synchronization with the Application Builder back-end code that handles the
insertion and removal of data from the database.
The Application Builder could not open the database. A network failure,
INFORMIX-NET failure, or an incorrect value in the DBPATH environment
variable could cause this error. Check the DBPATH setting, and run SETNET.
Also verify that the UNIX host is functioning correctly.
The error might occur because of lack of permissions. The owner of the
database should perform the upgrade.
The error could be due to a full disk. The upgrade does not erase old
information until it has been written and verified, and then only if requested.
The amount of free space that an upgrade requires is approximately equal to
the amount that the older database uses.
-4543 Invalid delimiter. Do not use '\\', hex digits (0-9, A-F, a-f), or space.
Use a delimiter other than any of the 22 forbidden symbols that are listed
here.
You have attempted to create a variable whose total size exceeds 65535.
Arrays can consume space more quickly than you might notice. A simple
array A[100,100] of CHAR(6) would consume 10,000 x 7 - 70,000 bytes.
-4556 Object size cannot exceed 65535 bytes.
You have attempted to create an object whose total size exceeds 65535.
Arrays can consume space more quickly than you might notice. A simple
array A[100,100] of CHAR(6) would consume 10,000 x 7 - 70,000 bytes.
The value must be greater than or equal to the current column and less than
or equal to the right margin of the report (or the left margin for reports with
DIRECTION RIGHT TO LEFT). The report margins are set in the OUTPUT
section of the report.
The program has declared a variable of type CHAR with a size that is out of
the acceptable range.
Identifiers that are used for dynamic cursor names must be variables.
-4659 The CHAR (*) type is not allowed for report parameters.
A formal argument cannot specify a class name (or FOREIGN) as its data type.
-4661 Access control restrictions are not allowed for this intrinsic member function.
The intrinsic member functions !copy() and !derive() must have PUBLIC
access control, which is the default access control for member functions.
The -useccl compiler switch has been used. An ODBC error, shown here as
"text", has been detected.
-4664 CCL class declarations are required with the "-useccl" switch. Add INCLUDE
SYSTEM "ixstmt.4gh" to your module.
To compile a REPORT or the MAIN program block with the -useccl switch, the
user needs to include ixstmt.4gh.
This statement has calls to functions nested within the parameter lists of
other function calls, to a level exceeding four. A maximum level of four is
supported, as in the following expression:
Afun(2-Bfun(3+Cfun(4*Dfun(5))))
Rewrite the expression to store the result of the innermost function calls in a
variable, and use the variable in the expression.
-4665 Warning: Report page header or trailer output must end with a newline, so a
newline will be automatically appended.
A report header or trailer contained a semicolon (;) at the end of the line. In
the body of the report, a trailing semicolon suppresses the creation of a new
line. The header and trailer must end with a new-line character to perform
properly. The compiler has ignored the semicolon. To prevent this warning
message from appearing, remove the semicolon from the source code.
For a detailed description of the problem, see the repold.log file in either
$INFORMIXDIR\temp or the current directory.
-4667 Class name is only forward declared in this file.
-4701 The -V option must be used on its own with no other arguments.
The -V option requests that the program display the version number and then
terminate. No other options are allowed with this option. To display the
version number, repeat the command, but with only the -V option.
The command cannot be executed because you did not specify the program
name. Repeat the command with the name of a NewEra program as an
argument.
You specified an option that the program does not recognize. For the valid
options of this command, refer to your documentation. Repeat the command,
using only valid options.
You specified an option that the program does not recognize. For the valid
options of this command, refer to your documentation. Repeat the command,
using only valid options.
Before a program can access data, it must use the dbselect() function to select
a database and then a table. Review the program logic to see why these calls
were not made.
Either the table or the database that is specified to this function does not exist.
Possibly the name is incorrect, the wrong database has been selected, or the
database has been altered.
The program has called dbselect() twice in succession passing the DBOPEN
flag. The program must call dbselect() with the DBCLOSE flag to close a
database before it opens another database.
The program has called a function that requires a database to be open, but
none is open. The program must call dbselect() before it calls this function.
At least one of the column names passed to this function does not exist in the
table whose name was passed. Review the name of the table and the names
of the columns. If they are correct, either the wrong database has been
selected, or the database has been altered.
The table whose name was passed to this function has not been opened. The
program must first call dbselect() to open the table.
The column name passed to this function does not exist in the table. Review
the spelling of the name. If it is correct, either the wrong database is selected
or the table has been altered.
A call to dbselect must first open the table that dbselfield() is to use. Review
the program logic to make sure that this action is performed.
Either dbselfield() or dbfind() returns this message when they are called for
an empty table. The message does not reflect an error in the program but a
condition of the table.
This call to dbfind() for a keyed search returned no data. The value that was
requested was not found in the selected index column.
This call to dbfind() for the NEXT row produced no data. The end of the table
has been reached.
This call to dbfind() for the PRIOR row produced no data. The beginning of
the table has been reached.
The flag parameter to this function was not one of the defined values. When
you call functions that take predefined flag values, use the names that the
dbio.h include file defines, and pass only the flags that are defined for the
particular function.
First, use dbselect() to open the table name that is specified to this function.
Review the program logic to make sure that this action is performed.
Before the program calls dbfind(), it must call dbsetview() to establish a view
(that is, a specification of the columns to be returned and the buffer to receive
them). Review the program logic to see that this action is performed.
-6017 Cannot add a duplicate value; the index has been defined as UNIQUE.
At least one of the column values that was presented to dbadd() is a duplicate
of a value that exists in its column. However, that column is constrained to
contain unique values. The row cannot be inserted.
A call to dbselect must first open the table that dbadd() is to use. Review the
program logic to make sure that this action is performed.
Before the program calls dbadd(), it must call dbsetview() to establish a view
(that is, a specification of the columns to be returned and the buffer to receive
them). Review the program logic to see that this action is performed.
The dbdel() and dbupd() functions operate on the row last chosen using
dbfind(). Review the program logic to see that dbfind() is called to establish
a row. If the call was to dbfind() itself, it was passed a flag such as CURRENT,
which assumes that a row had been selected in a prior call, but none had been
selected.
A call to dbselect must first open the table that dbdel() is to use. Review the
program logic to make sure that this action is performed.
Probably some other process has already locked the table. The program
should wait a short time and attempt the lock again. If the condition persists,
the program should roll back its transaction and retry the entire operation.
A call to dbselect must first open the table that dblock() or dbunlock is to
use. Review the program logic to make sure that this action is performed.
This call to dbselect() passed the name of a table that is already open. The
table continues to be open. Review the program logic to see if it is making
redundant calls to dbselect().
-6026 The named column must be indexed or sequential search must be selected.
This call to dbselfield() names a column that does not have an index in the
database, but the flag passed was ACCKEYED. Check that the correct column
was named and that the correct database and table have been opened. If that
is the case, then the index has been dropped and should be re-created before
you run the program again.
This call to dbadd() or dbupdate() has attempted to insert a row that contains
a null value for a column that is constrained to be not null. Possibly the
program placed a null in the record buffer using dbsetnull(), or the current
view omits a column that is constrained to be not null. The row is not
inserted. Review the definition of the table and the program logic, and
change it so that it to define values for all not null columns before an add or
update.
A call to dbselect must first open the table that dbupdate() is to use. Review
the program logic to make sure that this action is performed.
-6030 Cannot add a duplicate value; the index has been defined as UNIQUE.
-6031 The user does not have SQL permission to SELECT the specified columns.
The user account that is running this program has not been granted SELECT
privilege on the current table or on the particular columns that are being
selected. A user with DBA privileges for the database should use the SQL
statement GRANT to grant the necessary privilege. Then run the program
again.
-6032 The user does not have SQL permission to INSERT rows into the table.
The user account that is running this program has not been granted INSERT
privilege on the current table. A user with DBA privileges for the database
should use the SQL statement GRANT to grant the necessary privilege. Then
run the program again.
-6033 The user does not have SQL permission to UPDATE the specified columns.
The user account that is running this program has not been granted UPDATE
privilege on the current table. A user with DBA privileges for the database
should use the SQL statement GRANT to grant the necessary privilege. Then
run the program again.
-6034 The user does not have SQL permission to DELETE rows from the table.
The user account that is running this program has not been granted DELETE
privilege on the current table. A user with DBA privileges for the database
should use the SQL statement GRANT to grant the necessary privilege. Then
run the program again.
The flag parameter passed to dbfind() implies a current row (for example, a
flag of CURRENT or NEXT as opposed to one of FIRST); however, a prior call
has not established a current row. Review the program logic to make sure
that it establishes a current row before it makes a call of this kind.
-6036 An aliasname is the same as an existing table name within the database.
The newname parameter that was given to dbalias() already exists as a table
in the database. Review the program logic, and change it to use only unique
aliases.
The newname parameter that was given to dbalias() has already been defined
as an alias in a previous call. An alias can be defined only once in the run of
a program. Review the program logic, and change it to use aliases only once.
The oldname parameter that was presented to dbalias() has been defined as
an alias in a previous call. The program can define multiple aliases for a table,
but it cannot define an alias for an alias. Review the program logic, and
change it so that the oldname parameter is always the name of a real table in
the database.
-6040 The aliased table was not found as a table name in the database.
The oldname parameter that was presented to dbalias() cannot be found in the
current database as a tablename. Check the value of the parameter; if it is as
you intended, then perhaps the wrong database is current, or the intended
table has been renamed.
-6041 The column number is greater than the number of columns in the table.
The colnum parameter that was presented to dbnfield() is greater than the
total number of columns in the table whose name was passed. If the program
was iterating over the column numbers from 0 upward, this return code
signals the end of the table. Otherwise, check the number passed; if it was as
you intended, either the wrong database is current, or the table has been
altered.
The format string that was passed to dbprusing() is not acceptable. Verify the
value passed, and review the rules of the USING function as described in the
reference material for the REPORT feature of INFORMIX-4GL.
The columname parameter that was passed to dbselfield() is not the name of
a column in the specified table, nor is it the name of a composite index on that
table. Review the tablename and columname parameters. If they are as you
intended, check that the correct database has been selected. If so, the desired
index might have been dropped or created under a different name.
-6044 The column number is greater than the number of columns in the composite
key.
If this internal error recurs, please note all circumstances and contact the
Informix Technical Support Department.
This error should not be returned. The most likely cause of the error is that
some internal data structure that ALL uses has been overwritten in memory.
Review the program logic. When you are certain that the program cannot
have stored into ALL data, please note all circumstances and contact the
Informix Technical Support Department.
-6052 Not all of the composite index is contained in the current view of this table.
When the program calls dbselfield() to set a composite index, the current
view that is established by calling dbsetfileview() or dbstructview() must
include all columns of that index. Review the program logic, especially the
calls to the latter two functions, to make sure this action is performed. If the
view is set as you intended, possibly the composite index has been dropped
and re-created using more or different columns.
If this internal error recurs, please note all circumstances and contact the
Informix Technical Support Department.
If this internal error recurs, please note all circumstances and contact the
Informix Technical Support Department.
If this internal error recurs, please note all circumstances and contact the
Informix Technical Support Department.
-6062 Dbsetfileview cannot be used when any column within the table allows nulls.
Because the buffer that dbsetfileview() constructs does not use alignment,
dbsetfileview() cannot build a buffer for columns that might have null
values.
This internal error should not occur. If the error recurs, please note all
circumstances and contact the Informix Technical Support Department.
You cannot call dbunlock() inside a transaction, that is, after you call
dbbegin() and before you call dbcommit() or dbrollback(). When you use
transaction processing, all locks must remain in effect until the transaction is
committed or rolled back. Ending the transaction releases all locks
automatically.
A column has a data type that this version of ALL does not support (for
example, the BYTE data type). Review the requested column(s) against the
actual table, and use only the columns that have numeric or CHAR data types.
When you use a database that has transactions, the program must open all
tables within the bounds of a transaction; that is, after a successful call to
dbbegin(). Review the program logic to see that this action is performed.
Possibly transaction-logging has been applied to the database since the last
time that you used the program.
Before the program closes the database with dbselect(), it must end the
current transaction. The program can use a call to dbcommit() or
dbrollback().
-7000 Error error-number from the optical subsystem. Consult your appropriate
subsystem manual.
Check the error number in the documentation for the subsystem that you are
using.
You might receive this message when you try to access an external database
that has a different locale than the current database. In order to use this NLS
database, you must set the DBNLS environment variable to 1 or 2 and the
LC_COLLATE environment variable to the specified category-value.
You might receive this message when you try to access an external database
that has a different locale than the current database. In order to access this
NLS database, you must set the DBNLS environment variable to 1 or 2 and the
LC_CTYPE environment variable to the specified category-value.
Either the LANG or the LC_CTYPE environment variable setting is invalid. Set
either or both variables to the values that your system supports.
Either the LANG or the LC_TIME environment variable setting is invalid. Set
either or both variables to the values that your system supports.
If your current database is not an NLS database, you cannot access an NLS
database on another database server or on the same database server.
However, if the NLS environment variables are set correctly, you can drop an
external NLS database even if your current database is not an NLS database.
Verify the argument types that you use when you call the DataBlade API.
You called a DataBlade API incorrectly. Check that the value of individual
arguments is correct and that the combination of all argument values is also
correct.
This is an internal error. If it recurs, please note all circumstances and contact
the Informix Technical Support Department.
This is an internal database server error. If it recurs, please note all circum-
stances and contact the Informix Technical Support Department.
-7412 Error loading code-set conversion object for converting to client codeset.
Check the arguments to the DataBlade API calls that require column
numbers. DataBlade API calls use column numbers 0 to number of columns
minus one.
-7422 Cannot issue a SQL statement in the secondary thread. You need to define the
user-defined routine as variant.
-7423 An invalid argument is specified. Either the return type buffer is empty or the
length of the buffer is not valid.
Verify arguments to DataBlade API calls. The statement handle used was
invalid or improperly modified.
Verify the logic in the user-defined routine. You cannot retrieve or query
results without an active query.
If this error recurs, please note all circumstances and contact the Informix
Technical Support Department.
-7435 This statement references a table that is used in the parent queries.
The data type you are using is not supported. Verify the type definition.
-7442 The statement must be opened before this operation can be performed.
An attempt was made to fetch or close a prepared statement that is not open.
Ensure that a mi_open_prepared_statement call was successfully completed
prior to calling mi_fetch_statement or mi_close_statement.
Verify arguments to DataBlade API calls. The connection handle used was
NULL, not opened, invalid, or improperly modified.
Check disk space on your machine. For more help, call your system adminis-
trator or database administrator. If these checks do not resolve the problem,
and this error recurs, please note all circumstances and contact the Informix
Technical Support Department.
If this error recurs, please note all circumstances and contact the Informix
Technical Support Department.
Check disk space on your computer. For more help call your system admin-
istrator or database administrator. If this error recurs, please note all
circumstances and contact the Informix Technical Support Department.
-7475 Cannot close a connection from outside of its own parent statement.
Check the logic in your user-defined routine. You must open and close
connections within the scope of the user-defined routine.
Check permissions on the file and its directory. For more help, call your
system administrator or database administrator.
If this error recurs, please note all circumstances and contact the Informix
Technical Support Department.
Check permissions on the file and its directory. Check disk space on your
computer. For more help, call your system administrator or database admin-
istrator. If this error recurs, please note all circumstances and contact the
Informix Technical Support Department.
Check disk space on your computer. For more help call your system admin-
istrator or database administrator. If this error recurs, please note all
circumstances and contact the Informix Technical Support Department.
Check disk space on your machine. For more help call your system adminis-
trator or database administrator. If this error recurs, please note all
circumstances and contact the Informix Technical Support Department.
Verify arguments to DataBlade API calls. NULL was passed but not expected.
Verify your CLIENT_LOCALE. If this error recurs, please note all circum-
stances and contact the Informix Technical Support Department.
-7522 Incomplete locale information for conversion between client and server
formats
Verify your CLIENT_LOCALE. If this error recurs, please note all circum-
stances and contact the Informix Technical Support Department.
If this error recurs, please note all circumstances and contact the Informix
Technical Support Department.
-7536 Error unlinking function descriptor from connection, not previously linked
Verify arguments to Blade API calls. The connection handle used was NULL,
not opened, invalid or improperly modified.
If this error recurs, please note all circumstances and contact the Informix
Technical Support Department.
If this error recurs, please note all circumstances and contact the Informix
Technical Support Department.
Verify spelling and definition of types used in the routine signature. If this
error recurs, please note all circumstances and contact the Informix Technical
Support Department.
-8001 The number of newlines specified for TOP MARGIN, FIRST PAGE HEADER
(PAGE HEADER), PAGE TRAILER, and BOTTOM MARGIN must leave enough
room on the page for the printing of the ON EVERY RECORD clause.
The total number of lines that are defined for all the above statements exceeds
the page length. Check that you entered the desired number of lines in each
statement in the OUTPUT section and in the header and trailer specifications
of the FORMAT section.
-8002 The ACE report specification is too complex or large to be properly compiled.
The number of instructions needed to implement this specification is greater
than the space that is allocated in the instruction tables for the compiler.
Reduce the size of the report. Because you cannot divide a report into parts
to compile separately, you must find a way to simplify the report.
The FLOAT constant is not written correctly. The exponent might be too small
or too large (the allowable range of exponents depends on your computer
and operating system but is the same as your C compiler allows for the
DOUBLE data type), or incorrect punctuation or a nondigit character other
than e might be present.
-8005 Too many user variables, parameters, or functions have been defined. You
cannot define any more than number in an ACE specification.
The total number of identifiers that are defined for ASCII fields, parameters,
and variables cannot exceed the number that is shown. You must simplify the
report.
This line of the report specification contains an odd number of quote (")
symbols. A quoted string cannot include a new-line character; all quoted
strings must be complete in one line. In order to print a longer string, store its
parts in variables, and list them all in a PRINT statement.
-8008 The file filename could not be opened. The operating system was asked to
open it for reading.
Check the spelling of the filename. Make sure that the file exists and that your
account name has read access to it. If the file is in a directory other than the
current directory, you might have to enter a complete pathname.
-8009 A memory allocation error has occurred. The ACE report specification is
probably too large.
The ACE compiler could not allocate memory that it needed. Try reducing the
size of the report specification.
-8010 The file filename could not be opened. The operating system was asked to
open it for writing. It is possible that a file by the same name already exists,
but the user has no permission to write over it, or, if -o is used, the destination
directory does not exist.
Ensure that filename is spelled correctly and that your account name has write
access to the directory where it will be stored. (That directory might be the
one that the environment variable DBTEMP names.) If a file of that name
already exists, either erase it or make sure that your account has write access
to it.
-8011 The user function called name has not yet been defined by the user.
A call was made to a function with the name shown. ACE assumes that it is
an external C function. However, external functions must be defined in the
DEFINE section of the report using FUNCTION funcname statements, and this
name is not defined. If name was intended as the name of an external
function, insert a FUNCTION statement for it.
-8013 An error occurred when an attempt was made to open the listing file filename.
Be certain that the user has write permissions in the current directory.
Ensure that your account has write access to the current directory. If a file
filename already exists, check that your account has write access to it.
-8015 An open comment symbol, {, was found inside an already open comment on
line line-number, character char-number. This could be due to a failure to close
the previously opened comment, which was begun on line lnum, character
cnum.
-8016 A comment has been opened, but not closed. The last comment begun was
opened on line line-number, character char-number.
-8017 An illegal (invisible, control) character has been found on line line-number,
character char-number. It has been replaced by a blank in the listing, but it is
still in the source (input) file, and should be removed before attempting to
compile again.
-8019 Cannot open temporary file filename for reading of a TEXT column.
For each TEXT column that is selected for the report, ACEGO prepares a
temporary file in the directory that the DBTEMP environment variable
names. This message indicates that the file was created, and loaded with a
copy of a TEXT value, but now it cannot be read. Look for operating-system
error messages that might give more details. If the error recurs, please note
all circumstances and contact the Informix Technical Support Department.
-8021 The source file filename cannot be opened. This is probably because the file
does not exist.
Check the spelling of filename. Check that the report-specification file exists in
your current directory, or if it is in another directory, check that you provided
the correct pathname. If these things are correct, verify that your account has
read permission on the file.
-8022 This identifier exceeds the maximum length for identifiers, which is 50.
-8025 The comment close symbol, }, has been found on line line-number, character
char-number, even though no comment has been opened.
The single character at the location that is shown is not syntactically correct;
it cannot be interpreted as part of a report specification.
-8033 The source file name filename exceeds the maximum length of 10.
The form compiler imposes a limit on the length of source-file identifiers. You
must rename the file before you use it. In DOS systems, filenames can be a
maximum of 8 characters plus a 3-character extension.
■ -s to suppress messages
■ -o to name an output destination
■ -ansi to test for ANSI compliance
■ -s to suppress messages
■ -d to name a database
-8051 The LEFT MARGIN must be no less than zero and no greater than the RIGHT
MARGIN.
Revise the left and right MARGIN statements in the OUTPUT section to
reasonable margin values.
-8052 There is insufficient space in the compiler string table for the storage of CHAR
variables.
-8053 Neither the PAGE LENGTH, TOP MARGIN, nor BOTTOM MARGIN are allowed
to be less than zero.
-8056 Skipping lines inside of WHILE or FOR loops is not allowed within PAGE
HEADER or TRAILER.
ACEPREP needs to determine how many lines of space to devote to the page
header and trailer (otherwise, it does not know how many detail rows to
allow on the page). It cannot predict how many times a loop will be executed,
so it has to forbid the use of SKIP statements in loops in these sections.
-8057 Only user variables of type CHARACTER may be subscripted or have lists in
the LET statement.
You can use a subscript (two numbers in square brackets, used to extract a
substring of characters) with names of character variables only. In a LET
statement, you can assign multiple strings, separated by commas, to a
character variable only. Variables of other types can receive only single
values.
A field name can be defined only once. Field names must be unique in the
DEFINE section; that is, a name cannot be used for both a PARAM and a field.
-8059 The limit for IF statement nesting has been exceeded. There are too many IF
statements within IF statements for ACE to properly compile this
specification.
You have exceeded the maximum levels of nested IF statements. You must
simplify the logic of the report.
-8061 This report contains a READ statement but no ASCII record definition has
been specified.
In order to use the READ statement, you must use the ASCII statement in the
DEFINE section to define the expected fields of the ASCII file.
-8062 This report contains a SELECT statement, but a READ statement should be
used instead because an ASCII record definition has be specified.
You can base a report on an ASCII file or on database rows, but not on both.
The ASCII statement in the DEFINE section means that file input will be used,
and a READ statement is used to read the file. If you want to base the report
on database rows, retain the SELECT statement, and delete the ASCII
statement.
-8102 There may be only one AFTER or BEFORE GROUP OF clause for any single
column specified in the ORDER BY command.
The report contains more than one AFTER GROUP OF clause for a certain
column or more than one BEFORE GROUP OF clause. Only one of each can
name a given column. However, you can combine the statements from the
multiple clauses into a single clause.
-8103 In order for the BEFORE or AFTER GROUP OF clause to function properly, the
column specified in the clause must also have been specified as a sort column
in the ORDER BY command. If the sort column is subscripted, the column in
the BEFORE or AFTER GROUP OF clause must be also.
Make sure that the control columns are specified identically in both the
ORDER BY statement and the GROUP OF clauses.
Aggregate values over a group are accumulated while the rows of the group
are being processed, so they are not available until the end of the group is
seen. Therefore, the report cannot refer to them except in an AFTER GROUP
OF clause.
-8105 Aggregates may not be used within another aggregate. Nor may aggregates
be used within the WHERE clause of another aggregate.
-8107 A user variable or parameter has been defined by the user more than once.
You can define a name only once in a DEFINE section. You used a name more
than once in the ASCII, PARAM or VARIABLE statements.
-8108 A user variable or parameter must have a length which is greater than zero.
Make sure that every CHAR and VARCHAR field IN THE DEFINE section has a
nonzero length specification.
ACEPREP needs to know how many lines will be filled in header and trailer
sections (otherwise, it does not know how many detail rows to put on the
page). However, printing with the WORDWRAP function can fill a variable
number of lines, depending on the words. Therefore, it is not allowed in page
header or trailer sections.
-8110 The user variable called name has not yet been defined.
The variable, parameter or field name was not defined in the DEFINE section.
If name is spelled correctly, it must be defined.
-8111 User variables and run-time parameters may not be used in an ORDER BY
statement.
ACEPREP needs to know how many lines will be filled in header and trailer
sections (otherwise, it does not know how many detail rows to put on the
page). Because it cannot tell which part of an IF statement will be executed, it
requires that both produce the same number of lines of output.
-8113 SKIP TO TOP OF PAGE is not allowed in any header or trailer clause.
-8114 The number of lines to be printed in the top and bottom margins plus the
lines to be printed in the page header and trailer clauses exceeds or equals the
page length.
Examine the statements in the OUTPUT section and in any HEADER and
TRAILER clauses. The total of lines that these statements use must be
sufficiently less than the specified page length that some detail rows can be
printed.
-8115 There may be no more than 8 sort columns specified in the ORDER BY
command.
ACEGO limits the number of columns that can be ordered. You must reduce
the number of columns that are listed following ORDER BY.
You can only subscript a character field. Check the subscripts. No negative
numbers are allowed; the numbers must fall within the length of the
character column; and the first number must be less than or equal to the
second number.
-8121 The specified WORDWRAP RIGHT MARGIN value is out of range. It must be
greater than or equal to the current column and less than or equal to the
report's right.
-8122 NEED n LINES may not be used in PAGE HEADER or PAGE TRAILER clauses.
The PRINT statements in a page header or trailer establishes its size. To set a
larger size, use PRINT statements with no parameters.
-8123 The PRINT FILE command is not allowed within the FIRST PAGE HEADER,
PAGE HEADER, or PAGE TRAILER clauses.
ACEPREP needs to know how many lines will be filled in header and trailer
sections (otherwise, it does not know how many detail rows to put on the
page). Because the size of a file cannot be predicted when the report is
compiled, the PRINT FILE command is not allowed. You must use PRINT
statements to produce the data.
-8124 A user variable used in the above query has not been defined in the DEFINE
section.
A variable that is named in the SELECT statement is not defined in the DEFINE
section of the report. Check that all names in the SELECT statement are the
ones that you intended and that you have not misspelled any column or
variable names.
-8125 The keyword END was found more than once inside the SELECT section.
Within the SELECT section, use semicolons to separate SQL statements. Use
the keyword END only after the final SELECT.
Review the contents of the SELECT section to make sure that each SELECT
statement except the last one ends in a semicolon and that the last one is
followed by an END statement. Perhaps you omitted the FORMAT statement
at the beginning of that section.
The first parameter that you can define in the PARAMETER statement is
number 1. In some host operating systems, the zeroth parameter is preset to
the program name, but this value is not available within a report.
-8127 You cannot use more than one REPORT TO statement in a report specification.
The entire report is directed to one destination, which is chosen with the
REPORT TO statement in the OUTPUT section. The report cannot be divided
between multiple destinations, so remove all REPORT TO statements after the
first. If you want to produce separate report files for different sets of data, do
one of the following things:
■ Write a separate report for each set of data (the specifications should
differ only in their SELECT statements).
■ Produce a full report, but with sets of data on separate pages, and use
operating-system utilities and tools to separate the files afterward.
■ Use parameter variables in the SELECT statements so that you can
choose a subset of data dynamically, when you run the report, and
use REPORT TO PRINT so that you can set the DBPRINT variable to
control the output destination before you start the report.
-8128 Minimum length of a VARCHAR variable must be smaller than the maximum
size.
-8129 Specified page length length is too short for default report.
A report page cannot fit in the number of lines that are specified. Allow more
lines per page, or revise the report specification to use fewer lines (for
instance, by changing the top or bottom margins).
-9004 The column name is not in the current table, or the user variable name has not
been defined.
Flags:
-9025 The column name is not in the current table. Any column used as an ORDER
BY column must be in the current table.
The name that is displayed appears after the words ORDER BY, but it is not
the name of a column or the display label of an expression that is selected in
this statement.
-9046 The report output file filename could not be opened. This is probably due to
permissions.
The report was directed to the destination shown, either with a REPORT TO
statement or through the contents of the DBPRINT environment variable.
Make sure that the destination was spelled correctly. Verify that your account
has operating-system permissions to write the destination file and that the
destination disk is writable and not full.
Probably your account does not have write permission in that directory, the
disk is full, or you have exceeded a limit on open files.
The report was directed to the pipe that is shown in the REPORT TO
statement. Make sure that all program names in it are spelled correctly, that
the programs exist, and that they are on the current execution path. Look for
other messages from the operating system that might indicate the source of
trouble (for example, a message that indicates not enough system memory
was available).
-9050 The user variable name is of type type. The value entered is out of range or
cannot be converted to that type.
-9051 The number of defined parameters in the ACE program does not equal the
number of actual parameters passed to ACEGO on the command line.
-9052 The format string is too large. It may not be larger than 79 characters.
A limit exists on the size of the format string that is presented to the USING
function.
-9053 An unknown entry in the .arc file has been detected. Recompile your ACE
report specification using SACEPREP and then rerun SACEGO. Be certain that
the version numbers for SACEPREP, and SACEGO are identical.
The versions of ACEPREP and ACEGO must agree. (To check the version of
either program, run it from the command line with the -v option.) To
recompile the report, use a version of the compiler, ACEPREP, that is identical
to the version of the runner, ACEGO. If the versions are already the same,
recompile the report anyway to ensure that the .ace file has not been
corrupted. If the error recurs, please note all circumstances and contact the
Informix Technical Support Department.
-9054 The ACE report was compiled by version A compiler. This runner can only
run 5 through B. Recompile your ACE report specification using SACEPREP
and then rerun SACEGO.
The versions of ACEPREP and ACEGO must agree. (To check the version of
either program, run it from the command line with the -v option.) To
recompile the report, use a version of the compiler, ACEPREP, that is identical
to the version of the runner, ACEGO. If the versions are already the same,
recompile the report anyway to ensure that the .ace file has not been
corrupted. If the error recurs, please note all circumstances and contact the
Informix Technical Support Department.
-9055 The compiled report file filename could not be found or opened.
The report filename was named on the ACEGO command line. It expects to
locate the file filename.arc in the current directory or a path that the DBPATH
environment variable names, but it could not find the file or could not open
it for reading. Check that the filename was spelled correctly and that your
account has read access to it.
-9059 A select statement which is not the final select statement in an ACE report
must select into a temporary table.
The SELECT section of the report can contain more than one SELECT
statement. However, only the last one of these statements can produce the
rows that are the report contents. The preceding SELECT statements are used
to prepare data in temporary tables that the final statement delivers to the
report. Change the report specification so that all but the last SELECT
statement contain INTO TEMP clauses.
-9060 The values m and n used to subscript name are outside the bounds for the
column's defined length.
-9061 A 'SELECT INTO' statement cannot be executed as the last select statement in
an ACE report.
The SELECT section of the report can contain more than one SELECT
statement. The last (or only) one of these statements must produce the rows
that are the contents of the report. Any preceding SELECT statements are used
to prepare data in temporary tables that the final statement delivers to the
report. Change the report specification so that all but the last SELECT
statement contain INTO TEMP clauses.
-9063 The user function name, defined by the user in the DEFINE statement of ACE,
could not be found in the C function definition table userfuncs in the user's
C static data area.
Check that you are executing the correct, customized version of ACEGO (the
original version of the program has no external functions linked to it). Check
to see if name is correctly spelled. Then examine the source of the C functions
to make sure that the userfuncs array is defined correctly and that it contains
an entry for name.
-9064 The run-time string table is full. No more memory can be allocated.
The data space available for temporary character strings is full. Temporary
strings are built when calling external C functions and when processing the
USING, SPACE and ASCII built-in functions. Reduce the use of these items.
The report destination was opened correctly, but the operating system
reported an error while output was being written. Look for error messages
from the operating system that explain the problem. The most common cause
of the error is lack of available disk space.
-9067 ACEs arithmetic stack has exceeded its bounds. The expression here is too
complicated.
Reduce the complexity of the arithmetic expression. For example, divide the
expression into subexpressions and assign the values of each to a variable.
-9068 An SQL statement has been found in the SELECT section that is not a SELECT
statement. Only SELECT statements or SELECT statements that create
temporary tables are allowed in the SELECT section.
Possibly the word SELECT is misspelled in the report specification. If you
intentionally wrote another SQL statement such as UPDATE or INSERT,
remove it; only SELECT statements are permitted in reports. (You can execute
other SQL statements in a C function that is called from a report. The ESQL/C
manual discusses linking external C functions with reports.)
-9070 A record in the flat ascii input file contains more data fields than what was
specified in the DEFINE ASCII statement of the report.
A field in the ASCII file is a sequence of zero or more characters that ends in
a delimiter character (the delimiter is specified in the READ statement).
Effectively, as many fields as delimiter characters exist in each record. The
number of fields must be the same in each record, and each field must be
defined in an ASCII statement in the DEFINE section of the report. Extra fields
are not ignored. Look for message -9072; it can help you locate the record in
error.
-9071 A record in the flat ascii input file contains less data fields than what was
specified in the DEFINE ASCII statement of the report.
A field in the ASCII file is a sequence of zero or more characters that ends in
a delimiter character (the delimiter is specified in the READ statement).
Effectively, as many fields as delimiter characters exist in each record. The
number of fields must be the same in each record, and each field must be
defined in an ASCII statement in the DEFINE section of the report. No default
exists for missing fields. Look for message -9072; it can help you locate the
record in error.
-9072 count record(s) from the ascii input file have been read in.
This informational message helps you locate the source of a problem in the
ASCII input file. The problem that is described in another message was found
in the count line of the file.
-9140 An attempt was made to divide by zero on line number. The result was set to
zero.
ACEGO is trying to convert from characters into a DATE data type but found
an error. Either the date is not punctuated correctly, unwanted nonnumeric
characters are present, or the date itself is inconsistent (for example,
"01/32/91").
-9143 Character, Text, and Byte data cannot be printed with using formats.
The USING function can only be applied to numeric data. Revise the report
specification.
Check that the table name is correctly spelled. If so, the table tablename might
not exist in the database (it might have been dropped or renamed); or if it
exists, your account might not have SELECT access to it. Alternatively, if you
are using the INFORMIX-SE database server, you might have exceeded the
limit on open files, which can limit the number of tables that you can name in
a SELECT statement. In this case, you might have to revise the SELECT section
of the report to use more SELECT statements, each of which names fewer
tables. Products after Version 4.0 do not issue this message.
The file that is shown could not be opened for output. Look for operating-
system error messages that might give more information. Possible causes
include a full disk or lack of the correct permissions for the file or directory.
-9504 The argument number is out of bounds for the ascii function. Arguments must
be between 0 and 255, inclusive.
The input to the ASCII function must be a number between 0 and 255.
Examine the use of this function in the report specification. If the improper
value number came from a command-line parameter, you might consider
testing it with an IF statement.
You attempted to select a collection column while you were using a scroll
cursor. You must rewrite the query without the scroll cursor or eliminate any
collection columns from the select list.
Either remove the DISTINCT clause or remove the collection column(s) from
the SELECT clause.
-9611 ROM clause cannot have a join when one of the tables is a collection.
You cannot join a table derived from a collection with a table. Remove
TABLE(:coll_host_var) from the FROM clause of your query.
Remove any WHERE, GROUP BY, HAVING, or ORDER BY clause from your
statement, or remove TABLE(:coll_host_var) from the FROM clause of your
statement.
-9613 Select list cannot have expression when selecting from a collection.
Only '*' or column names are allowed in the select list for derived tables using
collections. Check your SELECT list.
Use the AT keyword only when you are inserting into a LIST.
Collection derived tables can only be updated using constants, host variables
or table columns.
For collection-derived tables, you need not provide a column name alias.
Remove the column name alias.
This error occurs within SPL when you attempt place an SPL collection
variable in the select list. You must remove the collection variable from the
select list.
-9623 Internal length must be greater than zero and smaller than 32,768.
When you use the CREATE OPAQUE TYPE statement to define a fixed-length
opaque type, the value that you specify for the internal length modifier must
be greater than 0 bytes and smaller than 32,768 bytes.
-9624 Maximum length must be greater than zero and smaller than 32,768.
When you use the CREATE OPAQUE TYPE statement to define a variable-
length opaque type, the value that you specify for the maximum length
modifier must be greater than 0 bytes and smaller than 32,768 bytes. Redefine
the type with a valid value.
When you use the CREATE OPAQUE TYPE statement to define an opaque
type, the value that you specify for the alignment modifier must be 1, 2, 4, or
8. Redefine the type with a valid value.
-9626 Maximum length should be set for variable-sized opaque types only.
When you use the CREATE OPAQUE TYPE statement to define a fixed-length
opaque type, you should not specify the maximum length modifier.
When you use the CREATE OPAQUE TYPE statement to define a fixed-length
opaque type that is passed by value, its internal length must be 1, 2, or 4.
The specified type_name could not be found. Before you can use an opaque
type, you must create it with the CREATE OPAQUE TYPE statement.
USAGE permission is required for the use of opaque types. Use the GRANT
USAGE ON TYPE statement to grant permission to use a type.
Opaque types must be unique within the schema (ANSI mode) or database.
Be sure that the type does not already exist.
Automatic conversions between data types require implicit casts. Use the
CREATE IMPLICIT CAST statement to define a cast between the source and
destination types.
-9633 ALTER TABLE cannot modify column (column_name) type. Need a cast from
the current type to the new type.
Conversions of column types require a cast. Use the CREATE CAST statement
to define a cast from the source to destination type.
The specified cast does not exist. Use the CREATE CAST statement to define
the cast.
You should not encounter this error. If this error recurs, please note all
circumstances and contact the Informix Technical Support Department.
Opaque types are defined with a maximum length that cannot be exceeded.
Verify that user-defined routines that return the type do not attempt to
exceed the size limit.
-9640 Cannot drop type (type_name): distinct type defined over the type.
Before you can drop a type, you must first drop all distinct types based on the
type.
-9641 Drop type can only drop opaque type or distinct type.
The DROP TYPE statement applies to opaque and distinct types only. Use
DROP ROW TYPE statement to drop row types.
The system imposes a limit of 32,768 bytes on quoted strings. You cannot
exceed this limit.
When you use the debugging feature of SPL to print the content of a user-
defined-data-type variable, this error occurs if the database server cannot
find or execute the cast function to convert from the given user-defined data
type to character or long format.
-9700 Routine (routine_name) ambiguous - more than one routine resolves to given
signature.
This problem happens when an argument (or its source type or parent type)
has implicit casts to the parameters of two or more routines.
The error is also raised, if instead of argtype, argtype_dad which is in the source
type hierarchy of argtype (if argtype is a distinct type) or in the super type
hierarchy of argtype (if argtype is a row type) has casts to paramtype1 and
paramtype2.
You will need to redefine the implicit casting scheme such that only one casts
exists from argtype to either paramtype1 or paramtype2 or remove one of the
routines.
All functions must return a value. Specify a return clause, or use a CREATE
PROCEDURE statement.
-9703 Modifiers VARIANT and NOT VARIANT cannot be used in the same routine.
-9705 These modifiers are invalid for SPL routines: CLASS, CLIENT,
HANDLESNULLS, INTERNAL, ITERATOR, PERCALL_COST, SELFUNC and
STACK.
If you are using a CREATE PROCEDURE statement, the end clause must
contain END PROCEDURE. If you are using a CREATE FUNCTION statement,
the end clause must contain END FUNCTION. Do not mix and match
PROCEDURE and FUNCTION keywords.
Because procedures do not return values, these modifiers are not allowed in
a CREATE PROCEDURE statement. Use a CREATE FUNCTION statement or do
not specify these modifiers.
-9709 More than one distinct type of the parameter type have cast to argument
type.
This situation occurs if more than one distinct type of the source type of the
parameter has casts from the argument type. For example, assume the
routine routine_name(paramtype) exists. Both paramdist1 and paramdist2 are
distinct types of paramdist1. The routine is invoked as routine_name(argtype).
Casts also exist from argtype to paramdist1 and argtype to paramdist2. Because
distinct types inherit all the routines defined on the source types, paramdist2
and paramdist1 inherit the routine routine_name. Thus the routine resolution
cannot resolve the routine, and this error results.
Built-in functions such as dbinfo and trim should not be overloaded. Change
the name of the routine that you are creating so that it does not conflict with
the names already used in the database server.
-9711 Late bound functions cannot have different number of return values
Due to late binding, the function that is executed could change in the middle
of query execution. This error is called if the number of values returned by
the new function is not the same as the previous function. All functions with
the same name defined over a type hierarchy should have the same number
of return values.
Due to late binding, the function that is executed could change in the middle
of query execution. This error results if the type of values returned by the new
function is not the same as the previous function. All functions with the same
name defined over a type hierarchy should have the same type of return
values.
-9713 Identifier too long - maximum allowed length for this identifier is 128.
-9716 This routine routine_name has the same specific name as another routine.
-9717 Owner name specified in the routine name and specific name must be the
same.
If the specific name is qualified with the owner name, the owner name
specified should be same as the owner name used in qualifying the routine
being created. If the routine name is not qualified, it should be the same as
the current user.
-9718 Owner name specified in the specific name must be the current user.
If the specific name is qualified with the owner name, the owner name
specified should be same as the owner name used in qualifying the routine
being created. If the routine name is not qualified, it should be the same as
the current user.
The module name or language name that you specified in the function call is
not valid. Replace the module name or language name and execute the
function again.
When you invoke a remote routine, you cannot pass newly created types
such as user-defined data types, distinct types, row types, and boolean.
When you invoke a remote routine, you cannot pass newly created data types
such as user-defined types, distinct types, row types, Boolean, and so on. Cast
the data types being passed to the remote routine to one of the built-in data
types. If casting the data types is not possible, re-create the routine on a local
database.
An internal programming error occurred. If this error recurs, please note all
circumstances and contact the Informix Technical Support Department.
A SQL statement that passed host variables into routines still had unknown
routine argument types after host variable binding. Rerun the query without
passing host variables to any routine or rerun the query and pass the correct
number of host variables.
-9744 BUILTIN routine routine_name definition does not match internal operator.
This entry from SYSPROCEDURES with language BUILTIN does not match the
internal format of the operator that is being overloaded. If this error recurs,
please note all circumstances and contact the Informix Technical Support
Department.
-9748 Cannot convert argument types when passing arguments by name, routine
routine_name.
At least one argument requires a cast before it can be passed into the routine.
Casts are not supported when passing arguments by name. Use explicit casts
from the argument to the parameter type.
If host variables are used in the statement that is being prepared, in the
absence of argument types information, the server tries to resolve to a routine
that is most likely the routine to which the user intended to resolve.
However, during BIND/EXECUTE time, in the presence of argument type
information, the routine specified in the statement might resolve to a
different routine. In that case, if the return types of the routine that the server
originally selected are different than the one later resolved, this error is
raised.
A routine that has an OUT parameter can only be invoked as part of a data-
management language query (only in the WHERE clause). Do not invoke such
a routine with a CALL or EXECUTE statement.
A bad external name, missing file, or wrong permissions might cause this
error. Log message log_message_number contains the UNIX error number no
encountered and the actual module name being used. For C language on
UNIX, the following log message might appear:
The language did not shut down correctly. Probably an internal system error
occurred. The following error message appears in the log:
ERROR: error_string Language Shutdown
Could not switch to or back from the needed VP during load, unload, or
execution. VP class could be wrong in the routine definition. The following
error message appears in the log:
ERROR: Routine execution VP switch failed -- new VP
error_string
ERROR: Routine execution VP switch failed -- old VP id = VP_ID
You cannot add a type to a table that is already typed. Drop the table type and
try adding the type again.
The column names and the column types of the table do not match the field
names and the field types of the type. Change them to statements.
The only ALTER TABLE statements accepted for a typed table are statements
to drop the table type, add a REF column, or drop a REF column. If any other
ALTER TABLE statements are needed, first drop the table type.
The column names and the column types of the view do not match the field
names and the field types of the type. Change them to match.
Cannot have a ROWIDS column in a typed table. Either untype the table with
ALTER TABLE, or do not create a ROWID column.
You cannot create temporary tables with types; typed tables are only for
permanent tables. Instead, try using the following example to create a
temporary table:
CREATE TEMP TABLE tablename OF TYPE subty;
You need to have an sbspace created and specified as the default value for the
SBSPACENAME parameter in your onconfig file. If you do not have such an
sbspace created and specified as the default in your onconfig file, the
following example fails:
SBSPACENAME test_sbspace #default sbspace in onconfig file
-9831 Could not find opclass id opclass_ID while resolving compare routine for
index.
The operator class for one or more key parts of the index no longer exists in
the database. The index is no longer valid and must be dropped.
-9832 Could not find routine routine_name while resolving compare routine.
Either the comparison routine for one or more key parts of the index no
longer exists in the database, or the comparison routine required to perform
a sort cannot be found. You need to re-create the compare routine(s). If an
index is involved, the index needs to be dropped.
The type of one or more key parts of the index no longer exists in the
database. The index is no longer valid and must be dropped.
You cannot create an operator class for a primary access method. For a list of
available secondary access methods, you can perform the following query.
SELECT * FROM INFORMIX.SYSAMS WHERE AM_TYPE = 'S';
If you specify the full function signature for one of the strategy functions in
the operator class, you need to specify the function signatures for all of the
strategy functions.
The operator class specified in one or more of the key parts is invalid. For
example, you might be using an operator class for a different access method
than the one with which you are creating the index. If the access method that
you use does not have a default operator class associated with it, you must
explicitly specify the operator classes for each key part.
The operator class used in a CREATE INDEX statement does not exist. Before
you can use an operator class, you must create it with a CREATE OPCLASS
statement. See informix.sysopclasses for a list of available operator classes.
The function used in a CREATE INDEX statement for a functional key part
must be a nonvariant function (that is, it must be created with the NOT
VARIANT modifier in the CREATE FUNCTION statement).
The compare routine used for a generic B-tree cannot be written in SPL. You
should rewrite the compare routine in C.
The access method that you are creating with a CREATE ACCESS_METHOD
statement already exists. You must use a new name.
A required purpose has not been used with the CREATE ACCESS_METHOD
statement, or a required or default purpose has been removed with the
ALTER ACCESS_METHOD statement. For example, AM_SCANCOST has a
default value if not used with the CREATE ACCESS_METHOD statement, but
it cannot be dropped with the ALTER ACCESS_METHOD statement. Change
the purposes used until the required purposes are included or preserved.
-9855 Improper value used for purpose purpose_name for access method.
-9856 Index not created because the table's access method doesn't support rowids.
A CREATE INDEX statement has been used on a table whose access method
does not support rowids. Because rows from the table are fetched by the
index by rowid, the index cannot be created.
-9859 Index not created because its access method doesn't support unique keys.
A CREATE UNIQUE INDEX statement has use an access method that does not
support unique keys. Remove UNIQUE.
An access method routine failed to execute properly. The RSAM error code
gives more information.
The opclass being created with a CREATE OPCLASS statement already exists.
Use a new name.
The ALTER FRAGMENT statement cannot be used for a table or index that
uses an access method. Either create a new table with the desired properties
and copy the data from the old table to the new table or create a new index
with the desired properties.
The operator class is being used in an existing index and therefore cannot be
dropped. Drop all the indexes that use the operator class before you drop it.
You cannot drop an operator class unless you are the owner or the database
administrator. Contact the database administrator or the owner of the
operator class.
Could not determine the internal SQL data type. If this error recurs, please
note all circumstances and contact the Informix Technical Support
Department.
Could not find the attribute information for a domain or type. If this error
recurs, please note all circumstances, and contact the Informix Technical
Support Department.
-9908 Columns of a row type cannot contain fields of type TEXT, BYTE, SERIAL or
SERIAL8.
You created a table that has a column with a named row of type TEXT, BYTE,
SERIAL, or SERIAL8. The following example should fail:
-9910 Byte, Text, Serial or Serial8 data types in collection type not allowed.
The fields of a row within a collection and the elements of a collection cannot
be of type TEXT, BYTE, SERIAL, or SERIAL8.
Casts must be unique with regard to their source and destination types,
regardless of cast class. Use the DROP CAST statement to remove an existing
cast.
-9920 Cannot create cast between the same type or between two built-in types.
No cast is needed between identical types. Casts between built-in types are
handled by internal system casts and cannot be overloaded.
The requested cast does not exist. Use the CREATE CAST statement to define
the cast.
-9926 The "order by,” “distinct,” index, union and primary/foreign/unique key
constraints are not allowed on row-type columns.
Do not create or alter a table with columns of row type that contain primary
key, foreign key, or unique constraints. Do not create an index or union that
involves row-type columns. However, you can create a union that involves
row-type columns if you use the UNION ALL statement instead of the UNION
statement.
The maximum number of 64 sbspaces per table has been exceeded, so your
operation failed. For more information on the number of sbspaces associated
with the table, run the following query:
SELECT tabid FROM informix.systables
WHERE tabname = ‘<user_table_name>’;
The specified data type does not exist in the database. Check sysxtdtypes to
make sure that the data type exists before you use it.
An ambiguous bind message was received. The database server could not
infer the variable type from the context of the query. The host variable type
must be explicitly defined.
-9973 Row buffer for collection of fixed size elements not of correct size.
You have attempted to delete a row from a host variable of type ROW.
Because a ROW host variable has only the single row as its contents, deletion
is not allowed. If you want to construct a row with NULL values, use an
UPDATE statement and set each field to a NULL value. Otherwise, remove the
request to execute the SQL DELETE for the row host variable in your
embedded language program.
You cannot have siblings of the same type under the same parent. For
example, assume that you create the following row types:
create row type r1 (a int);
create row type r2 under r1;
Now you create this supertable and these subtables. The third statement in
the following set generates an error:
create table supertab of type r1;
create table subtab1 of type r2 under r1;
create table subtab2 of type r2 under r1;
The third SQL statement generates an error because both subtab1 and subtab2
are siblings under supertab. Informix does not support this table hierarchy in
this release. The current version of the database server restricts the table
hierarchy to match the type hierarchy, and no type can appear more than
once within a single hierarchy of tables.
You can use a positional insert statement only with collection of type LIST.
Remove the AT clause from your insert statement.
You are attempting to open a cursor that is already open. Review your
embedded language program to determine why you are re-opening the
cursor before you close it.
You attempted to store a collection host variable into a table column, or row
field, but cursors are still open on the collection. You must close the other
cursors before you attempt this operation.
The row type that you are attempting to drop is being referenced by another
type of table. First drop the type of table that refers to this type.
You are trying to create a named row type whose name is already used. Use
another name, or drop the row type to reuse its name.
The named row type specified does not exist in the database. Verify its
existence by selecting from sysxtdtypes.
You cannot drop the named row type unless you are the owner or have the
DBA privilege. Verify the owner of the named row type by selecting from
sysxtdtypes.
The ONLY syntax is not legal over TABLE expressions over collections. Use
ONLY on supertables; that is, parents in an inheritance chain.
Cannot alter a table to drop its type if the table is not typed. Make sure you
are referring to the correct table.
This CLI warning can be returned with any CLI function except SQLAllocEnv
and SQLError when a nonspecific warning occurs. Additional text is
appended to describe the specified warning in more detail. For detailed
information associated with the appended text, check the INFORMIX-CLI
Programmer’s Manual.
This CLI message is issued when the data that a CLI function returns exceeds
the defined buffer size. Increase the size of the allocated buffer.
The driver did not support the specified value of the VParam argument with
the SQLSetConnectOption or SQLSetStatementOption. The driver
substitutes a similar value and returns SQL_SUCCESS_WITH_INFO. To
determine the new value of VParam, use SQLGetConnectionOption or
SQLGetStatement.
The number of bound parameters is less than the number of parameters in the
specified SQL statement in the argument szSqlStr with SQLExecDirect or less
than the number of parameters in the prepared statement that is associated
with the hstmt and SQLExecute. Confirm that you are passing an appropriate
number of arguments.
A data value could not be converted to the C data type specified by the fCType
argument of the SQLBindCol function. This error occurs when you try to
retrieve data types that are unsupported by the CLI driver or the value in the
fCType argument is not recognized. Confirm that the data type you are
requesting is supported by the database server and confirm that the value
you are supplying for the fCType argument is valid.
The driver cannot establish a connection with the data source. Check that the
database server name, user ID, and password are correctly specified and that
the database server is available.
The specified connection with a data source is in conflict with another user's
exclusive use of the database. Establish a connection when the data source is
available.
The connection that the hdbc argument specifies is not open. Validate that the
SQLConnect, SQLDriverConnect, or SQLBrowseConnect calls succeeded.
Returning the numeric value (as a numeric or string) for one or more columns
causes the whole (as opposed to fractional) number to truncate. For the range
of values for the numeric parameter or column type that you tried to write or
fetch, check the INFORMIX-CLI Programmer’s Manual.
The argument szSqlStr contains an SQL statement that contains a date, time,
time-stamp parameter, or literal that is invalid. For the valid values of the
szSqlStr argument, check the INFORMIX-CLI Programmer’s Manual.
Either the user identifier or the authorization string or both, as specified in the
browse request connection string, violated restrictions that the data source
defined. Confirm that you logged in correctly and that your password is
current.
The cursor name specified already exists. Specify a unique cursor name.
A syntax error occurred in the SQL statement. Check the syntax of the SQL
statement.
The driver associated with hdbc does not support the function. Confirm that
the function you request is valid for the driver.
-11041 Data source name not found and no default driver specified.
The data source name specified in the connection request is not found in the
ODBC.INI file or registry, and there is no default driver specification.
Confirm that the data source name is registered. You can also provide a
default data source.
The driver listed in the data source specification in the ODBC.INI file or
registry or the driver that the DRIVER keyword specifies is not found or
cannot be loaded. Confirm that you entered the correct spelling and path for
the driver.
The driver is unable to load the translation DLL that is specified for the data
source or for the connection. Check that the name and path for the DLL are
correct.
The attribute value for DSN name is more than the maximum number of
characters. For the accepted number of characters in the DSN name, check the
INFORMIX-CLI Programmer’s Manual.
The attribute value for the DRIVER keyword is more than 255 characters. Use
a keyword that is less than 255 characters.
The keyword-value pair for the DRIVER keyword contains a syntax error.
Check that you entered the correct spelling and path for the driver.
The argument szSqlStr contains a DROP TABLE, DROP VIEW, ALTER TABLE,
CREATE VIEW, CREATE INDEX, GRANT, REVOKE, SELECT, DELETE, INSERT or
UPDATE statement, but a specified table name or view name does not exist.
Confirm that you are using the name of an existing table or an existing view.
The argument szSqlStr contains a CREATE INDEX statement, but the specified
index name already exists. Reword the statement to use a unique index name.
The argument szSqlStr contains a DROP INDEX statement, but the specified
index name does not exist. Verify that you are using the correct index name.
A column cannot be associated with any table in the SQL statement. Verify
that you are using an existing table name in your SQL statement.
An error occurred that has no specific SQL_STATE. In this case, additional text
is provided that identifies the source of the problem.
The driver or driver manager cannot allocate memory for the connection
handle. Try to reduce the number of processes currently running or provide
more memory.
The value specified for the argument icol exceeds the maximum number of
columns that the cursor defines. Confirm that the column number you are
fetching is in the result set of the cursor.
The value specified for the argument fSqlType is in the block of numbers
reserved for CLI SQL data type indicators but is not a valid ODBC SQL data
type indicator. Check that you are referring to an ODBC SQL data type that
this driver and this server support.
Check that the arguments passed with the CLI request are correct.
The value specified for the argument fType is neither SQL_COMMIT nor
SQL_ROLLBACK. Check the value and verify that it is valid for the ftype
parameter.
No open cursor exists on the hstmt, and no cursor name has been set with
SQLSetCursorName. Check the sequence of operations. For example, check
that you are not trying to execute an EXECUTE statement before the PREPARE
statement is finished.
The value specified for the argument cbValueMax is less than zero. Supply a
value for the argument cbValueMax that is zero or greater.
The value specified for the argument fDescType is in the block of numbers
reserved for driver-specific descriptor types but is unsupported by the driver.
For a list of accepted descriptor types, check the INFORMIX-CLI Programmer’s
Manual.
The value specified for the argument fOption is in the block of numbers
reserved for CLI connection and statement option but is not valid for the
version of ODBC that the driver supports. For a list of accepted descriptor
types, check the INFORMIX-CLI Programmer’s Manual.
The value specified for the argument ipar is less than one or is greater than the
maximum number of parameters that the data source supports. To verify that
the value is in the correct range for the statement, check the SQL statement.
The value that the argument ibScale specifies is outside the range of values
supported by the data source for a column of the SQL data type that the
fSqlType argument specifies. For a list of supported values for the column
type that fSqlType specifies, check the INFORMIX-CLI Programmer’s Manual.
An invalid fFunction value is specified. For a list of valid values for the
fFunction parameter, check the INFORMIX-CLI Programmer’s Manual.
The value specified for the argument fOption is in the block of numbers
reserved for CLI information types but is not valid for the version of ODBC
that the driver supports. For a list of supported features for your driver
version, check the INFORMIX-CLI Programmer’s Manual.
An invalid fColType value is specified. For a list of valid values for the
fColType parameter, check the INFORMIX-CLI Programmer’s Manual.
An invalid fScope value is specified. For a list of valid values for the fScope
parameter, check the INFORMIX-CLI Programmer’s Manual.
An invalid fNullable value is specified. For a list of valid values for the
fNullable parameter, check the INFORMIX-CLI Programmer’s Manual.
An invalid fUnique value is specified. For a list of valid values for the fUnique
parameter, check the INFORMIX-CLI Programmer’s Manual.
An invalid fAccuracy value is specified. For a list of valid values for the
fAccuracy parameter, check the INFORMIX-CLI Programmer’s Manual.
-11083 Direction option out of range.
The value specified for argument fDirection is not equal to zero. For a list of
valid values for the fDirection parameter, check the INFORMIX-CLI
Programmer’s Manual.
The value specified for the argument cbColDef is outside the range of values
supported by the data source for a column of the SQL data type that the
fSqlType argument specifies. For a list of valid values for the column type that
the fSqlType argument specifies, check the INFORMIX-CLI Programmer’s
Manual.
The value specified for the argument fParamType is invalid. For a list of valid
values for the fParamType parameter, check the INFORMIX-CLI Programmer’s
Manual.
The value specified for the argument fFetchType is invalid. For a list of valid
values for the fFetchType parameter, check the INFORMIX-CLI Programmer’s
Manual.
The driver or data source does not support the function requested. For a list
of supported driver functions, check the INFORMIX-CLI Programmer’s Manual.
-11094 Time-out expired.
The time-out period expired before the connection to the data source
completed. The time-out period is set through SQL_SetConnectionOption,
SQL_LOGIN_TIMEOUT.
If this error recurs, please note all circumstances and contact the Informix
Technical Support Department.
If this error recurs, please note all circumstances and contact the Informix
Technical Support Department.
If this error recurs, please note all circumstances and contact the Informix
Technical Support Department.
If this error recurs, please note all circumstances and contact the Informix
Technical Support Department.
If this error recurs, please note all circumstances and contact the Informix
Technical Support Department.
If this error recurs, please note all circumstances and contact the Informix
Technical Support Department.
If this error recurs, please note all circumstances and contact the Informix
Technical Support Department.
If this error recurs, please note all circumstances and contact the Informix
Technical Support Department.
If this error recurs, please note all circumstances and contact the Informix
Technical Support Department.
If this error recurs, please note all circumstances and contact the Informix
Technical Support Department.
If this error recurs, please note all circumstances and contact the Informix
Technical Support Department.
-12013 Smartblobs: Cannot delete entry in arcspace table.
If this error recurs, please note all circumstances and contact the Informix
Technical Support Department.
If this error recurs, please note all circumstances and contact the Informix
Technical Support Department.
If this error recurs, please note all circumstances and contact the Informix
Technical Support Department.
If this error recurs, please note all circumstances and contact the Informix
Technical Support Department.
If this error recurs, please note all circumstances and contact the Informix
Technical Support Department.
If this error recurs, please note all circumstances and contact the Informix
Technical Support Department.
If this error recurs, please note all circumstances and contact the Informix
Technical Support Department.
If this error recurs, please note all circumstances and contact the Informix
Technical Support Department.
You attempted to reference a chunk that is being dropped from the sbspace.
If this error recurs, please note all circumstances and contact the Informix
Technical Support Department.
If this error recurs, please note all circumstances and contact the Informix
Technical Support Department.
You cannot delete the LO header page for a smart large object. The chunk or
sbspace might be inaccessible or the LO address might be invalid. Ensure that
the chunk is accessible. Ensure that the smart-large-object address is still
valid; that is, the smart large object has not already been removed.
You cannot delete an extent map for a smart large object. Ensure that the
chunk is accessible. If this error recurs, please note all circumstances and
contact the Informix Technical Support Department.
Cannot delete user data slot. First ensure chunk is accessible. If this error
recurs, please note all circumstances and contact the Informix Technical
Support Department.
If this error recurs, please note all circumstances and contact the Informix
Technical Support Department.
The user data areas have insufficient storage for a write request. Delete some
smart large objects or add a chunk to the sbspace.
If this error recurs, please note all circumstances and contact the Informix
Technical Support Department.
The new size parameter supplied to a truncate operation for a smart large
object was invalid. The new size parameter was probably less than zero.
Correct the smart-large-object application program.
The size after a write or truncate operation exceeds the maximum size limit
for the smart large object. The system does not allow the size of the smart
large object to exceed the maximum number of bytes set by the application.
This size limit was set by the CREATE or ALTER statement for the smart large
object.
The page size specified during an sbspace creation operation is too big.
Specify a page size that is less than the platform-dependent maximum
asynchronous I/O size or is greater than the subsystem page-size limitation
for the smart large object.
If this error recurs, please note all circumstances and contact the Informix
Technical Support Department.
-12048 Smartblobs: oid does not match. smart large object probably deleted.
The smart large object that the smart-large-object pointer references has been
deleted. Ensure that the smart-large-object pointer is valid and that the smart
large object has not been deleted. If you are keeping a smart-large-object
handle, the reference count for the smart large object must be one or greater
or the database server deletes the smart large object at the end of the session.
If this error recurs, please note all circumstances and contact the Informix
Technical Support Department.
-12051 Smartblobs: smart large object was not opened for read.
You attempted to read a smart large object that was not open for reading.
Change the smart-large-object application program so that it opens the smart
large object in read mode.
-12052 Smartblobs: smart large object was not opened for write.
You attempted to write to a smart large object that was not open for writing.
Change the smart-large-object application program so that it opens the smart
large object for writing.
No default smart-large-object space was found, and the caller has not
provided one. Either specify the smart-large-object space name in the smart-
large-object function call or set the SBSPACENAME onconfig file parameter to
the name of a valid smart-large-object space.
The chunk might be down. Ensure that the smart-large-object space chunk is
up.
The chunk might be down. Ensure that the smart-large-object space chunk is
up.
If this error recurs, please note all circumstances and contact the Informix
Technical Support Department.
The database server cannot read the extent map for the smart large object.
Check to see if the smart-large-object space is corrupt or if the chunk is down.
If this error recurs, please note all circumstances and contact the Informix
Technical Support Department.
An attempt to drop the pre-image temporary partition failed. Ensure that the
dbspace in which temporary partitions are placed is accessible.
An attempt to write a pre-image page during archive failed. Ensure that the
dbspace in which the temporary partitions are placed is accessible.
-12070 Smartblobs Archive: Cannot read pre-image page from temporary partition.
An attempt to read a pre-image page during archive failed. Ensure that the
dbspace in which the temporary partitions are placed is accessible.
Another archive is already running on the same sbspace. Ensure that you do
not have another archive running on the same smart large object space. Only
one archive operation on a sbspace at a time is permitted.
If this error recurs, please note all circumstances and contact the Informix
Technical Support Department.
If this error recurs, please note all circumstances and contact the Informix
Technical Support Department.
If this error recurs, please note all circumstances and contact the Informix
Technical Support Department.
During an archive, the database server detected that the number of pages it
expected to read from the chunk was not the number of pages that actually
could be read. Try restarting the archive.
You specified an illegal archive level. You must specify an archive level of 0,
1, or 2.
The reference count for the smart large object is already 0. Attempts to
decrement the reference count to less than 0 are ignored.
An attempt was made to archive a page outside the user data area. If this
error recurs, please note all circumstances and contact the Informix Technical
Support Department.
The archive tape was corrupted either by a user error or a database server
malfunction. Ensure that the archive file was not corrupted through user
error. If the archive file is intact, the database server malfunctioned. You can
either try to create another archive of the same sbspace, or you can remove
the sbspace from the list of spaces to be archived and try to archive the
remaining spaces.
The archive tape was corrupted either by a user error or a database server
malfunction. Ensure that the archive file was not corrupted through user
error. If the archive file is intact, the database server malfunctioned. You can
either try to create another archive of the same sbspace, or you can remove
the sbspace from the list of spaces to be archived and try to archive the
remaining spaces.
-12084 Smartblobs: Restore: NULL contr info block ptr ==> archive records out of
order.
The archive tape was corrupted either by a user error or a database server
malfunction. Ensure that the archive file was not corrupted through user
error. If the archive file is intact, the database server malfunctioned. You can
either try to create another archive of the same sbspace, or you can remove
the sbspace from the list of spaces to be archived and try to archive the
remaining spaces.
The archive tape was corrupted either by a user error or a database server
malfunction. Ensure that the archive file was not corrupted through user
error. If the archive file is intact, the database server malfunctioned. You can
either try to create another archive of the same sbspace, or you can remove
the sbspace from the list of spaces to be archived and try to archive the
remaining spaces.
The application programmer has specified an invalid value for the estimated
number of bytes in a smart large object. If the number of bytes in a smart large
object is unknown, set the estimated number of bytes field to -1 or call
ifx_lo_def_create_spec or the equivalent mi function and then leave this
field alone.
-12089 Smartblobs: create: size limit of smart large object < -1.
The application programmer has specified an invalid value for the size limit
of the smart large object. If the number of bytes in a smart large object is
unknown, set the estimated-number-of-bytes field to -1 or call
ifx_lo_def_create_spec or the equivalent mi function and then leave this
field alone.
The database server has received a smart large object create specification that
has invalid values in the column portion. Either the application programmer
forgot to call the fx_lo_def_create_spec function or the mi equivalent with
create specification, or the create specification data structure has been
corrupted.
Either the databases server or the DBA has brought the smart large object
space down. Look at the Database server log to determine why the sbspace is
downed. You might need to the smart-large-object space.
If this error recurs, please note all circumstances and contact the Informix
Technical Support Department.
-12095 Smartblobs: create: extent size number_of_kilobytes is out of range. Extent size
< -1or > MAXINT.
The application programmer has specified an invalid value for the estimated
number of bytes in a Smart Large Object. If the extent size is out of range for
a Smart Large Object, set the estimated extent size to -1 or call
ifx_lo_def_create_spec or the equivalent mi function and then leave this
field alone.
-12096 Smartblobs: alter: new size limit specified is less than current number of bytes
in the smart large object.
The application programmer has specified an invalid value for the size limit.
The value must be greater than or equal to the current number of bytes in the
smart large object. If the new size limit is less than the current number of
bytes in the smart large object, do not alter the value in the header.
If this internal error code for access sequence recurs, please note all circum-
stances and contact the Informix Technical Support Department.
-12100 Smartblobs: A bad value was entered for the smart-large-object page unit.
The page unit must be between 1 and the maximum asynchronous I/O size.
Re-execute the creation command with a correct page unit.
-12101 Smartblobs: A bad value was entered for the average smart-large-object size.
You entered a bad value for avg_lo_size, in kilobytes, during the creation of
a smartblob space. Re-execute the creation command with a correct average
smart-large-object size, in kilobytes.
0 <= Smart Large Object < 2 TB
-12102 Smartblobs: A bad metadata area was entered for the smart large object.
The metadata area received a bad value during the creation of a smartblob
sbspace. Re-execute the creation command with a correct metadata size.
0 <= meta data area size < chunk size
-12103 Smartblobs: Attempt to open a non-smart blob space as a smart blob space.
An inconsistency has been found in the data used to invoke access method
routines.
-12801 An attempt was made to invoke an access_method routine that does not
exist.
An SQL statement has been used that would normally cause a particular
access method routine to be invoked, but the routine is not defined for that
access method. Unless the routine is defined for the corresponding access
method purpose, the SQL statement cannot be used for that access method.
-14503 Communication Support Services failed to load a shared library that contains
a Communications Support Module.
-14551 Communication Support Services caller did not specify a name of Communi-
cations Support Module to be used by Communication Support Services.
-14582 Communications Support Module with this name has already been defined.
An identifier in this statement is too long for its context. Check if you have
omitted a separator between two identifiers, or select a shorter identifier.
A syntax error has been detected in a Debugger command. Check that you
have not misspelled or omitted a keyword or identifier, included an extra
command argument, or placed keywords out of sequence. Check if you have
omitted parentheses after a function name in a CALL command or included
them in a VIEW command. To display a two-page synopsis of all the
commands, enter help all.
-16304 An illegal floating point number has been found in the command.
You might have omitted a quotation mark from a name or string, or included
an extraneous quotation mark. Repeat the command, using an even number
of single (') or double (") quotes.
You must specify the name of a function in a CALL command. Repeat the
command, specifying the name of a function followed by left and right
parentheses. If the function requires arguments, include the list of arguments
within the parentheses, separating multiple arguments by commas.
Your command has too many characters. A Debugger command can include
no more than 256 characters. If you are specifying an ALIAS, BREAK, or
TRACE command that includes many command lines within braces, you
might consider using nested aliases. You can cause a function key or a short
string to stand for hundreds of keystrokes by specifying it as the alias of a list
of aliases, each of which represents fewer than 256 characters. Another
alternative is to use READ commands, rather than aliases, to enter multiple
commands.
You have omitted a required command option. Enter help all to display the
names of all the Debugger commands, or refer to the manual.
You have misspelled the name of the command or improperly abbreviated it.
Enter help to see a display of the names of all the Debugger commands. If the
string name appears to be a valid command name, you might have also
pressed a nonprinting key when you entered it.
The LET command always requires an equal sign (=), as does ALIAS without
the asterisk option. Repeat the command, and be sure to use the equal sign in
the appropriate place.
If the Debugger is already loaded, you have not specified a filename after a
READ command or after a command to redirect output to a file. Repeat the
command, specifying the name of an input or output file.
If you were at the system prompt, you used the -F command-line option to
invoke the Debugger, but you did not specify the name of an initialization
file. Repeat the command, but this time either omit the -F option or specify
the name of a .4db initialization file following the -F option.
-16315 Missing ).
The identifier could not be recognized in the command that you entered.
You must use left and right brace characters ({ and }) in balanced pairs.
You used the -I command-line option when you invoked the Debugger, but
you did not specify a source-file search path. Repeat the command, and either
omit the -I option or specify a search path with it.
You can use the -I option only once on the command line. However, you can
specify more than one search path in the list following -I. Repeat the
command, listing all the desired source-file search paths, separated by
commas, following a single -I option.
You can use the -F option only once on the command line. Repeat the
command specifying only one initialization file. After the Debugger starts,
you can enter READ commands to execute additional .4db files.
-16325 Missing or extra parameter.
This message also appears if you attempt to pass parameters to the program
that is being debugged. The correct way to give command-line parameters to
the subject program is to include them with the run command when you start
the program.
If you invoke the Debugger at the system prompt, you must include as an
argument the name of a compiled 4GL program (or else, in UNIX, use the
option -V to indicate that you want a display of only the software version
number). Repeat the command, specifying the name of a compiled program
this time.
Possibly you omitted or misspelled the filename of a .4db input file (either in
a READ command or following the -F command-line option), or you
misspelled the filename or pathname of a .4gl source file in a VIEW command
or on the command line.
If filename is spelled correctly and names a file that exists, then you might
need to specify a complete pathname. You must specify the full pathname of
a file when you refer to a .4db file that is not in the current directory, or to a
.4gl source file that is not in the current directory or any directory that you
specify with the -I command-line option.
Although the Debugger found the file that you specified with the
-F parameter, it encountered an error when it tried to read from the file.
Check for operating-system error messages that might provide more details.
If the problem is not a hardware error, make sure that your account has read
access to the file (for instance, by displaying its contents).
Make sure that you specified the correct filename in your READ or VIEW
command, or after the -F option when you invoked the Debugger from the
command line. If the name was correct, the file might be damaged or read
protected. If you do not have permission to read it, refer to the discussion of
access privileges in your operating-system documentation, or contact your
system administrator.
In some debugging tasks, aliases that reference other aliases can save time or
circumvent limits on the number of characters in a Debugger command line.
For example, you can specify alias1 to be a substring of alias2, which can be
a substring of alias3, and so forth up to alias5. However, you cannot specify
more than five levels of aliases between your keystrokes and the fully
expanded commands for which they stand.
The function name shown was found in a module that was being loaded.
However, a function of that name had already been seen in a module that was
loaded earlier. This situation is not allowed. Change the application so that
all functions in it have unique names.
The module whose name is shown is being loaded, but a module of that
name had already been loaded. Use the Program menu of the Programmer's
Environment to make sure that the program that is being debugged is
composed of only one copy of each module.
This message reflects a condition that was expected never to occur. If the
error recurs, please note all circumstances, and contact the Informix
Technical Support Department.
The argument of a GROW command is not the new window size but the
increment to the current window size. To change the size of a window in the
Debugger screen, enter a GROW command to produce window sizes within
this range.
You cannot invoke CONTINUE or STEP commands unless a 4GL program has
begun (but not terminated) execution. If the program is terminated normally
or by a fatal error, use CALL or RUN. After execution begins, you must then
suspend execution by a breakpoint (or, in UNIX environments, by an
Interrupt command) before you can invoke CONTINUE or STEP. See also the
section on "Active Functions and Variables" in the Debugger manual.
Your BREAK or TRACE command cannot specify a line number that is greater
than the line number of the last executable statement in the specified module.
If you specified no module name, the line number cannot be greater than the
last executable statement in your current module. Check that you specified
the correct module and line number.
If this internal error recurs, please note all circumstances, and contact the
Informix Technical Support Department.
You specified a module that is not part of the current 4GL program.Possibly
you misspelled the name, or you are confusing the names of modules or
functions from different programs. Repeat the command, specifying a valid
name.
You specified a function that is not part of the current 4GL program. Possibly
you misspelled the name, you are confusing the names of modules or
functions from different programs, or you neglected to compile a program
module that contains this function. Repeat the command, specifying a valid
name.
You can set a breakpoint only at a function written in 4GL, not at a function
that is written in another language such as C or ESQL/C, and not at the name
of a built-in function.
Check if the output file already exists but is damaged or write protected. In
UNIX, check that you have permission to write in the specified directory (or
in the current directory if you specified no pathname).
-16352 File filename has been modified. (.4gl is newer than .4go)
The Debugger executes the .4go module, but it displays lines from the .4gl
source file. Because the source file has been changed since the module was
compiled, the lines that the Source window displays might not correspond to
the statements in the compiled program.
If you change the source code in a .4gl file, you must recompile it. If your
program includes several modules, you must also concatenate the compiled
modules before you start debugging. Also check if files exist with both the
.4go and .4gi suffixes for this program. Even if your .4go file is the
appropriate recompiled version, the Debugger first attempts to interpret the
.4gi version.
You specified a function that is not part of the current 4GL program. Check if
you have misspelled the name or if you are confusing the names of functions
from different programs. Make sure that your 4GL source code defines and
calls the function that you want to execute.
The function that the CALL command names is defined as taking one or more
parameters. You must enter a matching number of parameters in the
parentheses following the name of the function. If you are not sure what
parameters should be passed to the function, use a VIEW command to display
its source code.
Your argument list in a CALL command includes more parameters than the
function is defined as receiving. If you are not sure how many parameters
should be passed to the function, you can use a VIEW command to display
the source code of the function.
You can display only variables that are defined in the active function. This
variable is defined in function name, which is not active.
A LET command requires as its first argument a variable name. Do not put
quotes around the name.
No current 4GL function exists if you have not yet invoked a RUN or CALL
command. Even after RUN or CALL, no current function exists if execution
terminated normally, rather than being stopped by a breakpoint, by an
Interrupt or STEP command, or by a fatal error. Use RUN or CALL to begin or
restart program execution.
You named a variable whose value is assigned by a function that has not yet
been called or by a function that has already returned. A LET or PRINT
command can refer to only an active variable; that is, one global or assigned
in a function that is currently executing (a function that a WHERE command
lists). When you enter a CALL command, you must substitute a literal value
for an expression that needs an inactive variable.
Either your file system is full, or a hardware error occurred. Use the Escape
feature to display the space that remains on your current drive.
You must specify the name of another terminal that has the same termcap or
terminfo entries as the terminal from which you invoked the Debugger. The
second terminal must be logged in under your account name.
You must specify the name of another terminal that has the same termcap or
terminfo entries as the terminal from which you invoked the Debugger.
(However, it cannot be the name of the device from which you invoked the
Debugger.) Enter tty from the terminal that you want to use as your
application device. Its screen will display its terminal pathname. Repeat the
APPLICATION DEVICE command, specifying an appropriate terminal device
name.
You must identify what you want the Debugger to display in a PRINT
command. Repeat the command, specifying the name of a variable, record or
array, or an expression.
The VIEW command cannot display the source code of C functions or ESQL/C
functions. To examine C source code, you must use the Escape feature, and
use an operating-system command that displays the C source file.
-16376 Break or trace name name does not begin with an alpha character.
You cannot execute a READ command that might create an infinite loop.
You started a READ command that invoked another, which invoked another,
and so on for more than ten nested READ commands. You must simplify your
arrangement of .4db command files.
You cannot have more than 256 characters in a single Debugger command
line. If you are using semicolon (;) command separators, break the line into
separate commands.
Avoid Debugger commands that have more characters in a single line than
your screen or list device can display. Use the backslash continuation symbol
to divide long command lines into shorter segments, or use aliases.
The logic in your 4GL or C language function might be defective or might not
support the argument list that you specified in a CALL command. Use the
VIEW command to examine the source code of a 4GL function. Use the Escape
feature to examine the source file of a C function.
You are probably out of memory. Take whatever steps your operating system
permits to increase the amount of available memory.
A filename cannot exceed 80 characters. If the name exceeds this length (if the
message is not the result of some mistake in punctuation), you must rename
it before you use it with the Debugger.
-16390 Error occurred while reading file filename.
The Debugger encountered an error while it was trying to read a 4GL source
file. Look for other messages (from the operating system, for example) that
provide more details about the failure. Check that the file exists and that you
have read permission.
Repeat the command. If the error recurs, please note all circumstances, and
contact the Informix Technical Support Department.
The name charvalue must be the CHAR(n) data type; n1 specifies the first
character of the substring, and n2 specifies the last. This error message
appears when n1 is larger than n, the length of the character value, or when
n1 is greater than n2.
The Debugger help messages are in the file fgldb.iem. The INSTALL program
copies this file into the msg directory to which the INFORMIXDIR
environment variable points. Probably the file was damaged, deleted, or read
protected. Ask the system administrator to restore your access to it.
The 4GL LOCATE statement has located the BYTE or TEXT variable in a file.
However, the filename for the variable is a null string. Because the file does
not exist, the Debugger cannot do anything with it.
The filename that is shown is not appropriate for its intended use. It is too
long, contains improper special characters, or is null. Enter an appropriate
filename.
You cannot create a role name identical to any user that is known to the
system or a user or role that is known to the database. Change the name of
the role.
You cannot create a role name that is a reserved word. The reserved words
are connect, resource, dba, select, update, delete, insert, index, references, alter,
execute, default, none, null, and public. Change the name of the role.
-19802 Name cannot appear as both the role granted and the role grantee.
A role cannot be granted to itself, either directly or indirectly. Verify if the
role granted and grantee are the correct roles. Check for roles already granted
to the role that is being granted.
-19803 Only the DBA, or a user granted the role with the WITH GRANT OPTION can
grant, revoke, or drop a role.
Check your privileges and permissions. To grant, revoke, or drop a role, you
must be the DBA or have been granted the role with the WITH GRANT option.
For a role to exist, the DBA must first use the CREATE ROLE statement to
create the role. For a list of roles, see the informix.sysusers table.
Check your privileges and permissions. A user or role must be granted a role
using the GRANT statement before the role can be set.
-19806 Cannot grant database privileges to a role.
A user that is granted a role with the WITH GRANT option cannot in turn
grant the role to a user and include the WITH GRANT option. Use the GRANT
statement without the WITH GRANT option.
A user cannot open a database as a role name that is the same as the user
name. Role names and user names must be unique in the database. If you
want to access the database, contact the DBA of the database. The DBA can
drop the role if necessary.
Choose a database password with a length that does not exceed eight
characters.
-19813 Cannot add CRCOLS when table already has replication shadow columns.
The specified table was created with the WITH CRCOLS syntax and therefore
already has the replication shadow columns defined. You cannot alter this
table to add CRCOLS to it.
-19814 Cannot drop CRCOLS when table does not have replication shadow columns.
The specified table was not created with the WITH CRCOLS syntax, or it has
not been altered to include the CRCOLS. You cannot alter this table and drop
the CRCOLS because these columns do not exist on this table.
Code-set conversion cannot recognize data that is being passed between the
server and the client. Check DB_LOCALE and CLIENT_LOCALE settings in
your initialization file or your environment.
Code-set conversion cannot recognize data that is being passed between the
server and the client. Check DB_LOCALE and CLIENT_LOCALE settings in
your initialization file or your environment.
Check that the serial number and key you entered during installation
correspond with those on the keycard. Restart installation, or contact the
Informix Technical Support Department for verification of your serial
number and key.
-21401 brand: Cannot open file -- file probably not in current directory.
The file might not have been transferred correctly from media. Reload the
product from the media, and reinstall. If the error recurs, please note all
circumstances and contact the Informix Technical Support Department.
If this internal error recurs, please note all circumstances and contact the
Informix Technical Support Department.
For some products, installation cannot be restarted unless you reload files
from the media. Reload files from the media before you run the installation
script.
If this internal error recurs, please note all circumstances and contact the
Informix Technical Support Department.
If this internal error recurs, please note all circumstances and contact the
Informix Technical Support Department.
The file might not have been transferred correctly from media. Reload the
product from the media, and reinstall. If the error recurs, please note all
circumstances and contact the Informix Technical Support Department.
The file might not have been transferred correctly from media. Reload the
product from the media, and reinstall. If the error recurs, please note all
circumstances and contact the Informix Technical Support Department.
If this internal error recurs, please note all circumstances and contact the
Informix Technical Support Department.
If this internal error recurs, please note all circumstances and contact the
Informix Technical Support Department.
If this internal error recurs, please note all circumstances and contact the
Informix Technical Support Department.
-21412 verstamp: Warning: string found number times in file.
If this internal error recurs, please note all circumstances and contact the
Informix Technical Support Department.
The file might not have been transferred correctly from media. Reload the
product from the media, and reinstall. If the error recurs, please note all
circumstances and contact the Informix Technical Support Department.
The file might not have been transferred correctly from media. Reload the
product from the media, and reinstall. If the error recurs, please note all
circumstances and contact the Informix Technical Support Department.
-21601 Source and object files the same, would overwrite 'filename'.
If this internal error recurs, please note all circumstances and contact the
Informix Technical Support Department.
If this internal error recurs, please note all circumstances and contact the
Informix Technical Support Department.
If this internal error recurs, please note all circumstances and contact the
Informix Technical Support Department.
If this internal error recurs, please note all circumstances and contact the
Informix Technical Support Department.
If this internal error recurs, please note all circumstances and contact the
Informix Technical Support Department.
If this internal error recurs, please note all circumstances and contact the
Informix Technical Support Department.
If this internal error recurs, please note all circumstances and contact the
Informix Technical Support Department.
-21608 You have exceeded the limits of 8 defines. Extra defines will be ignored.
If this internal error recurs, please note all circumstances and contact the
Informix Technical Support Department.
If this internal error recurs, please note all circumstances and contact the
Informix Technical Support Department.
-21611 Syntax error at line line-number. Expect ifdef, ifndef, else or endif after '^'.
If this internal error recurs, please note all circumstances and contact the
Informix Technical Support Department.
If this internal error recurs, please note all circumstances and contact the
Informix Technical Support Department.
-21613 Syntax error at line line-number. Expect ifdef, ifndef, else or endif.
If this internal error recurs, please note all circumstances and contact the
Informix Technical Support Department.
-21614 Expected identifier not found following ^ifdef or ^ifndef at line line-number.
If this internal error recurs, please note all circumstances and contact the
Informix Technical Support Department.
If this internal error recurs, please note all circumstances and contact the
Informix Technical Support Department.
If this internal error recurs, please note all circumstances and contact the
Informix Technical Support Department.
If this internal error recurs, please note all circumstances and contact the
Informix Technical Support Department.
The name in the record has already been used, so it is not unique. Change the
name of the record variable, and try again.
The USAGE clause for a record component does not match the USAGE clause
of the record group to which it belongs. Usage clauses for the elements of a
record are inherited from the group record declaration. A mismatch causes
an error.
The SIGN clause of the record component does not match the SIGN clause of
the record group to which it belongs. Sign clauses for the elements of a record
are inherited from the group record declaration. A mismatch causes an error.
Check that the CALL syntax is correct, and verify whether data is corrupted
before you call the Informix Technical Support Department for assistance.
Change the USAGE clause for the host variable so that it is not USAGE IS
INDEX, and try again. INFORMIX-ESQL/COBOL does not support USAGE
INDEX.
-22209 No hyphen allowed in SQL object identifier, cursor name, or statement id.
You must change the name of the object identifier, cursor, or statement ID so
that it does not contain a hyphen.
The ESQL/COBOL preprocessor does not expand the record that contains
repeated data items. Please change the record, and try again.
The compiler that is specified is not supported. Please check the INFORMIX-
ESQL/COBOL Programmer’s Manual for information on compilers that this
version supports.
The specified host variable was accessed but was not declared. You must
declare the host variable in the declaration section, and try again.
The host variable has been declared more than once. Check for the duplicate
variable declaration, and redeclare one of the variables.
The maximum number of levels for valid record nesting is 100. Reduce the
number of nested records, and try again.
The variable name is not part of the components of the record. Check the
record declaration and its components to verify that you have correctly
declared the variable with this name.
Unless you are using either the Ryan McFarland RM/COBOL 85 compiler or
the Micro Focus COBOL/2 compiler, you cannot pass array elements as
parameters. Use one of the specified compilers, or rewrite this section of code
that involves arrays.
-22234 Buffer provided by user is too small. Result will be truncated to fit buffer.
The buffer that is used to store the result of the operation of the function is too
small to hold the entire result. As much of the result as possible was copied,
and extra characters were truncated. Increase the buffer declaration so that it
can hold larger strings.
If this internal error recurs, please note all circumstances and contact the
Informix Technical Support Department.
If this internal error recurs, please note all circumstances and contact the
Informix Technical Support Department.
If this internal error recurs, please note all circumstances and contact the
Informix Technical Support Department.
If this internal error recurs, please note all circumstances and contact the
Informix Technical Support Department.
If this internal error recurs, please note all circumstances and contact the
Informix Technical Support Department.
If this internal error recurs, please note all circumstances and contact the
Informix Technical Support Department.
If this internal error recurs, please note all circumstances and contact the
Informix Technical Support Department.
If this internal error recurs, please note all circumstances and contact the
Informix Technical Support Department.
If this internal error recurs, please note all circumstances and contact the
Informix Technical Support Department.
If this internal error recurs, please note all circumstances and contact the
Informix Technical Support Department.
If this internal error recurs, please note all circumstances and contact the
Informix Technical Support Department.
If this internal error recurs, please note all circumstances and contact the
Informix Technical Support Department.
If this internal error recurs, please note all circumstances and contact the
Informix Technical Support Department.
If this internal error recurs, please note all circumstances and contact the
Informix Technical Support Department.
If this internal error recurs, please note all circumstances and contact the
Informix Technical Support Department.
If this internal error recurs, please note all circumstances and contact the
Informix Technical Support Department.
If this internal error recurs, please note all circumstances and contact the
Informix Technical Support Department.
If this internal error recurs, please note all circumstances and contact the
Informix Technical Support Department.
If this internal error recurs, please note all circumstances and contact the
Informix Technical Support Department.
-22264 Host data items must not be alphanumeric or numeric edited items.
Change the declaration of the PICTURE clause to one of the following valid
categories for host variables: alphabetic, numeric, or alphanumeric.
INFORMIX-ESQL/COBOL does not support alphanumeric edited or numeric
edited items.
If you have a SIGN clause but did not specify "S," the compiler cannot process
the data type. Check whether the variable is signed or unsigned, and declare
it accordingly.
The type that is specified for the variable is not supported for the compiler
name that is used. Check your compiler documentation for valid type
declarations.
Change the USAGE clause for the host variable so that the host variable is not
a pointer, and try again.
The string or buffer parameter to the function is longer than the internal
buffer. Change the string or buffer declaration so that the string or buffer has
a smaller maximum size.
Micro-Focus COBOL/2 has either byte or word storage mode for USAGE
COMP/BINARY variables. Check the current storage mode. To specify byte or
word storage, set the INFORMIXCOBSTORE environment variable, as
Chapter 4 of the Informix Guide to SQL: Reference discusses.
The directory in which the COBOL temporary files are being created (usually
/tmp or whatever is specified when the DBTEMP environment variable is set)
is full. No room is available to open new files. Check this directory, and free
some space. Since Version 5.01, the INFORMIX-SE database server uses the
DBTEMP environment variable, but INFORMIX-OnLine Dynamic Server does
not.
The SQL string in the EXEC SQL statement is too long to fit in the internal
buffer. The maximum SQL string length should be less than 32,767.
The length and precision of the data is too large or otherwise incorrect. The
length cannot be greater than 18, and the precision cannot be greater than the
length.
-22283 Numeric value from database cannot be stored in COBOL data item.
A pointer variable is used with the wrong number of level indirection. Check
the indirection levels in the ESQL statement.
-22285 Incorrect dimension on table variable variable-name
This error is generated when, for example, the field type TYPE is used where
COUNT is expected. Check the syntax and usage for system-descriptor field
names in the discussion of the ALLOCATE DESCRIPTOR and GET DESCRIPTOR
statements in Chapter 1 of the Informix Guide to SQL: Syntax. For a discussion
of the system-descriptor area, see the manual for your embedded-language
product.
-22555 The type of host-variable does not match the expected type for this field.
This error is generated when a variable is expected to have a certain type but
does not. For example, an TYPE field accepts only integer types when a value
is assigned to it or retrieved from it. If the variable type is not integer, an error
is generated. Check the syntax and usage for system descriptor field names
in the discussion of the ALLOCATE DESCRIPTOR and GET DESCRIPTOR
statements in Chapter 1 of the Informix Guide to SQL: Syntax. For a discussion
of the system descriptor area, see the manual for your embedded-language
product.
If this internal error recurs, please note all circumstances and contact the
Informix Technical Support Department.
The ESQL processor cannot open the log file that is specified on the command
line. The log files are specified after the -log option. Check that you have
specified the log file correctly.
The filename that is specified after the -e option on the command line for the
ESQL processor has an incompatible file extension. Verify the file extension,
and try again.
No output filename has been specified after the -o option on the command
line for the ESQL processor. Enter the command again, and specify an output
file.
The filename that is specified after the -c option on the command line for the
ESQL processor has an incompatible file extension. Verify the file extension,
and try again.
No log filename has been specified after the -c option on the command line
for the ESQL processor. Enter the command again, and specify a log file.
More than one memory model option has been specified on the command
line for the ESQL processor. Try again, and specify only one memory model
option.
More than one compiler option has been specified on the command line for
the ESQL processor. Try again, and specify only one compiler option.
No list filename has been specified for the -f option on the command line for
the ESQL processor. Enter the command again, and specify a list file.
More than one application option has been specified on the command line for
the ESQL processor. Try again, and specify only one application option.
-23084 Cannot open ESQL response file 'file-name'.
The ESQL processor cannot open the ESQL response file that is specified on
the command line.
You have not specified either a source file or an object file on the command
line for the ESQL processor. Enter the command again, and specify either a
source file or an object file.
No module definition file has been specified on the command line for the
ESQL processor. Enter the command again, and specify a module definition
file.
The ESQL processor cannot open the specified file. Check that you have
specified the file correctly.
The ESQL processor cannot create the temporary file. Delete the temporary
files that start with "eq" in the specified directory.
No command-line parameter file has been specified for the ESQL processor.
Try again, and specify a command-line parameter file.
Too many parameters have been specified on the command line for the ESQL
processor. Enter the command again, and specify fewer parameters.
No source file has been specified on the command line for the ESQL
processor. Enter the command again, and specify a source file.
The specified list file or response file has an incompatible file format for the
ESQL processor.
An invalid locale name has been supplied for the locale initialization. The
environment variable to specify the locale category has a wrong value. Check
the value of the corresponding environment variable, CLIENT_LOCALE or
DB_LOCALE. Also check if INFORMIXDIR points to a valid directory where
Informix products are installed.
The program cannot allocate enough memory for the internal code-set
conversion buffer or control table. Only a client process returns this error.
Rerun the program after you free some memory.
Illegal or invalid characters occur in the character string. The program could
not execute the code-set conversion on the characters that this string contains.
Reexamine the input string for illegal or invalid characters, and reexecute the
program.
No object code-set conversion (definition) file exists for the two given code
sets. The environment variables DB_LOCALE or CLIENT_LOCALE might
have been set to the wrong value, which caused an error condition to be
generated. The files might also be missing, or the information that they
contain might be garbled. Check the value of the environment variable
CLIENT_LOCALE or DB_LOCALE. The object conversion files usually have
the .cvo extension.
-23105 The current database engine does not support code-set conversion.
The code-set conversion in the database server is not yet implemented. Check
the value of the CLIENT_LOCALE, SERVER_LOCALE, or DB_LOCALE
environment variable.
DBLANG is the environment variable that points to the location where the
message files are stored. Usually, the value of DBLANG corresponds with
that of CLIENT_LOCALE. The value of DBLANG could be en_US.8859-1 or a
value set according to X/Open standards for locale definitions. The locale is
a set of files that defines the characteristics of a particular language (for
example, French or Japanese), a particular territory (for example, France or
Japan) and a particular code set (for example, MS Windows Code Page 1251
or ISO 8859-1). An example of a locale name for the French language in
Canada that is encoded using ISO 8859-1 would be fr_CA.8859-1, and a
locale name for the Japanese language that is encoded using EUC (Extended
Unix Code) would be ja_JP.ujis.
The locale initialization failed. The program cannot allocate enough memory
for the internal locale table. The memory might be exhausted due to the
execution of too many processes. Rerun the program after you free some
memory.
During code-set conversion, if both the input buffer and the output buffer are
of NULL length, code-set conversion does not proceed, and the conversion
process terminates after this error is returned. Check the logic of your
application program.
During code-set conversion, if the input buffer is of NULL length, this error is
returned. Code-set conversion requires an input buffer and an output buffer.
The input buffer is the string passed to the database server from the
application program as a result of an insert or update. Check the logic of your
application program.
-23115 Code sets of the locale categories are not the same.
On the client side or database server side, the locale is established with the
following precedence of announcement mechanisms, the CLIENT_LOCALE,
LANG, LC_*, and the English locale, en_US.8859-1. Given this precedence,
the six categories of the processing locale are set in the following way:
COLLATION, CTYPE, TIME, MONEY, NUMBER, MESSAGES.
The GLS initialization function returned this error because an invalid locale
was specified. The locale specifier is usually the environment variables.
Check the value of INFORMIXDIR and CLIENT_LOCALE. INFORMIXDIR
should point to a valid directory where the Informix Version 7.2 products are
installed. This directory should also contain the /gls directory where the
locale and code-set files reside.
The SE server does not allow a multibyte database name in the specified
environment. Change the database name.
The database server has failed to restore the code-set conversion table to the
previous state. Not enough memory is available to hold table information.
Reexecute the program after you free some memory.
The database server has failed to change the database processing locale to
en_US.8859-1. The server has refused the connection. Not enough memory
is available in the server for the new locale table. Reexecute the program after
you free some memory.
The locale information that is stored in the system catalog systables of the
selected database does not match the value that the DB_LOCALE
environment variable specifies. Check the value of DB_LOCALE. If it is
correct, drop the database, and re-create it with the correct value of
DB_LOCALE.
Correct the name of the dbspace, and resubmit the request. Contact Informix
Technical Support for help in addressing this situation.
Select a name that is not in use and resubmit the request using the new name,
or drop the existing dbspace or dbslice and resubmit the request using the
same name.
A new dbspace or dbslice was requested, but the maximum number allowed
is already in use. Drop one or more obsolete dbspaces or dbslices, and
resubmit the request.
Correct the pathname and offset of the chunk, and resubmit the request. If
necessary, contact Informix Technical Support for help in addressing this
situation.
To add a new chunk in addition to the existing one, either choose a different
pathname for it or specify an offset beyond the end of the existing chunk
within the same pathname.
An attempt to delete the first chunk in a dbspace failed because deleting the
first chunk in a dbspace is an invalid operation.
Check which chunk should be dropped. To drop the dbspace after the chunk,
simply drop the dbspace.
Correct the name of the dbslice, and resubmit the request. If necessary,
contact Informix Technical Support for help in addressing this situation.
A request for a new dbslice failed because a dbslice of that name already
exists. Select a name that is not in use, and resubmit the request with the new
name.
A request for a new dbslice failed because the maximum allowed number is
already in use. Drop one or more obsolete dbslices, and resubmit the request.
Correct the name of the cogroup, and resubmit the request. If necessary,
contact Informix Technical Support for help in addressing this situation.
An attempt to create a new cogroup failed because the name of the new
cogroup is already being used by another cogroup. Choose a cogroup name
that is not already in use, and resubmit the request.
Drop one or more obsolete cogroups or cogroup members and resubmit the
request.
Correct the name or ID of the coserver and resubmit the request. If necessary,
contact Informix Technical Support for help in addressing this situation.
A request to add a new coserver fails because the coserver with that ID is
already in use in this instance of OnLine XPS.
Consult the INFORMIX-OnLine XPS Feature Enhancements Guide for the valid
Identifier syntax.
-23525 CM error: All available IDs for fragmented tables are in use.
Drop one or more obsolete fragmented tables, and resubmit the query.
Correct the name of the logslice, and resubmit the request. If necessary,
contact Informix Technical Support for help in addressing this situation.
Select a name that is not in use and resubmit the request using the new name,
or drop the existing logslice and resubmit the request using the same name.
An error occurred when OnLine XPS tried to write to the reject file.
An error occurred when OnLine XPS tried to close the external table lock.
Please note all circumstances and contact the Informix Technical Support
Department.
An error occurred when OnLine XPS tried to open the file. Check the accom-
panying errno for more information. Possible causes include missing file or
incorrect permissions.
An error occurred when OnLine XPS tried to read from the file.
Please note all circumstances and contact the Informix Technical Support
Department.
An error occurred when OnLine XPS tried to remove the UNIX file.
Please note all circumstances and contact the Informix Technical Support
Department regarding this internal error.
-23726 PLOAD (load or unload) failed to start an AIO operation errno, coserver-
number, filename.
A conversion failure occurred when OnLine XPS tried to convert the data to
ASCII or EBCDIC format.
Check that the external table columns have enough space reserved to write
the ASCII or EBCDIC representation of the data and that the columns in the
external table are compatible with the data selected.
An error occurred when OnLine XPS tried to write to the unload data file. No
more space is available for writing additional data.
An error occurred when OnLine XPS tried to write to the unload datafile.
-23733 PLOAD (unload): all data files are either full or bad.
-23734 PLOAD: row size of target table is too large coserver-number, errno, filename.
The target table for the load has a row size that is too large. The largest row
size must be the page size minus 32 bytes.
When OnLine XPS tried to load from the file, it encountered an error. Unless
a reject file is specified in the external table, OnLine XPS returns the error
message, and the load job ends without saving loaded data.
Check for conversion errors, rows that violate constraints defined on the
external table, or null columns that were defined as NOT NULL.
-23736 PLOAD failed to access file: coserver-number, errno, filename.
An error occurred when OnLine XPS tried to write to the reject file.
An error occurred when OnLine XPS tried to find a record delimiter in the
delimited load file.
Check to see that the file has record delimiters (normally new-line characters)
and that the external table has defined the correct record delimiter.
-23738 PLOAD (unload) cannot undo partial write to filename when detecting disk
full.
An error occurred when OnLine XPS tried to continue after running out of
space for one data file. When OnLine XPS detects the disk-full condition, it
writes to the data file a partial record, which cannot be truncated.
An error occurred when OnLine XPS tried to open the PLOAD log file. This
situation occurs when one of the directories in the specified log-file name
does not exist, or the directory is write protected.
Check that the directory path is valid and that group informix can write to
the directory.
-23740 CREATE EXTERNAL TABLE: Too many keyword keywords in USING clause.
Review the statement. If you meant to use another keyword, correct the
statement before you reissue it.
Review the statement to see if the value of the keyword is misspelled. For the
MAXERRORS keyword, make sure the value is a valid number.
A DATAFILES entry does not have the correct format. The format for an entry
is filetype:coserver-info:rooted-path-name.
Check that the file type is a valid type (DISK or PIPE), that the second item
names a cogroup or a coserver number, and that the last item names a file that
can be accessed by the coserver that manages it.
-23744 CREATE EXTERNAL TABLE: Cannot use SAMEAS for FIXED format tables.
The CREATE EXTERNAL TABLE statement does not allow SAMEAS for FIXED
format tables. The column entries must also define an external type to
describe how to access (or write) the data in the fixed file.
-23745 CREATE EXTERNAL TABLE: Internal column types must be defined column-
name.
The CREATE EXTERNAL TABLE statement requires a column type for each
column enumerated in the statement.
Revise the statement. Add the appropriate column type, and then reissue the
statement.
Make sure the external-column types are valid: CHAR, PACKED, ZONED, or
BINARY. CHAR data must be enclosed in quotes.
-23749 CREATE EXTERNAL TABLE: Only FIXED format columns can declare nulls
column-name.
The CREATE EXTERNAL TABLE table statement has found a column defining
a null string with the NULL “null-string” syntax that is invalid. Only tables
that describe FIXED format files can have a null value defined with the NULL
keyword.
An error occurred when OnLine XPS tried to expand the DATAFILES entries in
an INSERT or SELECT statement for an external table. The external table has a
DATAFILES entry with an illegal file type. Only DISK and PIPE file types are
allowed for PLOAD/XPS external tables.
Examine the external-table entry, drop the external table, and reissue a
corrected CREATE EXTERNAL TABLE statement to correct this error.
An error occurred when OnLine XPS tried to expand the node host-name macro
in the filename in a DATAFILES entry in an INSERT or SELECT statement for an
external table.
If the error recurs, please note all circumstances and contact the Informix
Technical Support Department.
-23752 Could not find coserver name for coserver coserver-number, errno, filename.
An error occurred when OnLine XPS tried to expand the data files entries in
an INSERT or SELECT statement for an external table. The error occurred
when OnLine XPS tried to find the coserver name in order to expand the node
host-name macro in the filename.
If the error recurs, please note all circumstances and contact the Informix
Technical Support Department.
An error occurred when OnLine XPS tried to expand the datafiles entries in
an INSERT or SELECT statement for an external table. The error occurred
when OnLine XPS tried to expand the coserver-number macro in the filename.
If the error recurs, please note all circumstances and contact the Informix
Technical Support Department.
An error occurred when OnLine XPS tried to expand the DATAFILES entries in
an INSERT or SELECT statement for an external table. The external table has a
DATAFILES entry that does not have the expected colon separators between
entries. The format for an entry is filetype:coserver-info:rooted-path-name.
Examine the external tables entry, drop the external table, and reissue a
corrected CREATE EXTERNAL TABLE statement.
An error occurred when OnLine XPS tried to expand the datafiles entries in
an INSERT or SELECT statement for an external table. The external table has a
DATAFILES entry that does not have a known coserver number.
Examine the external tables entry, drop the external table, and reissue a
corrected create external statement.
An error occurred when OnLine XPS tried to expand the DATAFILES entries in
an INSERT or SELECT statement for an external table. The external table has a
DATAFILES entry that does not have a known cogroup name.
Examine the external tables entry, drop the external table, and reissue the
CREATE EXTERNAL TABLE statement.
An error occurred when OnLine XPS tried to expand the DATAFILES entries in
an INSERT or SELECT statement for an external table. No valid filenames were
found in the DATAFILES entries.
Examine the external tables entry, drop the external table, and reissue a
corrected CREATE EXTERNAL TABLE statement.
-23761 Cannot select from multiple tables when selecting from an external table.
The INSERT... SELECT statement contains multiple tables in the FROM clause.
No joins or subqueries are allowed when OnLine XPS tried to select data from
an external table.
The CREATE EXTERNAL TABLE statement has a column with invalid NULL
“null-string” syntax. The NULL string for this column is longer than the
external column length declared.
Check the CREATE EXTERNAL TABLE statement to make sure that the NULL
“null-string” length agrees with the size defined for the external column type.
-23763 Cannot use a FOR UPDATE or FIRST n clause with a SELECT into an external
table.
Check the SELECT statement or when the SELECT cursor was defined, and
make sure you do not include either of these clauses.
-23764 Insert into an external table must provide values for all columns in the table.
The INSERT statement does not list all the columns that the external table
defines. When OnLine XPS unloads to an external table, all columns must
have values described by the SELECT list.
Check the INSERT statement to make sure that all columns are included in the
INSERT clause and that every column has a value supplied by the SELECT list.
-23765 Cannot use a FOR UPDATE clause with a select from external table.
The SELECT statement contains a FOR UPDATE clause. When OnLine XPS
selects from an external table, this clause is not allowed.
Check the SELECT statement or the cursor declared to make sure you do not
include this clause.
When OnLine XPS tries to convert the column to FIXED file format, the size of
the converted value was longer than the maximum size defined for the fixed-
size field.
Check that the external table description defines enough space in the external
column type to hold the data selected after conversion.
-23768 External table must be fixed format for external column type column-name.
Only FIXED-format files can define external-column types that are not CHAR.
-23769 Unknown external column type column-name.
Check the CREATE EXTERNAL TABLE statement to make sure that the
external-column types are valid.
Check the CREATE EXTERNAL TABLE statement to make sure any external-
column types agree with the internal-column type.
Check the CREATE EXTERNAL TABLE statement to make sure any external-
column types agree with the internal-column type.
When OnLine XPS tried to load the data from the external table, one of the
coservers reached the MAXERRORS limit defined for the external table.
Please note all circumstances and contact the Informix Technical Support
Department regarding this internal error.
-23802 A request to idle an XTM participant has failed. Transactions are in an incon-
sistent state.
Please note all circumstances and contact the Informix Technical Support
Department.
Please note all circumstances and contact the Informix Technical Support
Department.
Please note all circumstances and contact the Informix Technical Support
Department.
Please note all circumstances and contact the Informix Technical Support
Department regarding this internal error.
Please note all circumstances and contact the Informix Technical Support
Department regarding this internal error.
-23808 The creation of the XMF port for the XTM facility failed.
A nonrecoverable error occurred within the transaction-management
system.
Please note all circumstances and contact the Informix Technical Support
Department regarding this internal error.
The CREATE TABLE statement contains more than one table type.
Check the statement to make sure that only one table type is defined.
-23851 This operation is not allowed on a table where the type is raw or scratch.
You might want to alter the table type to a type that supports the operation.
-23852 This operation is not allowed on a table where the type is static.
The statement issued tries to modify data in the table with an UPDATE,
INSERT, or DELETE statement. Data modification is not allowed on tables of
type STATIC. You might want to alter the type to one of the other types that
support data modification.
An error occurred when OnLine XPS tried to alter the type of the table.
Possibly you tried to alter the table type to RAW when indexes are defined on
the table, or you tried to change a table to STANDARD when an archive has
not been made.
-23854 Indexes and constraints are not allowed on tables of type is raw or scratch.
The CREATE TABLE statement contains indexes or constraints that are not
allowed for RAW or SCRATCH tables. Check your statement to make sure you
do not define these kinds of constraints or indexes on RAW or SCRATCH
tables.
-23855 Express mode loads are not permitted on tables where the type is standard.
An error occurred when OnLine XPS tried to free memory for a shared
dictionary entry. If this internal error recurs, please note all circumstances
and contact the Informix Technical Support Department.
Try separating the ALTER TABLE statement into its own single-statement
transaction.
If this internal error recurs, please note all circumstances and contact the
Informix Technical Support Department.
If this sqlexecd internal error recurs, please note all circumstances and
contact the Informix Technical Support Department.
Check that the server name is 18 characters or less in length. The server name
must start with a letter and must be all lowercase characters. It can include
letters, numbers, and underscores. Beginning with Version 6.0, server names
can start with an underscore.
The database server name that is mentioned in the current command is not
listed in the sqlhosts file. Check the server name for accuracy. Check that all
database servers to be accessed are included in the sqlhosts file.
If this internal error recurs, please note all circumstances and contact the
Informix Technical Support Department.
-25558 The NFS/RFS host host-name is not listed as a dbserver name in sqlhosts.
If this internal error recurs, please note all circumstances and contact the
Informix Technical Support Department.
If this internal error recurs, please note all circumstances and contact the
Informix Technical Support Department.
If this internal error recurs, please note all circumstances and contact the
Informix Technical Support Department.
A system call has failed. See the UNIX system administrator for assistance.
■ The database server cannot allocate system resources for the user
thread at the moment. The client can retry the connection later. When
other clients finish their work, some system resources should
become available again.
■ A user who is not allowed to use a particular client application to
connect to the server tried to use the utility to connect. Client
applications include SQL APIs, DB-Access, and all the database-server
utilities.
Check to see if the user is the right person to execute the utility or the
program. See both the INFORMIX-OnLine Dynamic Server
Administrator’s Guide and the Trusted Facility Manual for information
about who can use what utilities.
■ A request for a GLS structure failed. Refer to the corrective actions for
errors -23100, -23101, -23102, -23104, -23108, and -23110 for possible
solutions.
A system call has failed. See the UNIX system administrator for assistance.
-25574 Network driver cannot open the network device.
A system call has failed. See the UNIX system administrator for assistance.
A system call has failed. See the UNIX system administrator for assistance.
A system call has failed. See the UNIX system administrator for assistance.
A system call has failed. See the UNIX system administrator for assistance.
A system call has failed. See the UNIX system administrator for assistance.
If this internal error recurs, please note all circumstances and contact the
Informix Technical Support Department.
A system call has failed. See the UNIX system administrator for assistance.
This error might indicate that the database server has terminated, or a
problem might exist on the network itself. Check that the network is
functioning and that the server is still running.
The buffer size that is specified in the servicename column is not valid. Check
that the servicename column of your sqlhosts file is correct.
A system call has failed. See the UNIX system administrator for assistance.
A system call has failed. Perform a DISCONNECT, and then check the status
of the server. See your UNIX system administrator for assistance.
An error in the application can produce this message. Check your CONNECT
statement and the sqlhosts file. A system failure can also produce this
message. If you can find no immediate cause for the failure, note the
circumstances and contact your OnLine database administrator for
assistance.
A system call has failed. See the UNIX system administrator for assistance.
-25590 Authentication error.
This error indicates that an invalid user ID or password was used to connect
to the database server. Redefine a valid user ID and password.
This error can also occur if the SCM option is enabled on the database server
side but disabled on the client application side, or vice versa. If you wish to
use a CSM, make sure that the CMD option is set in the sqlhosts file for both
the database server and client application.
The network service that was requested for this connection, such as TCP with
sockets or TCP with TLI, is not available on the desired system or the specified
database server. Use a supported network service; verify that the nettype
field is correctly specified for the desired database server in the
$INFORMIXDIR/etc/sqlhosts file. If the network service is available on the
system but not on the database server, ask your DBA to turn on the service
when the DBA initializes the database server.
-25594 Shared Memory client failed to alert OnLine server for service.
An error occurred when you tried to connect to the desired database server.
If you are using INFORMIX-OnLine Dynamic Server, verify that the database
server is still on-line. If you are using the INFORMIX-SE database server,
verify that the sqlexecd daemon for the database server is still running. Also,
verify that the $INFORMIXDIR/etc/sqlhosts file entry for the database server
is correct.
-25596 The INFORMIXSERVER value is not listed in the sqlhosts file or the Registry.
If this internal error recurs, please note all circumstances and contact the
Informix Technical Support Department.
-25600 The relay module cannot get environment variable SQLRM. System error
error-number.
Check with your system administrator for problems with the system.
-25601 This relay module cannot execute relay module module-name for another
protocol.
-25602 The local database server server-name cannot be forked by the relay module.
System error number.
Check with your system administrator for problems with the system.
-25603 Attempt to prepare more than one statement before connecting to a database.
Check your application to make sure that you prepare only one of the
CREATE DATABASE, START DATABASE, or DROP DATABASE statements
before you connect to a database.
-25604 The database name syntax conflicts with the options in the statement.
Check your application to make sure that your database syntax uses the
correct options accordingly in the statements.
-25605 SQLEXEC must be set to create a local database using the relay module.
Check that you have set the SQLEXEC environment variable to the local
INFORMIX-SE database server (for database servers prior to Version 6.0).
-25606 Unknown product identification string in the database server on the local
machine.
Check that you have installed either the INFORMIX-SE database server or
INFORMIX-OnLine Dynamic Server.
You issued an SQL statement that requires an open database, but you did not
select a database. Select the desired database, and retry the statement.
-25701 You do not have permission to access the specified host table.
You do not have permission to access the specified host table. Either your
Answer/Extractor profile name is incorrect, or your host-table glossary is out
of date. Check that your Answer/DB Profile Name parameter on the SETUP
screen is correct. If it is correct, refresh your host-table glossary.
The glossary database has not been created yet. Select the Refresh option
from the HOST-TABLE Menu. The database will be created automatically.
-25705 Host table table-name is not in your glossary.
The host table that you specified is not listed in your glossary. One of the
following causes might apply:
Check the spelling of the host-table name and your Answer/DB Profile Name
parameter on the SETUP screen. Consult your Answer/Extractor DBA to verify
that you have permission to access the specified table. Refresh your
host-table glossary, if needed.
Verify that the Answer/DB Profile Name parameter on the SETUP screen is
correct. Refresh your host-table glossary, if needed.
You are using the INFORMIX-SE database server. Data Extract does not
support the INFORMIX-SE database server. Exit Data Extract. Change the
SQLEXEC environment variable to indicate sqlturbo, and set the TBCONFIG
environment variable, if needed. Restart DataExtract.
-25714 Host Process Timeout limit has expired while waiting for host data.
You are running an EXTRACT statement or are refreshing your host glossary.
The time limit set in the Host Process Timeout parameter expired while
DataExtract was waiting for the host to return the selected data. One of the
following causes might apply:
■ The timeout limit is too short.
■ The Answer/Extractor batch processor did not run within the
specified time limit.
■ The host is very busy.
■ Host communication is unavailable or is interrupted.
Verify that the host communication is operational. Increase the Host Process
Timeout parameter in the SETUP screen. Rerun the EXTRACT statement, or
choose the Refresh option on the HOST-TABLE menu to refresh the glossary.
If the error occurs while you are running an EXTRACT statement, consult your
Answer/Extractor DBA to check the schedule of the batch processor that
processes the selected host table. Adjust the Host Process Timeout parameter
according to the schedule, or rerun the EXTRACT statement at another time.
-25719 Number of host fields does not match number of target columns.
When host data is extracted into a table, the number of listed host fields is not
the same as the number of listed target-table columns. Check the EXTRACT
statement to ensure that the number of host fields that you listed is the same
as the number of target-table columns.
-25720 Host data field field-name may overflow in target column column-name.
The defined length of the specified host field is longer than the defined length
of the specified Informix table column in which data is to be retrieved. Check
the defined length of the host field in the glossary. Redefine the length of the
target column, and rerun the EXTRACT statement.
An extract of host data into a column that is defined as a BLOB was attempted.
Redefine the column to a supported data type, or modify the EXTRACT
statement to use a different column that is not a BLOB. Rerun the EXTRACT
statement.
The host field to retrieve is listed as having a data type other than character
or numeric. The glossary database is incorrect. Refresh the glossary, and
rerun the EXTRACT statement.
The status of the Answer/Extractor SELECT clause that was submitted to the
host is being checked. The status of the SELECT clause is not available at this
time. Resubmit your request.
This message indicates an internal error. Exit DataExtract, and retry the
option.
DataExtract cannot initialize the field descriptor for Answer/API. See the
accompanying API error message for more information.
DataExtract cannot initialize the cursor descriptor for Answer/API. See the
accompanying API error message for more information.
This message indicates an internal error. Exit DataExtract, and retry the
option.
This message indicates an internal error. Exit DataExtract, and retry the
option.
This message indicates an internal error. Exit DataExtract, and retry the
option.
This message indicates an internal error. Exit DataExtract, and retry the
option.
The SELECT clause in the current EXTRACT statement is invalid. See the
accompanying API error message for more information.
See the accompanying API error message for more information on this
internal error.
DataExtract encountered an error while it was retrieving data from the host.
See the accompanying API error message for more information.
-25748 Cannot terminate access to host data.
DataExtract cannot successfully terminate access to the results for the current
EXTRACT statement. See the accompanying API error message for more
information.
DataExtract cannot purge the data on the host. DataExtract purges host data
after it finishes retrieving the results for the current EXTRACT statement, after
it encounters an error while it is retrieving the data, or after the user cancels
the job. See the accompanying API error message for more information.
DataExtract cannot retrieve the status of the current SELECT clause that has
been submitted to the host. See the accompanying API error message for more
information.
DataExtract cannot cancel the current SELECT clause that has been submitted
to the host. See the accompanying API error message for more information.
DataExtract cannot write to the host configuration file, config.txt. The file is
in the path that the ANSAPI environment variable specifies, or in the current
directory if ANSAPI is not set. Either the file or path does not have the correct
permissions, or not enough disk space is available. Verify that the file and
path have the correct permissions and that sufficient disk space is available.
DataExtract cannot read the host configuration file, config.txt. The file is in
the path that the ANSAPI environment variable specifies, or in the current
directory if ANSAPI is not set. Verify that the file and path have the correct
permissions.
DataExtract cannot read the local configuration file, openview.cfg. The file is
in the path that the ANSAPI environment variable specifies, or in the current
directory if ANSAPI is not set. Verify that the file and path have the correct
permissions.
The value that you entered in the Host Environment parameter on the SETUP
screen is not valid or is not supported. Change the value to one of the
following: CICS, CMS, IMS, TSO.
-25763 CICS Termination Code parameter is required for the CICS host environment.
The lock time that you entered is invalid. Change the lock time to a number
from 1 to 300.
The stable time that you entered is invalid. Change the stable time to a
number from 2 to 18.
The Connect Script parameter on the SETUP screen is blank. Enter the
filename of a valid connect script. You can use the Scripter utility to create a
valid connect script if it does not exist.
The specified connect script file does not exist or does not have the correct
permissions. Check the spelling of the filename. Check that the file exists in
the path that the ANSAPI environment variable specifies, or in the current
directory if ANSAPI is not set.
The Disconnect Script parameter on the SETUP screen is blank. Enter the
filename of a valid disconnect script. Use the Scripter utility to create a valid
script if it does not exist.
The specified disconnect script file does not exist or does not have the correct
permissions. Check the spelling of the filename. Check that the file exists in
the path that the ANSAPI environment variable specifies, or in the current
directory if ANSAPI is not set.
-25773 The Host Process Timeout parameter must be from 1 to 1440 minutes.
The specified processing timeout limit is incorrect. Change the Host Process
Timeout parameter to a number from 1 to 1,440.
The specified value is incorrect. Change the value to within the accepted
range.
The specified value is incorrect. Change the value to within the accepted
range.
The specified value is incorrect. Change the value to within the accepted
range.
You answered a prompt with a letter other than Y or N. Change your answer
to Y or N.
While DataExtract is extracting host data into a file, it cannot write to the
specified file. Verify that enough disk space is available and that the file has
the correct permissions.
While extracting host data into a file, DataExtract cannot open the specified
output file. If the file already exists, check that the file has the correct
permissions.
The current EXTRACT statement is missing the host-table name or the entire
FROM clause. Correct and rerun the EXTRACT statement.
-25782 Warning: Incomplete results have been returned from the host.
The data that you selected probably exceeded the disk space that is available
to you on the host. The results that were retrieved from the host are
incomplete. Take one or more of the following actions:
This message indicates an internal error. Exit DataExtract, and retry the
option.
The Answer/Extractor message file, message.txt, does not have the correct
permissions or is corrupted. Verify that the file has the correct permissions.
The file should be in the directory that the ANSAPI environment variable
specifies, or in the current directory if ANSAPI is not set. If the file is corrupt,
recopy the file from $INFORMIXDIR/etc.
The host configuration file, config.txt, cannot be found. Use the Setup option
on the DataExtract Main Menu to access the SETUP screen and create the
configuration file.
This message indicates an internal error. Exit DataExtract, and retry the
option.
The host configuration file, config.txt, is incorrect or corrupt. Use the Setup
option on the DataExtract Main Menu to access the SETUP screen and
re-create the configuration file.
The host configuration file, config.txt, is incorrect or corrupt. Use the Setup
option on the DataExtract Main Menu to access the SETUP screen and
re-create the configuration file.
The host configuration file, config.txt, does not have the correct permissions
or is corrupt. Verify that the file has the correct permissions. Check that the
file is in the directory that the ANSAPI environment variable specifies, or in
the current directory if ANSAPI is not set. If the file is corrupt, use the Setup
option on the DataExtract Main Menu to access the SETUP screen and
re-create the configuration file.
This message indicates an internal error. Exit DataExtract, and retry the
option.
The hardware that is required for communicating to the host computer is not
installed or is not functioning properly. Verify that the communications
board is installed and configured properly.
Verify that the emulation software is available. If it is, change the Host
Session parameter on the SETUP screen to a different host session. Change
any configuration file that your emulation software requires accordingly.
The host-session name that is specified in the Host Session parameter on the
SETUP screen is invalid. Correct the host-session name. Change any
configuration file that your communications software requires accordingly.
The Keyboard Inhibit signal on the host session did not clear within the
timeout period set in the Lock Time parameter. This situation might have
occurred for the following reasons:
■ The time that the Lock Time parameter specifies is too short.
■ The host session went down.
■ The host session is very slow.
Exit DataExtract. Use your 3270 emulator software (for example, te3278) to
verify that the host session is available. If the host session is available,
manually exit the session to the starting point that your connect script
specifies. Restart DataExtract. If the host session is very slow, increase the
Lock Time parameter.
This message indicates an internal error. Exit DataExtract, and retry the
option.
The connect or disconnect script is invalid. Use the Scripter utility to re-create
your connect or disconnect script. Check that the scripts are in the directory
that the ANSAPI environment variable specifies.
The password for the connect or disconnect script is incorrect. Verify your
connect or disconnect script password on the SETUP screen.
Your 3270 emulator session is not at the terminal session screen that the
connect script expects. Exit DataExtract, and confirm that your connect script
is correct. Use the 3270 emulator software to make sure that it is at the screen
that the connect script expects.
Your 3270 emulator session is not at the terminal session screen that the
connect script expects. Exit DataExtract and confirm that your connect script
is correct. Use the 3270 emulator software to check that it is at the screen that
the connect script expects.
-26238 API error: Lock Time limit expired while waiting for host response.
The host did not respond within the time limit that is set in the Lock Time
parameter in the SETUP screen. The host is either not available at the moment
or is busy. Use the Setup option on the Main Menu to access the SETUP
screen. If the error recurs, resubmit your request.
Your 3270 emulator session is not at the terminal session that the connect
script expects. Exit DataExtract, and confirm that your connect script is
correct. Use the 3270 emulator software to check that it is at the terminal that
the connect script expects.
Your 3270 emulator session is not at the terminal session that the connect
script expects. Exit DataExtract, and confirm that your connect script is
correct. Use the 3270 emulator software to check that it is at the terminal that
the connect script expects.
The connect or disconnect script cannot be opened. Verify that the connect or
disconnect script file has the correct permissions.
This message indicates an internal error. Exit DataExtract, and retry the
option.
This message indicates an internal error. Exit DataExtract, and retry the
option.
This message indicates an internal error. Exit DataExtract, and retry the
option.
This message indicates an internal error. Exit DataExtract, and retry the
option.
This message indicates an internal error. Exit DataExtract, and retry the
option.
This message indicates an internal error. Exit DataExtract, and retry the
option.
This message indicates an internal error. Exit DataExtract, and retry the
option.
This message indicates an internal error. Exit DataExtract, and retry the
option.
This message indicates an internal error. Exit DataExtract, and retry the
option.
This message indicates an internal error. Exit DataExtract, and retry the
option.
The SELECT clause in the current EXTRACT statement is missing the FROM
clause. Correct and rerun the EXTRACT statement.
The SELECT clause in the current EXTRACT statement is invalid. Correct the
EXTRACT statement, and rerun it.
The SELECT clause in the current EXTRACT statement has an invalid FROM
reference. Correct and rerun the EXTRACT statement.
The function that is referenced in the SELECT clause in the current EXTRACT
statement is invalid. Correct and rerun the EXTRACT statement.
Some of the fields that are specified in the ORDER BY clause in the EXTRACT
Statement have not been selected. Modify the SELECT clause to select the
fields, and rerun the EXTRACT statement.
This message indicates an internal error. Exit DataExtract, and retry the
option.
This message indicates an internal error. Exit DataExtract, and retry the
option.
This message indicates an internal error. Exit DataExtract, and retry the
option.
The value that is set in the Class parameter is invalid. Consult your
Answer/Extractor DBA to determine the valid class numbers. Correct the
class number on the SETUP screen, and rerun the EXTRACT statement.
-26274 API error: Invalid item count.
The value that is set in the Max Records to Process parameter is invalid.
Correct the parameter on the SETUP screen, and rerun the EXTRACT
statement.
The value that is set in the Max Records to Retrieve parameter is invalid.
Correct the parameter on the SETUP screen, and rerun the EXTRACT
statement.
This message indicates an internal error. Exit DataExtract, and retry the
option.
The host table that the current EXTRACT statement specifies does not exist,
although it is listed in your glossary. The host-table glossary is probably out
of date. Refresh the entire host-table glossary.
One of the host fields that the current EXTRACT statement specifies does not
exist on the host, although it is listed in your host-table glossary. Your
host-table glossary is probably out of date. Refresh the host-table information
for the problem host table.
The CICS paging code is missing. Use the SETUP screen to set the CICS Paging
Code parameter.
This message indicates an internal error. Exit DataExtract, and retry the
option.
This message indicates an internal error. Exit DataExtract, and retry the
option.
This message indicates an internal error. Exit DataExtract, and retry the
option.
The result for the SELECT clause of the current EXTRACT statement is not
available at the host. Rerun the EXTRACT statement.
This message indicates an internal error. Exit DataExtract, and retry the
option.
The host fields in the ORDER BY clause in the current EXTRACT statement are
duplicated. Correct and rerun the EXTRACT statement.
The host fields in the GROUP BY clause in the current EXTRACT statement are
duplicated. Correct and rerun the EXTRACT statement.
The expression in the SELECT clause in the current EXTRACT statement is too
long. Correct and rerun the EXTRACT statement.
The SELECT clause in the current EXTRACT statement requires at least one
host-field name. Correct and rerun the EXTRACT statement.
The SELECT clause in the current EXTRACT statement contains extra text.
Correct and rerun the EXTRACT statement.
This message indicates an internal error. Exit DataExtract, and retry the
option.
-26299 API error: Must select at least one field or function value.
The SELECT clause of the current EXTRACT statement does not contain any
host field or function value references. Correct and rerun the EXTRACT
statement.
The SELECT clause of the current EXTRACT statement contains the keyword
DISTINCT, which is not supported. Correct and rerun the EXTRACT
statement.
The ALL keyword is misused in the SELECT clause of the current EXTRACT
statement. Correct and rerun the EXTRACT statement.
This message indicates an internal error. Exit DataExtract, and retry the
option.
This message indicates an internal error. Exit DataExtract, and retry the
option.
This message indicates an internal error. Exit DataExtract, and retry the
option.
This message indicates an internal error. Exit DataExtract, and retry the
option.
This message indicates an internal error. Exit DataExtract, and retry the
option.
This message indicates an internal error. Exit DataExtract, and retry the
option.
This message indicates an internal error. Exit DataExtract, and retry the
option.
This message indicates an internal error. Exit DataExtract, and retry the
option.
This message indicates an internal error. Exit DataExtract, and retry the
option.
This message indicates an internal error. Exit DataExtract, and retry the
option.
This message indicates an internal error. Exit DataExtract, and retry the
option.
No host sessions are available at the moment. Resubmit your request. Check
that the prior session or previously started processes have been terminated.
The driver scan code file, driver.dsc, cannot be found. Verify that the
driver.dsc file exists in the path that the ANSAPI environment variable
specifies, or in the current directory if ANSAPI is not set. Copy the file from
$INFORMIXDIR/etc, if necessary.
The message file, message.txt, is invalid or corrupt. Recopy the message file
from $INFORMIXDIR/etc to the path that the ANSAPI environment variable
specifies, or to the current directory if ANSAPI is not set.
This message indicates an internal error. Exit DataExtract, and retry the
option.
This message indicates an internal error. Exit DataExtract, and retry the
option.
The message.txt or config.txt files cannot be found. Confirm that they exist.
The entry in the message.txt file, config.txt file, or parameter string is invalid.
Correct the error.
The Stable Time parameter is missing from the host configuration file. Use
the SETUP screen to set the Stable Time parameter.
The Lock Time parameter is missing from the host configuration file. Use the
SETUP screen to set the Lock Time parameter.
The Host Environment parameter is missing from the host configuration file.
Use the SETUP screen to set the Host Environment parameter.
The CICS Paging Code parameter is missing from the host configuration file.
Use the SETUP screen to set the CICS Paging Code parameter. Consult your
Answer/Extractor DBA to determine the CICS paging code.
The CICS Termination Code parameter is missing from the host configuration
file. Use the SETUP screen to set the CICS Termination Code parameter.
Consult your Answer/Extractor DBA to determine the CICS termination code.
This message indicates an internal error. Exit DataExtract, and retry the
option.
This message indicates an internal error. Exit DataExtract, and retry the
option.
This message indicates an internal error. Exit DataExtract, and retry the
option.
This message indicates an internal error. Exit DataExtract, and retry the
option.
This message indicates an internal error. Exit DataExtract, and retry the
option.
This message indicates an internal error. Either the host table does not
contain the field that the SELECT clause lists, or the table does not contain any
fields.
The value set in the Class parameter is out of range. Use the SETUP screen to
correct the Class parameter.
The value in the Max Records to Process parameter or the Max Records to
Retrieve parameter is out of range. Use the SETUP screen to correct the
parameter.
This message indicates an internal error. Exit DataExtract, and retry the
option.
This message indicates an internal error. Exit DataExtract, and retry the
option.
The result data that is selected by the SELECT clause in the current EXTRACT
statement exceeds the allowed size on the host. Modify the EXTRACT
statement to select less data. Rerun the EXTRACT statement.
This message indicates an internal error. Exit DataExtract, and retry the
option.
This message indicates an internal error. Exit DataExtract, and retry the
option.
The connect or disconnect script file cannot be read. Verify that the connect
or disconnect script file has the correct permissions. Use the Scripter utility to
re-create it, if necessary.
An application cannot use the CONNECT statement to make more than one
connection that uses shared-memory communication (IPC).
This error can occur on either the client or database server side.
When you encounter this error on the client side, it indicates that a network
I/O error occurred when the client tried to connect to a database server.
Probably the connection attempt timed out because the database server or the
network was very busy, too many clients were attempting to connect to the
database server simultaneously, or the database server was taken off-line
during the connection attempt.
If you are using INFORMIX-OnLine Dynamic Server, verify that the database
server is still on-line. If you are using the INFORMIX-SE database server, verify
that the sqlexecd daemon for the database server is still running. Use the
environment variables INFORMIXCONTIME and/or INFORMIXCONRETRY
on the client side to increase the connection time and number of retry
attempts.
When you encounter this error on the database server side, it is a warning
that a network I/O error is detected while the database server is accepting a
connection request from a client. This error usually occurs when the database
server or the network is very busy or when too many clients are trying to
connect to the database server at once. The database server might be taking
so long to respond to a client that the client's connection request timed out
before the connection is complete. Or possibly a client terminated its
connection attempt before the connection is completely established.
If this error is seen only occasionally in the server message log, it is just a
warning. No corrective action is required on the server side.
You specified an invalid option or parameter in your sqlhosts file. Check the
option ID and parameter associated with servername in the sqlhosts file.
-27005 Illegal sqlexecd daemon option, option_value.
An internal Informix network error has occurred in the TLITCP poll thread.
Please note all circumstances and contact Informix Technical Support.
If this internal error recurs, please note all circumstances and contact the
Informix Technical Support Department.
If this internal error recurs, please note all circumstances and contact the
Informix Technical Support Department.
-27154 Internal error: invalid ASF_TIMEOUT semantics; same input buffer expected.
If this internal error recurs, please note all circumstances and contact the
Informix Technical Support Department.
If this internal error recurs, please note all circumstances and contact the
Informix Technical Support Department.
If this internal error recurs, please note all circumstances and contact the
Informix Technical Support Department.
If this internal error recurs, please note all circumstances and contact the
Informix Technical Support Department.
Check the spelling of the user-supplied real-RDB-name. Ensure that the user
supplied alias-RDB-name is the correct one. Check the real-RDB-name column
(the servicename field) in the sqlhosts file for the alias-RDB-name entry, and
check that it is spelled correctly.
Examine the sqlhosts file on the Gateway computer. Identify the entry with
the alias-RDB-name to which the application is referring. Ensure that the
servicename field contains a correct value.
A DRDA protocol error prevents the successful execution of the current SQL
statement. This error will not affect the successful execution of subsequent
SQL statements.
The hexadecimal codepoint is the 2-byte hexadecimal codepoint for the DDM
reply message that represents the error and is one of the following:
■ X'220A' -- DSCINVRM
■ X'124C' -- SYNTAXRM
■ X'1245' -- PRCCNVRM
■ X'1254' -- CMDCHKRM
■ X'220E' -- DTAMCHRM
■ X'2202' -- QRYNOPRM
■ X'220F' -- QRYPOPRM
■ X'2207' -- RDBACCRM
■ X'2204' -- RDBNACRM
When nonzero, the high-order byte of the sub-code indicates the site at which
the error was detected. If the AR detects the error, it is X'01. If the application
server detects the error, it is X'02'. The lower-order byte is as follows:
Contact the DBA for assistance in analyzing the SQL statement that yielded
this SQLCODE. If the error recurs, please note all circumstances and contact
the Informix Technical Support Department.
The hexadecimal codepoint is the 2-byte hexadecimal codepoint for the DDM
reply message that represents the error and is one of the following:
■ X'220A' -- DSCINVRM
■ X'124C' -- SYNTAXRM
■ X'1245' -- PRCCNVRM
■ X'1218' -- MGRDEPRM
■ X'1232' -- AGNPRMRM
■ X'1254' -- CMDCHKRM
■ X'220E' -- DTAMCHRM
■ X'2202' -- QRYNOPRM
■ X'220F' -- QRYPOPRM
■ X'2207' -- RDBACCRM
■ X'2204' -- RDBNACRM
A 2-byte hexadecimal sub-code is accompanied with the first four reason
codes (DSCINVRM, SYNTAXRM, PRCCNVRM, and MGRDEPRM). In all other
cases, the sub-code is zero.
When nonzero, the high-order byte of the sub-code indicates the site at which
the error was detected. If the AR detects the error, it is X'01. If the application
server detects the error, it is X'02'. The lower-order byte is as follows:
The application server cannot support a DRDA manager level that the AR that
was requested during the DRDA connection process.
The user is not authorized to access the target RDB. The request is rejected.
Contact the DBA of the RDB side if necessary. Correct the authorization
problem, and rerun the application program.
Attempt to rerun the application. If the problem persists, notify the DBA for
assistance in analyzing the SQL statement that yields this SQLCODE. If the
error recurs, please note all circumstances and contact the Informix Technical
Support Department.
The hexadecimal codepoints of the DDM parameter and the parameter value
in question are returned as a token in SQLERRM.
Attempt to rerun the application. If the problem persists, notify the DBA for
assistance in analyzing the SQL statement that yields this SQLCODE. If the
error recurs, please note all circumstances and contact the Informix Technical
Support Department.
The hexadecimal codepoint for the received DDM reply message is returned
as a token in the SQLERRM.
Attempt to rerun the application. If the problem persists, notify the DBA for
assistance in analyzing the SQL statement that yields this SQLCODE. If the
error recurs, please note all circumstances and contact the Informix Technical
Support Department.
The native SNA service return code is a return code generated by the local
SNA service that provides the SNA support on each particular platform. Refer
to the manufacturer's documentation for the SNA support that provides the
underlying communication service for an explanation of this return code.
Ensure that the native SNA/APPC service is installed correctly. Check that all
the required SNA daemon processes (if any) are running. Also check that the
connection file for the target RDB is set up correctly. In a Sun environment, also
check that the Sun APPC Gateway is set up correctly.
The resource is not available at the remote RDB. The current SQL statement is
terminated.
Verify the identity of the resource that was not available. Ensure that the
application server has the needed resource.
Verify the identity of the resource that was not available. Ensure that the
application server has the resource needed. Rerun the application.
This message indicates a Gateway internal logic error. The DDM command in
question is returned as a token in SQLERRM.
Applications from end users should not go into bind mode. The only time a
package bind should occur is the package-bind process in the gwdba utility.
Rerun the application. If the error recurs, please note all circumstances and
contact the Informix Technical Support Department.
This message indicates a Gateway internal logic error. Try the application
again. If the error recurs, please note all circumstances and contact the
Informix Technical Support Department.
The application server does not support the DDM command. This error
causes termination of processing of the command. The application is also
disconnected from the application server.
The SQLERRM contains the hex codepoint of the DDM command in question.
Rerun the application. If the problem persists, notify the DBA for assistance
in analyzing the SQL statement that yielded this SQLCODE. If the error recurs,
please note all circumstance, and contact the Informix Technical Support
Department.
The application server does not support the DDM object. The processing of
the current SQL statement is terminated. The application is disconnected
from the application server.
The SQLERRM contains the hex DDM codepoint of the object type in question.
Attempt to run the application again. If the problem persists, notify the DBA
for assistance in analyzing the SQL statement that yielded this SQLCODE. If
the error recurs, please note all circumstances and contact the Informix
Technical Support Department.
The Gateway product does not support this feature. (For example, it does not
support Informix-specific SQL statements or Informix-specific data types.)
The feature that is not supported is returned as a token in SQLERRM.
Correct the application, and do not use any feature that the Gateway cannot
support on SQL statements that will go through the Gateway during
execution.
The Add-table and Purge-table options of the gwdba utility for adding and
purging tables and views from the Informix catalog on an application server
require a file of table and view names as input. The listed table or view name
(objname) has an invalid format. The format of table and view names in the
file must be in the following format:
owner.tabname
Notify the administrator of the Gateway. The administrator must set the
GWASCCSID environment variable to match the single-byte CCSID of the
application server. If network mode is being used, the Gateway
administrator must stop and restart the Gateway daemon after setting the
GWASCCSID environment variable. The Gateway administrator must then
connect to the application server using either a CONNECT statement or a
DATABASE statement. This connection captures all the CCSIDs in the cache
file $INFORMIXDIR/gw/sysinfo/prnccsid.dat.
-29033 Informix GLS locale could not be loaded: localename, errno, locale-file-name.
localename The name of the Informix GLS locale that could not be
loaded. The value for localename must be of the format
language_territory.codeset.
errno A number that indicates the specific reason that the Informix
GLS locale could not be loaded.
locale-file-name The subdirectory and filename (for example,
/en_US/0333.lco) of the Informix GLS locale file that could
not be loaded.
language A two-letter lowercase abbreviation for the language name.
territory A two-letter uppercase abbreviation for the territory name.
codeset The name of the character code set for the locale.
Valid values for the codeset field are registered in the
$INFORMIXDIR/gls/cm/REGISTRY file. The values are
character strings that describe the code set. However, if a
codeset field value is an integer in the range from 1 to 65,535,
it is an acceptable value even if it is not in the REGISTRY file.
An attempt to load the Informix GLS locale that localename specified failed for
the reason that errno indicates, as follows:
Any other errno: Contact your Informix product supplier for assistance.
■ If cftype is "too long," the length of the output string was longer than
the internal buffers that are allocated to hold the output string. If the
objtype is "output," the output value was longer than the maximum
length of a CHAR data type.
For this failure type, shorten the input character data that is being
converted.
The received data type is not compatible with or supported by the Gateway.
(For INFORMIX-Gateway with DRDA, the application requestor does not
support the data type that was received from the application server.)
Some examples of unsupported data types are 1-byte integer and 16-byte
float. Informix does not support these data types.
Do not retrieve data from the columns that have data types that the Gateway
cannot support.
-29036 Character codeset conversion file not found from, to, filename: from_cs_num,
to_cs_num, filename.
filename The filename of the code-set conversion file that could not be
found.
from_cs_num The code-set number for the source code set.
to_cs_num The code-set number for the target code set.
A code-set conversion table to convert from the code set that from_cs_num
identifies to the code set that to_cs_num identifies was not found. Consult
your Informix product documentation to find descriptions for the code sets
that these code-set numbers identify.
If the appropriate directory (see next paragraph) does not contain the
code-set conversion file named filename, this code-set conversion cannot be
performed. Check your Informix product documentation to make sure that
the code sets that the client and server products use have been specified
correctly (using environment variables or other mechanisms that are
described in the documentation). Perhaps the code-set numbers have been
incorrectly specified or are equivalent to other code-set numbers that are
supported.
If the code-set conversion table exists, verify that your product was installed
correctly so that the conversion table file can be located. Specifically, ensure
that the GL_PATH environment variable is set or not set according to the
installation instructions.
■ If GL_PATH is not set, verify that the conversion table file is in the
$INFORMIXDIR/gls/cv directory.
■ If GL_PATH is set, verify that the conversion table file is in one of the
directories that the GL_PATH environment variable specifies.
If the code-set conversion table does not exist, contact your Informix software
distributor for assistance in determining what code-set conversion tables are
required for your configuration. If the required code-set conversion tables are
available, place the tables in the appropriate directory.
-29037 There is no CCSID or GLS locale set for the FE OS locale localename.
Notify the Gateway administrator. The administrator can add an entry for
the locale using the gwdba utility.
Modify the application so that it does not include more than one SQL
statement in a PREPARE or EXECUTE IMMEDIATE statement.
The Gateway does not support and cannot translate one or more characters
in the MATCHES condition of your SQL statement. Try to rewrite the
statement to use LIKE instead of MATCHES condition syntax or to not include
MATCHES wildcard characters such as [ ] and ? or *. Check also that you did
not try to include a non-CHAR or VARCHAR column with MATCHES in the
WHERE clause.
-29042 Package info for RDB rdbname not found. Use gwdba to bind.
The Gateway package information for the target RDB is not found. It appears
that the necessary Gateway packages on the RDB have not been bound yet.
The real_RDB_name of the target RDB is returned as a token in SQLERRM.
The end user should contact the DBA. If desirable, the DBA can use the gwdba
utility to bind the needed Gateway packages on the target RDB.
-29043 No more section-type sections left. Rebind Gateway packages with more
sections.
All the available sections in the current package at the application server have
been used up. The current SQL statement is terminated.
Notify the DBA. The DBA can rebind the Gateway packages with more
sections on the target RDB using the gwdba utility.
An internal logic error has been encountered. Rerun the application. If the
error recurs, please note all circumstances and contact the Informix Technical
Support Department.
An internal logic error has been encountered. This error will cause
deallocation of conversation.
Rerun the application. If the error recurs, please note all circumstances and
contact the Informix Technical Support Department.
The send buffer that the Informix connectivity network module allocated is
less than the minimum DRDA required size, which is 512 bytes, or more than
the maximum size, which is 32,767 bytes.
Check the sqlhosts file on the Gateway machine. If the send buffer size is
configurable through the sqlhosts file, make sure that the send buffer size is
configured to be from 512 bytes to 32,767 bytes, inclusive.
An ISAM error occurred while reading data from a Gateway ISAM setup file
that the Gateway xxxdba utility manages. The name of the ISAM setup file in
question and the ISAM error number are returned in SQLERRM.
If the Gateway was spawned by way of IPC-pipe mode, you must ensure that
the INFORMIXDIR environment variable was set correctly before the
application starts. Otherwise, notify the DBA:
■ The DBA for INFORMIX-Enterprise Gateway must ensure that the
$INFORMIXDIR/egw/sysinfo directory exists with the proper
permissions and that the ISAM setup files are present in that
directory. If an INFORMIX-Enterprise Gateway setup file is missing or
corrupted, run egwdba to create it, or run the bcheckegw utility to
repair it.
If INFORMIX-Enterprise Gateway was spawned by way of network
mode (that is, by the daemon egwd), the DBA also must ensure that
the INFORMIXDIR environment variable was set correctly in the root
login when the egwd daemon was started.
■ The DBA for INFORMIX-Gateway with DRDA must ensure that the
$INFORMIXDIR/gw/sysinfo directory exists with the proper
permissions and the ISAM setup files are present in that directory. If
a Gateway setup file is missing or corrupted, run gwdba to create it,
or run the bcheckgw utility to repair it.
If the Gateway was spawned by way of network mode (that is, by the
daemon gwd), the INFORMIX-Gateway with DRDA DBA also must
ensure that the INFORMIXDIR environment variable was set
correctly in the root login when the gwd daemon was started.
If you are using IPC-pipe mode to start the Gateway process, you should
ensure that the INFORMIXDIR environment variable was set correctly before
the application starts:
■ For INFORMIX-Gateway with DRDA:
An error occurred while locating or opening a Gateway ISAM setup
file that the gwdba utility manages. The name of the ISAM setup file
that is causing the error is returned in SQLERRM.
If you are using network connections, the INFORMIX-Gateway with
DRDA database administrator must ensure that the named file exists
in the $INFORMIXDIR/gw/sysinfo directory. If the file is missing,
run gwdba to create it. The DBA also must ensure that the
INFORMIXDIR environment variable was set correctly at the time that
the gwd daemon was started.
■ For INFORMIX-Enterprise Gateway:
An error occurred while locating or opening an
INFORMIX-Enterprise Gateway ISAM setup file that the egwdba
utility manages. The name of the ISAM setup file that is causing the
error is returned in SQLERRM.
If you are using network connections, the INFORMIX-Enterprise
Gateway DBA must ensure that the named file exists in the
$INFORMIXDIR/egw/sysinfo directory. If the file is missing, run
egwdba to create it. The DBA also must ensure that the
INFORMIXDIR environment variable was set correctly at the time
that the egwd daemon was started.
-29050 Error accessing schema information
(Orig-Msg[Sub=Sub-code,Ifx=Orig-code,Obj=Object-name])
Several errors that might occur during catalog access can cause this message.
Orig-code is the error code for the underlying error, and Orig-Msg is the
message token that is associated with that error code. Sub-code is an Informix
internal code in hexadecimal that indicates which catalog access query failed
and in which stage of query processing it failed. This diagnostic information
field is meant for the Informix Technical Support Department.
This Gateway does not support two-phase commit. If any remote server that
the Gateway accesses is an update site in a transaction, that site must be the
only update site in the transaction. All other sites, including OnLine sites,
must be read only. Change the application to update only one remote site per
transaction. (However, if the sites in a transaction are all read only, any
number of OnLine sites can be updated in the same transaction).
This error message applies only when the OnLine database server that
coordinates the transaction is either earlier than Version 7.2 or is Version 7.2
or later and the HETERO_COMMIT configuration parameter is not set.
-29052 Gateway cannot access the remote data source named data-source-name.
The token data-source-name has been used in a four-part object name. For
example:
data-source-name@gwservername:own1.tab1
In addition, the gwservername in the previous example has been used earlier
in your application in association with a different data-source-name. For
example, it might have been used with data-source-name2:
data-source-name2@gwservername:own2.tab2
Any distributed query that references an OS/400 object must specify the
OS/400 collection or library to which the object belongs. The collection or
library name should be specified in the owner field of the complete object
name database@dbservername:owner.object. The collection or library name
is required to get catalog information for the specified Object in a given
collection or library.
In a distributed query, the Gateway does not allow data definition statements
and the data access statements GRANT and REVOKE on remote objects (such
as objects at DRDA application server sites). Applications can use these
statements only when they use the Gateway in direct mode.
The error-message-info field contains the sqlcode of the original error and an
optional error messages string if the error originated at the target data source.
The format of this message string is documented in the appropriate Gateway
user manual. If the error-message-info field is empty, the savepoint rollback is
the result of a processing error at the coordinating OnLine.
The Gateway does not support access to DB2 remote aliases in distributed
queries. A remote alias is defined for an object that is not on the same server
where the alias is defined.
The SQL statement failed because of an EDA error. EDA_Error describes the
EDA error that the EDA client or server returned.
The EDA client or server has prompted the Gateway to respond to a message.
For example, an EDA Remote Procedure might prompt the user for input. The
Gateway does not support EDA operations that require responses to prompt
messages.
The description of the output data for the query that was returned at prepare
time is different than the description that was returned at execute time. The
description of the output data that was returned at prepare time is derived
from the cataloged information about the objects (for example, tables or
remote procedures) in the query. This error usually occurs because the
cataloged information about the object is out of date.
If the object is not cataloged, or if it has changed since it was last cataloged,
the object must be cataloged (or recataloged) with the EDASAF or EDA/SQL
Metadata Manager tools. If Informix-style system catalog tables are being
used at the EDA/SQL Server, and the object is a table and not a remote
procedure, the Informix-style system catalog tables also must be
repopulated, with the egwdba utility, after the EDA system catalog tables
have been updated with EDASAF or the EDA/SQL Metadata Manager.
The output EDA data type that the Gateway received is an unknown EDA
type. The Gateway might receive an unknown data type if it is connected to
an EDA/SQL Server at a release level that the Gateway does is not support. If
the Gateway does support this release level, this message indicates an
internal error either for the EDA products that are being used or for the
Gateway.
The .netrc file contains an entry that maps from the current user ID (userid) to
a new user ID that will be sent to the remote server or data source. In this case,
the new user ID is different from the current user ID, but no password is
specified to be sent with the new user ID to the remote server or data source.
This error occurs because the Gateway has not authenticated the new user ID,
and the remote server or data source cannot authenticate the new user ID
without a password. Sending the new user ID without a password implies to
the remote server or data source that the Gateway has authenticated the new
user ID (which the Gateway has not done).
-29067 Could not access EDALINK.CFG file (reason).
The EDALINK.CFG file could not be accessed for the reason that is stated.
When reason is of the form name: number, number indicates the
operating-system error while accessing a file or directory with the specified
name. Usually, the failure occurs because the EDALINK.CFG file is not in the
Gateway $INFORMIXDIR/etc directory. The EDALINK.CFG file is an
EDA/Link configuration file that is required to connect to an EDA/SQL
Server. Please consult your EDA/Link documentation to determine the
contents of the file.
-29068 A field value received from the EDA Server could not be decoded.
In the row that is being fetched, a field value could not be decoded and
converted into an Informix data value. Usually this situation occurs because
the EDA/SQL Server could not convert the field value from its actual value in
the underlying data source to its specified Master File Description (MFD)
usage format. For example, if the usage format in the table MFD is I2 (integer
value with a maximum field length of 2 characters), and the value of the field
is 300, then the EDA/SQL Server cannot fit 300 into the specified 2-character
field length.
In this case, the Gateway issues the error because the EDA/SQL Server has
sent a sentinel value in place of the real field value. Check that the usage
format field-length specifications in the MFD are long enough to hold the
actual field values that your data contains. If this action does not solve the
problem, contact Informix Technical Support for assistance in tracing the
data that is received from the EDA/SQL Server.
Product_Name:Product_Version
If the connection attempt to the target DBMS was not completely successful,
the DBMS_Product_id will be :00.00.0000.
ODBC_Error_Code is the error code of the ODBC component. (It can be 0.)
Sqlstate is the SQLSTATE that is associated with the error. For
a list of SQLSTATE codes, see your ODBC
documentation.
Driver_Prod_id is the product ID of the ODBC driver that is being
used.
ODBC_Error_Message is the error message that the ODBC component
provided. This message is truncated if the entire
sqlerrm text is longer than 71 bytes.
If the connection attempt to the target DBMS was not completely successful,
then Driver_Prod_id will be:00.00.0000.
-29082 Could not decode field value for field number field-number.
In the row that is being fetched, the field value for the field that is numbered
field-number could not be decoded and converted into an Informix data value.
The field number is the ordinal position of the field that could not be
converted in the select list. This situation reflects an error in the ODBC Driver
for the target DBMS. The field value that could not be decoded is written to
the Gateway log file along with the Driver Name and Version information.
If you received this error code when you executed a SET ISOLATION TO
statement, the attempt to set the isolation level at the data source to a level
compatible with the level in the statement has failed. The current isolation
level in your application remains in effect.
If you receive this error code when you are executing a distributed SQL
statement, the statement has failed because the data source does not support
an isolation level that is compatible to the current isolation level of your
application. The current isolation level in your application remains in effect.
If a lower isolation level that the data source supports is acceptable to your
application, set the isolation level to that lower level. If you are accessing
INFORMIX-Enterprise Gateway Manager in direct access mode, use the
GWDIRECTMIL environment variable to set the isolation level. If you are
accessing INFORMIX-Enterprise Gateway Manager in distributed-access
mode (through an OnLine), issue the SQL statement SET ISOLATION TO
before you execute the distributed statement that accesses the Gateway.
In this case, the data source does not have the capability to match the
transaction characteristics of the coordinating OnLine database. A write
operation cannot be guaranteed to be atomic on the data source (for example,
a write to a file might start successfully but eventually fail because of
insufficient disk space, leaving the file partially modified). Also, a write
operation cannot be rolled back after it has been performed on the data
source. For these reasons, write operations are not permitted when the
coordinating OnLine database supports transactions (that is, has a log), and
the data source does not support transactions.
The data source does not support cursors that are declared WITH HOLD.
Either the target DBMS does not support cursors that remain open after a
commit operation, or the ODBC Driver does not use cursors with this
property. Cursors that are declared WITH HOLD cannot be used at the data
source.
Your session sensitivity label does not permit you to perform the operation
on the OnLine/Secure object that you are accessing because it violates the
MAC policy of INFORMIX-OnLine/Secure. Log in at the appropriate
sensitivity label, and retry the operation.
Your session identity does not permit you to perform the operation on the
OnLine/Secure object that you are accessing because it violates the DAC
policy of OnLine/Secure. Log in with the appropriate identity, or obtain the
necessary privileges, and retry the operation.
The range that is specified for an operation that involves labels is incorrect.
The situation could arise either due to bad user input or an internal error.
This internal error could arise because the labels to be compared are
incomparable or illegal, or the comparison operation was not legal for the
label data type.
The table descriptor for the specified table was not found in the core
dictionary.
Your session sensitivity label must equal the sensitivity level of the database.
System catalog tables are dropped only when the database is dropped.
Your session sensitivity level must equal the sensitivity level of the table.
Your session sensitivity level must equal the sensitivity level of the table.
Your session sensitivity level must equal the sensitivity level of the table.
The action that you are performing requires Resource privilege on the
database. Contact the database administrator to request the privilege.
Your session sensitivity level must equal the sensitivity level of the table.
It is not legal to change attributes other than the next-extent size for the
system catalog tables.
Only the owner of the index can perform the operation that you are
attempting.
This internal error indicates that the number of concurrent database opens
exceeds the limit that OnLine/Secure sets.
The tag value that you supplied is unknown to the operating system.
Your session sensitivity level must equal the sensitivity level of the table.
You need Insert or Alter privilege on the table, or Update privilege on the
SERIAL column, to change the serial value.
This message is applicable only for multilevel secure applications. You are
attempting an operation on a table at a level higher than or incomparable to
the level at which you opened the table. Open the table at the appropriate
level.
Your session sensitivity level must equal the sensitivity level of the table.
Your session sensitivity level must equal the sensitivity level of the database.
Your session sensitivity level must equal the sensitivity level of the table.
Your session sensitivity level must equal the sensitivity level of the database.
This message is applicable only for multilevel secure applications. The initial
serial value was not set at table creation.
-32139 No initial value has been set for the SERIAL column.
This message is applicable only for multilevel secure applications. No initial
serial value exists for the sensitivity level that you are accessing. The initial
serial value must be set at table creation if a SERIAL column exists in the table.
This message indicates an internal error. The table handle that is provided to
an ISAM function is not a legal handle for the table whose tabid is also
provided as a function argument.
Ensure that no other user has created a label.map file in the $LABELMAPDIR
directory. Check that the sensitivity label of the label.map file is ixdbssoL.
An old label.map file is in use. Update the label.map file if necessary, and
remove the label.lok file to indicate your concurrence that the label.map file
is indeed okay.
Cannot open the label.map file or the label.lok file. Check the existence,
permission, and sensitivity level of these files.
Check the integrity and legality of entries in the label.map file according to
the current operating system.
The translation tag for a tag on tape that is provided in the label.map file does
not exist on the operating system. Check the integrity and legality of entries
in the label.map file according to the current operating system.
A tag that is supplied in the label.map file does not exist on tape. Ensure that
you are providing mapping only for those tags that are on the tape.
An error occurred during sorting of the label.map file. Check the integrity of
the label.map file.
Tags and their translation tags should have strictly one-to-one mapping.
Check the label.map file for duplicate tag mappings.
Only the tag representation of labels should be stored in the label.map file.
Check the integrity and legality of the tags that are stored in the label.map
file.
Check $INFORMIXDIR, $SQLEXEC settings. Ensure that you are in the group
ix_users, ix_dbsa, or ix_dbsso. Check that the ISAM executable in
$INFORMIXDIR/lib is executable by your session.
This message indicates an internal error. The operating system cannot map
between the internal and external forms of the label. Check the external or tag
representations that you provided.
Check for the parameter setting in the TBCONFIG file or the input to
ON-Monitor.
Check for the parameter setting in the TBCONFIG file or the input to
DB-Monitor to make sure that the number of estimated security labels is
always greater than 0.
Alter table failed; check the additional ISAM error message for further
information.
You can change only one table option (locking mode, extent size) for each
ALTER TABLE session. If you have changed one table option and want to
change another, you must first exit the ALTER TABLE Menu and build the
modified table. Select the Exit option, then the Build-new-table option. Then
select the Table_options option on the ALTER TABLE Menu, and make your
next modification to the table.
-32401 The initial extent size cannot be changed when altering a table.
The initial-extent size is set when the table is first created. The next-extent
size can be altered, but the initial-extent size cannot. To change the size of the
initial extent, you must unload the data from the table, drop the table,
re-create the table with the CREATE TABLE statement, and reload the data into
the table.
-32402 The user cannot change the dbspace name when altering an existing table.
You have specified the location in which to table is to be stored. You have
explicitly specified a dbspace or the dbspace of the database has already been
used. When you attempted to alter a table, you tried to change the dbspace
in which the table is stored. This action is illegal. You can specify the dbspace
only when you create the table.
Download any data in the existing table. Drop that table. Create a new table.
Specify the dbspace that you want to use, and upload the data into the new
table.
This error occurs when the user creates or alters a table and creates or alters a
column of type serial but has specified that the starting number is less than
or equal to zero (illegal) or has entered in a nonnumeric value. Enter a
number equal to or greater than 1 for the starting number.
-32404 Invalid delimiter. Do not use '\\', hex digits, tab or space.
The delimiter that is specified for the LOAD or UNLOAD statement is illegal.
You cannot use the new-line character, hexadecimal digits (0 to 9, A to F, a to
f), the tab character, or a space as a delimiter. Check the statement, and
change the delimiter symbol.
The hexadecimal file that is used to load a BYTE value into the table has an
illegal character or an incorrectly formed hexadecimal value. Check the file
for any anomalies, and try running your statement again.
You specified an extent size less than or equal to zero when you created or
altered a table. Specify an extent size greater than zero.
You specified an invalid trigger name. Enter the name of an existing trigger,
or correct your spelling.
-32408 Cannot create MODE ANSI database without specifying transaction log
pathname.
DB-Access cannot open the sysmaster database, from which you have
requested information. Check that the sysmaster database was built
properly, and read the OnLine log for the cause of the failure.
DB-Access does not support the AS, WITH CURRENT TRANSACTION, or USER
clause of the CONNECT statement, although the database server supports it.
Use proper SQL statement syntax when you run your CONNECT statement in
DB-Access.
You attempted to perform an ALTER TABLE option on a table option that you
previously altered. You cannot alter a table option more than once.
-32412 USING clause unsupported. DB-Access will prompt you for a password.
-32500 User does not have discrete privilege to change session levels.
You must obtain the PRIV_CANSETLEVEL discrete privilege from the DBSSO
before the start of a session in which you use the SET SESSION LEVEL
statement.
-32501 Login session level not dominating the new session level.
You must log in at a session sensitivity level that dominates the session level
that you specify.
You cannot access the database at the new session sensitivity level. Use a
different level that dominates the database.
Close all tables, and relinquish all cursors that remain open before you
attempt to change session sensitivity levels.
-32504 Operations on remote objects are not allowed after session level set.
You cannot access objects in remote databases when your current session
sensitivity level differs from that of your login session. Return to the
sensitivity level of your login session to access remote data.
The argument to the SET SESSION LEVEL statement was not a valid sensitivity
label.
You must be a DBA to change the session user unless you are changing to
yourself.
-32510 User does not have discrete privilege to change session authorization.
Renaming of table or column failed. For more information, refer to the ISAM
error message.
-32514 Session level is different from the level of the database object.
Your session sensitivity label does not permit you to perform the operation
on the OnLine/Secure object that you are accessing because it violates the
MAC policy of OnLine/Secure. Log in at the appropriate sensitivity label, and
retry the operation.
You cannot use the VARIANCE or STDEV function on string or DATETIME data
types. Review the use of these functions.
The software product cannot find the error message text files. Either the
INFORMIXDIR or DBLANG environment variable is set incorrectly.
Reset the specified environment variable to a legal value, and try again. See
Chapter 4 of the Informix Guide to SQL: Reference.
This embedded-language product does not support the specified option from
the preprocessor/compiler command line. Check that it is spelled as you
intended. Refer to the embedded-language manual for supported options.
You cannot use the specified variable in the context of this statement. Check
that you specified the variable you intended and that you declared it with the
proper type. Then refer to the embedded-language manual for variable usage
in this type of statement.
The preprocessor has assumed that you intend the symbol variable-name in
this statement as a host variable. (A host variable is normally indicated with
'$' or ':' preceding it.) Check that you did intend this meaning.
Correct all other processing errors. If the error recurs, please note all
circumstances and contact the Informix Technical Support Department.
This message is a warning from the preprocessor. The specified variable was
declared more than once in the current scope. Compilation continues using
this latest declaration to the end of the current scope. If you did not intend to
redeclare the indicated variable, check the spelling of variable names and the
syntax of declarations. In INFORMIX-ESQL/C, this warning can also be issued
if the variable is used as function parameter. In this case, use the PARAMETER
clause.
You specified a precision or scale for a DECIMAL value that is out of range. A
DECIMAL variable must have from 1 to 32 digits. Check the punctuation of
the declarations in this statement.
The preprocessor has found this EXEC SQL END DECLARE SECTION
statement but has not seen a preceding EXEC SQL BEGIN DECLARE SECTION.
Possibly it was omitted or not recognized due to another error. Check that
each BEGIN DECLARE is paired with an END DECLARE.
The indicated record was used where only a simple variable can be accepted.
Review the declaration of variable-name, and check that it is the variable you
intended to use (possibly you need to qualify it with a component name).
Refer to the embedded-language manual for the requirements of this
statement.
The name of the input file that is submitted to the preprocessor must have the
correct suffix. Check the command syntax, and rename the file if necessary.
The following file suffixes are required:
This preprocessor macro definition statement does not have the ESQL
statement terminator. Add a semicolon(;) to the end of the statement.
The preprocessor cannot recognize the end of the current statement. Check
the syntax of this and preceding lines. Look for omitted ending semicolons,
omitted quote marks, or omitted end-of-comment symbols.
This statement specifies a label that is longer than this embedded language
allows. Check the spelling and punctuation of the statement. Refer to the
embedded-language manual for proper formation of label names.
This line is too long either for the host language or to fit into the internal
buffers of the preprocessor. Refer to the embedded-language manual and to
the host-language manual for rules on continuing long lines.
The specified value for the macro is too long to fit in the internal buffer.
Shorten the statement, and try again.
The pathname in this INCLUDE statement is too long to fit in the internal
buffers. Check the punctuation of the statement; possibly an end-quote has
been omitted. If not, you will have to find a way to specify the included file
with a shorter pathname. Refer to the embedded-language manual for the
rules of the preprocessor on searching for included files.
The quoted string is too long to fit in the internal buffers. Check the statement
for a missing end quote.
The macro name of the macro statement is missing. Specify the name, and try
again.
The specified SQL identifier is too long. SQL identifiers are limited to
18 characters. Check the punctuation of the statement and the spelling of
identifier; if all is as you intended, you will have to change the declaration to
use a shorter name.
The preprocessor limits the number of nested levels to the specified value.
Review the program structure preceding this point; the punctuation or
keywords that close a block might have been omitted or might not have been
recognized due to an earlier error. If all is as you intended it, you will have to
reorganize the code to use fewer nested blocks.
This message is a warning only. You used a label on a statement that does not
generate any real code in the output file. Refer to the embedded-language
manual for the correct use of labels.
You used the WITH NO LOG option in the wrong context. Use it only when
you create a TEMP table and you wish to exclude transaction log operations
on it. See the Informix Guide to SQL: Syntax for the SQL syntax and proper
usage of the WITH NO LOG option.
You attempted to use a DATETIME qualifier, but you did not specify a specific
range of acceptable values for that qualifier. Define the ranges that you will
use to qualify the DATETIME qualifier. The DATETIME qualifier must have a
beginning and ending range (for instance, year to month, day to hour, and so
on).
This message is a warning only. You used the -ansi option, asking that the
source file be checked for compliance with the current ANSI standard. This
statement uses an Informix extension to the ANSI standard.
The preprocessor cannot open outfile because not enough disk space is
available, or you do not have file-system permission to open the file. If
insufficient disk space is available, delete files or select another disk to make
space available in the file system. If you do not have file-system permission
to open outfile, specify another directory or login with the required
permission.
The embedded-language preprocessor cannot locate the file that you are
trying to include in your program with the -I option. Check that the file is in
the location that you have specified and that you have specified the location
correctly. Also check that you have permission to open inputfile; if you do not,
specify another directory or login with the required permission.
-33044 Precision must be greater than 0 and less than the specified number of digits.
You specified the precision and/or the scale for a DECIMAL value incorrectly.
See Chapter 3 in the Informix Guide to SQL: Reference and the appropriate
INFORMIX-ESQL manual for proper usage.
This message is a warning only. You have defined the macro macro-name
more than once. The preprocessor uses the latest occurrence of macro-name.
This message is a warning only. You cannot specify an Indicator variable for
input to a host record or data structure. The indicator is ignored. An indicator
variable must be associated with a single data item. If you need to use an
indicator with a particular member of this record, you must list all the record
members.
In this statement, you use the specified record where only a simple variable
is allowed. Check the spelling of names, and rewrite the statement using a
simple variable. See the embedded-language manual and the Informix Guide
to SQL: Syntax.
-33049 Field type field-name has been used out of context.
The statement redefines a user-defined type or subtype that has already been
defined. This action is not allowed. Review the declarations, and use a unique
name for this type.
A matching IFDEF or IFNDEF statement does not precede this ELSE statement.
Review the source lines that precede this point; the preceding statement was
omitted or might not have been recognized due to an earlier error.
This UPDATE statement refers to a cursor that was declared with the SCROLL
keyword. The UPDATE statement requires a cursor that has been declared
FOR UPDATE to ensure that the proper level of locking is applied to the rows
that will be updated. See the DECLARE statement in the Informix Guide to SQL:
Syntax for more information on the correct use of cursors.
The SQL identifier id-name has already been declared. Check the spelling of
names and the declarations in the current name scope.
The error errno occurred during output. Check that sufficient disk space is
available for the output file and that you have the necessary file-system
permissions for the file location. Look up errno in the host operating-system
manual (or see the list that begins on page 3) for the specific cause of the
problem and the appropriate corrective action.
You specified the log preprocessor option to have error and warning
messages sent to errorfile rather than to standard output. However, the
preprocessor cannot open errorfile because not enough disk space is available,
or you do not have file-system permission to open the file. If insufficient disk
space is available, delete files to make space available in the file system, or
select another disk. If you do not have file-system permission to open errorfile,
specify another directory or login with the required permission.
-33058 Option-name is not a valid default option for the column definition.
See the Informix Guide to SQL: Syntax for the valid DEFAULT clause options in
a column definition.
The preprocessor cannot fully expand the macro-name macro because a loop
exists in the defined macros. Correct the macro, and try again.
This message is a warning only. The specified variable appears more than
once with different combinations of uppercase and lowercase letters. Because
this product is not case sensitive, all these names are treated as one. If you
intended these names to indicate different variables, change the name (not
merely the case) of one of the variable declarations, and recompile.
This message is a warning only. When you use the -local preprocessing
option, cursor names and statement names are prefixed with a unique tag
generated from the module name. (On UNIX systems, the inode number of
the source program is used as the unique tag.) The combined length of the
cursor or statement name and the unique tag should not exceed 18 characters,
but in the case of name, it does. As a result, if the same name is used in a
different source module, the two names might not be distinct as the -local
option requests.
-33066 Cursor/statement ids id1 and id2 are not unique in first 18 characters when
prefixed by module name.
When you use the -local preprocessing option, cursor names and statement
IDs are prefixed with a unique tag that is generated from the module name.
(On UNIX systems, the inode number of the source program is used as the
unique tag.) In this case, id1 and id2 are at least 14 characters long, and their
first 13 characters do not differ. As a result, they are the same when the tag is
added and the result is trimmed to 18 characters. Change the two names to
avoid name collision, and try again.
An IFDEF or IFNDEF statement does not precede this ELIF statement. Review
the source lines that precede this point. The preceding statement was
omitted, or it might not have been recognized due to an earlier error.
The ESQL preprocessor ELSE statement indicates the last part of an IFDEF or
IFNDEF statement; another ELIF part might not follow. Review the contents
of this IFDEF or IFNDEF statement, and put its parts in order.
This message, which indicates that the parser stack has overflowed, rarely
occurs. It might occur, for example, if your embedded-language statement
(SELECT, INSERT, UPDATE, DELETE, and so on) contains an extremely large or
complicated clause (WHERE, MATCHES, LIKE, and so on) that the parser is
trying to process. In that case, break up the clause, and try again.
This warning message indicates that you have used two PREPARE statement
identifiers with the same name. For example:
exec sql prepare stmt_id from "select * from tab";
exec sql prepare stmt_id from "insert into tab values(1)";
-33074 Explicit cast, either with CAST keyword or (::) operator, is not allowed in
client collections.
You cannot use explicit casts in client collections. For example, the following
example is not allowed:
$client collection list(row( a udt_1, b list(int))) mylist;
$insert into table (:mylist) values (CAST(1 AS udt_1),
list{1,2,3});
$insert into table (:mylist) values (1::udt_1, list{1,2,3});
When you enter esql -e client.ec, you get the following errors:
esqlc: "client.ec", line 2: Error -33074: Cannot use CAST in
client collections.
esqlc: "client.ec", line 3: Error -33074: Cannot use CAST in
client collections.
You referenced the array variable with an incorrect dimension. Correct the
dimension, and retry.
A pointer variable is used with the wrong number of level indirection. Check
the indirection levels in this statement.
-33204 Right curly brace found with no matching left curly brace.
The code either includes a stray closing brace (}) or is missing an opening
brace ({). Check the code for unmatched curly braces or other incorrect
punctuation such as a missing end-quote or end-comment.
The definition of the typedef variable is too complex. ESQL/C does not
support the use of multidimensional arrays or unions in a typdef. Simplify
the typedef.
This message is a warning. This statement does not have the necessary
semicolon. Even though the preprocessor can proceed without any problems,
you should add a semicolon to the statement. Then you can avoid future
problems if code is added to this program.
The entry on the specified line in the specified environment configuration file
is incorrect. Modify your entry in the file (the environment variable name
and/or setting), and try again.
The SQL API cannot find the character-mapping file for the specified
DBAPICODE environment variable setting and the standard code set. Check
that the mapped code set exists in the message directory for your platform.
In NLS-ready systems, the standard code set is defined in the LANG
environment variable. In systems that are not NLS ready, the standard code
set is the default 8-bit character set.
The ESQL/C source has illegal multibyte characters. Review the source file.
The ESQL/C source file ends in the middle of a valid multibyte character. The
source file might be truncated. Review the source file.
A system error num occurred while the ESQL/C preprocessor read the
ESQL/C source file. Look for operating-system messages to determine the
cause of the problem.
-34383 An unknown error num occurred while reading the input stream.
An unknown error num occurred while the ESQL/C preprocessor read the
ESQL/C source file. Check that the source file is a valid ESQL/C source file.
-34388 Invalid character has been found. Cannot continue the processing.
■ database@dbserver;owner.procname
■ database;owner.procname
■ database;procname
■ database@dbserver;procname
■ owner.procname
■ procname
The SQL script has illegal characters. Review the script file.
-34390 Invalid delimiter; Don't use '\\', SPACE, HEX or Multibyte chars.
The delimiter specified for the FILE statement is illegal. You cannot use a
new-line character, backslash, space, tab, hexadecimal digit (0 to 9, A to F, a
to f), or multibyte character as a delimiter. Check the statement, and change
the delimiter symbol.
The session initialization failed. An invalid locale name has been supplied for
the locale initialization in the session initialization. The environment variable
to specify the locale name has an incorrect value. Check the value of the
corresponding environment variable, CLIENT_LOCALE or DB_LOCALE.
-34395 Illegal multibyte character. Line# num
An illegal multibyte character has been detected on the line of the loadable
menu source file. Review the source file.
-35036 This line uses an Informix extension to ISO/ANSI SQL, near identifier or
symbol name.
This error message appears only when you use the -ansi option. Revise the
statement to comply to ANSI standards.
-35038 This statement uses an Informix extension to the X/Open standard, near
identifier or symbol name
This error message appears only when you use the -xopen option. Revise the
statement to meet the X/Open standard.
If you get this error, note all circumstances and contact the Informix
Technical Support Department.
If you get this error, note all circumstances and contact the Informix
Technical Support Department.
The cursor is defined more than once. You can use only one cursor for each
cursor id. Rename the cursor so that it is unique within the module. Unique
cursors enhance portability.
The procedure name that you used has already been defined. Rename the
procedure so that it is unique within the module.
You used a parameter name more than once. A parameter name must be
unique within each procedure. Rename the parameter so that it is unique
within the procedure call.
You must use the name Ada in the LANGUAGE clause. Either remove the
LANGUAGE clause or change the language name to Ada. See Chapter 2 in the
INFORMIX-Ada/SAME Programmer’s Manual for more information about the
LANGUAGE clause.
-35207 Module name, module name, does not match end module name, module name.
The name that follows the MODULE END clause must match the module
name that is specified in the MODULE name clause.
-35208 INTERNAL ERROR module name, line line number: case error.
If this internal error recurs, please note all circumstances and contact the
Informix Technical Support Department.
-35209 INTERNAL ERROR: module name, line line number: assertion error.
If this internal error recurs, please note all circumstances and contact the
Informix Technical Support Department.
All supported features are implemented. If this internal error recurs, please
note all circumstances and contact the Informix Technical Support
Department.
Use the adasame command. Refer to the syntax for preprocessor commands
that is provided in Chapter 1 of the INFORMIX-Ada/SAME Programmer’s
Manual. If the error recurs, please note all circumstances and contact the
Informix Technical Support Department.
Use either the -b or the -s option. Refer to the syntax for preprocessor
commands provided in Chapter 1 of the INFORMIX-Ada/SAME Programmer’s
Manual. If the error recurs, please note all circumstances and contact the
Informix Technical Support Department.
The SQL statement requires a cursor id that was not declared in a DECLARE
CURSOR statement. Check for misspellings, or add a DECLARE CURSOR
statement for this cursor.
-35214 Cursor cursor name used with OPEN in more than one procedure.
-35216 WHENEVER clause not allowed when SQLCODE appears in parameter list.
ANSI standards require that each procedure have at least one SQLCODE
parameter.
The statement refers to a cursor that has not been opened. Either remove the
cursor without an OPEN statement or add an OPEN statement for the subject
cursor.
-35221 Character string parameter cannot have an OUT mode: parameter name.
-35222 CHAR(*) parameter parameter name not supported; use VARCHAR(*) and
append ASCII.NUL.
-35225 Object reference, object name, cannot appear in a dynamic cursor declaration.
-35226 This line uses an Informix extension to ISO/ANSI SQL, near identifier or
symbol name.
-35227 This statement uses an Informix extension to the X/Open standard, near
identifier or symbol name.
Use of an Informix extension to the X/Open SQL syntax has been detected.
Use an X/Open-compliant syntax to ensure maximum portability.
-41001 The INFORMIX.INI file does not have a hostname or has a format error.
Check the INFORMIX.INI file. If you did not define a host name variable in
the InetLogin structure, the [INET_CONNECTION] section must have a host
name. The host name must be defined in the [INET_CONNECTION] section
with the following format:
host=hostname
-41002 The INFORMIX.INI file does not have a username or has a format error.
Check the INFORMIX.INI file. If you did not define a user name variable in
the InetLogin structure, the [INET_CONNECTION] section must have a user
name. You must define the user name in the [INET_CONNECTION] section
with the following format:
user=username
-41004 The INFORMIX.INI file does not have a protocolname or has a format error.
Check the INFORMIX.INI file. If you did not define a protocol name variable
in the InetLogin structure, the [INET_CONNECTION] section must have a
protocol name. You must define the protocol name in the
[INET_CONNECTION] section with the following format:
protocol=protocolname
Check the INFORMIX.INI file. The protocol name that is specified in the
[INET_CONNECTION] section should match the protocol name that is
specified in the [INET_PROTOCOL] section. The protocol name must define
the correct .DLL module for that protocol. If you are using an IPX/SPX
protocol, then ipx=INETIPX.DLL. If you are using a Windows Sockets
1.1-compliant TCP/IP protocol, then tcpip=INETWSOK.DLL.
Check your path. If you are using a Windows Sockets 1.1-compliant TCP/IP
protocol, the INETWSOK.DLL module must be in your path. If you are using
the IPX/SPX protocol, the INETIPX.DLL module must be in your path. These
modules must be in your path. In addition, you might not have enough
memory to load the correct DLL module.
-41008 Number of protocols exceeds the number of protocols that are supported in
this version.
You must use only one protocol at a time to communicate with your remote
database server.
Too many applications are active under Windows. Close some of your
applications, and try again.
You are currently making a database server request. You cannot make
another argument until the current request is finished.
The utility that you were running could not access the contents of a table
because it could not wait for a table lock. Wait a while and retry running
dbschema or dbexport.
-47086 Cannot specify current as default value with non-datetime column type.
You cannot assign a default value consisting of the current time from the
system clock when the column data type is not DATETIME. Modify the
column data type to DATETIME (if permitted), or specify a different default
value for the column.
-47087 Cannot specify null default value when column doesn't accept nulls.
Select a different (nonnull) default value for the column, or modify the
column to accept null values.
-47088 Cannot specify server or site as a default value with this column type.
You cannot specify a default value that consists of the current database server
name or current site name for a column that is not a CHAR, NCHAR,
VARCHAR, or NVARCHAR data type. Change the column data type (if
permitted), or specify a different default value.
-47089 Cannot specify server or site as a default value with this column length.
In order to specify a default value that consists of the current database server
name or current site name for a CHAR, NCHAR, VARCHAR, or NVARCHAR
column, the minimum column length must be 18. Increase the column length,
or specify a different default value.
-47090 Cannot specify today as a default value with this column type.
You cannot specify a default value that consists of the current system date for
a column when the column data type is not DATE. Change the column data
type (if permitted), or specify a different default value.
-47091 Cannot specify user as a default value with this column type.
You cannot specify a default value that consists of the login name of the
current user for a column that is not a CHAR, NCHAR, VARCHAR, or
NVARCHAR data type. Change the column data type (if permitted), or specify
a different default value.
-47092 Cannot specify user as a default value with this column length.
In order to specify a default value that consists of the login name of the
current user for a CHAR, NCHAR, VARCHAR, or NVARCHAR column, the
minimum column length must be 8. Increase the column length, or specify a
different default value.
-47093 Cannot create unique or primary key constraint with column type of BYTE or
TEXT.
You cannot create a foreign-key constraint on a column that does not exist in
the referenced table. Specify a different referencing or referenced column for
the constraint.
You cannot use the ALTER TABLE menu options to modify an existing
constraint. An asterisk preceding the name identifies existing constraints.
You cannot create a constraint on a column that does not exist in the table.
-47101 To drop an existing constraint, the current field must be constraint name.
The cursor is in the wrong field on the screen. Move the cursor to highlight
an entry in the Constraint Name field to drop all columns that are associated
with a primary key, check, or unique constraint. Highlight the Constraint
field to drop all columns that are associated with a foreign-key constraint.
The buffer in the SQL editor, which holds the check-constraint value and the
literal default-constraint value, is full. If you are modifying the check
constraint, a different editor might have a larger buffer.
-47104 The fill factor percentage must be a positive integer not exceeding 100.
You cannot use the same dbspace more than once in a fragmentation
strategy. The dbspace you selected is already part of the strategy. Select
another dbspace from the current list.
-47106 Table has already been selected as part of the attaching strategy.
A table can be attached to a fragmentation strategy only once. The table that
you selected is already part of the fragmentation strategy. Select another table
from the current list.
You can execute only one menu option in an ALTER FRAGMENT menu
session, and it cannot be applied to the current strategy more than once. For
example, you can add only one dbspace to a round-robin strategy, and you
cannot delete a dbspace during the same ALTER TABLE session.
You have specified a dbspace that is not part of the current fragmentation
strategy. Select a dbspace on the current INFORMIX-OnLine Dynamic Server
from the list that is displayed on the screen.
You have specified a dbspace as part of your attaching table strategy. This
action indicates that you wish to position the attaching table before or after a
dbspace that is part of the fragmentation strategy being attached to. You
must define a before or after position.
The ixApp constructor generates this message. The system creates the ixApp
object, and only one can exist. The program code must not attempt to create
an ixApp object.
Many member functions generate this message. The program can call
ixWindow::close to close a window. The user can cause a window to be
closed by selecting Close from the window system menu. Once a window
has been closed, although pointers that reference it might still exist, the
program can no longer call any of its member functions or refer to members
of it.
This message is generated when the program attempts any of the following:
ixFile::copy(), ixRowArray::copy(), or ixVisualObject::copy(). It is not clear
what copying should do. Use the operating system to copy files. SuperTables
use row arrays, so you should not need to copy them yourself. VisualObject
is a virtual class, and the program should not be able to obtain an instance to
copy.
-50009 A problem has been detected in the internal representation of a visual object.
Many functions within classes derived from ixVisualObject generate this
message. Correct all other processing errors. If the error recurs, please note all
circumstances and contact the Informix Technical Support Department.
-50010 Cannot set size of a visual object to a negative value. Ignoring operation.
-50012 Cannot specify a NULL containing window for a popup style ixWindow.
Using a normalTop style ixWindow instead.
The ixWindow constructor generates this message. It indicates that the user
has requested a popup ixWindow but has not indicated a containing
window. Rather than guess at a containing window, VCL creates the new
window as a normalTop window.
-50013 Cannot specify a containing window for a top level window. Ignoring
specified containingWindow parameter.
The ixWindow constructor generates this message. The user has requested a
mainTop or normalTop style of ixWindow but has also specified a
containing window. Only popup windows can have containing windows, so
VCL ignores the containingWindow parameter.
-50016 Cannot set anchor of a visual object to a negative value. Ignoring operation.
-50017 Popup windows do not have icons. Ignoring attempt to set icon for a popup
window.
-50018 Cannot get the icon for a popup window. Returning NULL.
-50020 No default editor available for this class; blob editor name must be supplied.
The user entered "!" in an ixSuperField object of TEXT or BYTE data type, but
no blob editor has been specified for the data.
For ixText objects only, you can specify the blob editor in the informix.ini
file, by setting the DBEDIT variable to the name of the editor you prefer. If this
information isn't in the informix.ini file, the DBXEDIT environment variable
is examined. If that environment variable is not set, the DBEDIT environment
variable is checked. Finally, if none of these is set, the value notepad (for
Windows) or vi (for UNIX) is used.
For a TEXT or BYTE SuperField, the user can set the SuperField blobEditor
member to the name of a blob editor.
-50021 An attempt to remove a blob storage file failed. This was probably due to a
file/directory permission problem.
This message can occur on ixBlob destruction or a call to free when the blob
storage file cannot be removed. Check for a named data file in a directory for
which the program does not have write permission.
-50022 An invalid parameter (or out of range) was passed to this member function.
A memory corruption may have occurred. Correct all other processing errors.
If the error recurs, please note all circumstances and contact the Informix
Technical Support Department.
The program attempted to set ixBlob::locInFile in a named file but did not
specify a filename.
-50027 An attempt to access data outside the range of a blob has been detected.
-50028 An illegal value was requested for the ixByte storage type. Legal values are
as follows:
ixByte::locInMemory
ixByte::locInFile
ixByte::locInTempFile
The constructor for ixByte generates this message when the first parameter is
invalid.
-50029 A file name was not specified for an ixByte object stored as ixByte::locInFile.
The constructor for ixByte generates this message when the first parameter is
ixByte::locInFile, and no named file is specified.
-50030 An illegal value was requested for the ixText storage type. Legal values are:
ixText::locInMemory
ixText::locInFile
ixText::locInTempFile
The constructor for ixText generates this message when the first parameter is
invalid.
-50031 A file name was not specified for an ixText object stored as ixText::locInFile.
The constructor for ixText generates this message when the first parameter is
ixText::locInFile, and no named file is specified.
A system call to edit a blob failed. This situation could occur if the name that
is specified for the blob editor is invalid, or if no such file is in the current
path.
-50036 The filename specified for blob located in a temporary file was ignored.
The ixBlob constructor generates this message. When you set the location of
a blob (either an ixText or ixByte object) with the ixBlob::setLocation()
member function, you can specify whether the data should be in memory, in
a file of your choosing or in a temporary file that is created locally. NewEra
names temporary files, and if you include a filename with this option, it will
be ignored.
-50037 The filename specified for blob located in memory was ignored.
The ixBlob constructor generates this message. When you set the location of
a blob (either an ixText or ixByte object) with the ixBlob::setLocation()
member function, you can specify whether the data should be in memory, in
a file of your choosing, or in a temporary file that is created locally. If you
chose to store the blob in memory, you do not need a filename. If one is
included, it will be ignored.
An error occurred when the program prepared to open a blob storage file.
This situation can occur if the file exists but cannot be read for some reason
(perhaps because of permission problems).
An error occurred when the program tried to open a blob storage file. The file
has been created or read, but for some reason it cannot be written to (perhaps
because of permission problems).
An error occurred when the program tried to read a blob storage file.
An error occurred when the program tried to write to an open a blob storage
file. A space shortage might exist on the device.
An error occurred when the program tried to write to a blob storage file
because storage memory grew during the write. If the error recurs, please
note all circumstances and contact the Informix Technical Support
Department.
An error occurred when the program tried to create a blob storage file
(perhaps because of permission problems).
The ixFile constructor generates this message if it cannot open the specified
file.
-50056 The following includeTable entry, "entry", is an illegal value for this
SuperField. Check to make sure this entry is convertible to the type and
encLength specified in the colInfo for this SuperField.
-50057 No help number has been specified for the current object.
Help has been requested for an item that has no help number assigned to it,
meaning that no help text is available for the object. No workaround is
available for this situation at runtime, but you can address it in the
application code by ensuring that the object has a help number associated
with it and that a corresponding message is in the appropriate help file.
The ixSuperTable constructor generates this message. The only valid layouts
are gridForm and freeForm (which are ixSuperTable constants).
The ixSuperTable constructor generates this message. The only valid values
for displayMode are displayQuery and displayData (which are
ixSuperTable constants).
The ixSuperTable constructor generates this message. The only valid lock
modes are pessimisticLock, optimisticLock, and noLock (which are
ixSuperTable constants).
The SQLPrepSelect() event has been called with the default handler
doSQLPrepSelect() but the engine reported an error. Verify that the SQL
string displayed is correct, and try looking up the engine error code, which is
displayed in parentheses.
The SQLFetch() event has been called with the default handler doSQLFetch()
but the engine reported an error. Try looking up the engine error code, which
is displayed in parentheses.
Could not determine the updateTable for this SuperTable. The function
getUpdateTable() returned NULL. Check the updateTable and
selectFromPart constructor parameters to ixSuperTable.
An invalid value was specified for the dataState. The only valid values are
ixSuperField::enabledState, ixSuperField::readOnlyState, and
ixSuperField::disabledState. If you have given an invalid state and the state
has previously been set to a valid value, the operation is ignored and the
existing value is kept. Check your program to make sure that you are using
the class constants to specify the data state.
An invalid value was specified for the queryState. The only valid values are
ixSuperField::enabledState, ixSuperField::readOnlyState, and
ixSuperField::disabledState. If you have given an invalid state and the state
has previously been set to a valid value, the operation is ignored and the
existing value is kept. Check your program to make sure that you are using
the class constants to specify the query state.
This is a serious internal error. In the process of going through each of the
SuperFields, ixSuperTable::getSuperField() returned NULL for one of the
SuperFields.
The SQLInsert() event has been called with the default handler
doSQLInsert(), but the engine reported an error. A problem might exist with
the sqlRole specifications of the SuperField columns. Try looking up the
engine error code, which is displayed in parentheses.
The column number given was less than one or more than the number of
columns in the SuperTable. Check the value that you are using for the
colNum argument to the ixSuperField constructor to make sure that it is in
range.
-50104 Attempt to open a popup ixWindow while its containing ixWindow is still
unopened.
-50105 Attempt to set a non-positive fontSize. Font sizes must be greater than zero.
-50106 Attempt to set default button in a top level style ixWindow. Only a
modalPopup style ixWindow can have a default button. No default button
will be set.
The SQLDelete() event has been called with the default handler
ixSuperTable::doSQLDelete(), but the engine reported an error. A problem
might exist with the primary-key specification, or a referential integrity
constraint might prevent the deletion. Try looking up the engine error code,
which is displayed in parenthesis.
If the program attempts to set a negative tab index for the control,
ixControl::setTabIndex() generates this message. Negative tab indexes are
not supported. The request is ignored.
The ixWindow constructor generates this message. The only style of window
that a modal window can contain is another modal window. The new
window is assumed to be modalPopup style.
When you create an ixRowArray, you need to include a valid ixRow object
that can be used as a schema for the rows in the array. This ixRow object is
used to specify the number of columns in the ixRowArray, as well as the type,
length, and initial value for each column. Check your program to ensure that
you are calling ixRowArray::ixRowArray() with a valid ixRow object.
The column number given was NULL or less than one. Check the value you
are using for the numDisplayedCols argument to the ixSuperTable
constructor to make sure that it is valid.
The row number given was NULL or less than one. Check the value you are
using for the numDisplayedRows argument to the ixSuperTable
constructor to make sure that it is valid.
The value specified for position was NULL, negative, or greater than 32,766.
-50118 Invalid position specified for the ixString::delete() member function.
The value specified for position was NULL, negative, or greater than 32,766,
or the length to be deleted was NULL or negative.
The value specified for position was NULL, zero, negative, or greater than
32,766.
The value specified for position was greater than 32,766. Check the width
value (using ixString::getWidth()) before calling ixString::setChar().
The value specified for position was NULL, negative, or greater than 32,766,
or the position was greater than the length of the existing object. Check the
width value (using ixString::getWidth()) before calling ixString::getChar().
You have asked to truncate the string to more than its maximum possible
length (32,766), or to a NULL or negative length. Check the width value (using
ixString::getWidth()) before calling ixString::truncate().
You have asked to pad the string either to more than its maximum possible
length (32,766) or to a negative value. Check the width value (using
ixString::getWidth()) before calling ixString::pad().
-50124 An item on the menu bar cannot have a check mark. The check will be
ignored.
This message is generated by ixMenu. Check marks can appear only next to
menu items on a dropdown (pulldown) menu, not on items in the menu bar.
Redo your menu to eliminate check marks on the menu bar.
-50125 Menu separators are not allowed on the menu bar. A dash will be drawn.
-50126 Accelerators are not allowed on the menu bar. The accelerator will be
ignored.
This message is generated by ixMenu. Items on the menu bar can have
mnemonics, but not accelerators. You should rewrite your menu to eliminate
accelerators on menu bar items.
-50129 Cannot specify format for SuperFields of any of the following types:
ixTypeInfo::SQLChar
ixTypeInfo::SQLByte
ixTypeInfo::SQLText
ixTypeInfo::SQLVarChar
ixTypeInfo::SQLInterval
-50130 An attempt was made to close a window while a modal popup window
contained by it was still being shown. This is not allowed; please close the
modal popup window first.
This message from ixApp occurs when enough DISPLAY statements have
been executed to fill the display viewer. If you answer OK, the viewer is
cleared, and the text from the current DISPLAY statement is written to it. If
you answer Cancel, the viewer is unchanged and the text of the current
DISPLAY is discarded.
-50134 Cannot retrieve more than 16382 rows into an ixSuperTable on Windows.
-50135 Cannot insert more than 16382 elements into an ixVector on Windows.
You cannot specify a lock mode without also specifying something to lock. If
neither an update table nor a table to select from is given, then there is no
place to retrieve from, and locking is unnecessary. This error usually results
from an omission in the constructor call (you do want to specify locking, but
you forgot to name the table) or inadvertently including an unnecessary
locking value. Check your code for both of these cases.
A picture string value controls what characters can be typed in, and its length
specifies how many characters a field can hold. You cannot enter more
characters than the picture string allows, so in the case where maxDataChars
is unequal to the picture length, it is adjusted to match. Check your
constructor call, and change maxDataChars.
-50201 The response to the transaction caused the DDE_FBUSY bit to be set.
-50202 A request for a synchronous data transaction attempt has timed out.
-50203 A DDEML function was called without first calling the DdeInitialize()
function, or an invalid instance identifier was passed to DDEML.
-50205 A request for a synchronous execute transaction attempt has timed out.
The requestor asked for a range of cells that exceeded the boundaries of the
SuperTable.
A mismatch existed between the data type that the requestor sought and the
server found.
-50234 DDE Error: Data transfer into SuperTable was not completed.
The server was unable to complete the delivery of items from the SuperTable
to the requestor.
-50401 Insert of an ixCollection into ixList, ixMultiset, and ixSet can only occur if
the ixCollection is fully typed, i.e., the value to be contained in the ixCol-
lection is fully specified.
-50402 INSERT and SET in ixList, ixMultiset, and ixSet are only allowed if the
ixValue object is non-NULL.
-50403 INSERT and SET in ixList, ixMultiset, and ixSet are only allowed if the
ixValue object is of the same class or derived from the ixValue object that was
specified in the constructor.
-50404 INSERT and SET in ixSet only allowed if ixValue object is unique to the ixSet.
An attempt was made to insert or set a duplicate element to the ixSet object.
Use a unique element that is not already contained in the ixSet object. To
check for the uniqueness of an element, use the contains( ) function call (as
described in the Standard Class Library Reference).
-50405 Item number for SET must be within the existing size of the ixList, ixMul-
tiSet, or ixSet.
The program called setValueStr( ) was called for a NULL or not fully typed
ixCollection object. A fully typed and non-NULL ixCollection object is
required here. For information on using ixCollection::ixCollection( ) to
construct a valid value type, refer to the Standard Class Library Reference.
-50409 The number of items does not match the number of items in the ixRow object.
An attempt was made to call setValueStr( ) with an input string whose item
number does not match that of the ixRow object. The item number of the
input string must be equal to the item number of the specified ixRow object
in order for setValueStr( ) to work properly.
-50410 Objects of this class are for use with INFORMIX-Universal Server only.
This text is not an error message but is displayed in an ixOleField when the
displayType is displayText. This text is placed in the .msg file for ease of
maintenance.
An attempt was made to store non-SQLByte data, or data that was not created
by an OLE document server, in an ixOleField. An OLE document server must
create valid data for an ixOleField. If the ixOleField is associated with a
column in a database, the column must be the SQLByte type.
The displayType value specified for the data in the ixOleField is invalid. For
ixOleFields in a grid-form SuperTable, the valid display types are display-
Default and displayText. For valid display types for ixOleField, consult the
NewEra documentation
A resource for ixOleByte cannot be found on the system. Check the spelling
of the resource name and make sure the resource file has been created.
During the construction of the OCX, the class ID that was passed in was
invalid or NULL.
-50712 Invalid value for InPlace. The default value will be set.
Default values are TRUE for free-form SuperTables and FALSE for grid-form
SuperTables.
A NULL value has been passed in for the BOOLEAN parameter inPlace during
the construction of the OCX. A value of TRUE uses in-place activation for the
OCX, whereas FALSE indicates that the OCX, when activated, will be
displayed in a separate window (out-of-place activation). For an OCX created
inside a grid-form SuperTable, the default is set to FALSE. For an OCX created
in a free-form SuperTable or in a window, the parameter will default to TRUE.
A NULL value was passed in for the value of the verbID to the doVerb( )
function. For supported verbs, consult the OCX documentation.
An invalid or NULL value was passed as a property name for the methods
get/setPropertyType or get/setProperty of ixOCXField. For valid property
names, consult the OCX documentation.
An invalid or NULL value was passed into the setData( ) method. The value
must be a valid ixValue object.
-50721 OCXError: The requested member is not supported for this particular OCX.
-50725 OCXError: One or more arguments could not be coerced to the specified type.
-50728 OCXError: A required parameter for the method or property of the OCX was
omitted.
-50729 OCXError: The property or method name is not known to the OCX.
-50732 OCXError: Type library could not be opened for this OCX.
-50733 GetProperty( ) failed. Cannot convert OCX value to the given property
type—returning NULL.
The function returns NULL if the value of the OCX property cannot be
converted to the data type that was specified in setPropertyType( ), or if the
data type of the OCX property is not supported.
-50735 SetProperty( ) failed. Cannot convert property value to OCX value. Value is
not set.
The type of the parameter passed for the current event is invalid.
The value of one or more parameters passed in for the current event is NULL.
The value for the type of the parameter passed in for the current event is
NULL.
The value stored in the ixVariant object is not a valid safearray (ixVector)
value.
-50746 Cannot update safearray with new value(s). Verify the safearray.
The value of one or more elements of safearray cannot be updated. Verify the
safearray.
The multidimensional safearray is not a valid safearray. Verify the array and
the dimension of the array.
The constructor of the ixVariant class takes either a valid ixValue object as its
first parameter and NULL as its second parameter, or NULL as its first
parameter and a valid ixVector object as its second parameter. Otherwise, the
ixVariant object is not created. Check the parameters.
The value passed in for the data member of type ixValue for the ixVariant
class is not a valid ixValue object.
The Connectivity Class Library does not support the CCL option that was
passed to ixSQLStmt::getInfo().
An attempt to set the AUTOCOMMIT mode to OFF failed. The ODBC driver
might not support manual commit mode. The ixSQLConnect object is in
AUTOCOMMIT mode. The Informix Connectivity Class Library does not
support this mode.
Correct all other processing errors. Try a different ODBC driver. If the error
recurs, please note all circumstances and contact the Informix Technical
Support Department.
Correct all other processing errors. Try a different ODBC driver. If the error
recurs, please note all circumstances and contact the Informix Technical
Support Department.
Correct all other processing errors. Try a different ODBC driver. If the error
recurs, please note all circumstances and contact the Informix Technical
Support Department.
Correct all other processing errors. Try a different ODBC driver. If the error
recurs, please note all circumstances and contact the Informix Technical
Support Department.
You may be attempting to insert or fetch an item of data type ixInterval into
an ODBC-compliant data source. This action is not supported. Another
possible problem is that the data source contains one of the ODBC data types
SQL_BITINT, SQL_TINYINT, SQL_BIT, SQL_BINARY, or SQL_VARBINARY,
then no equivalent NewEra class is derived for ixValue that corresponds to
these types.
Correct all other processing errors. Try a different ODBC driver. If the error
recurs, please note all circumstances and contact the Informix Technical
Support Department.
Correct all other processing errors. Try a different ODBC driver. If the error
recurs, please note all circumstances and contact the Informix Technical
Support Department.
Correct all other processing errors. Try a different ODBC driver. If the error
recurs, please note all circumstances and contact the Informix Technical
Support Department.
Correct all other processing errors. Try a different ODBC driver. If the error
recurs, please note all circumstances and contact the Informix Technical
Support Department.
An ixValue in the ixRow does not contain a matching type for the result
schema. Call ixSQLStmt::allocateRow() to get a new ixRow, and pass this
ixRow into ixSQLStmt fetchInto().
Correct all other processing errors. Try a different ODBC driver. If the error
recurs, please note all circumstances and contact the Informix Technical
Support Department.
Correct all other processing errors. Try a different ODBC driver. If the error
recurs, please note all circumstances and contact the Informix Technical
Support Department.
Correct all other processing errors. Try a different ODBC driver. If the error
recurs, please note all circumstances and contact the Informix Technical
Support Department.
Correct all other processing errors. Try a different ODBC driver. If the error
recurs, please note all circumstances and contact the Informix Technical
Support Department.
Correct all other processing errors. Try a different ODBC driver. If the error
recurs, please note all circumstances and contact the Informix Technical
Support Department.
Correct all other processing errors. Try a different ODBC driver. If the error
recurs, please note all circumstances and contact the Informix Technical
Support Department.
Correct all other processing errors. Try a different ODBC driver. If the error
recurs, please note all circumstances and contact the Informix Technical
Support Department.
Correct all other processing errors. Try a different ODBC driver. If the error
recurs, please note all circumstances and contact the Informix Technical
Support Department.
Correct all other processing errors. Try a different ODBC driver. If the error
recurs, please note all circumstances and contact the Informix Technical
Support Department.
Correct all other processing errors. Try a different ODBC driver. If the error
recurs, please note all circumstances and contact the Informix Technical
Support Department.
Correct all other processing errors. Try a different ODBC driver. If the error
recurs, please note all circumstances and contact the Informix Technical
Support Department.
Correct all other processing errors. Try a different ODBC driver. If the error
recurs, please note all circumstances and contact the Informix Technical
Support Department.
Correct all other processing errors. Try a different ODBC driver. If the error
recurs, please note all circumstances and contact the Informix Technical
Support Department.
Correct all other processing errors. Try a different ODBC driver. If the error
recurs, please note all circumstances and contact the Informix Technical
Support Department.
Correct all other processing errors. Try a different ODBC driver. If the error
recurs, please note all circumstances and contact the Informix Technical
Support Department.
Check the database schema, and ensure that all of the results selected map to
a NewEra ixValue data type. If a data type does not map, remove it from the
SELECT clause.
Correct all other processing errors. Try a different ODBC driver. If the error
recurs, please note all circumstances and contact the Informix Technical
Support Department.
Correct all other processing errors. Try a different ODBC driver. If the error
recurs, please note all circumstances and contact the Informix Technical
Support Department.
For each "?" in the SQL string, call ixSQLStmt::setParam() after the statement
has been prepared.
The parameter number is either less than zero or greater than the number of
"?" place holders.
You can have only one project per directory. Place each NewEra 3.0 project in
a directory that does not contain another NewEra 3.0 project. Also, the
directory in which you place a new project cannot be a subdirectory of
another project, and it cannot contain the project of another directory.
For example, if proj1 is under c:\all projects\proj1, and you create proj2,
you cannot place proj2 in the following directories:
■ c:\all projects\proj1, which is the same directory as another project,
proj1
■ c:\all projects\proj1\proj2, because the proj2 directory is a subdi-
rectory of proj1
■ c:\all projects, the proj2 directory that contains the proj1 directory
■ c:\all projects\proj2
■ d:\some directory\proj2
-51001 Please select a different name.
A project with the same name already exists. In each private workspace, a
NewEra 3.0 project must have a unique name. A project is uniquely
identified by its name.
The filename entered does not follow the Windows NT and Windows 95
rules for valid filenames. For more information regarding valid Windows
filenames, read the Windows NT or Windows 95 user guide.
-51005 The component you selected has the same name as an existing component in
the current project.
Use a name that has not already been used in this project. Each component in
a NewEra 3.0 project must have a unique component name. To copy a
component from another project to your currently open project successfully,
you must provide a unique name for the current project component. Enter
the unique name for the component in the Name text box.
-51006 The directory you specified is invalid. It may contain invalid characters,
drives, or paths, or be too long. Please enter a valid directory name.
The directory name entered does not follow the Windows NT and
Windows 95 rules for valid directory names. For more information regarding
valid Windows filenames and directory names, read the Windows NT or
Windows 95 user guide.
-51008 The directory path you entered does not exist, and it cannot be created.
Enter a valid name for the directory. The directory you specified could not be
created. Possibly you specified a nonexistent drive or invalid directory name,
you ran out of disk space, or an operating-system failure occurred.
-51009 An error has occurred while trying to access the specified directory.
Try again or enter a different directory name. The directory that you specified
could not be accessed. Possibly the directory is on a network drive that is not
currently connected, the default directory was removed from outside the
Application Builder (a known Windows 95 problem), or an operating-system
failure occurred.
Verify that the name does not contain invalid characters or exceed the length
limit, as specified in your Windows NT or Windows 95 user guide, and enter
the component name again. A component name must be a valid filename.
-51013 You cannot add files to a component if the files reside in a directory which is
not under the project directory that the component belongs to.
-51014 The directory you specified is under project name. Please enter a directory
that neither contains nor is contained by another project.
You can have only one project per directory. Each NewEra 3.0 project should
be placed in a directory that does not contain another NewEra 3.0 project.
Also, the directory in which you place a new project cannot be a subdirectory
of another project, and it cannot contain the project of another directory.
For example, if proj1 is under c:\all projects\proj1, and you then create
proj2, you cannot place proj2 in the following directories:
An error occurred in one of the dynamic libraries that the Application Builder
uses to access the private workspace.
-51016 You cannot remove the currently open project. Please close the open project
and then remove it.
A project cannot be removed while it is open and accessed by a user and other
processes. To detach any connections to the current project, it must first be
closed.
-51018 The project directory you specified is a subdirectory of a directory that does
not exist.
Either create the base directory or select a different directory for the project.
Application Builder creates a project directory only if the base directory
exists.
-51019 The selected item cannot be checked out because it is currently checked out
by another user.
Only one user can have a file or project locked at one time. If the file or project
does not show a padlock icon, you might have an out-of-date version. Try
reloading the file or project to see an updated view of it, or open the File
Versioning or Project Versioning dialog box and look in the shared
workspace tree view to see the latest version information. Using the tree view
lets you avoid downloading the latest version of the file or project
unnecessarily.
-51020 A file with the name filename already exists in the component, and cannot be
added. Please rename the file if you wish to add it. To continue press OK, to
terminate the operation, press Cancel.
Each component can contain only uniquely named files. Otherwise, the
binaries generated from the same-named source files would overwrite each
other.
-51021 The library name is already used by the component and cannot be added
again. To continue, press OK. To terminate the operation, press Cancel.
You can include a library for reuse in a component only once. You receive
link-time errors or warnings if you try to link in more than one copy of the
same library.
To continue downloading the rest of the files, click Yes. To terminate the copy
operation, click No. The file could not be fetched from the shared workspace,
and the file is not present on the disk. The loading possibly failed because of
network errors or other archive errors.
-51024 The file filename already exists in directory name and cannot be copied over.
A file with the same name exists in the directory where you want to copy the
files that belong to the copied component.
-51025 A disk error occurred while copying file filename. To continue with the other
files, select Yes. To terminate the copy operation, select No.
The disk copy of the file failed. Possible causes include insufficient disk
space, an inaccessible drive, a network failure, a read-only file with the same
name already existing in that directory, no write permissions to that disk
area, or an unknown disk system error.
Application Builder could not add the component to the project because an
error occurred in one of the dynamic libraries that Application Builder is
using to access the private workspace.
An internal error occurred while parsing the full filename of the file into the
project directory and offset file path. Either the application has become
unstable or a corruption exists in the private workspace. Close Application
Builder and attempt the operation again.
-51032 The file filename could not be removed. Continue with removing the rest of
the files?
Application Builder could not remove the file from the component because
an error occurred in one of the dynamic libraries that Application Builder is
using to access the private workspace.
The version information stored in the archive system is not correct. Appli-
cation Builder cannot continue the operation because it depends on the
version information to be consistent.
Either remove the file from the distribution headers list or add the file in the
sources list. The list of exported header files contains headers that you
removed from the source files list.
A header can be exported only if it is part of the component. If you need the
header, add it again to the list of sources. If you do not need the header,
remove it from the list of distributed headers.
Application Builder failed to check out or load the project or file because an
error occurred in one of the dynamic libraries that Application Builder is
using to access the private workspace.
-51036 Failed to create directories required to copy file filename. To continue copying
the rest of the files, select Yes. To discontinue file copying, select No. The
directories could not be created.
-51040 The project directory could not be set in the project object. Cannot create
project.
This error occurred in one of the dynamic libraries that Application Builder
uses to access the private workspace.
-51043 The directory name is not in a subdirectory of any of the local projects. Please
select directories that belong to local projects.
All files and components of a project must reside in directories that are under
the project directory.
-51047 You cannot snapshot a project with locked files. File filename is locked.
To snapshot a project, all its files must be checked in so that file versions
saved with the project are not modified.
-51052 Could not access directory name. Program could not be run.
The directory where the program is located could not be accessed. Possibly
the directory is on a network drive that is not currently connected, the default
directory was removed from outside Application Builder (a known Windows
95 problem), or a disk system failure occurred.
The program could not be found because it has not been built, the build did
not complete successfully, or the executable was removed. Rebuild the
program to run it.
-51056 Failed to create process and run program. Internal error while trying to create
new process to run the program.
You can remove a project only if none of its files are locked. If an attempt to
release a lock fails, the project is not removed. The failure occurred in one of
the dynamic libraries that Application Builder uses to access the private and
shared workspaces.
-51058 There were errors while removing the project files. Do you want to continue
removing the project?
Disk errors occurred while removing the project files. Source files might still
be left on your hard disk after the project removal is complete, which is not
serious.
-51060 You are about to use static library name in p-code. This will result in runtime
errors. Do you want to use name?
You can only link a dynamic link library (DLL) to p-code. If you link a static
library, you receive runtime errors. Change the library to a DLL (if possible)
and link again if you need this library.
Your registry might be corrupted. Exit the application and re-install NewEra.
Possibly the registry was corrupted, it was edited incorrectly, or the instal-
lation program did not complete the installation of NewEra 3.0 successfully.
-51063 Repository corruption. Object IDs do not return valid pointers. Exiting the
application.
Insufficient memory exists in the system to allocate a buffer for build results.
To free some memory, close the applications that you do not need.
-51065 Attempt to convert directory path pathname to UNC failed.
Ensure that each local drive that contains a project defined in your private
workspace (the INFORMIX project included) is shared. Application Builder
requires conversion of pathnames to the same format to ensure that no two
projects reside in the same directory or in directories contained by directories
of other projects. To convert a directory that is on a local drive to a UNC path,
that drive or directory must be a shared directory. Use the Windows Explorer
to share the drive or the directory or make it shared to only yourself if you do
not want others to have access to it.
-51067 The directory you entered contains project name. Please enter a directory that
neither contains nor is contained by another project.
You can have only one project per directory. Place each NewEra 3.0 project in
a directory that does not contain another NewEra 3.0 project. Also, the
directory in which you place a new project cannot be a subdirectory of
another project, and it cannot contain the project of another directory.
For example, if proj1 is under c:\all projects\proj1, and you then you create
proj2, you cannot place proj2 in the following directories:
■ c:\all projects\proj2
■ d:\some directory\proj2
-51068 The specified drive does not exist.
A path that you entered or a path retrieved from the private workspace does
not exist. If you used any network drives, confirm that they are connected
and mapped to the same drive name.
-51069 Operating system error. Default directory invalid and root of drive of default
directory cannot be accessed.
A possible cause of this error is the removal of the default directory and drive
while the processes were running. This error is a Windows 95 defect.
To clean the internal Windows cache that stored the deleted directory as the
default directory, close the application and reopen it.
-51072 File was not found on disk and it could not be downloaded because it is either
new or locked by you. Continue without the file?
To continue downloading the rest of the files, select Yes. To terminate the
copy operation, select No. The file could not be fetched from the shared
workspace, and the file is not present on the disk. Possibly the loading failed
because of network errors or other archive errors.
-51073 Could not find launch.exe. Make sure that INFORMIXDIR is in your path.
The NewEra 3.0 executable file launch.exe was not located in any directory
listed in your PATH environment variable. Make sure that the program exists
in the INFORMIX\bin directory and that the directory is included in your
PATH environment variable.
-51074 Could not find nmake.exe. Make sure your path includes the directory that
contains the Microsoft VC++ binaries.
The VC++ executable file nmake.exe was not located in any directory listed
in your PATH environment variable. Make sure that the program exists in the
MSVC++\bin directory and that the directory is included in your PATH
environment variable
-51075 Saved project state cannot be restored. The project state registry entries are
invalid.
The project that was open the last time you closed Application Builder cannot
be found in the private workspace. Either the private workspace was
modified outside of Application Builder, or you removed the project and
Application Builder terminated abnormally after the removal, or the registry
entries where Application Builder stores the state of the project were
inadvertently modified. Click OK to continue. Application Builder will start
without opening any project.
-51076 Main window dimensions and/or position values retrieved from the registry
are not usable in this resolution. If you did not change resolution, then your
registry entries may be corrupted and we recommend that you re-install
NewEra.
-51077 The name you entered is the name of an existing directory. Please enter a
different name for the project makefile.
A file cannot have the same name as a directory when the file and the
directory have the same parent directory. Give your makefile a name that is
not the name of another file or directory.
The file that you specified or the file that is being copied is already present in
this directory. If you do not need the existing file, overwrite it. Otherwise,
rename the file or specify a different directory in which to copy the files.
-51080 Project name name exists in both the shared and private workspaces. You
must either rename the project in the private workspace or cancel the current
operation.
A new project in your private workspace conflicts with a project name that is
checked in the shared workspace. Project names must be unique, so give your
local project a different name.
-51083 Cannot retrieve directory string for component name from repository.
-51084 Could not remove makefile filename. Application Builder needs to remove the
makefile to create an updated one.
Make sure the file is not set to read-only. If it is not, then an unknown disk
system error has occurred. Close the Application Builder or reboot the
computer.
-51086 Unable to retrieve session data from registry. Run RSAT and make sure that
you have created private and shared workspaces. Terminating application.
Required entries in the Application Builder include the private space name,
archive system type, and shared workspace name and location.
-51087 Failed to initialize repository session. To create functional private and shared
workspaces, you must run RSAT. Terminating application.
Required entries in the Application Builder include the private space name,
archive system type, and shared workspace name and location.
-51088 The file filename is a binary file (.lib, .dll, .o, etc.) that is already part of the
project, and it cannot be added to the sources list. To continue, select OK, to
terminate the operation, press Cancel.
You attempted to add a binary file that is already part of the project as a
source file. This action is not allowed.
-51089 An internal error prevented the local copy(ies) of your unlocked file(s) from
being refreshed.
-51091 Label name already exists. Labels must be unique for each version.
You cannot use the same label twice. Labels are used to tag different versions.
-51093 An attempt to add file filename1 failed because file filename2 is already part of
the component, and an overwrite will occur during a build. To continue
adding any remaining files, press OK. To exit, press Cancel.
Two files with the same stem name, such as filename.wif and filename.4gl, both
generate filename.ec, filename.c, and filename.obj when compiled.The last one
compiled overwrites the generated file of the other, so do not use the same
name for these files.
Only one user can have a file or project locked at one time. If the file or project
does not show a padlock icon, your version might be out-of-date. Reload the
file or project to see an updated view, or open the File Versioning or Project
Versioning dialog box and look in the shared workspace tree view to see the
latest version information. Use the tree view to avoid downloading the latest
version of the file or project unnecessarily.
-51097 The file filename could not be retrieved from the repository. To continue and
remove any remaining files, press OK. Press Cancel to exit.
-51098 Failed to remove filename from the component. To continue and remove any
remaining files, press OK. Press Cancel to exit.
-51100 Project name has been checked out by another user. To check out this project’s
files, press Yes. To terminate the operation, press No.
Only one user can lock a project at a time. The project that you want to check
out is already checked out by another user. However, you can lock any files
that belong to the project and that are not locked by another user.
-51101 You are about to add library name, which has been built for a different version
of Windows. This can result in link and/or run time errors. Do you want to
use name?
You can only link libraries built for the same operating system. You are
attempting to link a 16-bit library to a 32-bit component, or vv.
-51102 The project is invalid. It is checked out by you but it cannot be found in the
private workspace. Operation failed.
A project that you locked cannot be found in your private workspace. Verify
that you are connected to the correct pair of private and shared workspaces,
or, if you rebuilt your private workspace, that you provided clean-up infor-
mation in the archive that was tied to the removed private workspace.
-51103 The project name could not be registered in the shared workspace. Check in
cannot proceed.
-51104 This program requires library(ies) which are invalid. This may be because the
library(ies) have not been loaded to the private workspace yet. The program
cannot be launched under such conditions.
The program you are attempting to run has linked-in libraries that cannot be
found in the location specified by the link information. Probably the libraries
that you selected to link have been removed (or renamed) from the project in
which they were defined. Modify your component to contain the correct
libraries.
-51105 The shared workspace name could not be retrieved from the registry. Make
sure you have used RSAT to create a shared workspace(s). To continue in
disconnected mode, press OK. To exit the application, press Cancel.
You did not specify a shared workspace. If this is unintentional, use RSAT to
create one.
-51108 The full path pathname exceeds the Win95 full path limit of number characters.
Please reenter either the directory or the name or both.
Verify that what you specified was a single pathname. If the full pathname
exceeded the Windows 95 limit, specify a relative pathname whose total
number of characters is within the limit, or else reorganize your file system
so that the length of the full pathname does not exceed the limit.
-51109 Label exceeds the n character limit. Please reenter the label text.
Verify that what you specified was a single label. If the text of the label is too
long, specify shorter text.
-51110 Option name exceeds the n character limit. Please modify option and try
again.
Verify that what you specified was a single option. If the number of
characters in the option is too large, specify a shorter option.
Verify that what you specified was a single comment string. If the number of
characters in the comment exceeds the limit, specify a shorter comment.
-51112 Undo Check Out of file filename failed. Continue with remaining files?
-51201 No rules mentioned under the key: name. Please check the installation.
Registry values are not correct. Either installation did not complete success-
fully or possibly you modified these values. If this problem occurs
repeatedly, reinstall the product. If the error still occurs, you might need to
contact Informix Technical Support.
Whenever you modify the definition of the component or try to generate the
makefile, Application Builder tries to back up the currently existing makefile
to compname.mkb and creates a new makefile with the name
compname.mak. If you encounter an error while you attempt to create a
backup file, it might occur for any of the following reasons:
An error occurred while opening a makefile to insert the make rules. This
error might occur for any of the following reasons:
■ The disk might be full.
■ The backup makefile is opened by some other process.
■ The disk has become read-only.
-51206 Unable to get the Include files list for the component name. Please check the
-H path.
-51208 Filename is a generated file from other component. Please add the file to the
current component.
-51209 Filename dependent header file for source file filename missing from the
source list. Please add the file to the source list and regenerate the makefile!
-51213 Error from Dependency Generation while checking dependencies for the file
filename. Please check the component configuration.
This error is a warning. An error occurred while parsing the .4gl or .wif file
for dependent include header files. The compiler catches this error when you
compile this file. Application Builder emits a warning and continues with the
make/build process.
-51214 Project object is not valid. Please check the project information.
This error occurs if you try to build a makefile for a project in which there are
no components.
Whenever you issue a build request, Application Builder changes its current
working directory to the component working directory and invokes the build
process from that directory. The error occurs when Application Builder is
unable to change the current directory to the component working directory.
Creation of new repository object failed. For more details, click Help.
-51222c Error downloading binary file filename of use component filename from
project filename. Please build the missing library and rebuild the current
component.
You have a component that depends on libraries from other projects. Either
.lib or .dll of the libraries does not exist in the shared workspace. Check these
binaries before others can reuse these libraries and build their components.
This error is handled by Application Builder to take further action. The error
can occur if you try to build a component that depends on other components
from different projects, but the other projects do not exist in the private
workspace. Application Builder prompts you to download the required
projects.
-51225 A directory with the name name exists. Please rename the makefile name in
Project Attributes dialog.
-51226 Project name has a component with same name and same working directory.
Please change the project makefile name using Project Attributes dialog.
-51227 Disk file filename does not exist. This file is new and was never checked in.
This error probably occurred because you added a file to a component and
then removed the same file from the disk, and you are now trying to build
the component.
-51231 Component name is using library/imported library which does not exist in
project.
This error probably occurred because you tried to build a component from
another project, but the used component no longer exists in the external
project.
-51232 Use component name is no longer a library. Please modify the use component
list and rebuild.
This error probably occurred because you tried to build a component that
uses a component from another project, but the used component is no longer
a library in the external project.
-53003 The global variable name has been initialized multiple times.
Global variables can be defined several times, but only one declaration can
contain an initializing expression.
This error could leave the partially destroyed object in an inconsistent state.
Examine all !destroy( ) methods for object assignments that might reference
the self object.
-53501 Either the fglapps file is not found or it does not have read permission.
-53502 Either the application server executable is not found or it does not have read
permission.
Verify that the CommandLine entry in the fglapps file points to a valid
application server executable. If the executable is in place, verify that it has
the correct file permission.
The executable that is specified in the CommandLine entry of the fglapps file
is not a partitioned application server.
-53505 There is no section in the fglapps file for the specified application server.
The client application has requested a service name that the server does not
recognize. Verify that the client application is specifying the correct server
application name, and that the server configuration section is specified
correctly in the fglapps file.
Verify that the configuration section for the specified application server in the
fglapps file contains the CommandLine entry.
The data that was sent to the server has exceeded its allocated pool storage
space. Try defining a larger value for the SMEMPoolKBytes entry of the
fglapps file, or try reducing the total size of the parameters in the call or post
to avoid exceeding the size that is specified for the SMEMPoolKBytes entry.
The number of events sent to the server has exceeded its allocated queue
storage space. Try defining a larger value for the SMEMQueueSize entry of
the fglapps file or reducing the number of events that are pending at any one
time.
-53512 Connection between application client and server has been lost.
-53601 Handshake strings between application client and server are mismatched.
Check the handshake strings for the application client and the application
server.
-53607 Application server process was killed either from the command line or by
some external process.
The name that is specified for the service corresponds to the name of an
available service, but it is not the ASCL service. Examine your informix.ini
file for the SERVICE entry, and verify that the name that is specified is correct.
The specified file cannot be opened. Check permissions on the file and
directory.
The specified file cannot be opened. Check permissions on the file and
directory.
The specified file cannot be opened. Check permissions on the file and
directory.
The specified file has an extension that is recognized but is not valid. This
error typically means a source file was specified on the command line, or a C
code system object file (library, ...) was specified. FGLLIB and FGLLINK deal
only in .4ga, .4gi, and .4go files.
A library was specified using -lname, but the code could not locate the
library. If it exists, specify the directory where it is with the -L option.
The file is corrupted and should not be used. The interpretable file was
corrupted and could not be removed. This condition requires the directory to
be read-only and signals to arrive at inopportune moments. Try to reset the
directory permissions and rerun the command without sending any signals.
The file is corrupted and should not be used. The library was corrupted and
could not be removed. This condition requires the directory to be read-only
and signals to arrive at inopportune moments. Try to reset the directory
permissions and rerun the command without sending any signals.
The specified symbol was referenced with one type and defined with a
different type.
The program was unable to seek on the specified file. This situation could
occur if the specified file was actually a FIFO or something equally obscure.
The specified signal arrived, and the program is exiting. Rerun the program.
-54017 Name: You must use one of the options -d, -r, -t, -u, or -x.
FGLLIB requires one of the specified options on the command line. Rerun the
program with one of these options specified. Specifying -l -r specifies a
library lib-r.4ga.
The program tried to allocate memory but failed. Release some system
memory (perhaps by exiting some programs or by removing some files from
/tmp).
An error occurred while reading the file. The system error information (if
any) might help diagnose the problem. Rerun the program. Use cat filename
> /dev/NULL on UNIX to see if the problem occurs outside the program. If it
does, suspect a faulty disk.
An error occurred while reading the file. The system error information (if
any) might help diagnose the problem. Rerun the program. A possible cause
is lack of disk space or a faulty disk.
-54022 Name: no object files were specified on the command line, but at least one
must be specified.
-54023 You already specified a partial or incremental link. You cannot re-specify this
with -i name.
FGLLINK accepts the -o and -i options, but only one of them can be specified
(once) for a given run. Change the command line and rerun the program.
-54024 You already specified a full or initial link with the -o option. You cannot also
specify a partial or incremental link with -i name.
FGLLINK accepts the -o and -i options, but only one of them can be specified
(once) for a given run. Change the command line and rerun the program.
The p-code file seemed to be valid but contained unexpected data. The file is
corrupt. Recompile it.
-54026 The p-code versions name1 and name2 are not compatible.
Two different files contain two different p-code versions, and the versions are
known to be incompatible. Recompile one or the other of the files.
The p-code version detected in the file was not recognized by FGLLIB and
FGLLINK. Either you need to upgrade FGLLIB and FGLLINK, or you have
some file that looks like a p-code file but is not one.
The program searched for the specified file but could not find it.
The program searched for the specified file but could not find it.
-54030 Cannot locate object file, library file, or interpretable file corresponding to the
name filename.
The program searched for the specified file but could not find it.
-54031 Cannot apply stat(2) system call to previously opened file filename.
This problem is almost an internal error, but the system declined to allow the
program to do something to a file that it should do. Another program might
have removed the file or changed the permissions while this program was
working on it. You will probably not be able to repeat this problem.
When the program tried to close the named file, it received an error. If the file
was being written, you might have run out of disk space (the system error
information, if any, might help). If a file was being read, the cause of the error
is not clear.
The specified file should be a library file, but is not. Change the command
line to specify a valid filename.
The specified file should be a library file, but is not. Change the command
line to specify a valid filename.
The specified file should be a library file, but is not. Change the command
line to specify a valid filename.
A file specified on the command line should be in the library but was not.
Check the contents of the library (-t option) and change the command
appropriately.
A named file exists but could not be accessed. Either the directory or the file
permissions are too restrictive.
-54040 File filename was named more than once on command line.
A specific file was named twice on the command line. This situation is never
valid. Rerun the command after you delete one occurrence of the name.
-54043 The module name name has already been scanned but is needed again.
To work with the debugger, the module names linked into the program must
all be unique.
Somewhere in scanning the object files and libraries, the same object file
name (excluding path information) needs to be read twice. Rereading the
same object file name twice confuses the debugger. It might lead to confusion
if an error is reported in this module.
The program tried to perform the specified operation on a temporary file but
failed. A permissions problem or an unusual umask value (000) might exist.
The program tried to perform the specified operation on a temporary file but
failed. A permissions problem or an unusual umask value (000) might exist.
The program tried to perform the specified operation on a temporary file but
failed. A permissions problem or an unusual umask value (000) might exist.
The program tried to perform the specified operation on a temporary file but
failed. A permissions problem or an unusual umask value (000) might exist.
-54049 Two libraries were named on the command line, but only one is permitted.
The second library was designated by name.
Two libraries were specified, but FGLLIB can work only on one in any given
run. Revise the command line.
FGLLINK requires at least one object file or library file on the command line.
One piece of code calls the named function as a function; another piece of
code treats it as a report. One of them is wrong.
This user cannot write the named file. Change the permissions, either on the
file or on the directory that contains the file.
-54054 You already specified a partial or incremental link with the -i option. You
cannot also specify a full or initial link with -o name.
You attemtped to specify -o (or -i) twice on the FGLLINK command line,
which is not allowed. Change the command line and rerun the command.
-54055 You already specified a full or initial link. You cannot re-specify this with -o
name.
You attempted to specify -o (or -i) twice on the FGLLINK command line,
which is not allowed. Change the command line and rerun the command.
This user cannot read the specified file. Change the permissions, either on the
file or on the directory that contains the file.
This user cannot read the specified file. Change the permissions, either on the
file or on the directory that contains the file.
The specified option is not a valid option for the command. Change the
command line and rerun the command.
The specified option is not a valid option for the command, but the option
character is not a printable character. Change the command line and rerun
the command.
The specified option requires an argument, but none was given. Add the
necessary argument to the command line and rerun the command.
-54100 The colNum property is out of range. It must be greater than zero and less
than or equal to numDisplayedCols.
Provide a positive value for this property. Check that the object is entered in
the system registry.
-54102 OLE initialization failed. Make sure that the OLE libraries are the correct
version.
-54103 Failed to create object. Make sure the object is entered in the system registry.
The file is not a valid WIF file. Make sure that the file has correct version infor-
mation and is spelled correctly.
You already imported the ROF file. To reread the same ROF file, select
Refresh ROD from the File menu.
-54110 The ROF which is about to be exported is currently imported on this WIF. If
you proceed, the ROF file on disk will be updated. Do you want to continue?
If you proceed, the ROF file on disk will be overwritten. Click Yes if you want
to overwrite changes; otherwise, click No.
The ROF object name will be replaced by a unique name. Any handlers that
used the old name will need to be updated.
NewName = filename2
Another object has the same name as the ROF object. This situation is not
allowed in Window Painter. The ROF object name will be replaced by a
unique name. Update any handlers that used the old name.
-54112 Object name is linked to a ROF. Continuing will statically unlink the object
from the ROF. The object remains unlinked as long as the WIF is not reopened
or refreshed. Do you wish to continue?
You imported a ROF file in the current window that contains more than one
object. You selected one of the objects and clicked Delete or Cut or selected
Delete or Cut from the Edit menu. If you continue the action, the objects will
be unlinked from the ROF.
-54113 Object name is linked to a ROF. Continuing will break this link from the ROF,
and the ROF will be unlinked from the WIF. Do you wish to continue?
You imported a ROF file in the current window that contains only one object,
or you unlinked all the other objects except the current one. If you unlink this
object from the ROF, the ROF file will be unlinked. When you refresh the ROF
file, it will be unavailable.
Window Painter could not open the bitmap file. Either it does not exist, or it
does not have read permissions.
Window Painter could not read the bitmap file. It might be corrupted, or it
might not be in the proper format.
-54116 Unable to load: filename1 but was able to load: filename2. The properties of this
picture button should be updated if this is the correct picture.
Window Painter was unable to load the bitmap as saved in the previous WIF
file but was able to load the bitmap when it searched in the current WIF
directory. If the picture appears incorrect, reassign the values to the picture
button properties.
You created master-detail SuperTables in different WIF files and saved them
in the current directory. If you try to save one of the WIF files with a different
name in the same directory, you will break the consistency of the master-
detail relationship.
-54121 The are default handlers left in name may cause errors.
-54122 This ixMDSuperTable cannot be used for a detail table. Please check on the
following: The updateTable property is not set for this ixMDSuperTable
detail.
You selected this SuperTable to be the detail of the master SuperTable. But
Window Painter determines the relation by checking the updateTable
property, and you have not set the updateTable property for this SuperTable.
Set it and try again.
-54123 This ixMDSuperTable cannot be used for a master. Please check on the
following: The updateTable property is not set for this ixMDSuperTable.
The Format Converter is used only to convert WIF files, not ROF files, to
NewEra files.
The operating system ran out of memory. Either reboot the computer or
increase computer memory.
-54130 The linked SuperTables of SuperTable name are not selected and Export is
disabled.
The linked SuperTables must be exported together in ROF files. Exporting one
of a group of linked SuperTables is not allowed.
The matched object for this line was deleted in the WIF file, and you cannot
access it in Window Painter.
The matched handler for this line was deleted in the WIF file, and you cannot
access it in the corresponding handler in Language Editor.
-54133 The line number is beyond the end of the generated code.
The line number is beyond the end of generated NewEra code. The WIF file
contains no matched objects.
This error occurs when another NewEra component in the IDE requests a
jump to a line in a file type that does not support such actions. This error
occurs when the file associated with an object is not a WIF file; for example, it
is a ROF file or a WIX file.
-54135 Because the file has changed since the open, the line numbers may not match
the last build and the wrong line number may be selected.
This warning occurs when you try to jump to a line in the WIF file based on
line number information generated prior to changes that you applied. For
this warning to go away, do a build in Application Builder.
-54136 The clipboard is empty or there is insufficient memory for this operation.
This error occurs when you perform a paste operation without a corre-
sponding cut/copy operation.
If Window Painter cannot correctly restore the contents of a WIF file when
that file is opened, quite possibly the file is corrupt. Restore from a backup if
a backup is available.
If Window Painter cannot correctly restore the contents of a WIF file when
that file is opened, quite possibly the file is corrupt. Restore from a backup if
a backup is available.
Window Painter creates a temporary file on disk for handlers. This error
occurs when that operation fails. Find out if enough space exists on the hard
disk that contains the directory to which the TEMP environment variable
points.
Window Painter creates a temporary file on disk for handlers. This error
occurs when a read operation fails on that file. Find out if enough space exists
on the hard disk that contains the directory to which the TEMP environment
variable points and if the file is visible and has read permissions set.
Window Painter creates a temporary file on disk for handlers. This error
occurs when it cannot delete this temporary file. Find out if enough space
exists on the hard disk that contains the directory pointed to the TEMP
environment variable. Make sure the file is visible and has read permissions
set. Find out whether any other application (such as an editor) has opened the
same file.
This error occurs when the Name property of an object has the same name as
that of another object in the WIF file.
No primary key column exists in the SuperTable. The update table is the table
from which the data that fills the SuperFields is obtained. The UpdateTable
property is valid only if you have the primary key of the associated update
table available as a SuperField in the SuperTable.
The value you entered for the Name property is not valid. The name property
value must not be empty.
-54154 No SuperFields pasted in the SuperTable. This may result in errors in the
program.
The data source could not be opened. Make sure that the appropriate drivers
were properly installed or that the data source name was entered correctly.
-54160 ROF file missing from the directory of the WIF file.
The current WIF file includes ROF objects, but its linked ROF files are not
located in the same directory with the WIF file. A refresh cannot be
performed.
In order to export a grid SuperTable to a ROF file, you must select the
SuperTable, not the internal grid.
The mnemonic object name must represent a valid current object in Window
Painter.
You tried to move master and/or detail SuperTables that are linked. Move is
not allowed to a new window in this situation.
-54171 The SuperTable name has linked information and pasting is not allowed.
You tried to paste master and/or detail SuperTables that are linked. Paste is
not allowed in this situation. Drag and drop is not allowed either.
You tried to copy master and/or detail SuperTables that are linked. Copy is
not allowed in this situation.
The maximum grid size is 100 rows. You exceeded this limit.
You are changing the menu title to a separator. A top-level menu item should
not be a separator.
The file that you are trying to open or import is not a valid ROF file. The
syntax of the file is improper. Check the location, syntax, and name of the
ROF file.
This menu was a second-level menu, and now you want to make it a top-level
menu. Top-level menus must have the menuState property set to notAcheck.
Window Painter will set the menuState for you with this message box.
-54178 Unable to add SuperFields to detail table. The master table name is missing
required column name, needed to maintain.
You pasted master and detail SuperTables separately and are now trying to
link them. Although the updateTable properties match, the master
SuperTable does not contain the primary-key column through which the
tables are linked in the SuperView. To correct the problem, paste the primary
key for the table in the SuperTable and make the link again.
The filenames entered in the command-line option are invalid, the command
entered is invalid, or the drive letter entered with the filename (for PCs) is
invalid. Make sure that no spelling errors or syntax errors appear in the
command. For the correct syntax, refer to Appendix E of the Development
Tools Reference.
The specified file cannot be read, opened, or created for some reason. Check
permissions on the directory. Confirm that disk space is available within the
file system.
-54503 Backup file could not be created. Check if the file already exists or if the file
permissions are incorrect.
The specified file cannot be created for some reason. Check the permissions
of the directory and the backup file. Also, verify that no file with the same
name already exists in the current directory.
You used the wrong command-line syntax for CCLMIG. For the correct
syntax, refer to Appendix E of the Development Tools Reference.
-54506 One or more tokens on the following line could not be converted.
The cclmig utility did not convert the whole line or a part of the line because
of language restrictions. Check the line number and examine the code.
-54507 getODBCErrorCode is called in this line. Please examine your source code to
determine if further modifications are required.
The cclmig utility did not convert the whole line because the code in the line
needs to be examined carefully before a modification is made.
-54508 Program died due to an internal processing error. This was probably caused
by a source code line exceeding 1024 characters.
The program was unable to handle the required processing. Check the input
filename for any discrepancies. Revise the source code so that no single line
exceeds 1024 characters.
The command tried to use NewEra VCL/Character with termcap, but it is not
supported on this computer.
A shared library name was specified, but the suffix is not correct for this
system.
The extension of the executable file is not valid. You accidentally specified an
object file instead of the .4ge file.
-54627 The name1 option cannot be used with the name2 option.
The two specified options are mutually exclusive, but you tried to specify
both. Change the command line and rerun the command.
The specified file was not found. Check the command line to see if it was
correctly specified or if the file exists.
-55235 Unknown shared memory mode 'number', or onprobe version does not match
OnLine version (INFORMIXSERVER 'server-name').
Verify that OnLine is initialized and that its shared memory exists. Use the
'oninit -V' and 'onprobe -V' commands to check versions of oninit and
onprobe. The versions should be identical.
-55236 Shared memory is being initialized or aborted, or onprobe version does not
match OnLine version (INFORMIXSERVER 'server-name').
Verify that OnLine is initialized and that its shared memory exists. Use the
'oninit -V' and 'onprobe -V' commands to check versions of oninit and
onprobe. The versions should be identical.
A service that was intended for use by DB/Cockpit must be defined with the
'tcp' protocol name.
Check whether the 'ping' and 'rlogin' commands can access the specified
host.
If the X server access control facility is activated for this DISPLAY, you might
need to run the 'xhost +' command to allow connection to the X server. You
have to run the 'xhost +' command from the local computer (as the DISPLAY
environment variable specifies).
You can immediately precede the name of the program with -anyerr if you
want the global status variable reset when certain non-SQL operations fail.
The -anyerr option is equivalent to specifying WHENEVER ANY ERROR in
place of WHENEVER ERROR; see the description of the WHENEVER compiler
directive in the Language Reference.
-55501 The -V option must be used on its own with no other arguments.
To find out the version number of your software, enter the command, with
-V as the only command-line option. If you want to run the program with or
without any other command-line options, do not specify -V.
Text (option_name) following a colon (:) was not a valid suboption. For infor-
mation on which suboptions are valid with the option, see the on-line help.
You specified more than one CPU-type command-line option (for example,
-cpu:i386 and -pm) that identifies the CPU type. Enter the esql command
again without the conflicting options.
For ESQL/C: You specified more than one runtime option (for example,
-runtime:libc and -rt:d). Enter the esql command again without the
conflicting options.
For ESQL/COBOL: You specified more than one runtime option (for example,
-runtime:mfrts32 and -rt:s). Enter the esqlcobo command again without the
conflicting options.
For ESQL/C: You specified more than one subsystem option (for example,
-ss:c and -S:w). Enter the esql command again without the conflicting
options.
For ESQL/COBOL: You specified more than one subsystem option (for
example, -ss:c and -Sw). Enter the esqlcobo command again without the
conflicting options.
For ESQL/C: This release does not support the specified command-line
option. For valid options, check the INFORMIX-ESQL/C Programmer’s
Supplement for Microsoft Windows Environments.
For ESQL/COBOL: This release does not support the specified command-line
option. For valid options, check the INFORMIX-ESQL/COBOL Programmer’s
Supplement for Microsoft Windows Environments.
For ESQL/C: Unable to open the ESQL/C preprocessor log file. Probably no
space is available. Increase available space, and enter the command again.
For ESQL/C: You specified the -e command-line option but did not specify an
ESQL/C source file (.ec file extension). Enter the command again, specifying
the name of the .ec file.
For ESQL/COBOL: You specified the -e command-line option but did not
specify an ESQL/COBOL source file (.eco file extension). Enter the command
again, specifying the name of the .eco file.
You specified the -o command-line option but did not specify an output file.
Enter the command again, specifying the filename of the output file.
You specified more than one command-line option that identifies the
compiler type (for example, -mc and -bc). Enter the esql command again
without the conflicting option.
-55918 Missing name of source file list file for '-f' option.
For ESQL/C: You specified more than one application type option (for
example, -wd and -target:exe). Enter the esql command again without the
conflicting options.
For ESQL/COBOL: You specified more than one application type option (for
example, -wd and -target:exe). Enter the esqlcobo command again without
the conflicting options.
For ESQL/C: The esql command processor cannot open the specified ESQL
command-line response file. Verify that the name of the file after the '@'
option exists.
For ESQL/C: The ESQL/C preprocessor detected one or more errors, causing
the processor to stop. Correct the errors, and rerun.
You did not specify the name of a source or the program object file. No files
could be passed to the linker. Enter the command again, specifying the name
of the file(s) to pass to the linker.
For ESQL/C: The esql command processor could not open the specified file.
If you specified the -f option, check that the source list file exists. If -f was
omitted, this error indicates that the processor cannot find the necessary
space to create some file.
For ESQL/COBOL: The esqlcobo command processor could not open the
specified file. If you specified the -f option, check that the source list file
exists. If -f was omitted, this error indicates that the processor cannot find the
necessary space to create some file.
For ESQL/C: The esql command processor cannot start the compiler. Make
sure the directory that contains your C compiler is included in the PATH
environment variable.
For ESQL/C: The esql command processor cannot start the linker. Make sure
the directory that contains your linker is included in the PATH environment
variable.
For ESQL/COBOL: The esqlcobo command processor cannot start the linker.
Make sure that the directory containing your linker is included in the PATH
environment variable.
For ESQL/C: The esql command processor cannot start the resource
compiler. Make sure the directory that contains your resource compiler is
included in the PATH environment variable.
For ESQL/C: The esql command processor cannot locate the ESQL
command-line response file (specified after the '@'). Verify that the filename
is correct.
For ESQL/C: You have not provided the name of an ESQL/C source file.
Possibly you specified the -e option (preprocess only) and omitted the name
of an ESQL/C source file (.ec file extension). Possibly you specified the -c
option (preprocess and compile only) and omitted the name of an ESQL/C
source file (.ec) or C source file (.c).
The command-line response file file_name is too large. Decrease its size, and
run the command again.
The ESQL/C multibyte filter has encountered one of the following conditions:
-Unable to write to the source (.c) file when it renames the file
Check the file permissions on the directory that contains your ESQL/C source
file to ensure that you have read and write permission. Also check the file
permissions on the ESQL/C source file itself to ensure that you have read and
write permission.
The repository accessed an invalid object. This error should never occur by
itself. To identify the problem, see the related errors.
-66565 Error while reading filename from the project definition file.
-66566 Error writing filename to the project definition file for project.
An error occurred while writing to the project definition file. Check for disk
space and other file-system-related problems.
The connection to the private workspace was lost. Relaunch the tool and try
again. Check that database connectivity settings are correct.
-66570 A different project of the same name exists in your private workspace. Project
name1 in the private workspace comes from name2, but project name1 in the
shared workspace is from name3.
You have two projects with the same name. The project in the private
workspace is different from the one in the shared workspace. Remove the
project from the private workspace if you want to load the one in the shared
workspace. Or modify the shared workspace settings if you want to see, in
the shared workspace, the project that currently is in your private workspace.
-66571 Could not find version information for the object name.
The repository could not find the version information of the given object in
the shared workspace. Check for access to the shared workspace and check
to see if the shared workspace contains the archive files of the given project
or file.
-66572 Error refreshing local copy of file filename from the shared workspace.
This error normally occurs when checking in a project. Verify that you have
enough disk space and check for other operating-system-related problems.
The version report could not be generated for the given file. Check to see if
PVCS is functioning correctly and if the shared workspace and the specified
archive are available and accessible.
The repository could not snapshot the project. Check for a locked project or
files. Check for sufficient disk space in the following locations, in this
order:
1. The path specified by the TMP variable
2. If TMP is not set, the path specified by the TEMP variable
3. If TEMP is not set either, the current directory
4. The archive where the project is stored
-66578 Could not delete object name from shared workspace.
The specified object could not be deleted from the shared workspace archive.
Verify that the archive exists and is accessible. Check also to see if any other
process is using the archive.
The project definition file could not be opened. Check for operating-system
problems.
An error occurred while attempting to read the project definition file. The
project definition file is corrupted. Reload the project definition file or a
previous version of it.
An error occurred while attempting to write the project definition file. Check
for operating-system problems.
-66584 Could not seek to offset name in the project definition file filename.
-66585 An error has occurred performing I/O on the project definition file.
An error occurred while parsing the project definition file. The project
definition file is corrupted. Reload the project definition file or a previous
version of it.
The PVCS configuration file could not be updated. Verify that ifmxpvcs.cfg
exists in the INFORMIXDIR\lib directory. Confirm also disk space and write
permissions in INFORMIXDIR.
The archive directory specified is incorrect. Check for access and write
permissions to your archive directories.
You do not have permissions to access the archive file. Check for CM and
operating-system permissions.
The specified DLL could not be loaded. Check to see if the DLL exists and
check that its location is in your path.
The DLL that was loaded does not contain the specified function. Verify that
the appropriate DLL is the first in the path and is the required version.
The connection to the external CM system does not exist. Verify the CM
installation.
The archive that was specified for the operation was not found. Verify that
the directory is accessible.
The specified version of the object was not found in its archive.
Unable to set the archive path to the given location. Check configuration of
and access permissions to archive directories.
The archive path for the given location cannot be removed. Check configu-
ration of and access permissions to the archive directories.
The external CM system is unable to handle an archive path this long. Shorten
the archive directory path.
The checked-out version of the file specified cannot be found. Confirm that it
exists and has the required access permissions.
The repository was unable to delete the file specified. Check for access
permissions and operating-system errors. Also, check to see if the file is being
used by another process.
The repository was unable to delete the specified directory. Verify that the
directory is empty or that none of the files in the directory are being used by
other processes.
The repository could not create the directory specified. Check for access
privileges and operating-system errors.
-66612 There are no archives associated with the default shared workspace name.
The default shared workspace does not have any archives associated with it.
Modify the definition of this shared workspace and add a writable archive
directory to it.
The repository could not add the specified use component to the given
component. Check to see if the use component exists.
-66622 Could not remove object name from the private workspace.
The repository was unable to remove the specified object from the private
workspace. Check for database errors.
The repository was unable to create the project specified. Check for database
errors.
-66628 Could not create component name of project name in private workspace.
The repository was unable to create the component specified. Check for
database errors.
-66629 Could not create file filename of project name in private workspace.
The repository was unable to create the file specified. Check for database
errors.
The specified project was not found in the shared workspace. Check the
shared workspace configuration. Check also for CM mismatches, for access to
the shared workspace directories, and for project name conflicts.
-66632 The component name of project name cannot be found in the shared
workspace.
The specified component was not found in the shared workspace. Find out
whether the component exists in the current version of the project. Also check
the shared workspace configuration and check for CM mismatches and for
access to the shared workspace directories.
-66633 The file filename of project name cannot be found in the shared workspace.
The specified file was not found in the shared workspace. Find out whether
the file exists in the current version of the project. Also check the shared
workspace configuration and check for CM mismatches and for access to the
shared workspace directories.
The specified project already exists in the shared workspace. Rename your
project and try again.
-66635 The component name of project name already exists in the shared workspace.
-66636 The file filename of project name already exists in the shared workspace.
The specified file already exists in the shared workspace. Rename the file and
try again.
-66637 Could not create the project name in the shared workspace.
The specified project could not be created in the shared workspace. Check the
shared workspace configuration, disk space, and access permissions.
-66638 Could not create component name of project name in the shared workspace.
-66639 Could not create file filename of project name in the shared workspace.
The specified file could not be created in the shared workspace. Check shared
workspace configuration, disk space, and access permissions.
The repository could not check in the specified project. Check related errors.
Also check shared workspace configuration, disk space, and access
permissions.
-66641 Could not check in file filename of project name into the shared workspace.
The repository could not check in the specified file. Check related errors. Also
check shared workspace configuration, disk space, and access permissions.
-66642 Could not check out project name from shared workspace.
The repository was unable to check out the specified project. Check related
errors. Also check for disk space and access permissions in the project root
directory and the database directory.
-66643 Could not check out file filename of project name from the shared workspace.
The repository was unable to check out the specified file. Check related
errors. Also check for disk space and access permissions in the project root
directory and the database directory.
-66644 Could not uncheckout project name from the shared workspace.
The repository was unable to uncheckout the specified project. Check related
errors.
-66645 Could not uncheckout file filename of project name from the shared
workspace.
The repository was unable to uncheckout the specified file. Check related
errors.
The specified directory does not have write permissions for the user.
The repository was unable to create a lock file in the shared workspace.
Check for disk space and access permissions in the shared workspace.
The new project specified was not registered with the shared workspace.
-66649 The file filename of project name is not checked in and is not a generated file.
The project specified contains new files that are not generated and still are not
archived. This situation is inconsistent. Check to see if the database is
corrupted.
-66655 The root directory name of project name does not exist or is not accessible.
Either the return type buffer is empty or the length of the buffer is not valid.
Check the file permissions on the directory that contains your ESQL/C source
file to ensure you have read and write permission. Also check the file permis-
sions on the ESQL/C source file itself to ensure you have read and write
permission.
Notices
A
IBM may not offer the products, services, or features discussed
in this document in all countries. Consult your local IBM repre-
sentative 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 give you any license to these patents. You
can send license inquiries, in writing, to:
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.
Licensees of this program who wish to have information about it for the
purpose of enabling: (i) the exchange of information between independently
created programs and other programs (including this one) and (ii) the mutual
use of the information which has been exchanged, should contact:
IBM Corporation
J74/G4
555 Bailey Ave
P.O. Box 49023
San Jose, CA 95161-9023
U.S.A.
The licensed program described in this information 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 equiv-
alent agreement between us.
All IBM prices shown are IBM’s suggested retail prices, are current and are
subject to change without notice. Dealer prices may vary.
Notices A-3
Trademarks
Each copy or any portion of these sample programs or any derivative work,
must include a copyright notice as follows:
If you are viewing this information softcopy, the photographs and color illus-
trations may not appear.
Trademarks
AIX; DB2; DB2 Universal Database; Distributed Relational Database
Architecture; NUMA-Q; OS/2, OS/390, and OS/400; IBM Informix;
C-ISAM; Foundation.2000TM; IBM Informix 4GL; IBM Informix
DataBlade Module; Client SDKTM; CloudscapeTM; CloudsyncTM;
IBM Informix Connect; IBM Informix Driver for JDBC; Dynamic
ConnectTM; IBM Informix Dynamic Scalable ArchitectureTM (DSA);
IBM Informix Dynamic ServerTM; IBM Informix Enterprise Gateway
Manager (Enterprise Gateway Manager); IBM Informix Extended Parallel
ServerTM; i.Financial ServicesTM; J/FoundationTM; MaxConnectTM; Object
TranslatorTM; Red Brick Decision ServerTM; IBM Informix SE;
IBM Informix SQL; InformiXMLTM; RedBack; SystemBuilderTM; U2TM;
UniData; UniVerse; wintegrate are trademarks or registered trademarks
of International Business Machines Corporation.
Java and all Java-based trademarks and logos are trademarks or registered
trademarks of Sun Microsystems, Inc. in the United States and other
countries.
Windows, Windows NT, and Excel are either registered trademarks or trade-
marks of Microsoft Corporation in the United States and/or other countries.
Other company, product, and service names used in this publication may be
trademarks or service marks of others.