JPH1091501A - Dynamic change system for hash table - Google Patents

Dynamic change system for hash table

Info

Publication number
JPH1091501A
JPH1091501A JP8244665A JP24466596A JPH1091501A JP H1091501 A JPH1091501 A JP H1091501A JP 8244665 A JP8244665 A JP 8244665A JP 24466596 A JP24466596 A JP 24466596A JP H1091501 A JPH1091501 A JP H1091501A
Authority
JP
Japan
Prior art keywords
hash table
record
file
new
old
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
JP8244665A
Other languages
Japanese (ja)
Other versions
JP3005476B2 (en
Inventor
Shigeru Yoshimura
茂 吉村
Shigeru Furusawa
茂 古沢
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.)
NEC Corp
NEC Solution Innovators Ltd
Original Assignee
NEC Corp
NEC Solution Innovators Ltd
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 NEC Corp, NEC Solution Innovators Ltd filed Critical NEC Corp
Priority to JP8244665A priority Critical patent/JP3005476B2/en
Publication of JPH1091501A publication Critical patent/JPH1091501A/en
Application granted granted Critical
Publication of JP3005476B2 publication Critical patent/JP3005476B2/en
Anticipated expiration legal-status Critical
Expired - Fee Related legal-status Critical Current

Links

Landscapes

  • Information Retrieval, Db Structures And Fs Structures Therefor (AREA)

Abstract

PROBLEM TO BE SOLVED: To eliminate the temporary inhibition processing of file access and to update a file size by retrieving an old hash table and registering data through the use of the new hash table after a change at the time of registering data when a target record cannot be detected. SOLUTION: At the time of registering the record, a registering processing is executed only by the new hash table. When only one hash table exists in the generation of files 101-103 at that time, the existing hash table is considered to be the new hash table 2, the record is registered by the new hash table 2. In the retrieval of the record, the record is retrieved from the new hash table 2 by searching. When the target record is not detected, the existence of the old hash table 1 is checked and the old hash table 1 is searched. Thus, the record is retrieved. When the record cannot is detected, the record is set to be not detected.

Description

【発明の詳細な説明】DETAILED DESCRIPTION OF THE INVENTION

【0001】[0001]

【発明の属する技術分野】本発明は、情報処理装置にお
けるファイルアクセスに関し、特に、ハッシュテーブル
を利用した直接アクセスでのハッシュテーブルの動的変
更システムに関する。
BACKGROUND OF THE INVENTION 1. Field of the Invention The present invention relates to file access in an information processing apparatus, and more particularly, to a system for dynamically changing a hash table by direct access using the hash table.

【0002】[0002]

【従来の技術】従来、ハッシュテーブルを利用したファ
イルアクセス時のファイル拡張方式では、該当のファイ
ルへのアクセスを一時期完全に禁止し、ファイルの追加
削除を行い、ハッシュテーブルを新しいファイル構成に
変換した後、ファイルへのアクセスを再開していた。
2. Description of the Related Art Conventionally, in a file expansion method at the time of file access using a hash table, access to a corresponding file is completely prohibited for a time, files are added or deleted, and the hash table is converted to a new file configuration. Later, access to the file was resumed.

【0003】また、別の方式として、特開昭59−94
142号公報に開示されているように、物理的なファイ
ル中に論理的なファイルを複数個存在させ、それぞれの
論理ファイルに対する、インデックス(ハッシュテーブ
ルに対応する情報を持つ)の共通部分を一括して更新す
る方式が示されているが、この方式でも物理ファイルの
追加削除などによる変更には対応できず、変更後のファ
イルサイズに対応する新規のインデックスを作成せざる
を得ない。
As another method, Japanese Patent Application Laid-Open No. SHO 59-94 discloses
As disclosed in Japanese Unexamined Patent Publication No. 142-142, a plurality of logical files exist in a physical file, and a common part of an index (having information corresponding to a hash table) for each logical file is collectively collected. However, even this method cannot cope with a change due to addition or deletion of a physical file, and has to create a new index corresponding to the changed file size.

【0004】[0004]

