vote up 0 vote down star

I am doing the following in Informix to delete rows more than 20 seconds old.

delete from sometable
where someDateColumn < (current - interval (20) second to second);

However, I want to make the interval configurable in a stored procedure, but I can't do

CREATE PROCEDURE i_hate_informix (prm_timeframe int)
    DELETE   sometable
    WHERE    someDateColumn < (current - interval (prm_timeframe) second to second);
END PROCEDURE;
flag

I hate informix. – Ian Quigley May 28 at 10:47
1  
Seems a bit harsh. It probably doesn't hate you. The solution you've found is easier than mucking around with explicit INTERVAL data types anyway. – RET May 28 at 21:23
Ok, "Hate" is probably too strong. Compared to SQL Server though it's a ---- pain in the -----. – Ian Quigley May 29 at 21:43

1 Answer

vote up 2 vote down check

I found the answer myself.

Interval can not be defined dynamically with a variable. But you can use "units second" so my procedure becomes

CREATE PROCEDURE i_hate_informix (prm_timeframe int)
   DELETE   sometable
   WHERE    someDateColumn < (current - prm_timeframe units second);
END PROCEDURE;
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.