There is a dump in .sql format, to be imported to the server. From tools only sqlplus. The problem is that sqlplus requires that after each CREATE TABLE was / and only after / start creating the table. And dump looks like this:
DROP TABLE ...;
CREATE TABLE ...;
INSERT INTO ...;
...
DROP TABLE ...;
CREATE TABLE ...;
INSERT INTO ...;
...
...
When it comes to INSERT nothing is inserted because the table is not created. Edit the file is not possible because it is a large (~ 700 MB). How to import the dump?
Given the file /tmp/foo.sql:
running sqlplus:
It sounds like you’ve set delimiter to
/somewhere. Change it back to;.If you need to edit the file, you can do so with
perl -p -E "s/pattern/replacement/" oldfile.sql > newfile.sqlor similar. (Or, honestly, many editors can handle 700MB files on modern machines with many gigabytes of RAM).