In the Oracle, I copy data from a backup to a new table, it doesn\'t work.
what is the correct syntax ?
Thanks
select CODE, MESSAGE into EXC
You need an INSERT ... SELECT
INSERT ... SELECT
INSERT INTO exception_codes( code, message ) SELECT code, message FROM exception_code_tmp