Re: Logical log for Temp table



On Jan 29, 5:03 am, falcons...@xxxxxxxxx wrote:
From informix manual, I found that any logical database operation will
be logged in logical log. However, will any logical operation on
temporary table be logged too in logical log. I ask this question as
it is non sense to log logical operation for temp table as it will not
be recovered when recovery is required.

Thanks for any reply.

It depends. If you create the temporary table with logging then it
will log if you create it without logging it won't

Here are the two syntax types:

create temp table(
.....
) with no log;

create temp table(
) ;

select * from <table> into temp <temp table> with no log;
select * from <table> into temp <temp table> ;
.



Relevant Pages

  • RE: Logical log for Temp table
    ... Pre-creation and sizing of a temp table can help ... Logical log for Temp table ... it is non sense to log logical operation for temp table as it will not ... be recovered when recovery is required. ...
    (comp.databases.informix)
  • Re: Logical log for Temp table
    ... temporary table be logged too in logical log. ... it is non sense to log logical operation for temp table as it will not ... be recovered when recovery is required. ... The reason is that rollbacks on the temp table can not be ...
    (comp.databases.informix)
  • Re: Logical log for Temp table
    ... temporary table be logged too in logical log. ... it is non sense to log logical operation for temp table as it will not ... be recovered when recovery is required. ... Besides the answers you already got, it's worth mentioning that IDS 11 introduced a global parameter called TEMPTAB_NOLOG which can be used to disable temp table logging. ...
    (comp.databases.informix)
  • Logical log for Temp table
    ... temporary table be logged too in logical log. ... it is non sense to log logical operation for temp table as it will not ... be recovered when recovery is required. ...
    (comp.databases)
  • Logical log for Temp table
    ... temporary table be logged too in logical log. ... it is non sense to log logical operation for temp table as it will not ... be recovered when recovery is required. ...
    (comp.databases.informix)