I have a table containing 110GB in a BLOB in one schema, and I want to copy it to another schema in another table.
I want to copy the column of the source table, so I use the UPDATE statement, but it takes 2.5 hours to copy 3 GB.
Is there a faster way to do this?
Update:
The code I'm using is very simple:
update schema1.A a set blobA = (select blobB from schema2.B b where b.IDB = a.IDA);
ida and idb are indexes.
simao source
share