I'm curious as to how Informix (7.3) deals with temporary tables created with no log when a session is terminated without dropping those tables.
I connect using iSQL:
cat |isql db
Then, for example, I create one or more temporary tables with no log:
select first 10 * from table into temp t0 with no log;
If I don't drop this table with the normal drop table
command and then exit iSQL via CTRL+C
or my session gets terminated otherwise, what does Informix do with this/these temporary tables?
I summon Jonathan Leffler - the resident informix pro - again for this!