The log_text function can be used to insert a SQL statement into the roll forward log.
The log_text function causes the SQL text given as first argument to be executed at roll forward time with the following arguments as parameters, bound from left to right to the parameter markers in the statement ('?'). There can be a maximum of 8 parameters but these can be arrays.
Log a procedure call instead of its effects.
create procedure xx () { log_text ('xx (?)', arg); log_enable (0); ... action code log_enable (1); }