JPH096653A - Data base checking information processor - Google Patents

Data base checking information processor

Info

Publication number
JPH096653A
JPH096653A JP7151236A JP15123695A JPH096653A JP H096653 A JPH096653 A JP H096653A JP 7151236 A JP7151236 A JP 7151236A JP 15123695 A JP15123695 A JP 15123695A JP H096653 A JPH096653 A JP H096653A
Authority
JP
Japan
Prior art keywords
index
data
record
storage address
correspondence
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Granted
Application number
JP7151236A
Other languages
Japanese (ja)
Other versions
JP3636773B2 (en
Inventor
Yoshiaki Inoue
嘉章 井上
Akihiko Kato
明彦 加藤
Jinnosuke Nakamura
仁之輔 中村
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Hitachi Ltd
Nippon Telegraph and Telephone Corp
Original Assignee
Hitachi Ltd
Nippon Telegraph and Telephone Corp
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Hitachi Ltd, Nippon Telegraph and Telephone Corp filed Critical Hitachi Ltd
Priority to JP15123695A priority Critical patent/JP3636773B2/en
Publication of JPH096653A publication Critical patent/JPH096653A/en
Application granted granted Critical
Publication of JP3636773B2 publication Critical patent/JP3636773B2/en
Anticipated expiration legal-status Critical
Expired - Fee Related legal-status Critical Current

Links

Abstract

PURPOSE: To provide an information processor which can check a data base without stopping the addition/updating processing of the data base by displaying an updating mode in response to every record store address in a period when the information on an index part and a data part are updated and preventing a correspondence relation check program from checking the correspondence relation of the corresponding record store addresses. CONSTITUTION: When the information stored in a data base is updated, a data base management program 3 changes the store address of the relative data record of a correspondence relation check table 7 to an updating state from an initial state and then resets the store address in the initial state when the program 3 finishes its operation. A correspondence relation check program 1 refers to the states of both index and data records for every store address of the table 7 and reflects the reference results of both record states on the reference results stored in the table 7. Then it is checked whether the correspondence relation is correct or not between an index key and the data record when the updating state of the store address is reset in the initial state.

Description

【発明の詳細な説明】Detailed Description of the Invention

【0001】[0001]

【産業上の利用分野】本発明は、データベースのチェッ
クを行う情報処理装置に係わり、特に業務によってデー
タベースを更新する処理と並行してデータベースのチェ
ックを行う情報処理装置に関するものである。
BACKGROUND OF THE INVENTION 1. Field of the Invention The present invention relates to an information processing apparatus for checking a database, and more particularly to an information processing apparatus for checking a database in parallel with a process of updating the database according to business.

【0002】[0002]

【従来の技術】データファイル又はデータベースは、一
般にインデックス部とデータ部とで構成され、インデッ
クス部はインデツクスキーとデータレコードの格納アド
レスとの対応関係を格納し、データ部はこの格納アドレ
スによってリンクされる格納場所にこのインデックスキ
ーによってアクセスされるデータレコードを格納する。
データファイル又はデータベースを管理するプログラム
は、業務プログラムの要求に応じてインデックス部を検
索して指定されたインデックスキーに対応するレコード
格納アドレスを読み出し、このレコード格納アドレスを
基にしてデータ部中の目的のデータレコードにアクセス
する。データ部に新しいデータレコードを追加するとき
には、データベース管理プログラムはインデックス部の
空き領域を検索し、データ部を検索して未使用のレコー
ド格納アドレスを求め、インデックス部にインデツクス
レコードを格納した後にデータ部に追加のデータレコー
ドを格納する。
2. Description of the Related Art Generally, a data file or database is composed of an index part and a data part. The index part stores a correspondence relationship between an index key and a storage address of a data record, and the data part is linked by this storage address. The data record accessed by this index key is stored in the storage location.
The program that manages the data file or database searches the index section according to the request of the business program, reads the record storage address corresponding to the specified index key, and based on this record storage address, the purpose in the data section. Access the data record of. When adding a new data record to the data part, the database management program searches the free area of the index part, searches the data part for an unused record storage address, stores the index record in the index part, and then stores the data. Store additional data records in the department.

【0003】データベースは一般に上記のように構成さ
れ、アクセスされ、更新されるが、インデックスキーと
データレコードが常に正しく対応して格納されるとは限
らない。例えばデータベースに物理的な破壊が生じた
り、データベース管理プログラムのバグによつてデータ
ベースに誤った情報が格納された場合、インデックスキ
ーに対応するレコード格納アドレスが存在しなかった
り、逆にインデックスレコードが存在しないのにデータ
レコードが単独で存在する不都合な状態となることがあ
る。このためデータベース中のすべてのインデックスキ
ーとデータレコードとの対応関係をチェックするプログ
ラムを作成し、チェックを行っている。
Databases are generally constructed, accessed, and updated as described above, but the index keys and data records are not always stored in correct correspondence. For example, if the database is physically destroyed, or if incorrect information is stored in the database due to a bug in the database management program, the record storage address corresponding to the index key does not exist, or conversely, the index record exists. However, there may be an inconvenient state in which a single data record exists. For this reason, a program for checking the correspondence between all index keys in the database and data records is created and checked.

【0004】従来は業務プログラムを停止させ、他から
データベースへのアクセスがない状態で上記の対応関係
チェックプログラムを走行させ、データベースのチェッ
クを行っていた。しかしデータベースにアクセスする業
務プログラムを24時間稼働させたいという要望が強く
なっており、データベースをアクセスするすべての業務
プログラムを停止させ、この対応関係チェックプログラ
ムを走行させるのが困難な状況になっている。
Conventionally, the business program is stopped, and the above-mentioned correspondence check program is run in a state where the database is not accessed by others, and the database is checked. However, there is a strong demand to operate the business programs that access the database for 24 hours, and it is difficult to stop all the business programs that access the database and run this correspondence check program. .

【0005】なお、この種の技術として関連するものに
は、例えば特開平1−217652号公報「ファイルの
同時更新回避方式」、特開平2−48746号公報「フ
ァイルの排他制御方法」、特開平5−21678号公報
「デ−タベ−ス管理システム」等がある。
Note that, as a technique related to this type, for example, Japanese Patent Laid-Open No. 1-217652, "Simultaneous file update avoidance method", Japanese Patent Laid-Open No. 2-48746, "Exclusive control method", For example, there is a database management system of JP-A-5-21678.

【0006】[0006]

【発明が解決しようとする課題】データベース管理プロ
グラムが行うデータレコードの追加の場合をみると、イ
ンデックス部にインデックスレコードを格納した後にデ
ータ部に追加のデータレコードを格納する。従ってこの
期間インデックスキーとデータレコードとの対応関係が
一時的に不整合となる。従来の対応関係チェックプログ
ラムはデータベース管理プログラムと並行処理すること
を考慮していないために、両者を並行して走行させると
対応関係チェックプログラムがこの一時的に不整合な状
態を捉えて対応関係が異常と判定する恐れがある。そう
であるからと言って上記のように業務プログラムを停止
させた上で対応関係プログラムを走行させることは許さ
れない状況になっている。
Considering the case of adding a data record by the database management program, the additional data record is stored in the data part after the index record is stored in the index part. Therefore, the correspondence between the index key and the data record during this period temporarily becomes inconsistent. Since the conventional correspondence check program does not consider parallel processing with the database management program, running both in parallel causes the correspondence check program to catch this temporary inconsistent state and There is a risk that it will be judged as abnormal. Even so, it is not allowed to stop the business program and run the correspondence program as described above.

【0007】本発明は、デ−タベースの追加・更新処理
を停止させることなく、デ−タベースのチェックを行う
ことを目的とする。
It is an object of the present invention to check the database without stopping the database adding / updating process.

【0008】[0008]

【課題を解決するための手段】本発明は、データベース
管理プログラムがインデックス部及びデータ部の情報を
更新する期間、各レコード格納アドレス対応に更新中の
表示をし、この更新中の表示がされている期間、対応関
係チェックプログラムが該当するレコード格納アドレス
についての対応関係チェックを回避し、その他のレコー
ド格納アドレスについて対応関係チェックを行うような
情報処理装置を特徴とする。
According to the present invention, during the period in which the database management program updates the information in the index section and the data section, the update is displayed corresponding to each record storage address, and this update is displayed. The information processing apparatus is characterized in that the correspondence check program avoids the correspondence check for the corresponding record storage address during a certain period and performs the correspondence check for other record storage addresses.

【0009】[0009]

【作用】対応関係チェックプログラムは更新中の表示が
されているレコード格納アドレスについて対応関係チェ
ックを回避するので、上記のような一時的不整合の期間
のチェックを避けることができる。すでにチェック済み
のレコード格納アドレスをチェック対象から除外して行
き、このようなチェックを何回か試行すれば一度対応関
係チェックを回避したレコード格納アドレスについても
次の機会にチェックされる。
Since the correspondence check program avoids the correspondence check for the record storage address that is being updated, it is possible to avoid the above-described check for the temporary inconsistency period. If a record storage address that has already been checked is excluded from the check target, and if such a check is tried several times, the record storage address that has avoided the correspondence check once is also checked at the next opportunity.

【0010】[0010]

【実施例】以下、本発明の一実施例について図面を用い
て説明する。
DETAILED DESCRIPTION OF THE PREFERRED EMBODIMENTS An embodiment of the present invention will be described below with reference to the drawings.

【0011】図1は、本実施例のデ−タベ−スのチェッ
クを行う装置の構成図である。データベース4は、イン
デックスキ−とデータ格納アドレスとの対応表が格納さ
れるインデックス部5とデータレコードが格納されるデ
−タ部6とから構成される。データベース管理プログラ
ム3は、データベース4に対するデータレコードの参
照、更新、追加、削除などの操作を制御するプログラム
である。業務プログラム2は、データベース管理プログ
ラム3に対してデータレコードの操作をする要求を発行
するプログラムである。対応関係チェックプログラム1
は、インデックスキーとデータレコードとの対応関係が
正常か否かをチェックするプログラムであり、データベ
ース4上のインデックスレコード及びデータレコードを
参照する。対応関係チェックテーブル7は、データレコ
ードの格納アドレスごとにデータベース4中の情報の更
新状態、インデックスレコードとデータレコードの参照
結果、チェック結果等を格納し、対応関係チェックプロ
グラム1及びデータベース管理プログラム3によって参
照され、更新される。本実施例の装置は、情報処理装置
によって実現され得る。対応関係チェックプログラム
1、業務プログラム2及びデータベース管理プログラム
3はこの情報処理装置の記憶装置に格納され、情報処理
装置によって実行されるプログラムである。データベー
ス4及び対応関係チェックテーブル7は、この情報処理
装置の記憶装置(主記憶装置又は外部記憶装置)に格納
されるデータである。
FIG. 1 is a block diagram of an apparatus for checking a data base according to this embodiment. The database 4 is composed of an index section 5 in which a correspondence table between index keys and data storage addresses is stored, and a data section 6 in which data records are stored. The database management program 3 is a program that controls operations such as reference, update, addition, and deletion of data records in the database 4. The business program 2 is a program that issues a request for operating a data record to the database management program 3. Correspondence check program 1
Is a program for checking whether the correspondence between the index key and the data record is normal, and refers to the index record and the data record on the database 4. The correspondence check table 7 stores the update status of the information in the database 4 for each storage address of the data record, the reference result of the index record and the data record, the check result, etc., and is stored by the correspondence check program 1 and the database management program 3. Referenced and updated. The device of this embodiment can be realized by an information processing device. The correspondence check program 1, the business program 2, and the database management program 3 are programs stored in the storage device of this information processing device and executed by the information processing device. The database 4 and the correspondence check table 7 are data stored in the storage device (main storage device or external storage device) of this information processing apparatus.

【0012】業務プログラム2からデータベース4につ
いてデータレコードの参照、更新、追加、削除などの要
求があったとき、データベース管理プログラム3はイン
デックス部5及びデ−タ部6を参照して要求された操作
を行う。この操作がデータベース4中の情報を更新する
ものである場合、データベース管理プログラム3は対応
関係チェックテーブル7上の関連するデータレコードの
格納アドレスを初期状態から更新状態に変更し、操作を
終えるときその更新状態を初期状態に戻す。対応関係チ
ェックプログラム1は、対応関係チェックテーブル7上
の各格納アドレスについて、インデックスレコードとデ
ータレコードの状態を参照し、その結果を対応関係チェ
ックテーブル7中の参照結果に反映する。対応関係チェ
ックプログラム1は、インデックスレコードとデータレ
コードの参照結果が格納された格納アドレスについて、
その格納アドレスの更新状態が初期状態であるときイン
デックスキーとデータレコードとの対応関係が正常か否
かをチェックし、その結果を対応関係チェックテーブル
7上のチェック結果の欄に格納する。
When the business program 2 requests the data record of the database 4 such as reference, update, addition, deletion, etc., the database management program 3 refers to the index section 5 and the data section 6 to perform the requested operation. I do. When this operation updates the information in the database 4, the database management program 3 changes the storage address of the related data record on the correspondence check table 7 from the initial state to the updated state, and when the operation is finished, Returns the update state to the initial state. The correspondence check program 1 refers to the state of the index record and the data record for each storage address on the correspondence check table 7, and reflects the result in the reference result in the correspondence check table 7. The correspondence check program 1 uses the storage address where the reference results of the index record and the data record are stored,
When the update state of the storage address is the initial state, it is checked whether the correspondence between the index key and the data record is normal, and the result is stored in the check result column on the correspondence check table 7.

【0013】図2(a)は、インデックス部5のデータ
構成を示す図である。インデックスキー17は、データ
レコードを検索するためのインデックスキーである。レ
コード格納アドレス18は、各インデックスキー17に
対応するデータレコードのデータ部6上の格納アドレス
を示すものであり、アドレスは磁気ディスク装置のシリ
ンダ番号、トラック番号、セクタ番号など物理アドレス
で指定してもよいし、ページ番号、相対バイトアドレス
など論理アドレスで指定してもよい。図2(b)は、デ
ータ部6についてレコード格納アドレス21、使用状態
22及びデータレコード23の対応を示す図である。レ
コード格納アドレス21はレコード格納アドレス18に
対応するデータ部6上のすべてのアドレスである。使用
状態22はデータレコードの領域に実際のデータが格納
されている(使用中)か格納されていない(未使用)か
を示すフラグである。使用状態22は制御情報としてデ
ータレコードに前置してもよいし、データレコードの先
頭文字が削除コード(未使用)か削除コードでない(使
用中)かによって識別されてもよい。あるいはデータレ
コードとは別にレコード格納アドレス21と対応するビ
ツトマツプの形式で設定してもよい。データレコード2
3はセクタ番号、ページ番号等により指定される物理レ
コードでもよいし、相対バイトアドレス等により指定さ
れる論理レコードでもよい。いずれにしてもインデック
スキーを基にしてインデックス部5を検索し、求めたレ
コード格納アドレスを基にしてデータ部6を検索して目
的の物理レコード又は論理レコードを含むデータレコー
ドにアクセスすることができる。
FIG. 2A shows the data structure of the index section 5. The index key 17 is an index key for searching a data record. The record storage address 18 indicates a storage address on the data section 6 of the data record corresponding to each index key 17, and the address is designated by a physical address such as a cylinder number, a track number, or a sector number of the magnetic disk device. It may be specified by a logical address such as a page number or a relative byte address. FIG. 2B is a diagram showing the correspondence between the record storage address 21, the usage state 22 and the data record 23 for the data part 6. The record storage address 21 is all addresses on the data section 6 corresponding to the record storage address 18. The usage state 22 is a flag indicating whether actual data is stored (in use) or not stored (unused) in the data record area. The usage state 22 may be prefixed to the data record as control information, or may be identified by whether the first character of the data record is a deletion code (unused) or not a deletion code (in use). Alternatively, it may be set in the form of a bit map corresponding to the record storage address 21 separately from the data record. Data record 2
3 may be a physical record designated by a sector number, a page number or the like, or a logical record designated by a relative byte address or the like. In any case, the index section 5 can be searched based on the index key, and the data section 6 can be searched based on the obtained record storage address to access the data record including the target physical record or logical record. .

【0014】図3は、対応関係チェックテーブル7のデ
ータ構成を示す図である。レコード格納アドレス10
は、レコード格納アドレス18及びレコード格納アドレ
ス21と同じである。更新状態11は、データベース4
中の情報が更新中か更新中でない(初期)かを示すフラ
グであり、初期状態は「初期」に設定される。インデッ
クス有無12は、レコード格納アドレスに対応するイン
デックスキーが存在する(有り)か存在しない(無し)
かを示すフラグであり、初期状態は「無し」である。イ
ンデツクスキー13はインデックスキーが存在する場合
にインデックスキーの内容を格納する領域である。デー
タ部使用状態14は、レコード格納アドレスに対応する
使用状態22が「使用中」か「未使用」かを示すフラグ
であり、初期状態は「未使用」である。チェック対象1
5は、インデックスキーとデータレコードとの対応関係
が正常か否かのチェックが済んでいない(対象)か済ん
でいる(対象外)かを示すフラグであり、初期状態は
「対象」である。チェック結果16は、レコード格納ア
ドレスに対応するインデックス有無12とデータ部使用
状態14との対応関係チェックの結果を設定するフラグ
である。更新状態11はデータベース管理プログラム3
によって更新され、対応関係チェックプログラム1によ
って参照される。インデックス有無12からチェック結
果16までは対応関係チェックプログラム1によって更
新され、参照される。
FIG. 3 is a diagram showing the data structure of the correspondence check table 7. Record storage address 10
Is the same as the record storage address 18 and the record storage address 21. Update status 11 is database 4
This is a flag indicating whether the information inside is being updated or not being updated (initial), and the initial state is set to “initial”. For the index presence / absence 12, the index key corresponding to the record storage address exists (present) or does not exist (none).
Is a flag indicating whether or not, and the initial state is “none”. The index key 13 is an area for storing the contents of the index key when the index key exists. The data part usage state 14 is a flag indicating whether the usage state 22 corresponding to the record storage address is “in use” or “unused”, and the initial state is “unused”. Check target 1
Reference numeral 5 is a flag indicating whether or not the correspondence between the index key and the data record is normal (target) or completed (non-target), and the initial state is “target”. The check result 16 is a flag that sets the result of the check of the correspondence between the index presence / absence 12 corresponding to the record storage address and the data part usage state 14. Update status 11 is database management program 3
And is referred to by the correspondence check program 1. The index presence / absence 12 to the check result 16 are updated and referred to by the correspondence check program 1.

【0015】図4は、データレコードの追加操作を行う
データベース管理プログラム3の処理の手順を示すフロ
ーチャートである。業務プログラム2からデータベース
4へのデータレコードの追加要求があったとき、データ
ベース管理プログラム3はインデックス部5の空き領域
(エントリ)を求めてサーチする(インデックス部の読
み込み:ステップ41)。次にデータ部6の使用状態2
2が「未使用」に対応するレコード格納アドレスを求め
てサーチする(データ部の読み込み:ステップ42)。
次にこのアドレスに対応する対応関係チェックテーブル
7上の更新状態11を「更新中」に変更する(ステップ
43)。次にインデックス部5上の求めた空き領域にイ
ンデックスキー17と求めたレコード格納アドレス18
の対を格納する(インデックス部の書き込み:ステップ
44)。次に求めたレコード格納アドレスの使用状態を
「使用中」に変更してデータレコードを格納する(デー
タ部の書き込み:ステップ45)。最後にこのアドレス
に対応する対応関係チェックテーブル7上の更新状態1
1を「初期」に変更する(ステップ46)。例えばイン
デックスキーが「003」のデータレコードを追加する
とき、インデックス部5にはインデックスキー「00
3」とアドレス「#4」の対応を示すインデックスレコ
ードが追加され、データ部6のアドレス「#4」に対応
する使用状態22が「使用中」に変更され、対応するデ
ータレコード23が格納される。
FIG. 4 is a flow chart showing a procedure of processing of the database management program 3 for adding a data record. When there is a request from the business program 2 to add a data record to the database 4, the database management program 3 searches for an empty area (entry) in the index section 5 (reading the index section: step 41). Next, the usage state 2 of the data section 6
2 searches for a record storage address corresponding to "unused" (reading of data part: step 42).
Next, the update status 11 on the correspondence check table 7 corresponding to this address is changed to "update in progress" (step 43). Next, in the obtained free area on the index section 5, the index key 17 and the obtained record storage address 18
Is stored (writing of the index part: step 44). Next, the usage state of the obtained record storage address is changed to "in use" and the data record is stored (writing of data part: step 45). Finally, the update status 1 on the correspondence check table 7 corresponding to this address
1 is changed to "initial" (step 46). For example, when adding a data record whose index key is “003”, the index key “00
An index record indicating the correspondence between “3” and the address “# 4” is added, the usage state 22 corresponding to the address “# 4” of the data section 6 is changed to “in use”, and the corresponding data record 23 is stored. It

【0016】業務プログラム2からデータベース4上の
データレコードの削除要求があったとき、データベース
管理プログラム3は指定されたインデックスキーに基づ
いてインデックス部5を検索し、このインデックスキー
に対応するレコード格納アドレスを求め、このアドレス
に対応する対応関係チェックテーブル7上の更新状態1
1を「更新中」に変更する。次にインデックス部5上の
指定されたインデックスキーと対応するレコード格納ア
ドレスを削除し、求めたレコード格納アドレスに対応す
るデータ部6の使用状態22を「未使用」に変更する。
最後にこのアドレスに対応する対応関係チェックテーブ
ル7上の更新状態11を「初期」に変更する。データレ
コードの更新の場合で更新前と更新後でデータレコード
のサイズが変わる場合には、更新前のレコードの削除を
してから更新後のレコードの追加を行うことになり、上
記レコード削除の操作を行ってからレコード追加の操作
を行うことになる。
When a deletion request for a data record on the database 4 is issued from the business program 2, the database management program 3 searches the index section 5 based on the specified index key, and the record storage address corresponding to this index key. And the update status 1 on the correspondence check table 7 corresponding to this address
Change 1 to "Updating". Next, the record storage address corresponding to the designated index key on the index section 5 is deleted, and the usage state 22 of the data section 6 corresponding to the obtained record storage address is changed to "unused".
Finally, the update state 11 on the correspondence check table 7 corresponding to this address is changed to "initial". If the size of the data record changes before and after updating in the case of updating the data record, the record before the update will be deleted and then the record after the update will be added. After that, the record addition operation will be performed.

【0017】図5は、対応関係チェックプログラム1の
処理の概略の手順を示す図である。まずインデックス部
5を参照して対応関係チェックテーブル7上のインデツ
クス有無12及びインデックスキー13を設定する(ス
テップ51)。その詳細は図6に示される。次にデータ
部6を参照して対応関係チェックテーブル7上のデータ
部使用状態14を設定する(ステップ52)。その詳細
は図7に示される。次に設定されたインデツクス有無1
2、インデックスキー13及びデータ部使用状態14に
基づいてインデックスキーとデータレコードとの対応関
係をチェックする(ステップ53)。その詳細は図8
a,図8b及び図8cに示される。最後にチェック結果
を編集して図示しないプリンタ等の出力装置に出力する
(ステップ54)。
FIG. 5 is a diagram showing a schematic procedure of processing of the correspondence check program 1. First, referring to the index section 5, the index presence / absence 12 and the index key 13 on the correspondence check table 7 are set (step 51). Details are shown in FIG. Next, referring to the data part 6, the data part usage state 14 on the correspondence check table 7 is set (step 52). The details are shown in FIG. Whether or not the next index is set 1
2. Based on the index key 13 and the data part usage state 14, the correspondence between the index key and the data record is checked (step 53). The details are shown in Figure 8.
a, FIG. 8b and FIG. 8c. Finally, the check result is edited and output to an output device such as a printer (not shown) (step 54).

【0018】図6は、対応関係チェックテーブル7上の
インデツクス有無12及びインデックスキー13を設定
する対応関係チェックプログラム1の処理の流れを示す
フローチャートである。インデックス部5のインデック
スレコードをその配置順に読み込み、インデックスキー
に対応するレコード格納アドレスを求める(ステップ6
1)。次にこのレコード格納アドレスに対応する対応関
係チェックテーブル7上のインデツクス有無12を「有
り」に設定する(ステップ62)。次に読み込んだイン
デックスキーをレコード格納アドレスに対応するインデ
ックスキー13に格納する(ステップ63)。インデツ
クス部5の終端に達していなければ(ステップ64N
O)、ステップ61に戻って上記処理を繰り返す。イン
デツクス部5の終端に達していれば(ステップ64YE
S)、処理を終了する。処理を終了したとき、対応関係
チェックテーブル7上のレコード格納アドレスに対応す
るインデックスキーが存在すればインデツクス有無12
が「有り」に設定され、インデックスキーが存在しなけ
ればそのレコード格納アドレスに対応するインデツクス
有無12は初期値の「無し」のままである。図6に示す
処理は、データベース4中のインデツクス部5のみを参
照する処理であり、たとえデータベース管理プログラム
3がインデックスレコードを更新していたとしてもデー
タレコードとの一時的な不整合は対応関係チェックプロ
グラム1に影響しない。
FIG. 6 is a flow chart showing the flow of processing of the correspondence check program 1 for setting the index presence / absence 12 and the index key 13 on the correspondence check table 7. The index records of the index section 5 are read in the arrangement order, and the record storage address corresponding to the index key is obtained (step 6
1). Next, the index presence / absence 12 on the correspondence check table 7 corresponding to this record storage address is set to "present" (step 62). Next, the read index key is stored in the index key 13 corresponding to the record storage address (step 63). If the end of the index section 5 has not been reached (step 64N
O), and returns to step 61 to repeat the above process. If the end of the index unit 5 is reached (step 64YE
S), the process ends. At the end of the process, if there is an index key corresponding to the record storage address on the correspondence check table 7, whether or not there is an index 12
Is set to “present”, and if the index key does not exist, the index presence / absence 12 corresponding to the record storage address remains the initial value “absent”. The process shown in FIG. 6 refers to only the index section 5 in the database 4, and even if the database management program 3 updates the index record, the temporary mismatch with the data record is checked for the correspondence relationship. Does not affect Program 1.

【0019】図7は、対応関係チェックテーブル7上の
データ部使用状態14を設定する対応関係チェックプロ
グラム1の処理の流れを示すフローチャートである。対
応関係チェックテーブル7に登録されたレコード格納ア
ドレス10を順に参照し、各レコード格納アドレスにつ
いてデータ部6の使用状態22を読み出す(ステップ7
1)。次にこの結果に従ってそのレコード格納アドレス
について対応関係チェックテーブル7上のデータ部使用
状態14を「使用中」又は「未使用」に設定する(ステ
ップ72)。データ部6の終端、すなわち対応関係チェ
ックテーブル7の終端に達していなければ(ステップ7
3NO)、ステップ71に戻って上記処理を繰り返す。
データ部6の終端に達していれば(ステップ73YE
S)、処理を終了する。図7に示す処理はデータベース
4中のデータ部6のみを参照する処理であり、たとえデ
ータベース管理プログラム3がデータレコードを更新し
ていたとしてもインデックスレコードとの一時的な不整
合は対応関係チェックプログラム1に影響しない。
FIG. 7 is a flow chart showing the flow of processing of the correspondence check program 1 for setting the data part usage state 14 on the correspondence check table 7. The record storage addresses 10 registered in the correspondence check table 7 are sequentially referred to, and the usage state 22 of the data section 6 is read for each record storage address (step 7).
1). Next, according to this result, the data part usage state 14 on the correspondence check table 7 is set to "in use" or "unused" for the record storage address (step 72). If the end of the data part 6, that is, the end of the correspondence check table 7 has not been reached (step 7)
3NO), and returns to step 71 to repeat the above processing.
If the end of the data section 6 has been reached (step 73YE
S), the process ends. The process shown in FIG. 7 is a process for referencing only the data part 6 in the database 4, and even if the database management program 3 updates the data record, the temporary mismatch with the index record causes the correspondence check program. Does not affect 1.

