I am trying to create a trigger (or something alike) that inserts a new row when one row is updated. The scenario is: I have a table of tasks that should be done every month. When a task is set to completed (this is the update statement) i want a new task to be created, with the same parameters but a diferent date. So I was thinking of an after update trigger that fires an insert statement onto the same table, but oracle won't allow this.
What is a good way to achive this?
Thanks in advance.