I am trying to create a table from an existing table and i need the existing tables data in my new table, So i submitted the following statement
insert into first (select * from <old_table>
but i am getting the following error
Error during Prepare
S0002(-204)[IBM][CLI Driver][DB2/AIX64] SQL0204N "RNOEL03.FI RST" is an undefined name. SQLSTATE=42704
can you please help
Thanks
insert into first (select * from <old_table>
but i am getting the following error
Error during Prepare
S0002(-204)[IBM][CLI Driver][DB2/AIX64] SQL0204N "RNOEL03.FI RST" is an undefined name. SQLSTATE=42704
can you please help
Thanks
Comment