1
vote
0answers
33 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 ...
1
vote
1answer
40 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
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
3answers
163 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
73 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, ...
2
votes
1answer
94 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
174 views

Informix: How to average result from Stored Procedure

Let's say I have this function sp_func(startdate, enddate). To call the function itself I use CALL sp_func(startdate, enddate);. The function will return a table consisting of: id name time ...
2
votes
3answers
225 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 ...
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
1answer
613 views

Informix, Procedure, Converting String to Time

I want to call the informix sp below from c# but am having trouble getting it to compile. I want to pass it a string like '2012-11-22' and two times like '08:15:00' and convert them to a date and two ...
1
vote
1answer
368 views

Informix stored procedure

When creating a stored procedure in Informix, it does not throw an error even if the related table does not exist.. I guess the reporting level is pretty high so how can I change it?
1
vote
2answers
231 views

How to get the affected rows in stored procedure

If i have a stored procedure ,and i make an insert . i wanna to return 0 or 1 according to if the insert operation succeeded or not how to do this in informix .i wanna to know if there's some thing ...
1
vote
1answer
854 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
252 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
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
61 views

How can I ensure thread safe when using sequence in Database?

I have a sequence used in a stored proc that update multiple table just like below: create procedure() -- retrieve new sequence number sequence.nextval(); -- update table_A using newly ...
2
votes
1answer
273 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
2answers
221 views

unexpected error when trying to execute stored procedure

I get the following exception when i try to execute specific stored procedure : Input string was in incorrect format my .cs : sQuery.Append("EXECUTE procedure get_department(" + dep_code + ...
1
vote
1answer
1k views

Self reference update on insert trigger in Informix

I'm extracting data from various sources into one table. In this new table, there's a field called lineno. This field value is should be in sequence based on company code and batch number. I've wrote ...
1
vote
2answers
292 views

How can I Insert or Update a row with a value returned from a sub-query?

EDIT: Looking for help from J. Leffler, Cheese Con Queso or anyone who knows Informix-SE well. Informix-SE 4.11: I have a table called 'cuadre' which is used to reconcile the cash drawer at the end ...
1
vote
2answers
410 views

Why does this SQL stored procedure require that a temp table be created for it to work (return results)?

IBM Informix Dynamic Server Version 11.50.FC6 I was working on a small stored procedure that would take name fields from a table and parse them into "user names" with a maximum of 8 chars. This is ...
1
vote
2answers
1k views

What is the difference between “referencing old” & “referencing new” in a SQL stored procedure?

I'm not sure if this syntax is Informix-specific, but I was having trouble creating a trigger until I found some syntax that included one, or both, of these lines: CREATE TRIGGER accuplacer_trig ...
1
vote
1answer
563 views

Informix SQL - What is wrong with this simple stored procedure &| trigger syntax?

IBM Informix Dynamic Server Version 11.50.FC6 I am trying to execute a simple stored procedure from within an update trigger. Together, they are used to update a field with the current timestamp ...
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
3answers
396 views

The same error is detected in stored **procedure**, but not in stored **function**

This question is related to my previous one: RaiseError (PERL, DBI) equivalent for unixODBC C API ? As I isolated the problem later, I'll post new question, that is more specific, isolated and ...
1
vote
1answer
96 views

My stored Function has disappeared, presumably at the end of my RazorSQL session

I was using RazorSQL's live session window to create and edit several stored procedures. I've since disconnected from the database, and reconnected, and now those procedures have disappeared. ...
1
vote
1answer
236 views

Cannot call stored procedure from code which works on direct call to database

I connected to the Informix server using RazorSQL, created a stored procedure and tested it, getting the expected answer, so the procedure exists in the database in some form. I then run the ...
1
vote
3answers
289 views

Pass Byte as SmallInt?

I have an Informix stored procedure which takes an int and a "smallint" as parameters. I'm trying to call this SP from a .net4 Visual Basic program. As far as I know, "smallint" is a byte. ...
1
vote
1answer
294 views

Cannot add an ORDER BY command to a stored procedure

I'm converting a stored procedure in some software I'm maintaining from SQL Server SQL to Informix SQL, and problems are abundant. Basically I'm converting each section line-by-line until I have the ...
1
vote
1answer
357 views

Use Informix Object Interface for C++ for stored procedures/functions with out parameters

It's simple - is there a way to use this lib to call stored procedure or function, that returns more than one result? I know about the ITRoutingManager, but it seems to return just one value.. In ...
1
vote
2answers
578 views

Translate stored procedure from MS SQL Server to Informix

I do not know how to write a specific stored procedure in Informix, so I had to write the logic in my mind in SQL Server which I know how to write (Microsoft simplicity)... So I will write my stored ...
2
votes
3answers
2k views

how to add line breaks in a query (informix)?

I need to do a query that updates text with line break, I tried using \n but it inserts "\n" literally. Example: update table set text = "first line\nsecond line" I want it to show that text as: ...
3
votes
1answer
205 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 ...
2
votes
5answers
1k views

How to call a stored procedure without waiting for it to finish?

How do I call a stored procedure from a web service method without having to wait for the stored procedure to finish, and just let the method finish all other activities? As an example (not actual ...
1
vote
2answers
1k views

Custom “WHERE” in stored procedure (Informix)?

I'm doing the specification for an application that has to search a table with different conditions in the WHERE clause. For example (not an actual table): type 1 select name from employees where ...
2
votes
2answers
557 views

execution time of a stored procedure

What is the age old method of testing execution time of stored procedures on informix 11.5. I am thinking of doing something like this from a unix prompt: $ time (echo 'execute procedure foo(1)' | ...
1
vote
1answer
384 views

Informix: Fifo valuation with SQL/Stored procedures

I am using IDS 10 and I have a simple transaction table with the inventory changes with product ID, transaction time, volume, quantity and price. Is it possible to determine the FIFO valuation solely ...
2
votes
1answer
1k views

Can't create Informix stored procedure using ISQL command?

I'm having trouble creating this stored procedure on IBM Informix Dynamic Server Version 10.00.FC9 (see Jonathan Leffler's answer to this post here) using the 'isql' command from Informix SQL. I get ...
1
vote
2answers
282 views

Does Informix have scheduled triggers?

I need an Informix database to update some records on December 31 at 11:59; can Informix do this on a trigger, or does it have a scheduler of some sorts? I'm an Informix noob btw. I'm using informix ...
1
vote
2answers
4k views

Datasource returned from Informix Stored Proc

I have an Informix stored procedure that returns two columns and multiple rows. I can use "EXECUTE FUNCTION curr_sess(2009,'SP')" fine, but how do I get the results into a temp table. EDIT: We are on ...