0
I have a table where you store trucks in and out. In this table there are two fields of the type Date, I want to update the data of these fields. I’m using the select below.
UPDATE V_TPL_ACOMPANHAMENTO SET E_POR = TO_DATE('08/10/18 22:24','DD/MM/YY HH24:MI'),
S_PORT = TO_DATE('09/10/18 01:55','DD/MM/YY HH24:MI') WHERE COLETA='EDB-TP-32764C'
But when I try to update, the error message appears: ORA-01732: data Manipulation Operation not legal on this view
http://www.linhadecodigo.com.br/artigo/2821/trigger-oracle-basico.aspx try a INSTEAD OF TRIGGER
– Motta