【発明が解決しようとする課題】上述した従来の方式に
おいては、ハッシュテーブルによってレコードを一意に
管理するファイルでは、ファイルの増加や縮小などによ
るファイルサイズの変更がある場合は、対応するハッシ
ュテーブルを新たに作成する必要があり、この場合、一
度該当のファイルへのアクセスを禁止し、ファイル内の
再構成を行う必要があった。その理由は、ファイル内の
レコードの検索は、ハッシュテーブルを用いて行われる
が、ハッシュテーブルの変更により、ファイルサイズ更
新前のハッシュテーブルで登録されたレコードの検索は
不可能となるからである。
In the above-mentioned conventional method, in a file in which records are uniquely managed by a hash table, if there is a change in the file size due to an increase or decrease in the file, the corresponding hash table is changed. In this case, it is necessary to newly create the file, and in this case, it is necessary to once prohibit access to the file and reconstruct the file. The reason is that the retrieval of the record in the file is performed using the hash table, but the change of the hash table makes it impossible to retrieve the record registered in the hash table before the update of the file size.

【0005】そのため、ファイルサイズ更新前のハッシ
ュテーブルで登録されたレコードをファイルサイズ更新
後のハッシュテーブルで再登録する必要があり、その
間、該当するファイルへのアクセスを禁止しなければな
らなかった。
Therefore, it is necessary to re-register a record registered in the hash table before updating the file size with the hash table after updating the file size, and during that time, it is necessary to prohibit access to the corresponding file.

【0006】従って、本発明の目的は、ファイルサイズ
変更時に、データ再登録のための、ファイルアクセスの
一時的な禁止処理をなくし、例えば該当のファイルに対
してオープン中だったアプリケーションプログラムなど
を終了させることなく、ファイルサイズの更新を可能と
するハッシュテーブルの動的変更システムを提供するこ
とにある。
Accordingly, an object of the present invention is to eliminate the temporary prohibition of file access for data re-registration at the time of changing the file size, for example, to terminate an application program that was open to the corresponding file. It is an object of the present invention to provide a hash table dynamic change system that allows a file size to be updated without causing the file size to be updated.

【0007】[0007]

【課題を解決するための手段】本発明は、情報処理シス
テムにおける、ファイル内の目的のレコードをハッシュ
テーブルを用いて格納および参照する、ファイルアクセ
ス制御によるハッシュテーブル動的変更システムにおい
て、ハッシュテーブルが管理するファイルの大きさを動
的に変更する際に、ファイルサイズの変更に同期して新
ハッシュテーブルを旧ハッシュテーブルに変更し、変更
前後のハッシュテーブルを新ハッシュテーブルとして作
成保持する手段と、データの参照の際に、変更の後の新
ハッシュテーブルを検索し、目的のレコードが見つから
ない場合、旧ハッシュテーブルを検索する手段と、デー
タの登録の際に、変更後の新ハッシュテーブルを利用し
てデータ登録を行うことにより、ファイルサイズの動的
な変更に対して、対応するハッシュテーブルを動的に変
更する手段とを有し、ファイルサイズを変更してデータ
を再登録する際、ファイルアクセスの一時的な禁止処理
をなくし、ファイルに対してオープン中だったアプリケ
ーションプログラムなどを終了させることなく、ファイ
ルサイズの更新を可能とすることを特徴とするハッシュ
テーブルの動的変更システムである。
SUMMARY OF THE INVENTION The present invention relates to a hash table dynamic change system by file access control for storing and referencing a target record in a file using a hash table in an information processing system. Means for dynamically changing the size of the file to be managed, changing the new hash table to the old hash table in synchronization with the change in the file size, and creating and holding the hash table before and after the change as a new hash table; When referencing data, search the new hash table after the change, and if the target record is not found, use the means to search the old hash table and use the new hash table after the change when registering data By registering the data, the dynamic change of the file size, Means for dynamically changing the corresponding hash table, eliminating the temporary prohibition of file access when changing the file size and re-registering data, and opening the application program for the file. A hash table dynamic change system characterized in that the file size can be updated without terminating the process.

【0008】また、レコードの新規の登録は、新ハッシ
ュテーブルによって行われると良い。
[0008] The new registration of a record is preferably performed by a new hash table.

【0009】さらに、旧ハッシュテーブルを検索手段に
より検索した結果、目的のレコードが見つからない場
合、レコード不検出とすると良い。
Further, if the target record is not found as a result of searching the old hash table by the search means, it is preferable to make a record non-detection.

