Im trying to 'translate' a month table, with pl_sql 6.0 program.
I would like to run all these instructions below at once, in a very simple code, like 'select the instructions and hit F8', all at once.
Problem is:
without ";" between each instruction, i get: ORA-00933 command not properly ended with ";" between each instruction, im getting: ORA-00911 invalid character im new on oracle database, so...what i am not seeing? Thanks in advance.
update TIME_TABLE t set t.m_description='JANEIRO' where t.m_description like '%JANUARY%'
update TIME_TABLE t set t.m_description='FEVEREIRO' where t.m_description like '%FEBRUARY%'
update TIME_TABLE t set t.m_description='MARÇO' where t.m_description like '%MARCH%'
update TIME_TABLE t set t.m_description='ABRIL' where t.m_description like '%APRIL%'
... and so on