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.

learn more… | top users | synonyms

0
votes
1answer
14 views

ERROR:-528 MEssage: [Informix .NET provider][Informix]Maximum output rowsize (32767) exceeded

I face the following exception when i try to get data from table with the following structure: ERROR:-528 MEssage: [Informix .NET provider][Informix]Maximum output rowsize (32767) exceeded. ...
0
votes
0answers
33 views

Stored Procedure Using Record as Parameter

Is it possible to create a stored procedure using a record as input parameter and return back the record? Can show any example of it? Thanks.
1
vote
0answers
23 views

Cast from datetime to date using hibernate and informix

I have a problem with the 'cast' expresion in Hibernate, when I execute the next HQL: SELECT new es.xunta.surex.vo.informes.ActividadUsuarioAuxVO(usu.codusu, cast(au.dataaudit as date), ...
0
votes
1answer
17 views

Error 24 Username and/or password invalid

I have two instances of IBM Informix Database on a HP-UX UNIX box. One instance is for test and the other instance is our live database. The test instance is a copy of the live instance and the ...
1
vote
1answer
17 views

Short circuiting in Informix SQL

Does Informix support short circuiting in SQL clause? For example: SELECT * FROM myTable WHERE '0' IN (listOfValues) OR myTable.code IN (listOfValues) where listOfValues is a list of codes ...
0
votes
1answer
28 views

Why the data cut(incomplete) when inserting text in Lvarchar field?

I try to insert text data in a field of type Lvarchar (informix database) but when i check the inserted data i find it 's not complete i don't know why ?! MY original data (should be inserted)is ...
0
votes
2answers
40 views

Logging parameterized SQL query with parameters included

I have a couple of functions that take a SQL query (parameters already added) and run it against the database. When the SQL query fails, I'd like to log the complete query, parameters included, in ...
0
votes
2answers
35 views

How to to branch the query among multiple tables

If i have 4 tables like this : 1- mainemployees emp_id email type (0-->ext,1-->internal,2--->special) 2-externalemp emp_id name 3-internalemp emp_id name 4-specialemp emp_id name ...
1
vote
0answers
43 views

Passing parameters through Excel to an Informix DB works through MS Query but fails when returned to Excel due to General Error

I require to query an informix database using parameters and Excel. When the query is executed in Microsoft Query the dataset is fetched and returned succesfully, when I attempt to return to Excel the ...
1
vote
1answer
64 views

Zend Framework 2 Double Quotes in Queries

I'm using the Zend Framework 2 for application developement. The whole application is based on a IBM Informix database. The database configuration looks something like this: return array( 'db' => ...
0
votes
1answer
18 views

After updating the record set the Screen must update

In informix 4gl(genero 4JS) how can I refresh the screen after updating the record set in the database? Right now I can only update the record but the screen is not updating. I think I am missing ...
0
votes
0answers
107 views

Insert byte[] to blob column in Informix DB using c#

Just like these links Link 1 Link 2 Link 3 Link 4 Am also unable to insert only byte[] related operations on my informix database. I tried many ways and gone through IBM site. but no where its ...
1
vote
3answers
56 views

How enhance the performance of query among several tables?

Is there some thing should i modify concerning the following query (because it takes long time about 15 seconds !! just to bring about 400 records) select unique a.regnum , a.name from re23mmf ...
1
vote
1answer
49 views

ODBC linked table not showing fractions of seconds

I have linked an IBM informix database table through an ODBC connection to an Access 2010 database. My issue is that the date field in this table only shows dd/mm/yy HH:nn:ss in the Access view, where ...
0
votes
0answers
64 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
2answers
46 views

Function definition not found in 4gl file

I am working on 4gl language but a new bie. In a file custom.4gl a function cleanup() is called, but I didn't find the function definition. I am trying to find that. I got a file named 'tags' with ...
0
votes
1answer
94 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 ...
1
vote
1answer
53 views

Communication link failure (||) Thread was being aborted

I face the following problem : some users complain when they try my web application: The error i encounter is : IP: System.Web.HttpApplicationState Agent: IE8 AgentDtails : Mozilla/4.0 ...
1
vote
1answer
31 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
46 views

sql query for header info along with data in columns in informix

I tried many queries like using this SELECT TABNAME,COLNAME from SYSCAT.COLUMNS where TABNAME='DETAILS' Also used user_tabs in place of SYSCAT.COLUMNS as well, but it does not work in informix.
1
vote
0answers
45 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 ...
0
votes
0answers
44 views

Migration Tool between Informix 4Gl to JAVA [closed]

I am looking for Migration Tool between Informix 4Gl to JAVA. Which tool can we use and what is the percentage of Accuracy? Please advice me.
1
vote
4answers
109 views

How to remove all tags and get the pure text?

I had to store the user input text in my database with HTML and CSS formats. The case is: RadEditor ,The user copy the text from MSWord to this editor then i store this text in the database with ...
1
vote
0answers
73 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 ...
0
votes
3answers
69 views

How to enhance the performance of nested query?

I have the following query but it run slowly in my sql editor ! How to enhance it (write wise) to speed the query running . SELECT year,main_code,name,father_code,main_code || '__' || year AS ...
1
vote
2answers
61 views

If inside If in Informix stored proc

In Informix stored Procedure I have some condition which goes like this :- If val1 > 0 // 1st If Select count(*) of value from a table and stored it in a Variable say ...
1
vote
3answers
140 views

Delete the data which exist in one table and not exist in the other one?

I want to select all rows which exist in specific table and not exist in the other table to delete them . I write the following query but i get rows exist in both tables !! SELECT UNIQUE ...
0
votes
0answers
45 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
1answer
61 views

Which is better: storing string including Unicode character in NVARCAHR or VARCHAR? [duplicate]

I want to store the string including Unicode character. I know there are two choices. NVARCAHR and VARCHAR. NVARCAHR uses 2 bytes to store a character; however VARCHAR uses 1 byte for a character. ...
1
vote
2answers
114 views

How to configure activemq to use informix database?

I am using apache activemq 5.8. Here is what i did: 1) put informix jdbc jar (ifxjdbc-3.70-JC3.jar) into activemq/libs/optional 2) declare bean in activemq.xml: <bean id="informix-ds" ...
-1
votes
1answer
144 views

