Hi - New to PL/SQL Developer. Currently trying to run a query so the results can be save to file but I received the following error:
ORA-00900: invalid SQL statement
Been running this query for a while in other platforms without any issues. Is there another way in PL/SQL Developer to save the results to file. Query below
spool c:\temp\myoutputfile.csv
select * from mytable;
spool off;
Many Thanks.
ORA-00900: invalid SQL statement
Been running this query for a while in other platforms without any issues. Is there another way in PL/SQL Developer to save the results to file. Query below
spool c:\temp\myoutputfile.csv
select * from mytable;
spool off;
Many Thanks.