Tagged Questions
1
vote
1answer
69 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
1answer
124 views
informix insert trigger: update value on same table but different record
Is there any way I can get an insert trigger to update a value on the same table in a different record to the one being inserted? Informix does not seem to allow me to do this as I understand it ...
2
votes
4answers
149 views
How do you identify the triggers associated with a table in a informix database?
How can we identify the triggers associated with a table in a Informix database?
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
233 views
How to apply sequence order in trigger?
In Informix, I need to update 2 (two) tables when the trigger is executed. Let's say Table_A and Table_B. In Table_A, there is a int8 (long data type) column as primary key. When a new record is ...
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
2answers
381 views
Informix “SERIAL” to Oracle NUMBER/Sequence/Trigger in Pro*C
I'm trying to convert some Informix ESQL to Oracle Pro*C. In the existing Informix code the "SERIAL" data type was used to indicate automatically incrementing columns. According to the Oracle ...
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
1answer
310 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
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
578 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
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 ...