Reputation: 903
Im currently trying to move data from three old database schemas into one new one. I have been doing this using MS Access's append query function.
Everything has gone pretty smoothly until I tried to move across data that contained Blobs. Oracle returns a 'ORA-01008: not all variables bound' error. I have tracked this down to an error in the blobs as it works fine if I remove those columns from the query.
Does anyone know why this happens or how to overcome it?
Upvotes: 0
Views: 263
Reputation: 2771
Why don't you just do it on the server?
Without testing this (forgive the syntax errors)
While connected to the target schema
insert into tablename select from SourceSchemaName1.TableName;
insert into tablename select from SourceSchemaName2.TableName;
insert into tablename select from SourceSchemaName3.TableName;
http://psoug.org/reference/insert.html
Upvotes: 1