0
votes
1answer
50 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
1answer
66 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
2answers
44 views

how to make an outer join with the calling of other procedure

I have a stored procedure : procedure qr_get_dep_boss(...,...) takes two params(year, main_code) and returning one record the boss_num and his name . I want to create another procedure and make ...
2
votes
1answer
76 views

Why the Informix database, change my original SQL code after creating a view?

Hi and thanks in advance. I would like to know why my code got changed after i create a new view, this happend with two different IDE, Server Studio and RazorSQL, this is an example. Original Code: ...
1
vote
2answers
153 views

Informix Database Issue

I am using informix and I am unable to use a CASE statement inside an aggregate function. It always throws an error (-201: A syntax error has occurred). The following is the query I am using. select ...
1
vote
3answers
166 views

How to select from table where the table name is a local variable(informix)

I want to select from table where the table name is a local variable and the column name is another local variable but i get the following error : The specified table ll_tb_nameis not in the database ...
1
vote
1answer
54 views

Avoid running the same query multiple times that takes lot of time

I am running a complex database query that takes enough time. First I am unloading the results into a file and then I am running this query again to delete all those entries. This again takes lots of ...
1
vote
1answer
181 views

Saving an image in an Informix database using C# code?

How do I save an image in an Informix database using C# code? At the moment, I'm unable to save an image in an Informix database using C# code. All the steps work, only when the query is about to ...
-1
votes
1answer
63 views

Form database query from input

In my C program I am receiving input which is of the form "name,age,salary|Richard,35,10000" Now I want to frame insert and update queries from this input. I am using strtok_r and strtok for ...
2
votes
2answers
99 views

Schema for a table in informix

I have to design schema for a database table. It goes like : field1 is TRUE/FALSE field2 is TRUE/FALSE field3 is TRUE/FALSE field4 is TRUE/FALSE field5 is char(50) if ...
1
vote
1answer
38 views

Informix prevent duplicate result

I want to find some data, some few result are duplicates, but I want to filter out the duplicate data. Example data retrieved: aaa, bbb, ccc, ddd, eee <---Duplicate aaa, qqq, eee, fff, hhh bbb, ...
1
vote
1answer
410 views

Running commands in a file inside database console

Can someone please tell whether is it possible to run a shell script inside of a database. Scenario : Using database : Informix I have a script in a file having multiple insert statements. I am ...
1
vote
1answer
396 views

Installing Informix on Ubuntu

Can someone please suggest whether I can install informix database on ubuntu. My version of Ubuntu is 11.10 Is it freely available. If yes please suggest me some friendly installation guide or ...
1
vote
1answer
45 views

Getting Valid Inputs for Constrained Field

I have an Informix database that I really would have liked an 'enum' field for. Being that Informix (At least in the version I am constrained to) has no built-in enum type I used some Google-Foo to ...
2
votes
1answer
25 views

How to constrain insertion into database

What is the best way to add a constraint to the insertion action to a database? I have a small-ish table where one of the columns is a version number. I would like to verify that the version number ...
1
vote
1answer
113 views

Joining queries in informix

I currently have 2 queries (which I have taken from various pages on the internet) which do the following: Retrieve all the columns for a given table Retrieve the PK and FK constraints on a given ...
1
vote
1answer
74 views

integrating Cakephp with Informix database

I have an application and I want to use a table of Informix in my cakephp application. Is it possible? I just want the users table of informix, the others tables i'll use mysql. Is it possible? ...
1
vote
1answer
132 views

Error creating an Informix function

I am trying to create the following function, but its not compiling successfully. I am not sure where the problem is. This is the first time I am trying this one. Can someone please point out the ...
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 ...
0
votes
4answers
743 views

How to insert a null value into a primary key in DB2?

