What does the option Prefer Fast Copy [in the synchronization script] do?
TOYS preserves table data by either (i) unloading table data to external files and re-loading -or- (ii) copying table data internally using SQL or PL/SQL. The option Prefer Fast Copy only applies to internal copying. With this option enabled, TOYS will use an INSERT INTO table SELECT … in preference to a PL/SQL block where ever possible. The insert is much faster but may fail on large tables due to insufficient undo segment space.