The server is an Oracle Database 12c Enterprise Edition Release 12.1.0.2.0
I have about many tables / views of varying size (1 to 25 million rows x 5 to 100 columns).
I can only access the server through Oracle SQL Developer.
Due to limitation on the server hardware I'm not able to extract all rows in a single export using the "Export Wizard" so instead I'm splitting every table up into 'chunks' of 1 million using the following simply query:
SELECT *
FROM [my_table]
OFFSET [rows_extracted_already] ROWS
FETCH NEXT 1000000 ROWS ONLY;
Then I get a Query Result -> Right-click -> Export -> Use the Export Wizard -> Repeat.
This is taking a LONG time and I cannot seem to find a simple way to do this.