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

1
vote
2answers
138 views

Append results of a query in a single line

I am unloading the results of a query to a file. I need the result records to be displayed in a single line. For example, unload to file.unl select col from table where col = "test"; The resulting ...
3
votes
5answers
146 views

How to make my webApp switch between different DBMS smoothly(DB Independency)?

I have a Java web application that has Informix as its back end database. Many tables in my schema contain columns of type CLOB, BLOB & SERIAL8. Now I made a decision to use SQL Server instead of ...
1
vote
6answers
168 views

If I add 360 months to begin_date, How can I accurately obtain end_date using a lookup fact table?

EDIT: begin_date and end_date are type DATE columns in any table. I have the following fact table which provides how many total days each month has for years 1980 through 2500: CREATE TABLE ...
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 ...
5
votes
4answers
1k views

Request timed out frequently

I face the following problem time after time and i don't know how to fix it .. I get the following errors frequently , and i had to restart the IIS or republish to fix the problem temporary : Error ...
1
vote
1answer
386 views

Informix group by hour

How one does use the group by clause with hour in Informix? The group by section here gives an error: SELECT cqdr.targetid, cqdr.profileid, ccdr.startdatetime::DATETIME HOUR TO ...
0
votes
1answer
309 views

Which join syntax is better?

So we are migrating from Informix to Sql Server. And I have noticed that in Informix the queries are written in this manner: select [col1],[col2],[col3],[col4],[col5] from tableA, tableB where ...
1
vote
1answer
1k views

Informix ERROR: A syntax error has occurred. Error Code: -201

The only statement in my SQL code is DEFINE p_starttime DATETIME YEAR TO SECOND; I get this error from Informix 10.5: ERROR: A syntax error has occurred. Error Code: -201 Query = DEFINE ...
2
votes
1answer
398 views

Informix multiple joins

I need to modify my query to add other join. But the new join probably needs to be a left join. I am unsure how to go about this. I am using Informix: set query "SELECT DISTINCT ...
1
vote
1answer
208 views

Informix SELECT FIRST returning less rows

I am working on an import application to retrieve around 1 million records from an Informix database and bulk insert it in a MSSQL database. The query is simple: SELECT * FROM <view_name>. To ...
2
votes
2answers
86 views

Can EXPLAIN provide more than just a Query Plan? [closed]

It would be useful to also know Disk Reads/Writes, Memory, CPU, etc. statistics for a given SQL statement.
1
vote
1answer
186 views

How can I format a date datatype to mmm/yyyy?

