Subject | Re: Is there transaction logging in FireBird? |
---|---|
Author | Adam |
Post date | 2006-08-10T23:41:53Z |
--- In firebird-support@yahoogroups.com, Vlad Orlovsky <vmo3d@...> wrote:
different versions of the record are kept in the database against the
respective recods. This means that there is an instant recovery in the
case that a database crashes, not a slow recovery process.
transaction.
with CURRENT_TRANSACTION as a key. This context variable is available
everywhere and can easily distinguish which records your given
transaction is interested in.
Temporary tables are in the roadmap.
Adam
>There is no explicit transaction log as with other databases. The
> Hi Everyone,
>
> I'm using embedded Firebird for my .NET 2.0 project
> and was wondering if there is a 'transaction log' that
> is kept inside the .fdb file?
>
different versions of the record are kept in the database against the
respective recods. This means that there is an instant recovery in the
case that a database crashes, not a slow recovery process.
> If so, is there a way to turn off transaction loggingNo, all activity in the database occurs under the context of a
> from .NET 2.0 provider or inside the SP?
transaction.
>Perhaps external tables may help, otherwise you can use a real table
> The reason I ask is because I use some tables to
> temporary store A LOT of data and I'm not using
> transactions in those cases.
with CURRENT_TRANSACTION as a key. This context variable is available
everywhere and can easily distinguish which records your given
transaction is interested in.
Temporary tables are in the roadmap.
Adam