Hi
I have a problem executing a native dinamic sql.
here is my example:
execute immediate 'Insert into table_name(col1,col2,col3) Values ( '||sysdate||','||v_col2||','||v_col3||')';
col1 is a date column.
when I run this command I get an ORA-917 " Missing Comma".

Pls Help