【0020】図8aは、インデックスキーとデータレコ
ードとの対応関係をチェックする対応関係チェックプロ
グラム1の処理の流れを示すフローチャートである。対
応関係チェックテーブル7上の各レコード格納アドレス
10について、チェック対象15が「対象」であれば
(ステップ81YES)、インデツクス有無12が「有
り」であって(ステップ82有り)、データ部使用状態
14が「使用中」であれば(ステップ83使用中)、チ
ェック結果16を「正常」に設定する(ステップ8
4)。またインデツクス有無12が「無し」であって
(ステップ82無し)、データ部使用状態14が「未使
用」であれば(ステップ85未使用)、チェック結果1
6を「正常」に設定する(ステップ86)。またインデ
ツクス有無12が「有り」であって(ステップ82有
り)、データ部使用状態14が「未使用」であれば(ス
テップ83未使用)、図8bに示す処理を行う(ステッ
プ87)。またインデツクス有無12が「無し」であっ
て(ステップ82無し)、データ部使用状態14が「使
用中」であれば(ステップ85使用中)、図8cに示す
処理を行う(ステップ88)。チェック結果16に値を
設定した後、チェック対象15を「対象外」に設定し
(ステップ89)、対応関係チェックテーブル7の終端
に達していなければ(ステップ90NO)、ステップ8
1に戻り次のレコード格納アドレスについて上記処理を
繰り返す。チェック対象15が「対象外」であれば(ス
テップ81NO)、そのレコード格納アドレスについて
はすでにステップ82からステップ89に至る処理が済
んだのであるから、この処理をスキップしてステップ9
0へ行く。対応関係チェックテーブル7の終端に達して
いて(ステップ90YES)、あらかじめ規定した回数
だけ対応関係チェックテーブル7をスキャンしていなけ
れば(ステツプ91NO)、ステップ81に戻り対応関
係チェックテーブル7の最初のレコード格納アドレスか
ら上記処理を繰り返す。規定した回数だけ対応関係チェ
ックテーブル7をスキャンしたら(ステップ91YE
S)、処理を終了する。すなわち所定回数繰り返しても
まだ「更新中」の状態のレコード格納アドレスが残るの
であれば、例外的なケースとし処理を打ち切る。
FIG. 8a is a flow chart showing the processing flow of the correspondence check program 1 for checking the correspondence between the index key and the data record. For each record storage address 10 on the correspondence check table 7, if the check target 15 is “target” (step 81 YES), the index presence / absence 12 is “present” (step 82 present), and the data part usage state 14 Is "in use" (step 83 in use), the check result 16 is set to "normal" (step 8).
4). If the index presence / absence 12 is "none" (no step 82) and the data part usage state 14 is "unused" (step 85 unused), check result 1
6 is set to "normal" (step 86). If the index presence / absence 12 is “present” (step 82 present) and the data part usage state 14 is “unused” (step 83 unused), the process shown in FIG. 8b is performed (step 87). If the index presence / absence 12 is "none" (no step 82) and the data part usage state 14 is "in use" (step 85 in use), the process shown in FIG. 8c is performed (step 88). After setting a value to the check result 16, the check target 15 is set to "not applicable" (step 89), and if the end of the correspondence check table 7 has not been reached (step 90 NO), step 8
Returning to 1, the above processing is repeated for the next record storage address. If the check target 15 is "non-target" (NO in step 81), the process from step 82 to step 89 has already been completed for the record storage address, so this process is skipped and step 9 is executed.
Go to 0. If the end of the correspondence check table 7 has been reached (YES in step 90) and the correspondence check table 7 has not been scanned a predetermined number of times (step 91 NO), the process returns to step 81 and the first record of the correspondence check table 7 is returned. The above processing is repeated from the storage address. After scanning the correspondence check table 7 a prescribed number of times (step 91YE
S), the process ends. That is, if the record storage address in the "updating" state still remains after repeating a predetermined number of times, the processing is aborted as an exceptional case.

