what is the syntax error (error code-ORA-00911) in this below code:
Insert into ctl_infa_parm
select ‘201405’,
scen_id,
infa_wkf_id,
sess_parm_file_nm,
sess_nm,
parm_nm,
parm_value,
parm_type,
wklt_nm,
actv_flag,
updtd_by,
sysdate,
sysdate
from ctl_infa_parm
where dmth_id=201404;
code-ORA-00911represents an invalid character (see http://www.dba-oracle.com/sf_ora_00911_invalid_character.htm). Yourselect ‘201405’is not the same asselect '201405'. Use'instead of’.