Tagged Questions
This tag is appropriate for questions about IBM's products in the Informix family - or any predecessors to those products. Such products include: Informix Dynamic Server (IDS), Standard Engine (SE), Extended Parallel Server (XPS), OnLine, ESQL/C, I4GL, ISQL. It also includes questions about the Informix implementations of generic interfaces to the Informix databases, such as ODBC, JDBC, .NET, OLEDB, ADO, etc.
58
votes
3answers
178k views
SQL Insert into … values ( SELECT … FROM … )
I am trying to insert into a table using the input from another table. Although this is entirely feasible for many database engines, I always seem to struggle to remember the correct syntax for the ...
17
votes
5answers
786 views
What deficiencies, limitations or flaws do you feel exist with SQL and what would you change or add to it?
Have you encountered deficiencies, limitations or flaws while using SQL?
EDIT: I cannot believe that several things which are so trivial to accomplish under 3GL's like BASIC or other non-SQL data ...
15
votes
7answers
563 views
Backupformat to transfer data between different Databases
As i couldnt get any satisfying answer to my Question it seems we have to write our own program for that, we are in the design phase and we are thinking which format shall we use to backup the data.
...
6
votes
1answer
46 views
Parameterized query fails when inserting certain Unicode characters
I have a problem when trying to insert certain characters through query with parameters.
When I run the following query (no parameters involved), everything works fine.
string insertQuery = "insert ...
6
votes
2answers
1k views
How can I use ActiveRecord on a database that has a column named 'valid'? (DangerousAttributeError)
I am accessing a database that I can't change and it has a column named valid defined. Anytime I try to access an attribute, I get this exception:
valid? is defined by ActiveRecord
...
6
votes
2answers
1k views
Delphi 2009 and Informix dbExpress problem with Windows 2003
I have simple application that uses dbExpress to connect Informix database.
If I compile it with TurboDelphi it works on both WinXP and Win2003.
When I use new Deplhi 2009 my app works ok on WinXP but ...
5
votes
5answers
2k views
life span of temp table
I have the following procedure:
CREATE PROCEDURE foo ()
SELECT * FROM fooBar INTO TEMP tempTable;
-- do something with tempTable here
DROP TABLE tempTable;
END PROCEDURE;
What happens ...
4
votes
2answers
670 views
RDLC vs Crystal Reports vs Anything Else Free: I'm running Informix and using C# 4.0
I'm not sure which is the way to go for choosing a report type with my current setup. In the past I was using MS Server 2008 R2, MS SQL Server, MS.NET C# 3.5. Now I'm using something similar except my ...
4
votes
3answers
199 views
Which DBMSs offer index-organized tables?
My current knowledge:
Oracle does offer index-organized tables and defaults to heap-organized.
I heard that SQL-Server uses only index-organized tables
I am especially interested in answers for ...
4
votes
5answers
208 views
Which RDBMS and development tool should I choose to re-write my character-based app?
I have a pawnshop CRUD app written 20 years ago with INFORMIX-SQL/SE (DOS) which is currently running on DOS 6.22 within Microsoft Virtual PC 2007 on Windows Vista. I would like to modernize this app ...
4
votes
4answers
169 views
IDS an over-kill for a single-user app?
I have the following dilema: My clients (mom-n-pop pawnshops) have been using my mgmt. system, developed with ISQL, for over 20 years. Throughout these two decades, I have customized the app to each ...
4
votes
4answers
1k views
ignore insert of rows that violate duplicate key index
I perform an insert as follows:
INSERT INTO foo (a,b,c)
SELECT x,y,z
FROM fubar
WHERE ...
However, if some of the rows that are being inserted violate the duplicate key index on foo, I ...
4
votes
3answers
572 views
Tools for Informix
Are there any tools available for Informix, similar to 'Query Analyzer' for SQL Server?
4
votes
7answers
8k views
SQL - Converting 24-hour (“military”) time (2145) to “AM/PM time” (9:45 pm)
I have 2 fields I'm working with that are stored as smallint military structured times. Edit I'm running on IBM Informix Dynamic Server Version 10.00.FC9
beg_tm and end_tm
Sample values
beg_tm ...
3
votes
2answers
49 views
How to provide values dynamically in “using” in informix esql?
Our .ec program uses the query:
select count(*) from where col >= val1 and col <= val2
Inside the program we use
select count(*) from where col >= ? and col <= ?
Now, the new ...
3
votes
3answers
686 views
Failed to enable constraints. One or more rows contain values violating non-null, unique, or foreign-key constraints
I make an outer join and executed successfully in the informix database but I get the following exception in my code:
DataTable dt = TeachingLoadDAL.GetCoursesWithEvalState(i, bat);
Failed to ...
3
votes
1answer
154 views
Informix: Limitation on Number of Items in IN Clause?
Is there a limitation to the number of items that can go into an IN clause in an Informix query (like the 1000 item limit in Oracle)?
We have a "large" (perhaps 2000) list of item numbers being ...
3
votes
4answers
118 views
Ordering SQL results based on predecessor
I have the following table in my database:
create table (
name varchar(25),
value int,
predecessor varchar(25)
);
with sample data:
name | value | predecessor
...
3
votes
1answer
378 views
Is Access 2007 with a touch-screen POS interface the right choice to convert my INFORMIX-SQL app?
I have evaluated several development tools for converting my informix SQL-based app. They are: Genero/4Js, FileMaker, Oracle APEX, VFP, Clarion and Access 2007. I have a CRUD pawnshop app (see ...
3
votes
2answers
131 views
Which RDBMS has the richest super-set of ANSI-SQL?
Back in 1989, when I used to program with Oracle 5.2.3 on UNIX and VAX/VMS platforms, I considered SQL*PLUS as having the richest super-set of built-in functions. ORACLE*FORMS also had the ability to ...
3
votes
2answers
218 views
How can I round money values to the nearest $5.00 interval?
I have an Informix-SQL based Pawnshop app which calculates an estimate of how much money should be loaned to a customer, based on the weight and purity of gold. The minimum the pawnshop lends is ...
3
votes
2answers
542 views
Can IfxConnection and threading get along?
We have an application using the IBM Informix driver. Whenever we try to open connections in parallel, we start getting some really weird errors.
This is the smallest reproduction code I could come ...
3
votes
2answers
288 views
INFORMIX ESQL/C 2.10.06E for MS-DOS 6.22 or 5.0
Anyone know where I can get a copy of ESQL/C 2.10 which will work with INFORMIX-SQL 2.10.06E running on MS-DOS 5.0 or 6.22?.. I would also need to find Microsoft C compiler Version 6.
3
votes
1answer
151 views
Informix: The meaning of dot (.)?
Hey guys, I am wondering if anyone could tell me any special meaning of the dot (.) in Informix regarding expressions and etc.
For example in stored procedures I see it used with integers, decimals ...
3
votes
2answers
717 views
update via subquery, what if the subquery returns no rows?
I am using a subquery in an UPDATE:
UPDATE tableA
SET x,y,z = ( (SELECT x, y, z
FROM tableB b
WHERE tableA.id = b.id
AND (tableA.x != b.x
...
3
votes
3answers
787 views
SQL query to get the “latest” value for each location
What I thought would be a simple thing to solve has now bugged for quite some time. Now I need help from you guys.
In Informix I have a table "temperatures" like this:
locId dtg ...
3
votes
2answers
717 views
How to write a binary blob onto disk on Informix
I have some images in an informix database, as a binary blob field (jpg), how can i write the images onto disk with an SQL?
3
votes
2answers
1k views
How do you identify Informix version on Solaris?
We have Informix running on our Solaris server and under /usr/informix/bin there are several executables, such as 'dbaccess' and 'isql'.
Each of them produce different version information when typing ...
3
votes
2answers
259 views
Analytical Query
Am looking for a single query that can convert the following information in the table
name:time :state
a :10:00 AM:login
b :10:05 AM:login
a :10:06 AM:chatting
a :10:08 AM:Idle
b :10:11 ...
3
votes
1answer
4k views
Consistent method of inserting TEXT column to Informix database using JDBC and ODBC
I have problem when I try insert some data to Informix TEXT column
via JDBC. In ODBC I can simply run SQL like this:
INSERT INTO test_table (text_column) VALUES ('insert')
but this do not work in ...
3
votes
4answers
29k views
Converting a String to HEX in SQL
I'm looking for a way to transform a genuine string into it's hexadecimal value in SQL. I'm looking something that is Informix-friendly but I would obviously prefer something database-neutral
Here ...
2
votes
3answers
77 views
Is there some way to select the first table without writing all the fields names in the query?
Q: If I have two tables joined together, and I want to get (*) from the first table, I mean all the fields of the first table.
Shall I write all the fields names of the first table in the query? Or ...
2
votes
4answers
54 views
Need to perform ORDER by Twice
I want to sort according to date first and then if date is similar then according to id..How to do that in Informix/HSQL query?
2
votes
1answer
43 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 ...
2
votes
3answers
133 views
migrate the large data from xml file to the database
Q:
I face the following problem two weeks ago , and i don't know how to handle it taking the performance issues , the data integrity in consideration.
What I do is:
I wanna to migrate the data from ...
2
votes
1answer
227 views
Informix Database is extremely slow when combining with Anydac
We are facing real performance issue with our application since we moved to AnyDac as an alternative to BDE.
The application supports more than one database, so other ones like SQLSrvr and Oracle ...
2
votes
2answers
334 views
Core dump on BLOB insert in informix via ODBC
Connecting to version 11.50 version of IDS with transaction logging turned on:
onstat -version
Program Name: onstat
Build Version: 11.50.UC5XE
Build Number: N104
Build Host: ku
Build OS: ...
2
votes
4answers
361 views
Transfering data from one Database to another
I would like to transfer the whole Database i have in Informix to Oracle. We have an an application which works on both Databases, one of our customers is moving from Informix to Oracle, and needs to ...
2
votes
2answers
277 views
Sanitization against SQL Injection for Input going into an Oracle database
Hello I have been working for a while with PHP and MySQL. Now I am working in a PHP-Informix and PHP-Oracle environment. I have always used mysql_real_escape_string for the data going into the ...
2
votes
2answers
262 views
Change/Create ODBC connection from code
I'm working against a Informix DB from C# ASP .Net 4.0 via an ODBC connection. This database does change frequently so I read out what DBs that are installed from the sysmaster table.
Depending on ...
2
votes
1answer
232 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 ...
2
votes
2answers
869 views
SQL CASE statements on Informix - Can you set more than one field in the END section of a case block?
Using IBM Informix Dynamic Server Version 10.00.FC9
I'm looking to set multiple field values with one CASE block. Is this possible? Do I have to re-evaluate the same conditions for each field set?
...
2
votes
1answer
439 views
How to use Column Alias in Informix database table
I want to use column aliases while selecting the column in an informix database table.
For example in the following query:
SELECT hire_dt as "Hire Date" FROM employee
Column hire_dt should be ...
2
votes
1answer
62 views
Is there a way that I can use the 100% of my network bandwidth with only one connection?
I have a program that reads about a million of rows and group the rows; the client computer is not stressed at all, no more than 5% cpu usage and the network card is used at about 10% or less.
If in ...
2
votes
7answers
99 views
Searching data which spans through a lot of tables - design question
I have a structure of about 10 tables. This structure works great for data entry. However, I also need to preform complex and fast searches on that dataset. There are three approaches to this I can ...
2
votes
3answers
80 views
Would a built-in multi-threading capability for SQL be desireable?
For example: Being able to start displaying or manipulating rows as they are being returned by a query while the query has not finished searching the table?.. and I don't mean using the FIRST ROWS ...
2
votes
2answers
292 views
TransFusion: Should I denormalize Loan, Purchase, Inventory and Sale tables into one Transaction table?
Based on the information I have provided below, can you give me your opinion on whether its a good idea to denormalize separate tables into one table which holds different types of transactions?.. ...
2
votes
1answer
240 views
Sync tables between different database providers
I have 2 tables in 2 different databases, one is in a mysql server and one is in an informix server.
Using .net and odbc, is there a way to identify the differences of both tables and merge them?
so ...
2
votes
3answers
764 views
Where to go after Informix 4GL?
We have a large homegrown ERP system written in Informix 4GL.
Currently we are running on old Sun hardware, Solaris 8, and a ten year old version of 4GL and Informix.
We need to move on, and one ...
2
votes
1answer
719 views
Convert float to decimal in Informix
I have a table with a column of type decimal. There is a ESQL/C structure that represents the table. It has a member of type decimal. I also have a normal C structure for equivalent for the same ...