【0021】図8bは、ステップ87の処理を展開して
示すフローチャートである。まずインデツクスキー13
を使ってインデックス部5を検索する(ステップ9
3)。インデックスが存在しなければ(ステップ94N
O)、チェック結果16を「正常」に設定し(ステップ
95)、ステップ89へ行く。インデックスが存在し
(ステップ94YES)、インデツクスキー13に対応
するレコード格納アドレスが現在チェック中のレコード
格納アドレスに一致すれば(ステップ96YES)、チ
ェック結果16を「異常」に設定し(ステップ97)、
ステップ89へ行く。インデックスが存在し(ステップ
94YES)、インデツクスキー13に対応するレコー
ド格納アドレスに一致しなければ(ステップ96N
O)、チェック結果16を「正常」に設定し(ステップ
98)、ステップ89へ行く。
FIG. 8b is a flow chart showing an expanded process of step 87. Index key 13
To search the index section 5 (step 9
3). If the index does not exist (step 94N
O), the check result 16 is set to "normal" (step 95), and the process goes to step 89. If the index exists (YES in step 94) and the record storage address corresponding to the index key 13 matches the record storage address currently being checked (YES in step 96), the check result 16 is set to "abnormal" (step 97). ,
Go to step 89. If the index exists (YES in step 94) and does not match the record storage address corresponding to the index key 13 (step 96N).
O), the check result 16 is set to "normal" (step 98), and the process goes to step 89.