ISQL Perform Screen: I have a date column (format="mmm-dd-yyyy") used for storing "Date Manufactured". Most items that have this date (e.g. Computers, TV's, etc.) usually provide just the month and ...
1
vote
1answer
239 views

Informix - deadlock scenario involving single table

I am looking for a way to force a deadlock on Informix IDS 11.50. The solution has to fulfill the following conditions: Only one table involved, Isolation level: COMMITTED READ, ROW level locking, ...
1
vote
2answers
151 views

Informix - Select from partition

I am trying to perform a select on a very large table with no applicable indexes in Informix. Unfortunately it is not possible to add an applicable index by the time this project needs to be finished ...
2
votes
1answer
705 views

Hibernate + Informix + Blob + byte array

I have troubles saving a byte array to my Informix database, I'll show you how I'm trying: In Fichero.java among other things I have this: @Column(name="fichero", columnDefinition="blob") private ...
2
votes
2answers
102 views

Turning off “Wy-60” in 4GL Informix?

We have an Informix 4GL forms interface to our database, accessed using a terminal emulator running in WY-60 or "Wyse-60" terminal emulation mode. From what I'm reading, where I would previously ...
1
vote
1answer
407 views

String allignment with spaces in 4GL

I need to right align a string in 4gl with specified no.of spaces? Can somebody tell me how to do it?
2
votes
1answer
166 views

What is the Oracle equivalent of the Informix `interval` function?

I have been tasked with converting some scripts referencing an Informix database to be compatible with a new Oracle database. I thought I would start out by going through the individual scripts and ...
1
vote
0answers
710 views

deadlock detected while querying the table in Informix [closed]

I have a multithreading application trying to access (select, update or insert) the table in the Informix 11.50 database using the plain prepared statements. I keep getting a lot of ...
1
vote
1answer
130 views

Process crash after Informix error

I have a C++ process which is crashing now and then (mostly when performance testing is done). When I checked the core logs, I could see lot of Informix errors, before the crash. I see a series of ...
1
vote
1answer
691 views

How to pass an Informix Collection Parameter (LIST, SET, MULTISET) in c# through an ODBC Connection

I'm looking for a way to pass an Informix List Parameter in C#. I asked a previus question of How to pass a multi value parameter to Informix, but now I need to execute it from C#. The related ...
2
votes
1answer
169 views

A character to numeric conversion process failed

I face the following exception when i try to use parametrized query with informix . A character to numeric conversion process failed StringBuilder sQuery = new ...
1
vote
2answers
245 views

Asp put query into array and go through it without refreshing page

How would I go about running a query in asp and storing it in an array. Then with the array go through each record without having to refresh the page every time. for example Sub loaddata() Dim ...
2
votes
2answers
1k views

update Informix table with joins

Is this the correct syntax for an Informix update? update table1 set table1.code = 100 from table1 a, table2 b, table3 c where a.key = c.key a.no = b.no a.key = c.key a.code = 10 b.tor = 'THE' ...
1
vote
3answers
36 views

db append a certain value to a particular field for all records

I have a groups table which has a field called permissions that has a pipe separated value. for example permissions='1-1|2-2|3-2|4-2|5-2|6-2|7-1|8-2|9-2|10-2|11-2|12-2|13-3|14-2|15-2|16-2| Now I ...
1
vote
1answer
43 views

file movement from one directory to another

i have a variable that holds the file name and the location of that file, i need to move that file from one location to another.How can it be done using informix 4gl
1
vote
2answers
667 views

Simple informix select stored procedure

I am trying to write a simple stored procedure that does a select statement but it keeps giving me a syntax error without any other help telling me what the error is create procedure _this_is_it(this ...
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
2answers
2k views

Informix: How to pass, use and execute multiple values in a single parameter to a stored procedure

How I Can pass multiple values in a single parameter to a stored procedure in Informix?. This is a frequent question but I have seen noyhing about informix. I found a post, but it is not working for ...
1
vote
0answers
364 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 ...
2
votes
1answer
631 views

Informix .NET Connection String

I am attempting to connect to an Informix DB server (v10) and I am using the Informix Data Provider .NET class library to establish a connection via a .NET application and retrieve data. Initially I ...
2
votes
1answer
319 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 ...
1
vote
1answer
165 views

Informix stored procedure errors

I am trying to create a simple procedure that looks for a fname and lname when given a number create procedure _lookup_name (_no int) select (fname || ' ' || lname) from table where number = _no; ...
1
vote
1answer
493 views

Unable to browse in Eclipse tables for any schema in Informix

I can't browse tables for a given schema in Informix using Eclipse Data Source Explorer. The only tables I can browse is the catalog, the sys* ones in the Informix schema. I'm using Eclipse v3.6 ...
1
vote
1answer
861 views

Creating stored procedure in informix

I an trying to create new stored procedures. Below is the code segment for sp. CREATE PROCEDURE abs_eq (arg1 INTEGER, arg2 INTEGER) RETURNS BOOLEAN WITH (NOT VARIANT) DEFINE ret BOOLEAN; ...
1
vote
1answer
253 views

Informix: using stored procedures in Java

how can I find the parameters(function declaration) of stored procedures in Informix? whether "{ call sp_csq_activity }" or "{ call sp_csq_activity(?,? ..) }" and their types? And also is there any ...
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
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
136 views

IPC between Linux and Windows processes

How can one database hosted in windows system be accessed and queryed by a Linux's process ? I have a web application with mysql and I am going to have to create a database in Linux then I need an ...
2
votes
0answers
499 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, ...
1
vote
1answer
306 views

Error Inserting Entry With Text Column That Contains New Line And Quotes

I have an Informix 11.70 database.I am unable to sucessfully execute this insert statement on a table. INSERT INTO some_table( col1, col2, text_col, col3) VALUES( 5, 50, ...
1
vote
1answer
456 views

Which of the IDS 11.70 onconfig parameters can be changed to maximize performance for a DSS app?

Informix 11.70.TC5DE, Windows Vista with Dual Core Processor, 8GB RAM, 1TB HDD: During the installation of this server, I specified it was going to be used for a data warehousing application. These ...
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 ...
0
votes
3answers
4k views

How to compare date (month/year) with another date (month/year)

How to compare parts of date in Informix DBMS: I wrote the following query but I get a syntax error: select id,name from h_history where ( h_date::DATETIME YEAR TO MONTH >= 2/2012 ) and ( ...
1
vote
2answers
322 views

display all tables that start with specific characters

I want to show or search all the tables in the database that start with the name 'bar'. Is that something I can do through the command line? I am using informix.
1
vote
1answer
234 views

Informix ODBC Query Appends Time on a date field

I have a .aspx page that has query to and informix database. This query is done via an odbc connection and is put into a datatable. Then this datatable is used as the datasource for a radio button ...
1
vote
1answer
44 views

Is is possible to retrieve the maximum declared size of a varchar(n) column?

Suppose you have a DB table like this: Table t .... column_a integer column_b varchar(255) .... Now, I want to store a string that is composed by a list of names on t.column_b, with the ...
1
vote
1answer
90 views

how to pass reference new and old object into stored proc?

I have a trigger that looks like below: create trigger theTrig insert on table_A referencing new as n for each row( execute procedure proc_A(); ); May I know how can I pass the new/old reference ...
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 ...
2
votes
1answer
374 views

Perl DBD::ODBC to Informix DBMS

I'm attempting to bring up an ODBC connection to an Informix DB inside a Perl script (v5.12.4) using DBD::ODBC. I've read through lots of docs and seem to be hitting a wall and was hoping to get some ...

1 3 4 5 6 7 16