Hi,
I'm trying to do:
spool myfile.txt
select * from enormous_table where an_id = 1234;
spool off
The enormous table has over 5 million rows in it and this select is expected to pull back a couple of million rows.
I'm running this sql but for some reason my connection keeps dying and I end up with a zero sized file.
Does anyone know what is going on and how I can extract this data to file.
I'm trying to do:
spool myfile.txt
select * from enormous_table where an_id = 1234;
spool off
The enormous table has over 5 million rows in it and this select is expected to pull back a couple of million rows.
I'm running this sql but for some reason my connection keeps dying and I end up with a zero sized file.
Does anyone know what is going on and how I can extract this data to file.