Informix is an SQL-based object-relational DBMS produced by IBM. This tag is appropriate for questions about any of the products with Informix in the product name.
2
votes
1answer
114 views
What are the incompatibilities for ESQL/C programs while migrating from HP-UX to Red Hat Linux?
I am migrating a project and we need to migrate ESQL/C source files from HP-UX to Red Hat Linux.
What may be the incompatibilities while moving these ESQL/C files to Linux?
2
votes
1answer
320 views
Variable binding for Informix returns an error
I get the following error when I add :start as the parameter to skip. I know the SQL query works if I hard code the SKIP/NEXT values and the :customerID is left alone. If I remove the the :start ...
2
votes
1answer
495 views
Type casting in Hibernate for column in Informix database
im using Informix for a OR database and on the backend of my application Spring + Hibernate.
The thing is, I make in a String variable the query that inserts data in the database table. In this query ...
1
vote
1answer
52 views
incomplete ,non well-formed data
I face the following problem and i can't fix it :
I want to store some fields with its format so that i could show that data in formatted view in my report later .
I use RadEditor : like this :
...
1
vote
1answer
24 views
Informix SQL: what does this syntax ||“-”|| means?
I'm trying to understand what this sign means in Informix SQL >> ||"-"||
An example of a query that has this is:
DELETE FROM table1 WHERE field1||"-"||field2
IN (SELECT field1||"-"||field2 ...
1
vote
1answer
86 views
php pdo_informix on windows 7 64 bit and wamp 64 bit
I try to install pdo_informix in WAMP 64 bit on windows 7 64 bit, but I found problem because pdo_informix.dll is version 32 bit. I try to search for pdo_informix.dll, but I can't found it. How to ...
1
vote
1answer
70 views
Informix Database triggers
I'm trying to query triggers from "systriggers/systrigbody" informix system table. I need the data column of systrigbody table when datakey columns is 'A' and 'D', and should ignore the rest. Here's ...
1
vote
1answer
43 views
isql not working with complex row type
I have created a table in Informix:
create table tab_unmrow
(
area integer,
rectangle row(
x integer,
y integer,
length integer,
width integer)
...
1
vote
1answer
274 views
High cpu usage by process/informix
I am facing a problem with my process in the production environment and I am able to simulate the issue in my dev environment as well.
The process has 5 threads of which thread 3 & 4 are highly ...
1
vote
1answer
180 views
Informix: How to average result from Stored Procedure
Let's say I have this function sp_func(startdate, enddate).
To call the function itself I use CALL sp_func(startdate, enddate);.
The function will return a table consisting of:
id name time
...
1
vote
1answer
59 views
I4GL Loop query
I am trying to solve this issue for last couple of days, but no idea how to do it. What I am trying is to get 3 records from a column table. If any Informix 4GL gurus are out there I need some help ...
1
vote
1answer
622 views
Informix, Procedure, Converting String to Time
I want to call the informix sp below from c# but am having trouble getting it to compile. I want to pass it a string like '2012-11-22' and two times like '08:15:00' and convert them to a date and two ...
1
vote
1answer
154 views
Connecting PHP-informix-ubuntu 11.10
I am trying to configure PHP-informix environment on ubuntu 11.10.I am installed PDO and pdo_sqlite and soap but i can not install pdo_informix.I dont know what is the next step.
I got this ...
1
vote
1answer
228 views
How to pass an array of strings or a string vector to an IN clause in a parameterized SQL query?
I have this code in my executeQueries.ec file
sprintf(sqlQuery,
"select distinct e.emp_id, e.join_date \
from employees e
where e.emp_id in (?) and e.dob <= '%s')");
$prepare empDataStmt from ...
1
vote
1answer
246 views
Informix CSDK install failing
I'm trying to install the Informix CSDK to get the drivers for an ODBC connection using Perl and DBD::ODBC. When running the ./installclientsdk, I'm getting the following error:
Initializing ...
1
vote
1answer
34 views
Is there a way to get INFORMIX-SQL 4.10 to run natively under Windows XP and higher?
Is there a way to get INFORMIX-SQL 4.10 (or other versions) to run natively under Windows XP and higher?
1
vote
1answer
110 views
Informix + SQLAlchemy looking for table that doesn't exist
I'm trying to connect to an Informix database with SQLAlchemy. All my tests seem to show the connection is working; however, whenever I try and perform a read of the database I get the error:
...
1
vote
1answer
397 views
C# Triple DES encryption to decrypt Informix ENCRYPT_TDES function
I have data from an Informix database that has a column with data encrypted using the Informix function ENCRYPT_TDES. The data was imported into SQL SERVER 2008 and I no longer have access to a ...
1
vote
1answer
1k views
Informix stored procedure return values
I need to create a stored procedure which returns a select statement, say about 4-5 columns with values.
I need to call that from a Java app so I can't put the output into a temp table as that temp ...
1
vote
1answer
809 views
Using Entity Framework with Informix
I've been trying for quite some time to use Entity Framework with our IBM Informix databases. Hours of searching has pointed me towards installing the IBM .NET Data Server Provider, which I have ...
1
vote
1answer
88 views
SQL query to return category if sub_items exist AND 'other name' if sub_items exist outwith category
Apologies if the title is confusing. Essentially, we have a set of hierarchy tables of categories, groupings, collections etc with individual items at the bottom of the hierarchy.
So on the whole, ...
1
vote
1answer
445 views
How to convert char into an array in Informix database?
I have a stored procedure like this:
CREATE PROCEDURE Proc_Test(testvalue set(char(1000) not null)) RETURNING int;
DEFINE z char(7000);
LET z = ' ';
FOREACH
select * into z from ...
1
vote
1answer
95 views
IBM Informix Spatial datablade LIneFromText function
I am using IBM-Informix for my school project as part of "Informix on-campus" ativity conduted by IBM.
however it is giving me error as "(USE31) - Too few points for geometry type in ...
1
vote
1answer
160 views
IBM Informix Spatial DataBlade select statement error
I am using IBM Informix Spatial DataBlade module for some geo-specific data.
I am trying to find points in table xmlData lying in a specified region.
But I am getting this error for select statement.
...
2
votes
0answers
30 views
Informix connection disappearing from Rails app
I'm connecting to an Informix database from a Rails app, and there are times where the app will die (requiring a restart it seems), with the following error message:
Informix::DatabaseError: ...
2
votes
0answers
65 views
Equivalent of 4gl “RECORD LIKE” statement in Java
In 4gl, the statement DEFINE IO_AFPOPF1 RECORD LIKE AFPOPF1.* means all content of table AFPOPF1 assigned to IO_AFPOPF1 variable. If AFPOPF1 table changes, IO_AFPOPF1 also changes automatically.
Can ...
2
votes
0answers
117 views
Dapper not adding parameters
I am trying to use Dapper for our complex queries to remove any lost overhead that was previously existing with NH.
I have the following query (note this has been considerably shrunk):
SELECT ...
2
votes
0answers
502 views
Assembly load error for 64 bit .NET Informix ADO.NET provider
I am running 64 bit Windows 7. I have a .NET 4.0 web project and a Class Library Project that accesses an Informix database. I installed the IBM Informix Client SDK version 3.70.FC4 (64 bit version, ...
2
votes
0answers
88 views
Does an ORM for C++ (Object Interface) for Informix exist?
We use Informix only in our company, there is an old self-made OR mapper, but it's hard to dive into and buggy.
I have just started with Informix and also with C++ after a long break. I have used the ...
1
vote
0answers
36 views
Configuring Informix database for JDBC Connection
I'm writing my first android app via Eclipse. I am trying to make a connection to my informix database. I have installed informix's client-side drivers on my system and the program picks them up ...
1
vote
0answers
41 views
Informix create procedure failure
I'm trying to create a stored procedure in Informix (via isql as user informix), but I keep getting a 201 error, even on the simplest of procedures. Here is the test procedure I'm currently working ...
1
vote
0answers
80 views
Delete Trigger failing to update count in another table
I am using Informix database.
TableA contains the id of a client.
TableB contains the number of error on that id. i.e {id and count}
In TableA I have delete triggers written, so that if anyone ...
1
vote
0answers
31 views
AppServer Datasource Configuration at runtime - View or Update
We are using Geronimo application server and looking at options to view the data source configurations at runtime.
For example, if I have the following datasource configuration:
...
1
vote
0answers
75 views
LOCK_MODE_WAIT Configuration in Geronimo Datasource for Informix DB
The application which we are currently working on with Informix DB and Geronimo app server, is throwing Lock Timeout expired exception since one of the "READ" operations is taking a long to time to ...
1
vote
0answers
146 views
Internal error and statement error- I4GL
When I run the program (Informix 4GL SE) I am getting the following error. IS there anybody know the solution?
FORMS statement error number -6327.
Internal error in the run time library file ...
1
vote
0answers
66 views
IBM informix Timeseries with hibernate
Actually i am trying to use ibm informix database for my application, in that informix i have option for storing timeseries data into a single row, my doubt here is how can i insert and retrieve this ...
1
vote
0answers
326 views
Oracle error message when trying to get tables from informix database
I created new data source to access an informix database over an odbc data provider(informix 3.33; 32bit). Testing this connection succeeded so i created a new connection manager (new connection from ...
1
vote
0answers
278 views
How to write prepared statement using activerecord-informix-adapter
Using activerecord-informix-adapter (1.1.1) with its documentation I am trying to create a prepared statement but get an error.
ActiveRecord::StatementInvalid
Informix::DatabaseError: Prepared ...
1
vote
0answers
365 views
Error -206 table (aus_command) not in database
Informix 11.70.TC4DE on Windows Vista SP2, i7 Dual Core, 8GB RAM:
I searched for (aus_command) table and it is in the database. Any idea why it says it could not find it?
Tue May 15 22:07:21 2012
...
1
vote
0answers
209 views
PDO Informix SQLDriverConnect: -“917”
i have big problem while connection to a remote informix database server.
here's the code
$db = new PDO("informix:host=192.168.*.*; service=1565;
database=daten; server=name; protocol=onsoctcp;
...
1
vote
0answers
41 views
Are there any open source libraries of C functions available for cperf and cace?
INFORMIX-SQL 4.10 DD6:
I would like to create custom runners for Perform and Ace which contain several C funcs like: concat(tag1,tag2) and other useful functions which are not available in 4.10 ...
1
vote
0answers
268 views
Linq to hibernate where clause parameter exception
I'm trying to make a small proof of concept app to decide whether we can use Linq2Hibernate in our next project.
The database we are using is a standard informix database, but I wouldn't expect that ...
1
vote
0answers
49 views
COM class factory Error in WCF Service
I have a problem with COM object: I have a service which connect to database.
All connection's information service read from connection.config file.
But I have a error when service trying to connect ...
1
vote
0answers
190 views
Column Encryption in Informix - SQL -26040: Encrypt VP initialization failed
We are using Informix as DB for our application.
We have a new requirement to encrypt one column (ID) alone. The encryption should not be external and should be in DB itself.
IBM explains the ...
1
vote
0answers
429 views
Using output parameters to retrieve a value from Informix
I need to execute a query against an Informix database using output parameters to retrieve the desired value. I’ve tried many different variants of the query, but so far none has worked. The only ...
1
vote
0answers
48 views
Is it possible to retrieve a raw query from Oracle OCI library?
I am looking to retrieve the raw query bytes from an Oracle statement and copy them directly into a POD C structure. The reason for this is due to legacy code that must be ported to using Oracle from ...
0
votes
0answers
50 views
Informix compatible in memory Database for unit testing Java Hibernate application
I'm trying to write unit test cases for a data access layer and we use the Informix database. Since the Informix dialect of SQL uses the ...
0
votes
0answers
57 views
Using Informix dbaccess in SSIS to export data to be imported into SQL Server
I currently have a SSIS package similar to the one detailed here which loops over a list of tables that are in a IBM DB2 database, exports the table contents into text files using the "Data Transfer ...
0
votes
0answers
35 views
Connecting To Informix Standard Engine (SE) From PHP
Is there any way to do this besides using ODBC? I doubt there is, but just wanted to check and see. We connect fine with ODBC, but the performance is awful.
0
votes
0answers
47 views
Applying distinct on ROW type not working…Any workaround please
I have a table which has a ROW type column on informix database.
For eg ---
name char(50)
source ROW(field1 int, field2 int, field3 int, field4 char(50))
select distinct source from ...
