JP2740473B2 - Version restoration method - Google Patents

Version restoration method

Info

Publication number
JP2740473B2
JP2740473B2 JP7192229A JP19222995A JP2740473B2 JP 2740473 B2 JP2740473 B2 JP 2740473B2 JP 7192229 A JP7192229 A JP 7192229A JP 19222995 A JP19222995 A JP 19222995A JP 2740473 B2 JP2740473 B2 JP 2740473B2
Authority
JP
Japan
Prior art keywords
version
node
text
pointer
restoring
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.)
Expired - Fee Related
Application number
JP7192229A
Other languages
Japanese (ja)
Other versions
JPH0944386A (en
Inventor
真人 根岸
Original Assignee
神戸日本電気ソフトウェア株式会社
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 神戸日本電気ソフトウェア株式会社 filed Critical 神戸日本電気ソフトウェア株式会社
Priority to JP7192229A priority Critical patent/JP2740473B2/en
Publication of JPH0944386A publication Critical patent/JPH0944386A/en
Application granted granted Critical
Publication of JP2740473B2 publication Critical patent/JP2740473B2/en
Anticipated expiration legal-status Critical
Expired - Fee Related legal-status Critical Current

Links

Description

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

【0001】[0001]

【発明の属する技術分野】本発明は版管理システムにお
ける版復元方法に関し、特に複数の版の復元方法に関す
る。
BACKGROUND OF THE INVENTION 1. Field of the Invention The present invention relates to a version restoring method in a version management system, and more particularly to a method for restoring a plurality of versions.

【0002】[0002]

【従来の技術】従来の版管理システムは、UNIXのS
CCSとRCSの2つのシステムが良く知られている。
これらのシステムはおよそ次のような方法で版を管理し
ている。
2. Description of the Related Art A conventional version control system is a UNIX version.
Two systems are well known, CCS and RCS.
These systems manage versions in the following ways.

【0003】まず、最初の版を元にして、次の版が登録
されるときに、最初の版との相違を抽出して差分デー
タ、即ち前の版に対して行ごとに追加された行、削除さ
れた行を抽出したものを作成し、版の親子関係とともに
差分ファイルに保存する。版の登録・更新取り出し・参
照取り出し・削除は個々の版に対して個別に処理され
る。版は任意の版を元に修正を加えられるため、更新取
り出しでは、最初の版の改版としての取り出し以外に、
古い版から枝分れ(ブランチ)させる改版としての取り
出しも処理できるようになっている。登録処理では、直
前の版を復元し、登録するテキストと差分を取って差分
データを作成し、登録する。差分処理は、最初の版から
順に差分データを参照しながら子供の版を復元し、目的
の版まで復元処理を繰り返し、ファイルへ出力する。差
分ファイル中の不要な版を削除する処理では、自分の子
供がいない場合は単にその版を削除し、子供がいる場合
は親と子を復元してから両者の差分データを抽出し、子
供の差分データをそれに置き換えた後に、目的の版を削
除する。
First, when the next version is registered based on the first version, a difference from the first version is extracted and difference data, that is, a row added to the previous version line by line. Then, it creates an extract of the deleted line and saves it in the difference file along with the parent-child relationship of the version. Version registration, update retrieval, reference retrieval, and deletion are processed individually for each version. Versions can be modified based on any version, so in an update extraction, besides extracting the first version as a revision,
It can handle the extraction as a revision that branches from the old version. In the registration process, the previous version is restored, the difference is created from the text to be registered, and difference data is created and registered. The difference processing restores the child's version while referring to the difference data in order from the first version, repeats the restoration processing until the target version, and outputs the file. In the process of deleting unnecessary versions in the difference file, if there is no own child, simply delete the version, and if there is a child, restore the parent and child and extract the difference data between them, After replacing the difference data with it, delete the target version.

【0004】このように、登録/削除/取り出し時に
は、いずれも復元処理が必要となる。
[0004] As described above, restoration / registration processing is required at all times of registration / deletion / removal.

【0005】次に、従来の版復元処理について図7を用
いて説明する。まず、目的の版ノードがあるかどうかチ
ェックし(ステップ20)、ある場合は、ベースノード
を取り出す(ステップ21)。ベースノードには差分は
ないので、復元処理22は行わない。次に、復元を指定
された版ノードが見つかるまで復元処理を繰り返す(ス
テップ22〜ステップ24)。復元処理(ステップ2
2)は、そのノードが差分データを持っていると、ひと
つ前のノードの完全なテキストと自分の差分から、自分
の完全なテキストを復元する。ステップ20に戻り、指
定された版ノードが終るまで繰り返される。
Next, a conventional plate restoration process will be described with reference to FIG. First, it is checked whether or not a target version node exists (step 20). If so, a base node is extracted (step 21). Since there is no difference in the base node, the restoration process 22 is not performed. Next, the restoration process is repeated until a version node designated to be restored is found (steps 22 to 24). Restoration processing (step 2
If the node has difference data, 2) restores its own complete text from the complete text of the previous node and its own difference. Returning to step 20, the process is repeated until the designated version node ends.

【0006】[0006]

【発明が解決しようとする課題】上述した従来の版復元
方法は、版ごとに個別に処理するため、図7のフローチ
ャートに示すように、複数の版を一度に復元する場合に
子供を復元する処理(ステップ22)が何度も重複して
行われてしまい、処理効率が悪いという欠点があった。
In the above-mentioned conventional plate restoring method, since each plate is individually processed, as shown in a flowchart of FIG. 7, a child is restored when a plurality of plates are restored at once. There is a disadvantage that the processing (step 22) is repeatedly performed many times, resulting in poor processing efficiency.

【0007】[0007]

【課題を解決するための手段】第1の発明は、プログラ
ムなどのテキストを版管理する版管理システムであっ
て、最初の版のみテキストを管理し前記最初の版以降の
版はその版とその版の前の版との差分データのみ管理す
る版管理システムにおける版復元方法において、予め指
定された複数の版を復元する場合に、前記最初の版から
指定された前記複数の版までにおける重複する版は前記
復元処理を重複しないようにすることを特徴とする。
A first aspect of the present invention is a version management system for managing a text of a program or the like in a version, wherein only the first version is managed in a text, and the versions after the first are defined as the version and the version. In a version restoring method in a version management system that manages only difference data from a previous version of a version, when restoring a plurality of versions specified in advance, when a plurality of versions specified in advance are duplicated from the first version to the specified versions. The plate is characterized in that the restoration processing is not duplicated.

【0008】また、第2の発明は、プログラムなどのテ
キストを版管理する版管理システムであって、最初の版
のみテキストを管理し前記最初の版以降の版はその版と
その版の前の版との差分データのみ管理する版管理シス
テムにおける版復元方法において、予め指定された複数
の版を復元する場合に、前記最初の版から指定された前
記複数の版までにおける経路を探索し、該探索された経
路における前記最初の版から前記指定された複数の版ま
でをマークし、次に、前記マークの行われた前記最初の
版から各版における復元処理を重複しないようにしなが
ら前記指定された複数の版まで該復元処理を行い、該復
元処理の効率を向上させたことを特徴とする。
A second invention is a version management system for managing texts such as programs in a version. The version management system manages text only in a first version, and a version after the first version includes the version and a version before the version. In a version restoring method in a version management system that manages only difference data from a version, when restoring a plurality of versions specified in advance, searching for a path from the first version to the specified versions, Marking from the first version to the specified plurality of versions in the searched path, and then performing the restoration process in each version from the first version with the mark so as not to overlap the specified version. The restoration processing is performed up to a plurality of versions to improve the efficiency of the restoration processing.

【0009】[0009]

【発明の実施の形態】次に、本発明について図面を参照
して説明する。
Next, the present invention will be described with reference to the drawings.

【0010】図1は本発明の版復元方法の一実施例を示
すフローチャートである。
FIG. 1 is a flowchart showing an embodiment of the plate restoring method according to the present invention.

【0011】本発明に係わる版管理システムでは、最初
の版のみベースとなる完全なテキストを管理し、ベース
となる版以外は差分データのみ管理する。
[0011] In the version management system according to the present invention, the complete text as a base is managed only for the first version, and only the difference data is managed for other than the base version.

【0012】図2は、本発明に係わる版管理システムの
一実施例を示す構成図であり、差分ァイル32は差分管
理ファイル読み込み部34によってメモリ37に展開さ
れる。
FIG. 2 is a block diagram showing an embodiment of the version management system according to the present invention. The difference file 32 is developed in the memory 37 by the difference management file reading unit 34.

【0013】図3は、メモリ37に展開される差分ファ
イルの構成例を示す図であり、版ノード41〜45およ
び版ノード47〜48はそれぞれ1つの版を表してお
り、ベースポインタ40は、ベースとなる版ノード41
へのポインタを有する。また、ブランチノード46は、
版ノード42を親として版ノード47が派生しているこ
とを表している。
FIG. 3 is a diagram showing an example of the configuration of a differential file developed in the memory 37. Version nodes 41 to 45 and version nodes 47 to 48 each represent one version, and the base pointer 40 Base version node 41
With a pointer to The branch node 46
This indicates that the version node 47 is derived with the version node 42 as a parent.

【0014】図4は、版ノードにおける版管理情報の構
成例を示す図であり、版ノードは差分ファイル中で一意
に識別されるバージョンID(VID)51と、マーク
フラグ52、完全なテキストへのポインタ53(ベース
となる版ノードのみ)、差分データへのポインタ54
(ベース以外の版ノード)、ブランチノードへのポイン
タ55、自分を元に作成した子供の版へのポインタ5
6、自分を作成する時に元となった親の版へのポインタ
57を有する。それぞれのポインタの対象が存在しない
場合は、ヌルポインタ(値が0のポインタ)を設定す
る。
FIG. 4 is a diagram showing an example of the structure of the version management information in the version node. The version node has a version ID (VID) 51 uniquely identified in the difference file, a mark flag 52, and a complete text. Pointer 53 (only the base version node), pointer 54 to the difference data
(Version node other than base), pointer 55 to branch node, pointer 5 to child version created based on self
6. It has a pointer 57 to the parent version from which it was created. If there is no target for each pointer, a null pointer (a pointer with a value of 0) is set.

【0015】図5は、ブランチノード46の管理情報の
一例を示す図であり、ブランチした子供の版ノードへの
ポインタ61と、次のブランチノードへのポインタ62
を持つ。
FIG. 5 is a diagram showing an example of the management information of the branch node 46. The pointer 61 points to the version node of the child who has branched, and the pointer 62 points to the next branch node.
have.

【0016】版処理部35は、「登録」、「参照取り出
し」、「更新取り出し」、「削除」の4つの処理を行
う。
The plate processing unit 35 performs four processes of "registration", "reference retrieval", "update retrieval", and "deletion".

【0017】「更新取り出し」とは、ある版を元にテキ
ストを修正する場合におこなう取り出し操作である。版
を自動的に管理するため、版管理システムは「更新取り
出し」が要求されると、指定された版の子供として新た
な版ノードを追加する(この版ノードの追加は、版ID
予約のために行う。予約された版は、取り出されたテキ
ストが登録されるまで誰も取り出せない。)とともに、
テキストの先頭に新たに作った版ノードのバージョンI
Dを持つ特殊なレコード挿入し、当該版を復元して出力
する。このレコードは、エディタでは更新できないヘッ
ド領域などに作られる。
"Update retrieval" is a retrieval operation performed when a text is corrected based on a certain version. In order to automatically manage the editions, the edition management system adds a new edition node as a child of the designated edition when an "update retrieval" is requested (this edition node is added by the edition ID
Do it for a reservation. No one can retrieve the reserved version until the retrieved text is registered. ),
Version I of the newly created version node at the beginning of the text
Insert a special record with D, restore the version and output. This record is created in a head area that cannot be updated by the editor.

【0018】「参照取り出し」とは、更新目的以外の取
り出し処理である。版ノードの追加は行われず、指定さ
れた版のバージョンIDを持つテキストを出力する。参
照取り出ししたテキストを「登録」しようとしても、版
ノードの差分データへのポインタがヌルポインタでない
ので、版処理部35は、「これは更新取り出しされた版
ではない」旨のエラーメッセージを返す。
"Reference retrieval" is a retrieval process for purposes other than updating. No version node is added, and a text having the version ID of the specified version is output. Even if an attempt is made to "register" the reference-extracted text, the pointer to the difference data of the version node is not a null pointer, so the version processing unit 35 returns an error message indicating that "this is not an updated and retrieved version".

【0019】特定のバージョンIDに対して「削除」が
要求されると、それが子供を持たない版であれば版処理
部は単にその版ノードを削除する。もし、子供を持つ版
ノードであれば、直前の版と子度の版をそれぞれ復元
し、両者の差分を取って差分データを抽出し、それで子
供の差分データを置き換えた後に、当該版ノードを削除
する。
When "delete" is requested for a specific version ID, if the version has no children, the version processing unit simply deletes the version node. If the version node has a child, the previous version and the child version are restored, the difference between the two is extracted, and the difference data is extracted. delete.

【0020】版管理システムは、版処理部35の処理が
終了すると、差分ファイル出力部36によって、メモリ
中の情報を差分ファイル32として出力する。
In the version management system, when the processing of the version processing unit 35 is completed, the information in the memory is output as the difference file 32 by the difference file output unit 36.

【0021】処理を複数指定した場合、版処理部35で
処理される複数の復元処理について図1のフローチャー
トに基いて説明する。
A plurality of restoration processes performed by the plate processing unit 35 when a plurality of processes are designated will be described with reference to the flowchart of FIG.

【0022】図6は、該複数の復元処理を説明するため
の説明図であり、版ノード85および版ノード87を同
時に復元する場合について説明する。復元処理にあたっ
て、版ノード85、87のバージョンIDがパラメータ
として与えられる(図6における、1.2.1.1 および1.2.
2.1 )。
FIG. 6 is an explanatory diagram for explaining the plurality of restoration processes. A case where the version node 85 and the version node 87 are simultaneously restored will be described. In the restoration processing, the version IDs of the version nodes 85 and 87 are given as parameters (see FIG. 6, 1.2.1.1 and 1.2.
2.1).

【0023】まず、対象とする版ノードがあるかどうか
をチェックし(ステップ10)、あれば、ベースノード
を取り出す(ステップ11)。図6のベースポインタ8
0が示すベースノード81から、復元すべき版ノード8
5を探索する。探索処理は、子へのポインタ優先で行
い、復元処理が必要な版ノード81,82へのポインタ
をスタック89に格納する(ステップ13)。バージョ
ンIDをチェックして(ステップ12)、指定された版
ノード85を見つけると、スタック89に格納されてい
る版ノードすべてと版ノード85におけるフラグをマー
クし(ステップ14)、もうひとつの版ノード87への
探索を引き続き行う。ここまでの処理で、指定された版
ノード85および版ノード87からベースノード80ま
での経路をマークすることができる。
First, it is checked whether there is a target version node (step 10), and if there is, a base node is taken out (step 11). Base pointer 8 in FIG.
From the base node 81 indicated by 0, the version node 8 to be restored
Search for 5. The search processing is performed with priority given to the pointer to the child, and the pointers to the version nodes 81 and 82 requiring the restoration processing are stored in the stack 89 (step 13). If the version ID is checked (step 12) and the specified version node 85 is found, all version nodes stored in the stack 89 and flags in the version node 85 are marked (step 14), and another version node is set. The search for 87 is continued. With the processing so far, the path from the designated version node 85 and version node 87 to the base node 80 can be marked.

【0024】すべての復元処理に必要な版ノードにマー
クを付け終ると、次に復元処理を行う。復元処理は、マ
ークされている版ノードの復元処理(ステップ19)を
繰り返す。即ち、最初の復元目的の版ノード85へのベ
ースノード即ち、図6のベースポインタ80が示す版ノ
ード81を取り出し(ステップ17)、復元の元になる
完全なテキストを図4に示す版管理情報における完全な
テキストへのポインタ53が指し示す領域から取り出
す。取り出した完全なテキストに差分データを加えるこ
とによって各版ノードのテキストを復元し、そこへのポ
インタを各ノードの版管理情報における完全なテキスト
53領域にセットするとともに、マークフラグをクリア
(0にセット)する。差分データを加えてテキストを復
元する際、復元対象としているノードの完全なテキスト
領域53が既にセットされており、ヌルポインタでなけ
ればスキップする(ステップ18のyes)。これは、
すでに、復元された版は重複して復元されないようにす
るためである。以上の処理を一つの版ノード(この例で
は版ノード85)について繰り返す(ステップ17〜ス
テップ19−2)。
After marking the version nodes required for all restoration processing, restoration processing is performed next. In the restoration process, the restoration process (step 19) of the marked version node is repeated. That is, the base node to the first version node 85 to be restored, that is, the version node 81 indicated by the base pointer 80 in FIG. 6 is extracted (step 17), and the complete text to be restored is converted into the version management information shown in FIG. Eject from the pointer 53 points to the area to the full text in
You. The text of each version node is restored by adding difference data to the extracted complete text, a pointer to the text is set in the complete text 53 area in the version management information of each node, and the mark flag is cleared (to 0). set. Restore text by adding difference data
At the time of restoration, the complete text area 53 of the node to be restored has already been set, and if it is not a null pointer, it is skipped (yes in step 18). this is,
Already, the restored version is to prevent duplicate restoration. The above processing is repeated for one version node (version node 85 in this example) (steps 17 to 19-2).

【0025】以上の処理を他の復元すべきすべての版
(この実施例では、版ノード87)が復元されるまで繰
り返す(ステップ16)。
The above process is repeated until all other versions to be restored (version nodes 87 in this embodiment) are restored (step 16).

【0026】版処理部35は、マークされたすべての復
元処理を完了すると、個々の処理(登録・更新取り出し
・参照取り出し・削除)の残りの処理を行う。処理が全
て終了すると、差分ファイル出力部36は、メモリ上の
版ノードの状態を差分ファイルに出力する時に、各版ノ
ード上の完全なテキストへのポインタ53を、ベースノ
ード以外はヌルポインタにセットする。
When all of the marked restoration processes are completed, the plate processing unit 35 performs the remaining processes of the individual processes (registration, update retrieval, reference retrieval, and deletion). When all the processes have been completed, the difference file output unit 36 sets the pointer 53 to the complete text on each version node to a null pointer except for the base node when outputting the state of the version node on the memory to the difference file. I do.

【0027】[0027]

【発明の効果】以上説明したように、本発明の版復元方
法は、複数の版を一度に復元する場合に、同じ復元処理
は重複しないようにしたことにより、処理効率が向上す
るという効果がある。
As described above, the plate restoring method of the present invention has the effect of improving the processing efficiency by preventing the same restoring process from overlapping when a plurality of plates are restored at once. is there.

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

【図1】本発明の版復元方法の一実施例を示すフローチ
ャートである。
FIG. 1 is a flowchart showing an embodiment of a plate restoring method according to the present invention.

【図2】本発明に係わる版管理システムの一実施例を示
す構成図である。
FIG. 2 is a configuration diagram showing an embodiment of a version management system according to the present invention.

【図3】本実施例のメモリ37に展開される差分ファイ
ルの構成例を示す図である。
FIG. 3 is a diagram illustrating a configuration example of a difference file developed in a memory 37 according to the embodiment.

【図4】本実施例の版ノードにおける版管理情報の構成
例を示す図である。
FIG. 4 is a diagram illustrating a configuration example of version management information in a version node according to the embodiment;

【図5】本実施例のブランチノード46の管理情報の一
例を示す図である。
FIG. 5 is a diagram illustrating an example of management information of a branch node 46 according to the present embodiment.

【図6】本発明の複数の復元処理を説明するための説明
図である。
FIG. 6 is an explanatory diagram for explaining a plurality of restoration processes according to the present invention.

【図7】従来の版復元方法の一実施例を示すフローチャ
ートである。
FIG. 7 is a flowchart showing one embodiment of a conventional plate restoring method.

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

31,33 版 32 差分ファイル 34 差分管理ファイル読み込み部 35 版処理部 36 差分ファイル出力部 37 メモリ 40 ルートポインタ 41〜45,47〜48 版ノード 46 ブランチノード 51 バージョンID(VID) 52 マークフラグ 53 完全なテキストへのポインタ 54 差分データへのポインタ 55 ブランチノードへのポインタ 56 子ノードへのポインタ 57 親ノードへのポインタ 61 子ノードへのポインタ 62 ブランチノードへのポインタ 80 ベースポインタ 81〜83,85,87 版ノード 84,86 ブランチノード 88 スタックポインタ 89 スタック 31, 33 version 32 Difference file 34 Difference management file reading unit 35 Version processing unit 36 Difference file output unit 37 Memory 40 Root pointer 41 to 45, 47 to 48 Version node 46 Branch node 51 Version ID (VID) 52 Mark flag 53 Complete Pointer to a simple text 54 Pointer to difference data 55 Pointer to a branch node 56 Pointer to a child node 57 Pointer to a parent node 61 Pointer to a child node 62 Pointer to a branch node 80 Base pointer 81 to 83, 85, 87 version node 84, 86 branch node 88 stack pointer 89 stack

Claims (2)

(57)【特許請求の範囲】(57) [Claims] 【請求項1】プログラムなどのテキストを版管理する版
管理システムであって、最初の版のみテキストを管理し
前記最初の版以降の版はその版とその版の前の版との差
分データのみ管理する版管理システムにおける版復元方
法において、指定された複数の版を復元する場合に、前
記最初の版から指定された前記複数の版までの復元処理
にて完全なテキストが復元されていない版のみ該復元処
理を行うことを特徴とする版復元方法。
1. A version control system for version control of texts such as programs, wherein only the first version is text-controlled, and the version after the first version is only the difference data between the version and the version before the version. Oite the plate restoring method in version management system for managing, restoration process when restoring the specified multiple versions, until the plurality of plate designated from the first edition
Only the version whose complete text has not been restored
Plate restoring method characterized by performing a process.
【請求項2】プログラムなどのテキストを版管理する版
管理システムであって、最初の版のみテキストを管理し
前記最初の版以降の版はその版とその版の前の版との差
分データのみ管理する版管理システムにおける版復元方
法において、指定された複数の版を復元する場合に、前
記最初の版から指定された前記複数の版までにおける経
路を探索し、該探索された経路における前記最初の版か
ら前記指定された複数の版までをマークし、次に、前記
マークの行われた前記最初の版から前記指定された複数
の版まで完全なテキストが復元されていない版のみ該復
元処理を行い、該復元処理の効率を向上させたことを特
徴とする版復元方法。
2. A version control system for version control of text such as a program, wherein only the first version is controlled for text, and the version after the first version is only difference data between the version and the version before the version. Oite the plate restoring method in version management system for managing, when restoring the specified multiple versions, searches for a route in to the plurality of plate designated from the first version, in the searched route plurality from said first version to a plurality of the plate which is the specified marking, then that is the specified from the first edition made of the mark
A restoring process that is performed only on a version whose complete text has not been restored up to the version of (a) , thereby improving the efficiency of the restoring process.
JP7192229A 1995-07-27 1995-07-27 Version restoration method Expired - Fee Related JP2740473B2 (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
JP7192229A JP2740473B2 (en) 1995-07-27 1995-07-27 Version restoration method

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
JP7192229A JP2740473B2 (en) 1995-07-27 1995-07-27 Version restoration method

Publications (2)

Publication Number Publication Date
JPH0944386A JPH0944386A (en) 1997-02-14
JP2740473B2 true JP2740473B2 (en) 1998-04-15

Family

ID=16287818

Family Applications (1)

Application Number Title Priority Date Filing Date
JP7192229A Expired - Fee Related JP2740473B2 (en) 1995-07-27 1995-07-27 Version restoration method

Country Status (1)

Country Link
JP (1) JP2740473B2 (en)

Families Citing this family (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
JP3535413B2 (en) * 1999-04-07 2004-06-07 新日鉄ソリューションズ株式会社 Data processing device, data processing system, data processing method, and recording medium

Non-Patent Citations (1)

* Cited by examiner, † Cited by third party
Title
坪谷 英昭 外4名,"構成・版管理ライブラリLifeLineを用いたCプログラム開発環境",情報処理学会研究報告,Vol.90,No.62 (90−SE−73),1990年7月20日,107−114

Also Published As

Publication number Publication date
JPH0944386A (en) 1997-02-14

Similar Documents

Publication Publication Date Title
US6185569B1 (en) Linked data structure integrity verification system which verifies actual node information with expected node information stored in a table
JPH0934763A (en) Device and method for managing file
CA2524033A1 (en) Methods and systems for joining database tables using indexing data structures
JP4101410B2 (en) Time version data storage device
JP2003533782A (en) How to find patterns in symbolic sequences
US9037553B2 (en) System and method for efficient maintenance of indexes for XML files
JPH1010970A (en) Map data updating system
JP2740473B2 (en) Version restoration method
JP3985430B2 (en) Database management apparatus and method
JPH02297284A (en) Document processing system and version control system
JPH04141721A (en) Disk sector substituting system
JP2000284685A (en) Method for updating map data
JPS634353A (en) Generation file managing system
JPH11213006A (en) Information managing device and its history information managing method
JPH05257765A (en) Database management system
JP3971699B2 (en) Land surveying map management device
JP2679602B2 (en) Evacuation medium creation system
JP3360654B2 (en) Data deletion device
JP2002140218A (en) Data processing method, computer-readable recording medium and data processing device
Krishna et al. Verifying Multicopy Structures
JP2738287B2 (en) File extraction system for distributed database
CN115374939A (en) Expert knowledge base construction method based on multi-label dynamic update
JPH04195559A (en) Subfile management system
JP3996938B2 (en) Land surveying map management device
JP3008500B2 (en) Update record reading mechanism

Legal Events

Date Code Title Description
A01 Written decision to grant a patent or to grant a registration (utility model)

Free format text: JAPANESE INTERMEDIATE CODE: A01

Effective date: 19971216

R250 Receipt of annual fees

Free format text: JAPANESE INTERMEDIATE CODE: R250

LAPS Cancellation because of no payment of annual fees