【0022】図8cは、ステップ88の処理を展開して
示すフローチャートである。更新状態11が「更新中」
であれば(ステップ101YES)、現在のレコード格
納アドレスについてのチェックを保留してステップ90
へ行く。更新状態11が「初期」であれば(ステップ1
01NO)、現在のレコード格納アドレスを基にしてデ
ータ部6からデータレコードを読み出し、そのインデッ
クスキーを抽出し(ステップ102)、抽出したインデ
ックスキーを基にしてインデックス部5を検索する(ス
テップ103)。インデックスが存在しなければ(ステ
ップ104NO)、チェック結果16を「異常」に設定
し(ステップ105)、ステップ89へ行く。インデッ
クスが存在し(ステップ104YES)、インデツクス
キーに対応するレコード格納アドレスが現在チェック中
のレコード格納アドレスに一致すれば(ステップ106
YES)、チェック結果16を「正常」に設定し(ステ
ップ107)、ステップ89へ行く。インデックスが存
在し(ステップ104YES)、インデツクスキーに対
応するレコード格納アドレスが現在チェック中のレコー
ド格納アドレスに一致しなければ(ステップ106N
O)、チェック結果16を「異常」に設定し(ステップ
108)、ステップ89へ行く。
FIG. 8c is an expanded flow chart showing the process of step 88. Update status 11 is "Updating"
If so (step 101 YES), the check for the current record storage address is suspended and step 90
Go to If the update state 11 is "initial" (step 1
01NO), the data record is read from the data section 6 based on the current record storage address, the index key is extracted (step 102), and the index section 5 is searched based on the extracted index key (step 103). . If the index does not exist (NO in step 104), the check result 16 is set to "abnormal" (step 105), and the process proceeds to step 89. If the index exists (step 104 YES) and the record storage address corresponding to the index key matches the record storage address currently being checked (step 106).
YES), the check result 16 is set to "normal" (step 107), and the process goes to step 89. If the index exists (step 104 YES) and the record storage address corresponding to the index key does not match the record storage address currently being checked (step 106N).
O), the check result 16 is set to "abnormal" (step 108), and the process goes to step 89.

