Tagged Questions
0
votes
1answer
23 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 ...
0
votes
0answers
55 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
35 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.
0
votes
3answers
65 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
3answers
98 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
1answer
52 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
107 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: ...
1
vote
1answer
64 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
70 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 ...
1
vote
1answer
43 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
240 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
78 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 = ...
1
vote
1answer
77 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
vote
1answer
70 views
Serial Fields in Informix for ORM framework
We use a VERY old version of Informix (SE). I am trying to make an ORM type framework in C# to handle CRUD procedures. I am having a hard time trying to come up with a way of dealing with tables ...
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
2answers
76 views
Aggregating several columns to single column
I have a table that looks like
id cat data
--------------------
1 1 foo
2 1 bar
3 1 baz
4 2 some
5 2 random
6 3 Data 1
...
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 ...
1
vote
2answers
90 views
Number lookup and sorting in Informix
I have a table in an IBM Informix database wherein there's a column 'level' of data type CHAR(15). If I do a SELECT DISTINCT on that column, the top 5 results are:
UNKNOWN
ROOKIE
LEVEL 1
LEVEL 2A
...
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
1answer
41 views
Determine lock owner in Informix
I have an asp.net application that in some circumstances will return a lock error during a query. This is fine, but what I would like to be able to do is log the owner of the lock in order to track ...
1
vote
3answers
222 views
SQL substituting NULL using NVL, having problems checking substituted value in the where clause correctly
I am running a query to display messages when the from date is before (<=) the current date and to_date is after (>) the current date.
If the to_date is NULL, then i give it a value using the NVL ...
1
vote
2answers
59 views
JOIN the same table
Hi I have table badge which has columns facility and date (other columns are not important).
I want to select count(*) which should look like this:
DATE | FACILITY 4 COUNT | FACILITY 1 COUNT
...
0
votes
1answer
190 views
update query statement in informix [closed]
I would to get help from you all regarding my sql statement in Infomix.Please find my code below.I'm joining 5 tables and link with the primary keys. what I need is, I have to update export_flag ...
1
vote
1answer
82 views
Blobs are not allowed in this expression
I face the following problem:
-615: Blobs are not allowed in this expression.
SELECT ser
,task_code
,trans_serial
,trans_year
,CASE when nvl(length(signed_content), 0) ...
1
vote
3answers
72 views
How to switch between two field value under some condition?
With a table like this:
id doc_before doc_after
0 100
1 167 153
2 132
I want to get the doc_after if exist else get the doc_before.
How to do this ?
I want the ...
1
vote
2answers
156 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
167 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
77 views
How to use Group BY with foreach in a stored procedure?
I have a stored procedure, and I want to use GROUP BY in FOREACH statement like this:
FOREACH SELECT a.task_code, a.task_name, MAX(a.cand_num)
FROM (SELECT DISTINCT a.task_code, ...
1
vote
2answers
68 views
How to get the unique from UNION according to some condition
if i make a union between multiple queries (4 for example) and i get the following
result :
id name num
13 task1 0
13 task1 7102
How to get only the unique where num is greater than 0 ...
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 ...
1
vote
1answer
91 views
How to overwrite matching key in “load from” statement in informix sql
I have a table (in informix ) which stores two columns :empId and status (Y/N). There are some other scripts which, when run, update the status of these employeeIDs based on certain conditions.
The ...
2
votes
1answer
344 views
Informix SQL 11.5 storing query results in a file with a dynamic name
I am trying to store the results of a query in a file. The following command accomplishes this task:
UNLOAD TO '/usr/data/report.csv' DELIMITER ';'
SELECT COUNT(*) FROM table1;
Problem: I don't ...
1
vote
3answers
49 views
How can I order a selection by the results of a function (sum)?
I have a table with a bunch of columns. Three columns are integers, and are labeled consumption, consumption2, and consumption3.
I would like to select each full row of the table, but order the ...
1
vote
1answer
125 views
Informix alter/Update table information
I am using an informix database, and want to change the value of displayed from 'N' to 'Y'...
I am running the following sql but seem to be getting a syntax error:
UPDATE tablename
SET displayed ...
2
votes
1answer
98 views
How to make a join with the stored procedure result?
I want to make a join between a query and the result of stored procedure (for some reason).
my query is:
SELECT COUNT(a.values_key) AS docscount,b.main_code,b.year
FROM SP_name_should_be_here a
...
1
vote
1answer
83 views
Using string values inside “IN” in Informix
In database table in Informix I have columns like this:
Table name is MYTABLE
key 1234
value 'POCO','LOCD',MACD'
Now I want to use this in a query like this
select * from table ...
1
vote
2answers
142 views
How to insert Byte[] into the Informix database through the SQL Editor interface
I wonder if there's some way to insert Byte[] in to my database column using the INSERT statement through my SQL Editor.
For example
INSERT INTO Temp (id,name) VALUES(1,'rg_book');
I just ...
1
vote
1answer
372 views
Convert DATETIME to Unix Epoch in Informix
I have a DATETIME column:
SELECT mytime FROM mytable;
mytime
--------------------
1/6/2013 10:41:41 PM
I would like to write a SQL statement that returns the time in Unix Time format (seconds ...
1
vote
1answer
474 views
Loading lat and long from SQL Database into google maps
I want to modify my asp.net application to open a google maps location from a hyperlink (https://maps.google.com/maps/ms? msid=217765347979644002223.00048600fdc1ccf2d2d55&msa=0). I need to ...
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
2answers
155 views
How can I query just the month and day of a DATE column?
I have a date of birth DATE column in a customer table with ~13 million rows. I would like to query this table to find all customers who were born on a certain month and day of that month, but any ...
2
votes
1answer
49 views
How to retrieve the “Is Null Allowed” property from syscolumns in Informix?
I'm trying to figure out how to programmatically determine whether or not the columns of a given table are nullable in an Informix database. I've figured out how to get the column data for any given ...
1
vote
2answers
155 views
How to write this SQL statement correctly?
As written in the title: How to write this SQL statement correctly?
select
sl.switch_ip,
sl.switch_name,
count(m.switch_ip) as macentries,
(select arpentries from (select ...
0
votes
3answers
107 views
How to execute a LIKE query against a DECIMAL (or INTEGER) field?
Is it possible to execute a LIKE statement against a table column that contains DECIMAL types? Or else, what would be the best way to select matching rows given a number in a decimal (or integer) ...
1
vote
1answer
358 views
Copy tables in informix
How can I efficiently copy a table within an informix database? I would like to do something like
create table new_table as (select * from old_table)
but that doesn't work.
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 ...
2
votes
3answers
229 views
MS SQL To Informix 11 - Group By converted datetime
I am attempting to move a stored proceedure from Microsoft SQL Server 2000 to Informix 11. The original SP contains a final select statement with a GROUP BY statement that includes a converted ...
3
votes
2answers
381 views
Convert SQL query “SELECT UNIQUE 1…” in Informix-4GL program to Java code
I want to convert Informix-4GL program to Java, and I have some problems. I have a Java code and connect to Informix with success, but I'm having some problems.
How can I use "SELECT UNIQUE 1..." in ...
1
vote
2answers
216 views
Informix trigger for deleting one record
When I perform an task, two rows gets inserted in my table ie. duplication. I need to remove the duplicate by using an after insert trigger. I need to delete one duplicate record from those 2. I need ...
1
vote
1answer
73 views
Code fix for decode in Informix
I am using a decode function in Informix database. I am retrieving a field which is an integer datatype. If the value I retrieved is '' then I need to set it as null; if not I am setting the same ...

