While creating a backup of a table, I am using the following Syntax -
CREATE TABLE new_table LIKE original_table;
INSERT new_table SELECT * FROM original_table;
But while executing the first Statement only, I am getting the folowing error:
SQL-Fehler: ORA-00922: Fehlende oder ungültige Option 00922. 00000 - "missing or invalid option"
I am new to SQL but this should be simple execution.