翻訳と辞書
Words near each other
・ Transaction
・ Transaction account
・ Transaction Advisors
・ Transaction Application Language
・ Transaction authentication
・ Transaction authentication number
・ Transaction banking
・ Transaction Capabilities Application Part
・ Transaction Control Language
・ Transaction cost
・ Transaction data
・ Transaction de Novo
・ Transaction deposit
・ Transaction document
・ Transaction Language 1
Transaction log
・ Transaction logic
・ Transaction Management eXecutive
・ Transaction printing
・ Transaction privilege tax
・ Transaction processing
・ Transaction Processing Facility
・ Transaction Processing Management System
・ Transaction Processing over XML
・ Transaction Processing Performance Council
・ Transaction processing system
・ Transaction Publishers
・ Transaction time
・ Transaction verification
・ Transaction Workflow Innovation Standards Team


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Transaction log : ウィキペディア英語版
Transaction log

In the field of databases in computer science, a transaction log (also transaction journal, database log, binary log or audit trail) is a history of actions executed by a database management system to guarantee ACID properties over crashes or hardware failures. Physically, a log is a file listing changes to the database, stored in a stable storage format.
If, after a start, the database is found in an inconsistent state or not been shut down properly, the database management system reviews the database logs for uncommitted transactions and rolls back the changes made by these transactions. Additionally, all transactions that are already committed but whose changes were not yet materialized in the database are re-applied. Both are done to ensure atomicity and durability of transactions.
This term is not to be confused with other, human-readable logs that a database management system usually provides.
In computer storage, a journal is a chronological record of data processing operations that may be used to construct or reinstate an historical or alternative version of a computer system or computer file.
In database management systems, a journal is the record of data altered by a given process.
==Anatomy of a general database log==

A database log record is made up of:
*''Log Sequence Number'': A unique id for a log record. With LSNs, logs can be recovered in constant time. Most LSNs are assigned in monotonically increasing order, which is useful in recovery algorithms, like ARIES.
*''Prev LSN'': A link to their last log record. This implies database logs are constructed in linked list form.
*''Transaction ID number'': A reference to the database transaction generating the log record.
*''Type'': Describes the type of database log record.
*Information about the actual changes that triggered the log record to be written.

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Transaction log」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.