in reply to Data export into text file
This is a very basic example of what I am talking about. You can get fancy with select statement to get into a format that Access would like ... like comma delimited.SQL> spool table_save.txt SQL> select * from table_to_save; SQL> spool off
|
|---|