Connecting to Informix via DriverManager.getConnection is slow

I am using JDBC to connect to an Informix instance via the DriverManager.getConnection method, but I have problems. DriverManager.getConnection takes a long time to establish a connection with ...
2
votes
0answers
31 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: ...
1
vote
1answer
120 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
2answers
224 views

Insert statement with select for only one column in Informix

Just need to know whether this query is possible in Informix. insert into emp(emp_id, sal, desg) values (111, (select salary from emp_sal where emp_id=222), 'xxx'); Table structures are: emp: ...
2
votes
1answer
85 views

Limitation of error code on exception in stored procedure

I have a stored procedure which is calling a java jar using "SYSTEM" command. This jar is returning an error code on exception using the "exit(errorCode)" command. If the error code is lower than 256, ...
1
vote
1answer
50 views

optimize the performance of informix stored procudure in asp.net application?

I want to know how to use the equivalent to : SET ARITHABORT ON AND WITH RECOMPILE option in informix stored procedure ?
1
vote
1answer
100 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
68 views

Load operation locking table in informix

A process is performing a LOAD operation on a table from a file which has more than 5 lakhs rows. onstat -k command shows row locks for the inserted rows, which I think is normal. Something abnormal ...
1
vote
1answer
91 views

Informix SQL Help: Result of a boolean expression is not of boolean type

I have an SQL statement: UPDATE informix.dv_billing dv SET dv.fee = CASE WHEN ((SELECT dc.mm_discount FROM dv_mm_disc dc WHERE dc.year ...
1
vote
2answers
90 views

Informix Group by Alias

What am I missing according to this query: SELECT mymonth, Header1 FROM ( SELECT month(startdatetime) as mymonth, (CASE WHEN MyTable.somecolumn =2 THEN count(somecolumn2) END) as Header1 FROM MyTable ...
3
votes
2answers
177 views

Informix with 64bit unixODBC segfault

Using the Informix 64 bit driver with unixODBC (with both the default of 2.2.14 that comes with Redhat and also with 2.3.1) and running into problem when a column has a NULL value. unixODBC is using ...
1
vote
2answers
168 views

JPA Transactions on Informix

I need to make an update on a table using JPA 2.0 with EclipseLink 3.0 on a Java SE 7.0 environment, using Non-Transactional Informix DB v. 11.50, the persistence.xml is: <persistence-unit ...
1
vote
1answer
51 views

Data type LVARCHAR corruption after recovering data

I face the following problem : I deleted a key in a table (wrongly) and then I recovered the whole table through this way: LOAD FROM 'C:\db\rqrequesttrans.dat' delimiter '~' insert into ...
1
vote
2answers
399 views

Informix DB - SQL Group By Year, Month, Week, Day, Hour

I want to write sql queries in Informix db to return results that are grouped by Year/Month/Week/Day/Hr (I will write 5 sql queries for each one). The scenario I have is as follow : I have two ...
1
vote
1answer
84 views

.NET Informix error

I keep getting an error when trying to connect to an Informix database. I am using VS2008, .NET 4 framework, IBM Informix Connect 3.7 64bit The code Dim connectionstring As String = ...
0
votes
0answers
34 views

Need a simple program to copy file from server

Hi I am trying to write a program to get a file from the server "tmp folder" and put it in my local temp folder my code is as follows could some one help me. Thank you. define fn char(200), ...
1
vote
2answers
122 views

Informix PDO at ubuntu 12.10

I'm configuring the PDO at ubuntu. And i'm getting this error: PHP Warning: PHP Startup: Unable to load dynamic library '/usr/lib/php5/20100525/pdo_informix.so' - libifcli.so: cannot open shared ...
3
votes
2answers
361 views

Informix: count number of columns in a temp table?

I'm using IDS 11.70. I want to be able to get the count of the number of columns in a temporary table so in 4gl/genero code I can have a function that puts the right number of question marks into a ...
1
vote
1answer
152 views

informix insert trigger: update value on same table but different record

Is there any way I can get an insert trigger to update a value on the same table in a different record to the one being inserted? Informix does not seem to allow me to do this as I understand it ...
1
vote
1answer
100 views

Number of values in load file is not equal to number of columns

I delete some data by wrong and i want to retrieve them I try to execute the following command : LOAD FROM 'C:\db\rqrequesttrans.dat' delimiter '~' insert into rqrequesttrans but i get the ...

1 2 3 4 5 16