【0023】ステップ84及びステップ86の処理は、
特定のレコード格納アドレスについてインデックス有無
の設定の処理(ステップ51,図6)とデータ部使用状
態の設定の処理(ステップ52,図7)との間に当該デ
ータレコードについて追加や削除が発生しなかったケー
スであり、データレコードの追加・削除が少ないアプリ
ケーションでは多くはこのケースとなる。ステップ95
の処理は、特定のレコード格納アドレスについてステッ
プ51とステップ52との間で当該データレコードの削
除があったケースであり、データ部使用状態が「未使
用」であり、対応するインデックスキーが削除されてい
るからチェック結果は「正常」である。ステップ98の
処理は、特定のレコード格納アドレスについてステップ
51とステップ52との間で当該データレコードの削除
があった後当該データレコードの追加があり、しかもレ
コード格納アドレスが移動しているケースであり、一旦
削除されたインデックスキーは再び追加されてインデッ
クス部5に残っているが、対応するレコード格納アドレ
スが変更されているのでインデツクスキー13に対応す
るレコード格納アドレスが現在チェック中のレコード格
納アドレスに一致しないケースであり、「正常」とし
た。ただし非常に例外的なケースであって、当該データ
レコードの削除があった後当該データレコードの追加が
あり、しかもレコード格納アドレスが移動しないケース
(ステップ96YES)の可能性もあるならば、ステッ
プ98の結果をステップ97と同様に「異常」に設定
し、後は運用的に処置する方法をとってよい。ステップ
107の処理は、特定のレコード格納アドレスについて
ステップ51とステップ52との間で新しいデータレコ
ードの追加があったケースであり、データ部使用状態が
「使用中」であり、データレコードの追加によりインデ
ックス有無「有り」が証明されたのであるから、チェッ
ク結果は「正常」である。それ以外のケースのチェック
結果はすべて「異常」となる。なおステップ102でデ
ータ部からインデックスキーを抽出できなければ、一旦
追加されたデータレコードがさらに削除された可能性が
あり、チェック結果を「異常」としてよい。
The processing of steps 84 and 86 is as follows.
No addition or deletion of the data record occurs between the process of setting the presence / absence of an index for a specific record storage address (step 51, FIG. 6) and the process of setting the data section usage state (step 52, FIG. 7). This is the case in most applications that do not add or delete data records. Step 95
Processing is a case where the data record is deleted between step 51 and step 52 for a specific record storage address, the data part usage state is “unused”, and the corresponding index key is deleted. Therefore, the check result is “normal”. The process of step 98 is a case in which the data record is deleted after the data record is deleted between step 51 and step 52 for the specific record storage address, and the record storage address is moved. , The once deleted index key is added again and remains in the index section 5, but the corresponding record storage address is changed, so the record storage address corresponding to the index key 13 is currently being checked. It was a case that did not match with, and was set as “normal”. However, in a very exceptional case, if there is a possibility that the data record is added after the data record is deleted and the record storage address does not move (YES in step 96), step 98 The result may be set to "abnormal" in the same manner as in step 97, and then the operation may be performed operatively. The process of step 107 is a case where a new data record is added between step 51 and step 52 for a specific record storage address, the data part usage state is “in use”, and the addition of the data record causes Since the presence / absence of the index has been proved, the check result is “normal”. In all other cases, the check results are "abnormal". If the index key cannot be extracted from the data section in step 102, the data record once added may have been further deleted, and the check result may be “abnormal”.

