in reply to Data export into text file

This example assumes an Oracle DB, but I am certain most DBMS have the same kind of functionality.
SQL> spool table_save.txt SQL> select * from table_to_save; SQL> spool off
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.