【0010】またさらに、レコード不検出を契機にし
て、旧ハッシュテーブルから登録されているレコードの
数を検査し、レコードが1つも存在しなければ、旧ハッ
シュテーブルを削除し、ファイル作成直後の状態に復帰
可能とすると良い。
Further, the number of records registered from the old hash table is checked upon the detection of no record, and if there is no record, the old hash table is deleted and the state immediately after the file is created. It is good to be able to return to.

【0011】一般に、ファイルサイズの変更により、ハ
ッシュテーブルの構成も変化するため、ファイルサイズ
の変更に同期して、新しいハッシュテーブルの作成が必
要となるが、本発明においては、新ファイルサイズに対
するハッシュテーブル作成により、新旧2つのハッシュ
テーブルを存在させる。
In general, a change in the file size changes the configuration of the hash table. Therefore, it is necessary to create a new hash table in synchronization with the change in the file size. By creating the table, two new and old hash tables exist.

【0012】この場合、ファイルサイズ更新前に作成さ
れたレコードに関しては、旧のハッシュテーブルから検
索する必要があるため、旧ハッシュテーブルによる目的
レコードの検索により検索し、目的のレコードをサーチ
する。
In this case, since the record created before the file size update needs to be searched from the old hash table, the search is performed by searching the target record using the old hash table, and the target record is searched.

【0013】また、ファイルサイズが更新され、新ハッ
シュテーブルにより登録されたレコードは新ハッシュテ
ーブルを検索することにより、サーチ可能である。
The record whose file size is updated and which is registered by the new hash table can be searched by searching the new hash table.

【0014】[0014]

【発明の実施の形態】本発明の実施例について、図面を
参照して詳細に説明する。
DESCRIPTION OF THE PREFERRED EMBODIMENTS Embodiments of the present invention will be described in detail with reference to the drawings.

【0015】図1は、本発明の実施例におけるファイル
サイズとハッシュテーブルとの関連を示すブロック図で
ある。これによると、本発明のハッシュテーブルの動的
変更システムは、ファイルサイズの変更前に登録された
レコードを管理するための旧ハッシュテーブル1と、旧
ハッシュテーブル1内に格納されているハッシュエント
リ11,12およびファイルサイズ変更後に登録された
レコードを管理するための新ハッシュテーブル2と、新
ハッシュテーブル2に格納されているハッシュエントリ
21,22,23により構成される。
FIG. 1 is a block diagram showing the relationship between the file size and the hash table in the embodiment of the present invention. According to this, the hash table dynamic change system of the present invention includes the old hash table 1 for managing the records registered before the file size is changed, and the hash entry 11 stored in the old hash table 1. , 12 and a new hash table 2 for managing records registered after the file size is changed, and hash entries 21, 22, 23 stored in the new hash table 2.

【0016】次に、本発明の実施例における動作につい
て説明すると、ファイルサイズ変更前のサイズに対応す
る旧ハッシュテーブル1を持ち、旧ハッシュテーブル1
中には、ファイル101に対応するハッシュエントリ1
1と、ファイル102に対応するハッシュエントリ12
とが格納されている。ファイルサイズ変更前に登録され
たレコードのうち、ファイル101に格納されたレコー
ドは、ハッシュエントリ11を経由して検索され、ファ
イル102に格納されたレコードは、ハッシュエントリ
12を経由して検索される。
Next, the operation of the embodiment of the present invention will be described. The old hash table 1 corresponding to the file size before the file size change is provided.
Among them, hash entry 1 corresponding to file 101
1 and hash entry 12 corresponding to file 102
And are stored. Of the records registered before the file size change, the record stored in the file 101 is searched via the hash entry 11, and the record stored in the file 102 is searched via the hash entry 12. .

【0017】同様に、ファイル変更後に、登録されたレ
コードのうち、ファイル101に格納されたレコード
は、ハッシュエントリ21を経由して検索され、ファイ
ル102に格納されたレコードは、ハッシュエントリ2
2を経由して検索され、ファイル103に格納されたレ
コードはハッシュエントリ23を経由して検索される。
Similarly, after the file is changed, among the registered records, the record stored in the file 101 is searched via the hash entry 21, and the record stored in the file 102 is searched for the hash entry 2.
2, and the record stored in the file 103 is searched via the hash entry 23.