【0024】本実施例によれば、インデックス有無12
を設定するためにインデックス部5を1回だけシーケン
シャルに参照し、データ部使用状態14を設定するため
にデータ部6を1回だけシーケンシャルに参照し、多く
のケースは対応関係チェックテーブル7上のインデック
ス有無12とデータ部使用状態14を参照するだけでチ
ェック結果「正常」の結果を出せるので、対応関係チェ
ックプログラム1の処理を非常に高速に行うことができ
る。しかも例外的なケースについては、対応関係チェッ
ク(ステップ53)の段階で再度インデックス部5及び
データ部6をアクセスしているが、このときデータベー
ス管理プログラム3がデータベース4の情報を更新して
いる期間を避け、この期間のインデツクス部5とデータ
部6との間の一時的な不整合を回避している。
According to this embodiment, the presence / absence of the index 12
To refer to the index part 5 only once in a sequential manner, and to set the data part usage state 14 to refer to the data part 6 only once in a sequential manner. In many cases, the correspondence check table 7 Since the check result "normal" can be obtained only by referring to the index presence / absence 12 and the data part usage state 14, the processing of the correspondence check program 1 can be performed very quickly. Moreover, in exceptional cases, the index section 5 and the data section 6 are accessed again at the stage of the correspondence check (step 53), but at this time, the database management program 3 is updating the information in the database 4. To avoid a temporary mismatch between the index section 5 and the data section 6 during this period.

