I'm having trouble running a large schema export script (~.5M lines), generated with SQL Developer Data Export. I'm trying to move a schema from one instance to another and don't have access to data pump on the source side so can't use that.
I've tried to run the script in SQL Developer and it just hangs after about 10 commands in. And also tried running it as a script file in SQLcl. The weird part of the SQLcl run is that I can see that the views got created, but almost nothing else (no packages, procedures, functions, tables).
I added "set termout off" to the top of the file before I ran it, so hopefully it would help on the I/O side of things but somewhere along the way this failed (apparently) and not sure why, or how to fix it, besides trying to break the script up into smaller chunks, which I'm loathe to do.
Any suggestions for running these really large export scripts in SQLcl?