My webApp works with 2 DataBase servers Informix and DB2 (v9.5 run on localhost), when i work with informix DB i can insert null into a primary key (informix DB handle it and accepts nulls and auto ...
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
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 ...
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
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
141 views

Do we have to recompile Stored procedure after alterning column length

In our project we have to modify our column length from char(8) to char(10). Now, do we need to recompile any of our stored procedures referring to the table that has this column in question. FYI ...
2
votes
1answer
275 views

How to create shadow table in Informix

I was working on an audit trail module that require me to create a huge list of shadow table from original table. I was thinking to write a stored procedure that could generate a shadow table from ...
1
vote
1answer
150 views

Mounting Tape device under Windows for Informix

This is relating to Informix database. I have downloaded Informix Developer Edition on my computer. I have imported the database from one of my other servers to my local database (worked fine). I ...
1
vote
1answer
1k views

How to create trigger in informix?

I am trying to write a trigger like in the following simplified example: create trigger adr_trg update of fname, lname on adr REFERENCING OLD AS o NEW AS n FOR EACH ROW ( IF o.fname <> ...
1
vote
1answer
60 views

ibm.data.informix is not getting the correct data out of the database

Server: IBM Informix Dynamic Server Version 11.70.FC1GE Client: IBM Data Server Driver package 5765-F41 Dotnet Client DLL:     IBM.Data.Informix.dll ...
1
vote
2answers
375 views

Difference in the query plan when using ANSI OUTER JOIN and OUTER in Informix

is there a difference in the Informix query performance using ANSI syntax: SELECT .. LEFT OUTER JOIN some_table ON (<condition>) LEFT OUTER JOIN some_other_table ...
1
vote
1answer
308 views

How to start a user script from a sql trigger

I'm not sure if it is possible. I have an informix database, and I would need to start a bash script from a database trigger. In the informix documentation explains how to start a user procedure, but ...
1
vote
1answer
942 views

Informix “Invalid Argument” exception with connection string

I have been looking online for days trying to solve my problems and I cannot find anything which hints as to why I get this issue. The exception is: System.ArgumentException: Invalid argument I am ...
1
vote
3answers
419 views

Should I scan and store a customers I.D. card and fingerprint in a BLOB for every transaction?

I have a pawnshop app written with isql 7.32. A new law now requires that the customer's I.D. and a Fingerprint be recorded on the original printed ticket every time a loan or buy transaction is ...
1
vote
1answer
2k views

Row_number() function for Informix

Does informix has a function similar to the SQLServer and Oracle's row_number()? I have to make a query using row_number() between two values, but I don't know how. This is my query in SQLServer: ...
1
vote
1answer
408 views

What default system tables are available on Informix 9.53C1?

I'm looking for the data dictionary for Informix 9.53C1 system tables/catalog. I've found a couple sites that show some of these tables, but I couldn't find a full, comprehensive list of all system ...
21
votes
8answers
19k 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 ...
1
vote
2answers
3k views

How do I list all stored procedures in Informix?

I'm looking for a way to list all the stored procedures in my database running on Informix. Is there a table in the "informix".* database that lists stored procedures along with detail information ...
1
vote
1answer
339 views

Question about Hibernate and Informix

Currently, I am running into a problem where I am not able to save any CLOB object with hibernate if it is longer than 4096 characters. Anything below that it works correctly and as expected. The ...
-1
votes
1answer
117 views

Legal Database Column Names

I am designing a table that is to be used on multiple database engines: Informix SE Oracle PostgreSQL Do all these databases allow numbers in the column names? E.g. field1, field2, field3...
1
vote
1answer
58 views

Informix-SQL (SE) on the cloud with WinTerm thin clients

I have several customers, each running a customized version of my ISQL (SE) desktop app. I would like to replace their desktop app with thin client WinTerm's, connecting to the cloud (My ISQL app on ...
1
vote
3answers
671 views

What's the fastest way to obtain the maximum value of a column in a table?

INFORMIX-SQL 4.10.DC1 (SE Engine), on DOS 6.22, under Microsoft Virtual PC 2007, in Windows 7! EDIT: Looking for Jonathan Leffler's wisdom on this one! I have a child table called transaction and a ...
1
vote
2answers
135 views

Is the physical ordering of rows maintained when adding new rows to a table with a clustered index?

In IDS?..SE?.. SQL Server, Oracle, MySQL and others automatically insert new rows into the appropiate location in the datafile to maintain the clustering.
1
vote
2answers
1k views

How to use PHP to connect to an Informix database?

First, I would like to introduce the problem. I have a Informix database that is currently used by 300 staffs (average is around 100,000 records/query) that make this server work slowly. Current ...
1
vote
1answer
452 views

IBM Informix-SQL and the new IBM Informix Genero

Did IBM recently acquire or co-label FourJ's Genero RDBMS? Has anyone evaluated or developed apps with Genero under Windows? Anyone know if IBM has made any modifications to Genero? Does IBM ...
2
votes
5answers
713 views

Transfering data between different DBMS's

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 ...
1
vote
1answer
80 views

Tweak Informix query

I have a bunch of Informix queries and I need to verify the performance of each query. All these queries are long and contain a lot inner SELECT and JOINs. So I am wondering if there is any tool ...
1
vote
1answer
165 views

Need help running this MS SQL Server statement on Informix

I need help running this MS SQL Server UPDATE statement on Informix (version 11): update b set Colname = 'StringValue' from Table1 b right join Table1 c on ((b.Col1 = c.Col1) and (b.Col2 = ...
1
vote
1answer
264 views

Can you tell Informix to output trace information to stdout or stderr?

I need to use the Informix 'trace' debugging. In order to use it, you specify the debug file using set debug file to ..... Is it possible to output the trace data to stdout or sterr instead?
1
vote
1answer
249 views

Monitor informix database change

I'd like to generate test data for a web application we're developing. One approach I am thinking about is that if there is a way to monitor the database (we're using informix) when I add something ...

1 2