【0025】[0025]

【発明の効果】本発明によれば、デ−タベースを更新す
る業務プログラムを停止させることなく対応関係チェッ
クプログラムを走行させることができるため、サービス
性を向上させることができる。
According to the present invention, since the correspondence check program can be run without stopping the business program for updating the database, the serviceability can be improved.

【図面の簡単な説明】[Brief description of drawings]

【図1】本発明の一実施例の情報処理装置の構成図であ
る。
FIG. 1 is a configuration diagram of an information processing apparatus according to an embodiment of the present invention.

【図2】インデックス部及びデータ部の構成例を示す図
である。
FIG. 2 is a diagram showing a configuration example of an index section and a data section.

【図3】対応関係チェックテーブル7のデータ構成例を
示す図である。
FIG. 3 is a diagram showing a data configuration example of a correspondence check table 7.

【図4】データレコードの追加を行うデ−タベ−ス管理
プログラムの処理手順を示す図である。
FIG. 4 is a diagram showing a processing procedure of a database management program for adding a data record.

【図5】実施例の対応関係チェックプログラムの処理の
手順を示す図である。
FIG. 5 is a diagram showing a processing procedure of a correspondence check program of the embodiment.

【図6】実施例のインデックス有無を設定する処理の流
れを示す図である。
FIG. 6 is a diagram showing a flow of processing for setting presence / absence of an index according to the embodiment.

【図7】実施例のデ−タ部使用状態を設定する処理の流
れを示す図である。
FIG. 7 is a diagram showing a flow of processing for setting a data unit use state of the embodiment.

【図8a】実施例の対応関係チェックの処理の流れを示
す図である。
FIG. 8A is a diagram showing a flow of processing of a correspondence check according to the embodiment.

【図8b】図8aのステップ87を展開して示す図であ
る。
FIG. 8b is an expanded view of step 87 of FIG. 8a.

【図8c】図8aのステップ88を展開して示す図であ
る。
FIG. 8c is an expanded view of step 88 of FIG. 8a.

【符号の説明】[Explanation of symbols]

1・・・対応関係チェックプログラム、2・・・業務プ
ログラム、3…データベース管理プログラム、4・・・
データベース、7・・・対応関係チェツクテーブル、1
0・・・レコード格納アドレス、11・・・更新状態、
12・・・インデックス有無、13・・・インデックス
キー、14・・・データ部使用状態、15・・・チェッ
ク対象、16・・・チェック結果、17・・・インデッ
クスキ−、18・・・レコード格納先アドレス、22・
・・使用状態、23・・・デ−タレコード
1 ... Correspondence check program, 2 ... Business program, 3 ... Database management program, 4 ...
Database, 7 ... Correspondence check table, 1
0 ... record storage address, 11 ... update status,
12 ... Presence / absence of index, 13 ... Index key, 14 ... Data section usage state, 15 ... Check target, 16 ... Check result, 17 ... Index key, 18 ... Record Storage address, 22
..Used state, 23 ... Data record

フロントページの続き (72)発明者 中村 仁之輔 東京都千代田区内幸町一丁目1番6号 日 本電信電話株式会社内Front Page Continuation (72) Inventor Ninosuke Nakamura 1-6, 1-chome, Uchisaiwai-cho, Chiyoda-ku, Tokyo Nihon Telegraph and Telephone Corporation

Claims (1)