【0018】レコードの新規の登録は、新ハッシュテー
ブル2によって行われる。レコードの検索は、新ハッシ
ュテーブルを検索し、もし見つからなければ旧ハッシュ
テーブルを検索する。
The new registration of a record is performed by the new hash table 2. The search for a record searches the new hash table, and if not found, searches the old hash table.

【0019】次に、図2は、本発明のハッシュエントリ
とレコードとの対応関係を示すブロック図である。それ
ぞれのハッシュエントリは、図2に示すように目的レコ
ードに対応する位置情報を格納しており、ハッシュエン
トリから目的のレコードが直接参照できる構造となって
いる。
FIG. 2 is a block diagram showing the correspondence between hash entries and records according to the present invention. As shown in FIG. 2, each hash entry stores position information corresponding to a target record, and has a structure in which a target record can be directly referenced from the hash entry.

【0020】次に、本発明のハッシュテーブルの動的変
更システムの流れについて説明する。
Next, the flow of the hash table dynamic change system of the present invention will be described.

【0021】図3は、本発明におけるハッシュテーブル
の作成処理の流れを示す流れ図である。ファイル内のデ
ータ量の増加などにより、ファイルの全体容量を変化さ
せる必要が生じた場合に、ステップ31によりファイル
サイズの変更を行う。
FIG. 3 is a flowchart showing the flow of the hash table creation process according to the present invention. If it is necessary to change the entire capacity of the file due to an increase in the amount of data in the file, the file size is changed in step 31.

【0022】この後、ステップ32によって、新ハッシ
ュテーブルを旧ハッシュテーブルに更新したのち、変更
されたファイルサイズに従って、ステップ33により新
のハッシュテーブルを作成する。
Then, after the new hash table is updated to the old hash table in step 32, a new hash table is created in step 33 according to the changed file size.

【0023】図4は、本発明のハッシュテーブルの動的
変更システムでの、ハッシュテーブルを用いた目的レコ
ード登録および検索処理の流れを示す流れ図である。
FIG. 4 is a flow chart showing the flow of target record registration and search processing using a hash table in the hash table dynamic change system of the present invention.

【0024】まず、レコードの登録の場合は、新ハッシ
ュテーブルでのみ登録処理を行う。その際、ファイルの
作成などで、ハッシュテーブルが1つしか存在しない場
合には、存在するハッシュテーブルを新ハッシュテーブ
ルと見なし、ステップ47の新ハッシュテーブルで登録
によりレコードを登録する。この処理により、新規に登
録されるレコードは常に新ハッシュテーブルから登録さ
れる。
First, in the case of record registration, registration processing is performed only with the new hash table. At this time, if there is only one hash table due to file creation or the like, the existing hash table is regarded as a new hash table, and a record is registered in the new hash table in step 47 by registration. By this processing, a newly registered record is always registered from the new hash table.

【0025】レコードの検索では、ステップ42の新ハ
ッシュテーブルからレコードをサーチにより、レコード
を検索し、目的のレコードが見つからない場合は(ステ
ップ43)、旧ハッシュテーブルの存在をチェックし
(ステップ44)、ステップ45の旧ハッシュテーブル
をサーチすることによりさらにレコードを検索する。
In the record search, the record is searched by searching for the record from the new hash table in step 42. If the target record is not found (step 43), the existence of the old hash table is checked (step 44). , Further searching for records by searching the old hash table of step 45.

【0026】この検索でもレコードが見つからない場合
には、レコード不検出となる。また、レコード不検出を
契機にして、旧ハッシュテーブルから登録されているレ
コードの数を検査し、レコードが1つも存在しなけれ
ば、旧ハッシュテーブルを削除し、ファイル作成直後の
状態に復帰可能である。
If no record is found in this search, no record is detected. In addition, when a record is not detected, the number of records registered from the old hash table is checked. If no record exists, the old hash table is deleted and the state immediately after file creation can be restored. is there.

【0027】以上、説明したように、本発明のハッシュ
テーブルの動的変更システムにおいては、ファイルサイ
ズの変更後に登録したレコードは、新ハッシュテーブル
の検索によりサーチ可能であり、ファイルサイズ変更前
に登録されたレコードはさらに旧ハッシュテーブルの検
索を行うことにより、サーチ可能である。新旧いずれの
ハッシュテーブルを検索してもレコードが見つからない
場合のみ、レコード不検出となる。
As described above, in the hash table dynamic change system of the present invention, records registered after the file size is changed can be searched by searching the new hash table, and the records registered before the file size change can be searched. The searched record can be searched by further searching the old hash table. Only when a record is not found by searching any of the old and new hash tables, a record is not detected.

