I am trying to export multiple tables to individual excel files (approximately 120 tables need to be exported) in PLSQL Developer. As of right now, I am running through this process
Run Query
SELECT * FROM TABLE;
From the result window, click "Export Query Results" and save as .xlsx.
This is a lengthy process, and takes around a minute per table (lots of information!), I can't help but think there has to be an easier, more efficient way of doing this. I just can't find any information.
plsqldeveloper
tag, can I take it this is Oracle and you are using the PL/SQL Developer desktop IDE? If so, do you want 120 Excel files for your 120 tables, or would another format do? – William Robertson