【特許請求の範囲】[Claims] 【請求項1】インデックス部とデータ部とで構成され、
該インデックス部はインデックスキーとデータレコード
の格納アドレスとの対応を格納し、該データ部は該デー
タレコードを格納するデータベースと、 該インデックス部及び該データ部の情報を更新するとき
該格納アドレス対応に更新中の表示をするデータベース
管理のための処理手段と、 該更新中の表示がされているときを除いて該データベー
スを参照し、該格納アドレス対応に対応するインデック
スキーとデータレコードが存在するか否かをチェックす
る処理手段とを有することを特徴とするデータベースの
チェックを行う情報処理装置。
1. An index section and a data section,
The index part stores the correspondence between the index key and the storage address of the data record, the data part stores the database storing the data record, and the storage part corresponds to the storage address when updating the information of the index part and the data part. Processing means for database management that displays a display during updating and whether the index key and data record corresponding to the storage address exist by referring to the database except when the display during updating is displayed An information processing apparatus for checking a database, comprising: a processing unit for checking whether or not it is present.
JP15123695A 1995-06-19 1995-06-19 Information processing device for database check Expired - Fee Related JP3636773B2 (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
JP15123695A JP3636773B2 (en) 1995-06-19 1995-06-19 Information processing device for database check

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
JP15123695A JP3636773B2 (en) 1995-06-19 1995-06-19 Information processing device for database check

Publications (2)

Publication Number Publication Date
JPH096653A true JPH096653A (en) 1997-01-10
JP3636773B2 JP3636773B2 (en) 2005-04-06

Family

ID=15514232

Family Applications (1)

Application Number Title Priority Date Filing Date
JP15123695A Expired - Fee Related JP3636773B2 (en) 1995-06-19 1995-06-19 Information processing device for database check

Country Status (1)

Country Link
JP (1) JP3636773B2 (en)

Cited By (6)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
JPH11282733A (en) * 1998-03-31 1999-10-15 Nec Software Chugoku Ltd Database access device
US7647334B2 (en) 2006-12-28 2010-01-12 International Business Machines Corporation Method for checking index consistency in database
US8108365B2 (en) 2004-11-12 2012-01-31 International Business Machines Corporation Consistency of a database management system
US8812513B2 (en) 2009-12-25 2014-08-19 International Business Machines Corporation Hash pointer checking for hierarchical database logical relationship
US9436554B2 (en) 2013-08-30 2016-09-06 Fujitsu Limited Information processing apparatus and data repairing method
CN110489971A (en) * 2018-05-15 2019-11-22 微软技术许可有限责任公司 The data set management of safety

Cited By (7)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
JPH11282733A (en) * 1998-03-31 1999-10-15 Nec Software Chugoku Ltd Database access device
US8108365B2 (en) 2004-11-12 2012-01-31 International Business Machines Corporation Consistency of a database management system
US7647334B2 (en) 2006-12-28 2010-01-12 International Business Machines Corporation Method for checking index consistency in database
US7650354B2 (en) 2006-12-28 2010-01-19 International Business Machines Corporation System, method, and program for checking index consistency in database
US8812513B2 (en) 2009-12-25 2014-08-19 International Business Machines Corporation Hash pointer checking for hierarchical database logical relationship
US9436554B2 (en) 2013-08-30 2016-09-06 Fujitsu Limited Information processing apparatus and data repairing method
CN110489971A (en) * 2018-05-15 2019-11-22 微软技术许可有限责任公司 The data set management of safety

Also Published As

Publication number Publication date
JP3636773B2 (en) 2005-04-06

Similar Documents

Publication Publication Date Title
US6243718B1 (en) Building indexes on columns containing large objects
US6738790B1 (en) Approach for accessing large objects
US5999943A (en) Lob locators
EP0994425B1 (en) System and method for generating file updates for files stored on read-only media
JP4866495B2 (en) Method and apparatus for executing combined queries in a database system
US6804680B2 (en) Extensible database
JP4101410B2 (en) Time version data storage device
JPH096653A (en) Data base checking information processor
JPH11120051A (en) Computer system for correcting information in database and its correcting
JP3484440B2 (en) Distributed database update method
JP2643811B2 (en) Database reorganization method
JP3245047B2 (en) Version control apparatus and method
JP2828354B2 (en) Database management device
JP2002342137A (en) Device and method for managing document and recording medium
JP2616686B2 (en) Database reorganization during business process
JP3298935B2 (en) File management device
JP2000099533A (en) File access method/system
JP2862431B2 (en) Information processing system
JP3497053B2 (en) Processing method in online database management system and online database management system
JPH05265821A (en) Index managing system for data base
JP2912657B2 (en) File access processor
JPH09305449A (en) Data base managing system
JP2785966B2 (en) Foreign key dynamic resolution processing method
JP2003150423A (en) Document management method, document management device, and program
JP3398672B2 (en) Intermediate data storage device

Legal Events

Date Code Title Description
A131 Notification of reasons for refusal

Free format text: JAPANESE INTERMEDIATE CODE: A131

Effective date: 20040302

A521 Written amendment

Free format text: JAPANESE INTERMEDIATE CODE: A523

Effective date: 20040428

TRDD Decision of grant or rejection written
A01 Written decision to grant a patent or to grant a registration (utility model)

Free format text: JAPANESE INTERMEDIATE CODE: A01

Effective date: 20041228

A61 First payment of annual fees (during grant procedure)

Free format text: JAPANESE INTERMEDIATE CODE: A61

Effective date: 20050106

R150 Certificate of patent or registration of utility model

Free format text: JAPANESE INTERMEDIATE CODE: R150

FPAY Renewal fee payment (event date is renewal date of database)

Free format text: PAYMENT UNTIL: 20080114

Year of fee payment: 3

FPAY Renewal fee payment (event date is renewal date of database)

Free format text: PAYMENT UNTIL: 20090114

Year of fee payment: 4

FPAY Renewal fee payment (event date is renewal date of database)

Free format text: PAYMENT UNTIL: 20090114

Year of fee payment: 4

FPAY Renewal fee payment (event date is renewal date of database)

Free format text: PAYMENT UNTIL: 20100114

Year of fee payment: 5

FPAY Renewal fee payment (event date is renewal date of database)

Free format text: PAYMENT UNTIL: 20110114

Year of fee payment: 6

FPAY Renewal fee payment (event date is renewal date of database)

Free format text: PAYMENT UNTIL: 20110114

Year of fee payment: 6

FPAY Renewal fee payment (event date is renewal date of database)

Free format text: PAYMENT UNTIL: 20120114

Year of fee payment: 7

LAPS Cancellation because of no payment of annual fees