【0028】[0028]

【発明の効果】本発明のハッシュテーブルの動的変更シ
ステムは、ファイルサイズ変更直後であっても、新旧2
つのハッシュテーブルの作用により、ファイルサイズ変
更直後に登録されたレコードの検索が可能である。従っ
て、ファイルへのアクセスを制限せずに、ファイルサイ
ズの変更が可能になる。これにより、ファイルサイズア
クセスを行っているアプリケーションプログラムを終了
などによる中断なしに、ファイルを再編成することが可
能となる。
According to the hash table dynamic change system of the present invention, even if the file size is
With the operation of the two hash tables, it is possible to search for a record registered immediately after the file size is changed. Therefore, the file size can be changed without restricting access to the file. As a result, the file can be reorganized without interruption due to termination of the application program that is accessing the file size.

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

【図1】本発明のファイル構成を示すブロック図であ
る。
FIG. 1 is a block diagram showing a file configuration of the present invention.

【図2】本発明のハッシュエントリとレコードとの対応
関係を示すブロック図である。
FIG. 2 is a block diagram showing a correspondence between a hash entry and a record according to the present invention.

【図3】本発明のハッシュエントリの作成処理の流れを
示すフローチャートである。
FIG. 3 is a flowchart illustrating a flow of a hash entry creation process according to the present invention.

【図4】本発明のレコード登録と検索処理の流れを示す
フローチャートである。
FIG. 4 is a flowchart showing the flow of record registration and search processing of the present invention.

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

1 旧ハッシュテーブル 2 新ハッシュテーブル 11,12 旧ハッシュテーブル内ハッシュエントリ 21,22 新ハッシュテーブル内ハッシュエントリ 101,102,103 ファイル 111 レコード位置情報 DESCRIPTION OF SYMBOLS 1 Old hash table 2 New hash table 11, 12 Hash entry in old hash table 21, 22 Hash entry in new hash table 101, 102, 103 File 111 Record position information

Claims (4)

