I need at some point dynamically increment the plsql timestamp variable.
So instead:
timestamp_ := timestamp_ + INTERVAL '1' DAY;
I would like to do something like this:
timestamp_ := timestamp_ + INTERVAL days_ DAY;
This does not work. My ultimate goal is to dynamically create some scheduler jobs for some objects that have a variable expiration date in order to avoid creating one that will often run.
source share