i have two tables.i am trying to insert long raw values from one table into another table.
This long raw column contains the PDF Contents.Contents are stored in bytes.
These tables are old tables.So i am not able to change the data type into BLOB.
So please help.
Table Structure
TEST1
ID number
F_PDF long raw
TEST2
ID number
F_PDF Long Raw
i tried below insert command
insert into test2(id,f_pdf) select id,f_pdf from test1