【特許請求の範囲】[Claims] 【請求項1】情報処理システムにおける、ファイル内の
目的のレコードをハッシュテーブルを用いて格納および
参照する、ファイルアクセス制御によるハッシュテーブ
ル動的変更システムにおいて、 前記ハッシュテーブルが管理する前記ファイルの大きさ
を動的に変更する際に、ファイルサイズの変更に同期し
て新ハッシュテーブルを旧ハッシュテーブルに変更し、
変更前後のハッシュテーブルを新ハッシュテーブルとし
て作成保持する手段と、 データの参照の際に、変更の後の前記新ハッシュテーブ
ルを検索し、目的のレコードが見つからない場合、前記
旧ハッシュテーブルを検索する手段と、 データの登録の際に、変更後の前記新ハッシュテーブル
を利用してデータ登録を行うことにより、ファイルサイ
ズの動的な変更に対して、対応するハッシュテーブルを
動的に変更する手段と、 を有し、 ファイルサイズを変更してデータを再登録する際、ファ
イルアクセスの一時的な禁止処理をなくし、前記ファイ
ルに対してオープン中だったアプリケーションプログラ
ムなどを終了させることなく、前記ファイルサイズの更
新を可能とすることを特徴とするハッシュテーブルの動
的変更システム。
1. A hash table dynamic change system based on file access control for storing and referring to a target record in a file using a hash table in an information processing system, wherein the size of the file managed by the hash table is controlled. When changing dynamically, change the new hash table to the old hash table in synchronization with the change in file size,
Means for creating and holding the hash table before and after the change as a new hash table; and searching for the new hash table after the change when referring to data, and searching for the old hash table when a target record is not found. Means for registering data by using the new hash table after the change when registering data, thereby dynamically changing the corresponding hash table in response to a dynamic change in file size When re-registering data by changing the file size, the temporary file access prohibition processing is eliminated, and the file is opened without terminating an application program or the like that was open to the file. A dynamic change system for a hash table, characterized in that a size can be updated.
【請求項2】レコードの新規の登録は、新ハッシュテー
ブルによって行われることを特徴とする請求項1に記載
のハッシュテーブルの動的変更システム。
2. The hash table dynamic change system according to claim 1, wherein new registration of a record is performed by a new hash table.
【請求項3】前記旧ハッシュテーブルを検索手段により
検索した結果、前記目的のレコードが見つからない場
合、レコード不検出となることを特徴とする請求項1ま
たは2に記載のハッシュテーブルの動的変更システム。
3. The dynamic change of the hash table according to claim 1, wherein a record is not detected when the target record is not found as a result of searching the old hash table by a search unit. system.
【請求項4】前記レコード不検出を契機にして、前記旧
ハッシュテーブルから登録されているレコードの数を検
査し、前記レコードが1つも存在しなければ、旧ハッシ
ュテーブルを削除し、ファイル作成直後の状態に復帰可
能であることを特徴とする請求項3に記載のハッシュテ
ーブルの動的変更システム。
4. When the record is not detected, the number of registered records is checked from the old hash table. If there is no record, the old hash table is deleted. 4. The dynamic change system for a hash table according to claim 3, wherein the hash table can be returned to the state described above.
JP8244665A 1996-09-17 1996-09-17 Dynamic change system of hash table Expired - Fee Related JP3005476B2 (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
JP8244665A JP3005476B2 (en) 1996-09-17 1996-09-17 Dynamic change system of hash table

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
JP8244665A JP3005476B2 (en) 1996-09-17 1996-09-17 Dynamic change system of hash table

Publications (2)

Publication Number Publication Date
JPH1091501A true JPH1091501A (en) 1998-04-10
JP3005476B2 JP3005476B2 (en) 2000-01-31

Family

ID=17122139

Family Applications (1)

Application Number Title Priority Date Filing Date
JP8244665A Expired - Fee Related JP3005476B2 (en) 1996-09-17 1996-09-17 Dynamic change system of hash table

Country Status (1)

Country Link
JP (1) JP3005476B2 (en)

Cited By (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US7085911B2 (en) 2002-04-29 2006-08-01 International Business Machines Corporation Resizable cache sensitive hash table
CN104780287A (en) * 2014-01-10 2015-07-15 佳能株式会社 Image forming apparatus that performs update of firmware, and control method thereof

Cited By (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US7085911B2 (en) 2002-04-29 2006-08-01 International Business Machines Corporation Resizable cache sensitive hash table
CN104780287A (en) * 2014-01-10 2015-07-15 佳能株式会社 Image forming apparatus that performs update of firmware, and control method thereof

Also Published As

Publication number Publication date
JP3005476B2 (en) 2000-01-31

Similar Documents

Publication Publication Date Title
JP4414381B2 (en) File management program, file management apparatus, and file management method
US8386494B2 (en) Providing data structures for determining whether keys of an index are present in a storage system
JPH04205633A (en) Method and device for managing data of filing system
JPH1091501A (en) Dynamic change system for hash table
JPH04141721A (en) Disk sector substituting system
JPH07319742A (en) Physical deleting system for logically deleted data
JPH0934758A (en) Relational data base access control system
JP2000066933A (en) Time series data management system
JPH09293055A (en) System and method for exclusive control over shared file in loosely coupled multiple computer system, and medium for storing exclusive control program
JPH05151056A (en) Data controller
JP3178671B2 (en) File system and its file recovery method
JPH08328929A (en) Database split management system
JPH0652273A (en) Segment management system
JP3840726B2 (en) Database system
JPH03154939A (en) Control system for hierarchical store of data base
JPH11306061A (en) Inter-process shared control system for database definition information
JPH06175922A (en) Cache managing device
JP2000339337A (en) Database retrieval system
KR20000037515A (en) Method for composing b+ tree to manage history
JPH05120340A (en) Routing address managing method
JP2003198596A (en) Address table management method and address table management device
JPH06222970A (en) History information storing method
JPH05334160A (en) Exclusive processing system for plural records
JPH1011341A (en) Automatic update system for cad library
JPS63304343A (en) Version managing system for keyed sequential file

Legal Events

Date Code Title Description
S531 Written request for registration of change of domicile

Free format text: JAPANESE INTERMEDIATE CODE: R313531

R350 Written notification of registration of transfer

Free format text: JAPANESE INTERMEDIATE CODE: R350

LAPS Cancellation because of no payment of annual fees