Informix: How to get the table contents and column names using dbaccess?
Supposing I have: an Informix database named "my_database" a table named "my_table" with the columns "col_1", "col_2" and "col_3": I can extract the contents of the table by creating a my_table.sql script like: unload to "my_table.txt" select * from my_table; and invoking dbaccess from the command line: dbaccess my_database my_ta...