JP2586330B2 - Logical deletion data management method - Google Patents
Logical deletion data management methodInfo
- Publication number
- JP2586330B2 JP2586330B2 JP6114603A JP11460394A JP2586330B2 JP 2586330 B2 JP2586330 B2 JP 2586330B2 JP 6114603 A JP6114603 A JP 6114603A JP 11460394 A JP11460394 A JP 11460394A JP 2586330 B2 JP2586330 B2 JP 2586330B2
- Authority
- JP
- Japan
- Prior art keywords
- data record
- suffix
- key
- value
- application program
- 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
Links
Landscapes
- Information Retrieval, Db Structures And Fs Structures Therefor (AREA)
Description
【0001】[0001]
【産業上の利用分野】本発明は、ファイル中のデータレ
コードのキー値の重複を許さず、且つアプリケーション
プログラムからの論理削除要求に応答して論理削除要求
されたデータレコード中の論理削除情報を論理削除済み
を示すものに変更することにより、論理削除要求された
データレコードを論理的に削除するファイル管理システ
ムに関し、特に、データレコードの格納要求元であるア
プリケーションプログラムからみて、アプリケーション
プログラム自身が意識している今回格納しようとしてい
るデータレコードのキー値と同一キー値となる論理削除
済みのデータレコードがファイル中に存在する場合であ
っても、論理削除済みのデータレコードを物理的に削除
することなく、データレコードを新規に格納することが
できる論理削除データ管理方式に関する。BACKGROUND OF THE INVENTION 1. Field of the Invention The present invention does not allow duplication of the key value of a data record in a file, and stores logical deletion information in a data record requested to be logically deleted in response to a logical deletion request from an application program. Regarding a file management system that logically deletes a data record requested to be logically deleted by changing it to one that indicates logical deletion, the application program itself is particularly conscious of the application program that is the data record storage request source. Even if there is a logically deleted data record in the file that has the same key value as the key value of the data record to be stored this time, physically delete the logically deleted data record. Logical deletion data that can store new data records. It related to data management method.
【0002】[0002]
【従来の技術】従来からキー値で管理されているデータ
レコード中に論理削除されたか否かを示す論理削除情報
を設定しておき、アプリケーションプログラムから或る
キー値のデータレコードの論理削除が要求された場合、
論理削除要求されたデータレコード中の論理削除情報を
論理削除済みを示すものに変更することにより、上記デ
ータレコードを論理的に削除するということが行なわれ
ている。このような論理削除を行なうことにより、削除
性能を物理削除を行なう場合に比較して高いものにする
ことができる。2. Description of the Related Art Conventionally, logical deletion information indicating whether logical deletion has been performed is set in a data record managed by a key value, and a logical deletion of a data record having a certain key value is requested from an application program. If done,
The data record is logically deleted by changing the logical deletion information in the data record requested to be logically deleted to indicate the logical deletion completed. By performing such a logical deletion, the deletion performance can be made higher than in the case of performing the physical deletion.
【0003】ところで、上記したような論理削除を行な
うことができ、且つファイルに格納されているデータレ
コードのキー値の重複を許さない従来のファイル管理シ
ステムでは、ファイルにデータレコードを新規に格納す
る場合、以下のような処理を行なっている。In a conventional file management system capable of performing the above-described logical deletion and not allowing duplication of key values of data records stored in a file, a data record is newly stored in a file. In such a case, the following processing is performed.
【0004】アプリケーションプログラムは、データレ
コードのファイルへの格納時、今回格納しようとするデ
ータレコードとキー値が一致する論理削除済みデータレ
コードがファイル中に存在しない場合は、上記データレ
コードの格納をファイル管理システムに対して要求す
る。ファイル管理システムは、この要求に応答してデー
タレコードをファイルへ格納する。When storing a data record in a file, if there is no logically deleted data record whose key value matches the data record to be stored this time in the file, the application program stores the data record in the file. Make a request to the management system. The file management system stores the data record in a file in response to the request.
【0005】今回格納しようとするデータレコードとキ
ー値が一致する論理削除済みデータレコードがファイル
中に存在しない場合は、上述したようにしてデータレコ
ードを新規に格納することができる。しかし、キー値が
一致する論理削除済みデータレコードが存在する場合
は、データレコードのキー値の重複を許さないという前
提から、そのままでは、データレコードを格納すること
ができない。そこで、このような場合は、アプリケーシ
ョンプログラムは、ファイル管理システムに対して上記
論理削除されているデータレコードの物理削除を要求
し、その後、上記データレコードの格納をファイル管理
システムに対して要求する。この要求に応答してファイ
ル管理システムは、物理削除が要求されたデータレコー
ドを物理的に削除した後、格納要求されたデータレコー
ドをファイルに格納する。If there is no logically deleted data record whose key value matches the data record to be stored this time in the file, the data record can be newly stored as described above. However, when there is a logically deleted data record having the same key value, the data record cannot be stored as it is, assuming that duplication of the key value of the data record is not allowed. Therefore, in such a case, the application program requests the file management system to physically delete the logically deleted data record, and then requests the file management system to store the data record. In response to this request, the file management system physically deletes the data record requested to be physically deleted, and then stores the data record requested to be stored in the file.
【0006】[0006]
【発明が解決しようとする課題】上述したように、従来
は、データレコードをファイルに格納する場合、そのデ
ータレコードのキー値と同一のキー値を有する論理削除
済みのデータレコードがファイル中に存在する場合、フ
ァイルの内容がそのまではデータレコードを格納するこ
とができないので、上記論理削除済みデータレコードを
物理的に削除しなければならず、そのため、処理速度が
遅くなるという問題がある。As described above, conventionally, when a data record is stored in a file, a logically deleted data record having the same key value as that of the data record exists in the file. In such a case, since the data record cannot be stored until the contents of the file, the logically deleted data record must be physically deleted, which causes a problem that the processing speed is reduced.
【0007】また、アプリケーションプログラムにキー
値の重複を防止するための処理を組み込まなければなら
ないため、アプリケーションプログラム開発時の生産性
が低いという問題がある。[0007] Further, since a process for preventing duplication of key values must be incorporated in the application program, there is a problem that productivity in developing the application program is low.
【0008】そこで、本発明の目的は、アプリケーショ
ンプログラムからみて、アプリケーションプログラム自
身が意識している新規に格納しようとするデータレコー
ドのキー値と同一キー値となる論理削除済みデータレコ
ードがファイル中に存在する場合であっても、論理削除
済みデータレコードを物理削除する必要がなく、且つア
プリケーションプログラム開発時の生産性を高いものに
することができる論理削除データ管理方式を提供するこ
とにある。Accordingly, an object of the present invention is to provide a logically deleted data record having the same key value as a key value of a data record to be newly stored, which is conscious of the application program itself, as viewed from the application program itself. It is an object of the present invention to provide a logically deleted data management method which does not require physical deletion of a logically deleted data record even if it exists, and which can increase productivity when developing an application program.
【0009】[0009]
【課題を解決するための手段】本発明は上記目的を達成
するため、ファイル中のデータレコードのキー値の重複
を許さないファイル管理システムに於いて、前記データ
レコードは、キー項目がアプリケーションプログラムが
意識しているキーに対応する主キーと、主キーの値が同
一のデータレコードのキー値をユニークなものにするた
めのサフィックスとから構成されると共に、主キーが同
一のデータレコードの内の格納順を示すカレントサフィ
ックスと、論理削除済みか否かを示す論理削除情報とを
含み、前記ファイル管理システムは、前記アプリケーシ
ョンプログラムからのキー値を指定した論理削除要求に
応答して、前記ファイルに格納されているデータレコー
ドの内の、主キーに前記アプリケーションプログラムが
指定したキー値が設定され、且つサフィックスにその初
期値が設定されているデータレコードの論理削除情報を
論理削除済みにするデータレコード論理削除手段と、前
記アプリケーションプログラムからのデータレコードの
格納要求に応答して、主キーに前記アプリケーションプ
ログラムが前記データレコードのキー値として意識して
いるキー値が設定され、且つサフィックスにその初期値
が設定されている論理削除済みのデータレコードが前記
ファイル内に存在する場合は、該データレコードのカレ
ントサフィックスに設定されている値に基づいて該デー
タレコードのサフィックスの値を変更すると共に、変更
後のサフィックスの値を出力し、存在しない場合は、カ
レントサフィックスの初期値を出力するサフィックス管
理手段と、該サフィックス管理手段から値が出力される
ことにより、前記アプリケーションプログラムが格納要
求しているデータレコードを、主キー,サフィックス及
びカレントサフィックスの値がそれぞれ前記アプリケー
ションプログラムが意識しているキー値,カレントサフ
ィックスの初期値及び前記サフィックス管理手段が出力
した値のデータレコードとして前記ファイルに格納する
データレコード格納手段と、前記アプリケーションプロ
グラムから論理削除されていないデータレコードを検索
対象とする、キー値を指定した検索要求が出力された場
合、主キーの値を前記アプリケーションプログラムが指
定したキー値、サフィックスの値をその初期値とした検
索キーによって前記ファイルを検索することにより、前
記ファイルから、主キーに前記アプリケーションプログ
ラムが指定したキー値が設定され、且つサフィックスに
その初期値が設定されている論理削除されていないデー
タレコードを検索するデータレコード検索手段とを備え
たものである。In order to achieve the above object, the present invention provides a file management system which does not allow duplication of key values of data records in a file. A primary key corresponding to the key being conscious, a suffix for making the key value of the same data record unique, and a suffix for making the key value of the same data record unique. The file management system includes a current suffix indicating a storage order and logical deletion information indicating whether or not the file has been logically deleted. Of the stored data records, the key value specified by the application program is the primary key. Data record logical deletion means for setting the logical deletion information of the data record whose logical value has been set to the initial value as the suffix, and a primary key in response to a data record storage request from the application program. If a key value that the application program is aware of as a key value of the data record is set, and a logically deleted data record whose initial value is set in a suffix exists in the file, A suffix that changes the value of the suffix of the data record based on the value set in the current suffix of the data record, outputs the suffix value after the change, and outputs the initial value of the current suffix if it does not exist. Management means, and the suffix management means When the values are output, the data record requested by the application program to be stored is replaced with the primary key, suffix, and current suffix values of the key value, the initial value of the current suffix, and the current suffix, respectively. A data record storage unit that stores the data record of the value output by the suffix management unit in the file, and a search request that specifies a key value for a data record that is not logically deleted from the application program is output. In this case, the file is searched by a search key having the primary key value as the key value designated by the application program and the suffix value as its initial value, so that the application program is stored in the primary key from the file. A data record search means for searching for a data record which is not logically deleted and has a key value designated by the RAM and whose initial value is set in the suffix.
【0010】また、本発明は、論理削除済みのデータレ
コードの再利用を可能にするという目的を達成するた
め、前記データレコード検索手段は、前記アプリケーシ
ョンプログラムから論理削除済みデータレコードを検索
対象とする、キー値を指定した検索要求が出力されるこ
とにより、各回の検索毎に、主キーの値を前記アプリケ
ーションプログラムが指定したキー値とした検索キー中
のサフィックスの値を変更して前記ファイルを検索し、
前記ファイルから、主キーに前記アプリケーションプロ
グラムが指定したキー値が設定されている論理削除済み
のデータレコードを検索する。According to the present invention, in order to achieve the object of enabling reuse of a logically deleted data record, the data record search means searches for a logically deleted data record from the application program. By outputting a search request specifying a key value, the value of the suffix in the search key is changed with the primary key value as the key value specified by the application program for each search, and the file is changed. Search and
The file is searched for a logically deleted data record in which the key value specified by the application program is set as the primary key.
【0011】更に、本発明は、ファイル容量が不足した
場合、不要なデータレコードを削除できるようにすると
いう目的を達成するため、前記アプリケーションプログ
ラムからの物理削除要求に応答して、前記ファイルから
物理削除要求されたデータレコードを物理的に削除する
データレコード物理削除手段を備えたものである。Further, according to the present invention, in order to achieve the object of enabling unnecessary data records to be deleted when the file capacity becomes insufficient, a physical deletion request is issued from the file in response to a physical deletion request from the application program. A data record physical deletion means for physically deleting the data record requested to be deleted is provided.
【0012】[0012]
【作用】ファイル中のデータレコードのキー項目は、ア
プリケーションプログラムが意識しているキーに対応す
る主キーと、主キーの値が同一のデータレコードのキー
値をユニークなものにするためのサフィックスとから構
成されている。また、データレコードは、主キーが同一
のデータレコードの内の格納順を示すカレントサフィッ
クス及び論理削除済みか否かを示す論理削除情報を有し
ている。The key items of the data record in the file are the primary key corresponding to the key that the application program is aware of, and the suffix to make the key value of the data record with the same primary key unique. It is composed of Further, the data record has a current suffix indicating the storage order of the primary keys in the same data record and logical deletion information indicating whether or not the logical key has been logically deleted.
【0013】アプリケーションプログラムからキー値を
指定した論理削除要求が出力された場合は、データレコ
ード論理削除手段が、主キーにアプリケーションプログ
ラムが指定したキー値が設定され、且つサフィックスに
その初期値が設定されているデータレコードの論理削除
情報を論理削除済みを示すものに変更する。When a logical deletion request specifying a key value is output from the application program, the data record logical deletion means sets the primary key to the key value specified by the application program and sets the suffix to the initial value. The logical deletion information of the data record being deleted is changed to information indicating that logical deletion has been completed.
【0014】アプリケーションプログラムからデータレ
コードの格納要求が出力された場合は、主キーに、アプ
リケーションプログラムが上記データレコードのキー値
として意識しているキー値が設定され、且つサフィック
スにその初期値が設定されている論理削除済みのデータ
レコードがファイル中に存在すれば、サフィックス管理
手段が上記データレコードのカレントサフィックスの値
に基づいて同データレコードのサフィックスの値を変更
すると共に、変更後のサフィックスの値を出力し、存在
しなければ、サフィックス管理手段がカレントサフィッ
クスの初期値を出力する。When a data record storage request is output from the application program, the key value that the application program is aware of as the key value of the data record is set as the primary key, and the initial value is set as the suffix. If the logically deleted data record is present in the file, the suffix management means changes the suffix value of the data record based on the current suffix value of the data record and the suffix value after the change. Is output, and if not, the suffix management means outputs the initial value of the current suffix.
【0015】そして、サフィックス管理手段から値が出
力されると、データレコード格納手段が、アプリケーシ
ョンプログラムがファイルに格納しようとしているデー
タレコードを、主キー,サフィックス及びカレントサフ
ィックスの値がそれぞれアプリケーションプログラムが
意識しているキー値,カレントサフィックスの初期値及
びサフィックス管理手段が出力した値のデータレコード
としてファイルに格納する。When the value is output from the suffix management means, the data record storage means recognizes the data record which the application program is going to store in the file, with the values of the primary key, suffix, and current suffix being recognized by the application program. The key value, the initial value of the current suffix, and the value output by the suffix management means are stored in a file as a data record.
【0016】アプリケーションプログラムから論理削除
されていないデータレコードを検索対象とする、キー値
を指定した検索要求が出力された場合は、データレコー
ド検索手段が、主キーの値をアプリケーションプログラ
ムが指定したキー値、サフィックスの値をその初期値と
した検索キーによってファイルを検索する。また、論理
削除済みデータレコードを検索対象とする、キー値を指
定した検索要求が出力された場合は、データレコード検
索手段が、各回の検索毎に、主キーの値をアプリケーシ
ョンプログラムが指定したキー値とした検索キー中のサ
フィックスの値を変更してファイルを検索する。When a search request specifying a key value for outputting a data record that has not been logically deleted from the application program is output, the data record search means sets the primary key value to the key specified by the application program. The file is searched using the search key with the value and suffix value as its initial values. In addition, when a search request specifying a key value is output to search for a logically deleted data record, the data record search unit sets the value of the primary key to the key specified by the application program for each search. Change the value of the suffix in the search key as the value and search for the file.
【0017】アプリケーションプログラムから物理削除
要求があった場合はデータレコード物理削除手段が、物
理削除要求されたデータレコードを物理的に削除する。When a physical deletion request is issued from the application program, the data record physical deletion means physically deletes the data record requested to be physically deleted.
【0018】[0018]
【実施例】次に本発明の実施例について図面を参照して
詳細に説明する。DETAILED DESCRIPTION OF THE PREFERRED EMBODIMENTS Next, embodiments of the present invention will be described in detail with reference to the drawings.
【0019】図1は本発明の実施例のブロック図であ
り、ファイル管理システム1と、ファイル2と、アプリ
ケーションプログラム3とから構成されている。FIG. 1 is a block diagram of an embodiment of the present invention, which comprises a file management system 1, a file 2, and an application program 3.
【0020】ファイル2に格納されているデータレコー
ドは、識別情報21と、主キー22と、サフィックス2
3と、カレントサフィックス24と、データ25とを有
している。The data records stored in file 2 are identification information 21, primary key 22, suffix 2
3, a current suffix 24, and data 25.
【0021】識別情報21は、データレコードが論理削
除済みか否かを示す論理削除情報と、データレコードの
格納時点とを含んでいる。The identification information 21 includes logical deletion information indicating whether the data record has been logically deleted, and the storage time of the data record.
【0022】主キー22,サフィックス23はキー項目
であり、主キー22はアプリケーションプログラム3が
意識しているキー値に対応し、サフィックス23は主キ
ー22の値が同一のデータレコードのキー値をユニーク
なものにするための項目である。The primary key 22 and the suffix 23 are key items. The primary key 22 corresponds to a key value recognized by the application program 3, and the suffix 23 represents a key value of a data record having the same primary key 22 value. It is an item to make it unique.
【0023】カレントサフィックス24は、サフィック
スの値を決定するために使用する項目であり、主キーが
同一のデータレコードの内の格納順を示す。The current suffix 24 is an item used to determine the value of the suffix, and indicates the storage order of data records having the same primary key.
【0024】ファイル管理システム1は、ファイル2中
のデータレコードのキー値の重複を許さないシステムで
あり、データレコード論理削除手段11と、データレコ
ード物理削除手段12と、データレコード検索手段13
と、サフィックス管理手段14と、データレコード格納
手段15と、指示識別情報部16と、キー部17と、サ
フィックス部18とから構成されている。The file management system 1 is a system which does not allow duplication of key values of data records in the file 2, and includes a data record logical deletion unit 11, a data record physical deletion unit 12, and a data record search unit 13.
, A suffix management unit 14, a data record storage unit 15, an instruction identification information unit 16, a key unit 17, and a suffix unit 18.
【0025】データレコード論理削除手段11は、アプ
リケーションプログラム3から位置情報が渡されること
により、その位置情報によって示されるファイル2中の
データレコードの識別情報21に含まれている論理削除
情報を論理削除済みを示す「DELETE」に変更する
機能等を有する。When the position information is passed from the application program 3, the data record logical deletion means 11 logically deletes the logical deletion information included in the identification information 21 of the data record in the file 2 indicated by the position information. It has a function of changing to “DELETE” indicating that the processing has been completed.
【0026】データレコード物理削除手段12は、アプ
リケーションプログラム3から位置情報が渡されること
により、その位置情報によって示されるファイル2中の
データレコードを物理的に削除する機能を有する。The data record physical deletion means 12 has a function of physically deleting a data record in the file 2 indicated by the position information when the position information is passed from the application program 3.
【0027】データレコード検索手段13は、キー部1
7,サフィックス部18に設定された値を検索キー値に
してファイル2を検索する機能等を有する。The data record search means 13 includes a key unit 1
7. It has a function of searching the file 2 using the value set in the suffix part 18 as a search key value.
【0028】サフィックス管理手段14は、サフィック
ス部18にサフィックス23の初期値を設定する機能,
データレコードの格納時、データレコード格納手段15
に対して今回格納するデータレコードのサフィックス2
3,カレントサフィックス24に設定する値を通知する
機能,データレコードの格納時、論理削除済みのデータ
レコードであって、且つそのデータレコードの、アプリ
ケーションプログラム3が意識しているキー値が、今回
格納しようとしているデータレコードのアプリケーショ
ンプログラム3が意識しているキー値と同一のデータレ
コードに対してサフィックス23の値の変更処理を行な
う機能等を有する。The suffix management means 14 has a function of setting an initial value of the suffix 23 in the suffix part 18,
When storing data records, the data record storage means 15
Suffix 2 of the data record to be stored this time
3. A function of notifying a value to be set in the current suffix 24. When storing a data record, the key value which is the data record which has been logically deleted and which the application program 3 is aware of in the data record is stored this time. It has a function to change the value of the suffix 23 for the same data record as the key value that the application program 3 of the data record to be intended is aware of.
【0029】データレコード格納手段15は、データレ
コードの格納時、アプリケーションプログラム3が格納
要求しているデータレコードにサフィックス23,カレ
ントサフィックス24の項目を追加し、追加したサフィ
ックス23,カレントサフィックス24にサフィックス
管理手段14から渡された値を設定してファイル2に格
納する機能等を有する。When storing the data record, the data record storage means 15 adds the items of the suffix 23 and the current suffix 24 to the data record requested to be stored by the application program 3, and adds the suffix to the added suffix 23 and the current suffix 24. It has a function of setting a value passed from the management unit 14 and storing the value in the file 2.
【0030】図2はデータレコード論理削除手段11の
処理例を示す流れ図、図3はデータレコード物理削除手
段12の処理例を示す流れ図、図4,図5はデータレコ
ード検索手段13の処理例を示す流れ図、図6はデータ
レコード格納手段15の処理例を示す流れ図、図7はサ
フィックス管理手段14の処理例を示す流れ図であり、
以下各図を参照して本実施例の動作を説明する。FIG. 2 is a flowchart showing a processing example of the data record logical deletion means 11, FIG. 3 is a flowchart showing a processing example of the data record physical deletion means 12, and FIGS. FIG. 6 is a flowchart showing a processing example of the data record storage means 15, and FIG. 7 is a flowchart showing a processing example of the suffix management means 14.
Hereinafter, the operation of this embodiment will be described with reference to the drawings.
【0031】先ず、ファイル2にデータレコードを格納
する場合の動作を説明する。First, the operation for storing a data record in the file 2 will be described.
【0032】アプリケーションプログラム3は、ファイ
ル2にデータレコードを格納する場合、データレコード
格納手段15に、格納しようとするデータレコードを渡
す。アプリケーションプログラム3がデータレコード格
納手段15に渡すデータレコードは、図8に示すよう
に、識別情報と、キーと、データとを有している。ここ
で、識別情報はファイル2に格納されているデータレコ
ードの識別情報21に、キーは主キー22に、データは
データ25に対応している。When storing a data record in the file 2, the application program 3 passes the data record to be stored to the data record storage unit 15. The data record passed by the application program 3 to the data record storage means 15 has identification information, a key, and data, as shown in FIG. Here, the identification information corresponds to the identification information 21 of the data record stored in the file 2, the key corresponds to the primary key 22, and the data corresponds to the data 25.
【0033】データレコード格納手段15は、アプリケ
ーションプログラム3からデータレコードが渡される
と、図6の流れ図に示すように、アプリケーションプロ
グラム3から渡されたデータレコードに設定されている
キー値(ABCとする)をサフィックス管理手段14に
渡す (ステップS51)。When the data record is passed from the application program 3, the data record storage means 15 sets the key value (ABC) set in the data record passed from the application program 3 as shown in the flowchart of FIG. ) Is passed to the suffix management means 14 (step S51).
【0034】サフィックス管理手段14は、データレコ
ード格納手段15からキー値「ABC」が渡されると、
図7の流れ図に示すように、ファイル2を検索して主キ
ー22に「ABC」が設定され、且つサフィックス23
にその初期値(本実施例では「0000」とする)が設
定されているデータレコードを探し出す (ステップS6
1)。When the key value "ABC" is passed from the data record storage means 15, the suffix management means 14
As shown in the flowchart of FIG. 7, the file 2 is searched and “ABC” is set in the primary key 22 and the suffix 23
A data record in which the initial value ("0000" in this embodiment) is set is searched for (step S6).
1).
【0035】そして、探し出せなかった場合 (ステップ
S62がNO)は、サフィックスの初期値「0000」
及びカレントサフィックスの初期値(本実施例では「0
000」とする)をそれぞれ今回格納するデータレコー
ドのサフィックス23,カレントサフィックス24に設
定する値としてデータレコード格納手段15に渡す (ス
テップS63)。If the suffix cannot be found (NO in step S62), the initial value of the suffix is "0000".
And the initial value of the current suffix (in this embodiment, “0”
000 ") are passed to the data record storage means 15 as values to be set in the suffix 23 and the current suffix 24 of the data record to be stored this time (step S63).
【0036】また、探し出せた場合(ステップS62が
YES)は、探し出したデータレコードが論理削除済み
のものであるか否かを識別情報21中の論理削除情報に
基づいて判断する (ステップS64)。If the data record is found (YES in step S62), it is determined whether the found data record has been logically deleted based on the logical deletion information in the identification information 21 (step S64).
【0037】そして、削除済みでないと判断した場合
(ステップS64がNO)は、データレコード格納手段
15に対してエラー通知を行ない (ステップS67)、
論理削除済みであると判断した場合 (ステップS64が
YES)は、サフィックスの初期値「0000」と、探
し出したデータレコードのカレントサフィックス24に
設定されている値を+1した値とをそれぞれ今回格納す
るデータレコードのサフィックス23,カレントサフィ
ックス24に設定する値としてデータレコード格納手段
15に渡し (ステップS65)、その後、ステップS6
1で探し出したデータレコード中のサフィックスに、同
データレコードのカレントサフィックスに設定されてい
る値を+1した値を設定する (ステップS66)。When it is determined that the data has not been deleted
(No in step S64), an error notification is sent to the data record storage means 15 (step S67).
If it is determined that the logical deletion has been completed (YES in step S64), the initial value of the suffix “0000” and the value obtained by adding +1 to the value set in the current suffix 24 of the found data record are stored this time. The data record suffix 23 and the current suffix 24 are passed to the data record storage unit 15 as values to be set in the data record storage unit 15 (step S65).
A value obtained by adding +1 to the value set in the current suffix of the data record is set as the suffix in the data record found in step 1 (step S66).
【0038】データレコード格納手段15は、サフィッ
クス管理手段14からエラー通知を受けた場合 (図6,
ステップS52がYES)は、アプリケーションプログ
ラム3に対してエラー通知を行なう (ステップS5
5)。The data record storage means 15 receives an error notification from the suffix management means 14 (FIG. 6,
If step S52 is YES), an error notification is sent to application program 3 (step S5).
5).
【0039】また、データレコード格納手段15は、サ
フィックス管理手段14からサフィックス23,カレン
トサフィックス24に設定する値が渡された場合 (ステ
ップS52がNO)は、格納要求されているデータレコ
ードにサフィックス23,カレントサフィックス24の
項目を追加し、追加したサフィックス23,カレントサ
フィックス24にサフィックス管理手段14から渡され
た値を設定する (ステップS53)。その後、データレ
コード格納手段15は、サフィックス23,カレントサ
フィックス24に値を設定したデータレコードをファイ
ル2に格納する(ステップS54)。When the values set in the suffix 23 and the current suffix 24 are passed from the suffix management means 14 (NO in step S52), the data record storage means 15 stores the suffix 23 in the data record requested to be stored. , Current suffix 24, and the value passed from the suffix management unit 14 is set to the added suffix 23 and current suffix 24 (step S53). After that, the data record storage unit 15 stores the data record in which the values are set in the suffix 23 and the current suffix 24 in the file 2 (step S54).
【0040】従って、今、例えば、ファイル2に主キー
22が「ABC」のデータレコードが格納されていない
とすると、アプリケーションプログラム3がキー値「A
BC」のデータレコードをデータレコード格納手段15
に渡すことにより、ファイル2には、図9に示すよう
に、主キー=ABC,サフィックス=0000,カレン
トサフィックス=0000のデータレコードL1が格納
されることになる。Therefore, if the data record whose primary key 22 is "ABC" is not stored in the file 2, for example, the application program 3 sets the key value "A
BC ”data record stored in the data record storage unit 15.
9, the data record L1 with the primary key = ABC, the suffix = 0000, and the current suffix = 0000 is stored in the file 2 as shown in FIG.
【0041】次に、ファイル2に格納されているデータ
レコードを論理削除する場合の動作を説明する。Next, the operation for logically deleting the data record stored in the file 2 will be described.
【0042】アプリケーションプログラム3は、ファイ
ル2に格納されているデータレコードを論理削除する場
合、先ず、指示識別情報部16に論理削除を要求する情
報を格納すると共に、キー部17に論理削除するデータ
レコードのアプリケーションプログラム3が意識してい
るキー値(ファイル2に格納されているデータレコード
の主キー22に対応する)を格納し、その後、データレ
コード検索手段13を起動する。When logically deleting a data record stored in the file 2, the application program 3 first stores information requesting logical deletion in the instruction identification information section 16 and stores data to be logically deleted in the key section 17. The key value (corresponding to the primary key 22 of the data record stored in the file 2) that the application program 3 of the record is aware of is stored, and then the data record search means 13 is started.
【0043】データレコード検索手段13は、起動され
ると、図4の流れ図に示すように、サフィックス管理手
段14に対してサフィックスの初期値「0000」をサ
フィックス部18に設定することを依頼する (ステップ
S21)。これにより、サフィックス管理手段14は、
サフィックスの初期値「0000」をサフィックス部1
8に設定する。When activated, the data record search means 13 requests the suffix management means 14 to set the suffix initial value "0000" in the suffix part 18, as shown in the flowchart of FIG. Step S21). As a result, the suffix management unit 14
Initial value of suffix "0000" is suffix part 1
Set to 8.
【0044】次いで、データレコード検索手段13は、
指示識別情報部16を参照し、論理削除が要求されてい
るのか、物理削除が要求されているのか、論理削除され
ていないデータレコードを検索対象とする検索が要求さ
れているのか、論理削除済みデータレコードを検索対象
とする検索が要求されているのかを判断する (図4のス
テップS22,S27及び図5のステップS37)。Next, the data record search means 13
Referring to the instruction identification information section 16, whether logical deletion has been requested, whether physical deletion has been requested, whether a search for a data record that has not been logically deleted is requested, or whether logical deletion has been completed. It is determined whether a search for a data record as a search target is requested (steps S22 and S27 in FIG. 4 and step S37 in FIG. 5).
【0045】この時、指示識別情報部16には論理削除
を要求する情報が格納されているので、ステップS22
の判断結果がYESとなり、データレコード検索手段1
3は、ステップS23の処理を行なう。At this time, since information for requesting logical deletion is stored in the instruction identification information section 16, step S22 is performed.
Is YES, the data record search means 1
3 performs the process of step S23.
【0046】ステップS23では、データレコード検索
手段13は、キー部17,サフィックス部18に設定さ
れている値を検索キーにしてファイル2を検索する。In step S23, the data record search means 13 searches the file 2 using the values set in the key portion 17 and the suffix portion 18 as search keys.
【0047】そして、データレコードを検索できた場合
(ステップS24がYES)は、検索したデータレコー
ドの位置情報をアプリケーションプログラム3に通知す
る (ステップS25)。また、検索できなかった場合
(ステップS24がNO)は、アプリケーションプログ
ラム3にエラー通知を行なう (ステップS26)。When the data record can be searched
(YES in step S24) notifies the application program 3 of the position information of the searched data record (step S25). Also, if the search failed
(Step S24 is NO) If an error is notified to the application program 3 (step S26).
【0048】アプリケーションプログラム3は、データ
レコード検索手段13からデータレコードの位置情報が
通知された場合は、データレコード論理削除手段11,
データレコード物理削除手段12に位置情報を通知し、
エラー通知を受けた場合は、エラー表示等を行なう。When the position information of the data record is notified from the data record search means 13, the application program 3 sends the data record logical deletion means 11,
Notifying the data record physical deletion means 12 of the position information,
When an error notification is received, an error display or the like is performed.
【0049】データレコード論理削除手段11,データ
レコード物理削除手段12は、アプリケーションプログ
ラム3から位置情報が渡されると、それぞれ図2,図3
の流れ図に示す処理を行なう。When the position information is passed from the application program 3, the data record logical deletion means 11 and the data record physical deletion means 12
The processing shown in the flowchart of FIG.
【0050】データレコード論理削除手段11は、図2
に示すように、アプリケーションプログラム3から位置
情報が渡されると、指示識別情報部16を参照して論理
削除が要求されているか否かをを判断し (ステップS
1)、論理削除が要求されていると判断した場合 (ステ
ップS1がYES)は、アプリケーションプログラム3
から渡された位置情報によって示されるデータレコード
の識別情報に含まれている論理削除情報を「DELET
E」に変更してそのデータレコードを論理的に削除す
る。また、論理削除が要求されていないと判断した場合
(ステップS1がNO)は、その処理を終了する。The data record logical deletion means 11 is the same as that shown in FIG.
As shown in (1), when the position information is passed from the application program 3, it is determined whether or not a logical deletion is requested by referring to the instruction identification information section 16 (step S5).
1) If it is determined that the logical deletion is requested (step S1 is YES), the application program 3
The logical deletion information included in the identification information of the data record indicated by the position information passed from
E "and logically delete the data record. Also, if it is determined that logical deletion has not been requested
(No in step S1), the process ends.
【0051】一方、データレコード物理削除手段12
は、アプリケーションプログラム3から位置情報が渡さ
れると、図3の流れ図に示すように、指示識別情報部1
6を参照して物理削除が要求されているか否かを判断し
(ステップS11)、物理削除が要求されていると判断
した場合 (ステップS11がYES)は、アプリケーシ
ョンプログラム3から通知された位置情報によって示さ
れるデータレコードをファイル2から物理的に削除す
る。また、物理削除が指示されていないと判断した場合
(ステップS11がNO)は、その処理を終了する。On the other hand, the data record physical deletion means 12
When the position information is passed from the application program 3, as shown in the flow chart of FIG.
6 to determine whether physical deletion has been requested.
(Step S11) If it is determined that the physical deletion is requested (Step S11 is YES), the data record indicated by the position information notified from the application program 3 is physically deleted from the file 2. Also, when it is determined that physical deletion has not been instructed
If (step S11 is NO), the process ends.
【0052】この時、指示識別情報部16には、論理削
除を要求する情報が格納されているので、データレコー
ド論理削除手段11が、アプリケーションプログラム3
から渡された位置情報が示すデータレコード中の識別情
報に含まれている論理削除情報を「DELETE」にす
る処理を行なうことになる。At this time, since the information for requesting the logical deletion is stored in the instruction identification information section 16, the data record logical deleting means 11
The logical deletion information included in the identification information in the data record indicated by the position information passed from the server is changed to “DELETE”.
【0053】従って、今、例えば、図9に示すように、
ファイル2に論理削除されていないデータレコードL1
が格納されている時に、アプリケーションプログラム3
が、このデータレコードL1を論理削除しようとして、
指示識別情報部16に論理削除を要求する情報を設定
し、キー部17にアプリケーションプログラム3が意識
しているデータレコードL1のキー値「ABC」を設定
し、データレコード検索手段13を起動したとすると、
以下の処理が行なわれることになる。Therefore, now, for example, as shown in FIG.
Data record L1 not logically deleted in file 2
Is stored in the application program 3
Tries to logically delete this data record L1,
It is assumed that information for requesting logical deletion is set in the instruction identification information section 16, the key value “ABC” of the data record L 1, which is conscious of the application program 3, is set in the key section 17, and the data record search means 13 is started. Then
The following processing will be performed.
【0054】データレコード検索手段13は、アプリケ
ーションプログラム3から起動されると、サフィックス
管理手段14に対してサフィックス部18にサフィック
スの初期値を設定することを依頼し (図4,ステップS
21)、サフィックス管理手段14が初期値「000
0」をサフィックス部18に設定すると、キー部17,
サフィックス部18に設定されているキー値「ABC0
000」を検索キーにしてファイル2を検索する (ステ
ップS23)。これにより、データレコード検索手段1
3は、主キー22に「ABC」が設定され、且つサフィ
ックス23に「0000」が設定されているデータレコ
ードL1を探し出し、その位置情報をアプリケーション
プログラム3に通知する (ステップS24,S25)。When started from the application program 3, the data record search means 13 requests the suffix management means 14 to set the initial value of the suffix in the suffix part 18 (FIG. 4, step S).
21), the suffix management means 14 sets the initial value “000”
When "0" is set in the suffix part 18, the key part 17,
The key value “ABC0” set in the suffix part 18
The file 2 is searched using “000” as a search key (step S23). Thereby, the data record search means 1
3 finds a data record L1 in which "ABC" is set in the primary key 22 and "0000" is set in the suffix 23, and notifies the application program 3 of the position information (steps S24 and S25).
【0055】アプリケーションプログラム3は、データ
レコードL1の位置情報が通知されると、データレコー
ド論理削除手段11,データレコード物理削除手段12
に位置情報を渡す。When the application program 3 is notified of the position information of the data record L1, the data record logical deleting means 11 and the data record physical deleting means 12
Pass the location information to.
【0056】これにより、データレコード論理削除手段
11が、アプリケーションプログラム3から渡された位
置情報によって示されるデータレコードL1の識別情報
21中の論理削除情報を「DELETL」に変更する
(図2,ステップS2)。この結果、データレコードL
1は図10図に示すものとなる。尚、斜線は、データレ
コードが論理削除されていることを示している。As a result, the data record logical deletion means 11 changes the logical deletion information in the identification information 21 of the data record L1 indicated by the position information passed from the application program 3 to "DELETE" (FIG. 2, step S2). As a result, the data record L
1 is as shown in FIG. The hatched lines indicate that the data record has been logically deleted.
【0057】図11は、ファイル2の内容が図10に示
すものである時に、アプリケーションプログラム3が、
キー値が「ABC」のデータレコードの格納を要求し、
この要求に従ってデータレコードL2を格納した時のフ
ァイル2の内容を示した図である。FIG. 11 shows that when the content of the file 2 is as shown in FIG.
Request storage of a data record whose key value is "ABC",
FIG. 9 is a diagram showing the contents of file 2 when data record L2 is stored in accordance with this request.
【0058】即ち、キー値が「ABC」のデータレコー
ドの格納が要求されると、データレコード格納手段15
が、キー値「ABC」をサフィックス管理手段14に渡
し(図6,ステップS51)、サフィックス管理手段1
4が、主キー22=ABC,サフィックス23=000
0の論理削除済みのデータレコードL1を探し出す(図
7,ステップS61,S62,S64)。その後、サフ
ィックス管理手段14がサフィックス23の初期値「0
000」と、探し出したデータレコードL1のカレント
サフィックス24に設定されている値「0000」を+
1した値「0001」とをデータレコード格納手段15
に渡して主キー22=ABC,サフィックス23=00
00,カレントサフィックス24=0001のデータレ
コードL2をファイルに格納させ (図7のステップS6
5,図6のステップS53,S54)、更に、探し出し
たデータレコードL1中のサフィックス23に「000
1」を設定する (図7,ステップS66)。従って、フ
ァイル2の内容は、図11に示すものとなる。That is, when the storage of the data record whose key value is “ABC” is requested, the data record storage means 15
Passes the key value “ABC” to the suffix management means 14 (FIG. 6, step S51), and
4 is the primary key 22 = ABC, suffix 23 = 000
A logically deleted data record L1 of 0 is searched for (FIG. 7, steps S61, S62, S64). Thereafter, the suffix management unit 14 sets the initial value “0
000 ”and the value“ 0000 ”set in the current suffix 24 of the found data record L1 by +
The data record storage means 15 stores the value "0001" which is set to "1".
To the primary key 22 = ABC, suffix 23 = 00
00, the data record L2 having the current suffix 24 = 0001 is stored in the file (step S6 in FIG. 7).
5, steps S53 and S54 in FIG. 6), and further, “000” is added to the suffix 23 in the found data record L1.
"1" is set (FIG. 7, step S66). Therefore, the contents of the file 2 are as shown in FIG.
【0059】図12は、ファイル2の内容が図11に示
すものである時に、アプリケーションプログラム3か
ら、キー値が「ABC」のデータレコードの論理削除を
要求され、その要求に従ってデータレコードの論理削除
を行なった時のファイル2の内容を示した図である。FIG. 12 shows that when the contents of the file 2 are as shown in FIG. 11, the application program 3 requests the logical deletion of the data record whose key value is "ABC", and the logical deletion of the data record is performed according to the request. FIG. 7 is a diagram showing the contents of file 2 when the above-mentioned is performed.
【0060】即ち、キー値が「ABC」のデータレコー
ドの論理削除が要求されると、データレコード検索手段
13が、主キー22=ABC,サフィックス23=00
00のデータレコードL2を検索し、データレコードL
2の位置情報をアプリケーションプログラム3に通知す
る(図4,ステップS21〜S25)。その後、アプリ
ケーションプログラム3がデータレコードL2の位置情
報をデータレコード論理削除手段11に渡し、データレ
コード論理削除手段11が位置情報によって示されるデ
ータレコードL2中の論理削除情報を「DELETE」
にする (図2のステップS1,S2)。従って、ファイ
ル2の内容は、図12に示すものとなる。That is, when a logical deletion of a data record whose key value is “ABC” is requested, the data record search means 13 sets the primary key 22 = ABC and the suffix 23 = 00.
00 is searched for the data record L2.
The second position information is notified to the application program 3 (FIG. 4, steps S21 to S25). Thereafter, the application program 3 passes the position information of the data record L2 to the data record logical deletion unit 11, and the data record logical deletion unit 11 changes the logical deletion information in the data record L2 indicated by the position information to “DELETE”.
(Steps S1 and S2 in FIG. 2). Therefore, the contents of the file 2 are as shown in FIG.
【0061】図13は、ファイル2の内容が図12に示
すものである時に、アプリケーションプログラム3が、
キー値が「ABC」のデータレコードの格納を要求し、
この要求に従ってデータレコードL3を格納した時のフ
ァイル2の内容を示した図である。FIG. 13 shows that when the content of the file 2 is as shown in FIG.
Request storage of a data record whose key value is "ABC",
FIG. 9 is a diagram showing the contents of file 2 when data record L3 is stored in accordance with this request.
【0062】即ち、キー値が「ABC」のデータレコー
ドの格納が要求されると、データレコード格納手段15
がキー値「ABC」をサフィックス管理手段14に渡し
(図6,ステップS51)、サフィックス管理手段14
が、主キー22=ABC,サフィックス23=0000
の論理削除済みのデータレコードL2を探し出す(図7
のステップS61,S62,S64)。その後、サフィ
ックス管理手段14が、サフィックスの初期値「000
0」と、探し出したデータレコードL2のカレントサフ
ィックス24に設定されている値「0001」を+1し
た値「0002」とをデータレコード格納手段15に渡
して主キー22=ABC,サフィックス23=000
0,カレントサフィックス24=0002のデータレコ
ードL3をファイル2に格納させ (図7のステップS6
5,図6のステップS53,S54)、更に、探し出し
たデータレコードL2中のサフィックス23に「000
2」を設定する (図7,ステップS66)。従って、フ
ァイル2の内容は、図13に示すものとなる。That is, when storage of a data record whose key value is “ABC” is requested, the data record storage means 15
Passes the key value “ABC” to the suffix management means 14 (FIG. 6, step S51),
But primary key 22 = ABC, suffix 23 = 0000
Of the logically deleted data record L2 (FIG. 7)
Steps S61, S62, S64). Thereafter, the suffix management unit 14 sets the initial value of the suffix “000”.
"0" and the value "0002" obtained by adding +1 to the value "0001" set in the current suffix 24 of the found data record L2 to the data record storage means 15, and the primary key 22 = ABC and the suffix 23 = 000.
0, the data record L3 having the current suffix 24 = 0002 is stored in the file 2 (step S6 in FIG. 7).
5, steps S53 and S54 in FIG. 6, and further, “000” is added to the suffix 23 in the found data record L2.
2 is set (FIG. 7, step S66). Accordingly, the contents of the file 2 are as shown in FIG.
【0063】次に、論理削除されていないデータレコー
ドを検索対象として検索を行なう場合の動作を説明す
る。Next, a description will be given of an operation in a case where a search is performed with a data record that has not been logically deleted as a search target.
【0064】アプリケーションプログラム3は、論理削
除されていないデータレコードを検索対象とする検索を
要求する場合、指示識別情報部16に論理削除されてい
ないデータレコードを検索対象とする検索の実行を要求
する情報を設定すると共に、キー部17に検索しようと
するデータレコードのアプリケーションプログラム3が
意識しているキー値(例えば、「ABC」とする)を設
定し、その後、データレコード検索手段13を起動す
る。When the application program 3 requests a search for a data record that has not been logically deleted, it requests the instruction identification information section 16 to execute a search for a data record that has not been logically deleted. In addition to setting the information, the key unit 17 sets a key value (for example, “ABC”) conscious of the application program 3 of the data record to be searched, and then starts the data record search unit 13. .
【0065】データレコード検索手段13は、起動され
ると、サフィックスの初期値をサフィックス部18に設
定することをサフィックス管理手段14に依頼する (図
4,ステップS21)。これにより、サフィックス管理
手段14は、サフィックス部18にサフィックスの初期
値「0000」を設定する。When activated, the data record search means 13 requests the suffix management means 14 to set the initial value of the suffix in the suffix part 18 (FIG. 4, step S21). Thereby, the suffix management unit 14 sets the initial value of the suffix “0000” in the suffix part 18.
【0066】その後、データレコード検索手段13は、
指示識別情報部16に、論理削除済みでないデータレコ
ードを検索対象とする検索の実行を要求する情報が設定
されているので (図5,ステップS37がYES)、キ
ー部17,サフィックス部18に設定されているキー値
「ABC0000」を検索キーにしてファイル2を検索
する (ステップS38)。Thereafter, the data record search means 13
Since information for requesting execution of a search for a data record that has not been logically deleted is set in the instruction identification information section 16 (FIG. 5, step S37 is YES), the information is set in the key section 17 and the suffix section 18. The file 2 is searched using the entered key value "ABC0000" as a search key (step S38).
【0067】そして、検索できなかった場合 (ステップ
S39がNO)は、該当データレコードがないことをア
プリケーションプログラム3に通知する (ステップS4
2)。また、検索できた場合 (ステップS39がYE
S)は、検索したデータレコードが論理削除済みのデー
タレコードであるか否かを論理削除情報に基づいて判断
する (ステップS40)。If the search is not successful (NO in step S39), the application program 3 is notified that there is no corresponding data record (step S4).
2). If the search is successful (step S39 is YE
S) determines whether or not the retrieved data record is a logically deleted data record based on the logical deletion information (step S40).
【0068】そして、論理削除済みのデータレコードで
あると判断した場合 (ステップS40がYES)は、ア
プリケーションプログラム3に該当データレコードがな
いことを通知し (ステップS42)、論理削除済みデー
タレコードでないと判断した場合は検索結果をアプリケ
ーションプログラム3に通知する (ステップS41)。When it is determined that the data record is a logically deleted data record (YES in step S40), the application program 3 is notified that there is no corresponding data record (step S42). If determined, the search result is notified to the application program 3 (step S41).
【0069】今、例えば、ファイル2の内容が図13に
示すものである時に、アプリケーションプログラム3
が、指示識別情報部16に論理削除されていないデータ
レコードを検索対象とする検索の実行を要求する情報を
設定し、キー部17にキー値「ABC」を設定し、その
後、データレコード検索手段13を起動したとすると、
以下の処理が行なわれる。Now, for example, when the contents of the file 2 are as shown in FIG.
Sets information for requesting execution of a search for a data record that has not been logically deleted in the instruction identification information section 16, sets a key value “ABC” in the key section 17, and then sets the data record search means. If you start 13
The following processing is performed.
【0070】データレコード検索手段13は、起動され
ると、サフィックスの初期値をサフィックス部18に設
定することを依頼し (図4,ステップS21)、これに
より、サフィックス管理手段14は、サフィックス部1
8にサフィックスの初期値「0000」を設定する。When activated, the data record search means 13 requests to set the initial value of the suffix in the suffix part 18 (FIG. 4, step S21).
8 is set to the initial value of the suffix “0000”.
【0071】その後、データレコード検索手段13は、
指示識別情報部16に論理削除されていないデータレコ
ードを検索対象とする検索の実行を要求する情報が設定
されているので (図5,ステップS37がYES)、キ
ー部17,サフィックス部18に設定されているキー値
「ABC0000」を検索キーにしてファイル2を検索
する(ステップS38)。この検索により、主キー22
=ABC,サフィックス23=0000の論理削除され
ていないデータレコードL3が探し出される。Thereafter, the data record search means 13
Since information for requesting the execution of a search for a data record that has not been logically deleted is set in the instruction identification information section 16 (FIG. 5, step S37 is YES), the information is set in the key section 17 and the suffix section 18. The file 2 is searched using the entered key value “ABC0000” as a search key (step S38). By this search, the primary key 22
= ABC, suffix 23 = 0000 and the logically undeleted data record L3 is found.
【0072】データレコード検索手段13は、論理削除
されていないデータレコードL3を探し出すと、データ
レコードL3の内容をアプリケーションプログラム3に
通知する (ステップS39〜S41)。When finding the data record L3 that has not been logically deleted, the data record search means 13 notifies the contents of the data record L3 to the application program 3 (steps S39 to S41).
【0073】次に、論理削除済みのデータレコードを検
索対象として検索を行なう場合の動作を説明する。Next, a description will be given of the operation in the case where a search is performed with the data record having been logically deleted as a search target.
【0074】アプリケーションプログラム3は、論理削
除済みのデータレコードを検索対象として検索を行なう
場合、指示識別情報部16に論理削除済みのデータレコ
ードを検索対象とする検索の実行を要求する情報を設定
すると共に、キー部17に検索しようとするデータレコ
ードのアプリケーションプログラム3が意識しているキ
ー値(例えば、「ABC」とする)を設定し、その後、
データレコード検索手段13を起動する。When the application program 3 performs a search using a data record whose logic has been deleted as a search target, the application program 3 sets in the instruction identification information section 16 information for requesting execution of a search with the data record whose logic has been deleted as a search target. At the same time, a key value (for example, “ABC”) conscious of the application program 3 of the data record to be searched is set in the key unit 17, and thereafter,
The data record search means 13 is started.
【0075】データレコード検索手段13は、起動され
ると、サフィックスの初期値をサフィックス部18に設
定することをサフィックス管理手段14に依頼する (図
4,ステップS21)。これにより、サフィックス管理
手段14は、サフィックス部18にサフィックスの初期
値「0000」を設定する。When activated, the data record search means 13 requests the suffix management means 14 to set the initial value of the suffix in the suffix part 18 (FIG. 4, step S21). Thereby, the suffix management unit 14 sets the initial value of the suffix “0000” in the suffix part 18.
【0076】その後、データレコード検索手段13は、
指示識別情報部16に論理削除済みのデータレコードを
検索対象とする検索の実行を要求する情報が設定されて
いるので (図5,ステップS37がNO)、キー部1
7,サフィックス部18に設定されているキー値「AB
C0000」を検索キーにしてファイル2を検索する
(ステップS43)。Thereafter, the data record search means 13
Since the information for requesting the execution of the search for the data record whose logical deletion has been made is set in the instruction identification information section 16 (FIG. 5, step S37 is NO), the key section 1 is set.
7. The key value “AB” set in the suffix
Search for file 2 using "C0000" as a search key
(Step S43).
【0077】そして、検索できなかった場合 (ステップ
S44がNO)は、該当データレコードがないことをア
プリケーションプログラム3に通知する (ステップS4
2)。また、検索できた場合 (ステップS44がYE
S)は、検索したデータレコードが論理削除済みのデー
タレコードであるか否かを論理削除情報に基づいて判断
する (ステップS45)。If the search is not successful (NO in step S44), the application program 3 is notified that there is no corresponding data record (step S4).
2). If the search is successful (step S44 is YE
S) determines whether or not the retrieved data record is a logically deleted data record based on the logical deletion information (step S45).
【0078】そして、論理削除済みのデータレコードで
ないと判断した場合 (ステップS45がNO)は、主キ
ー22がキー部17に設定されているキー値で、且つサ
フィックス23が今回検索したデータレコードのカレン
トサフィックス24に設定されている値のデータレコー
ドを検索する (ステップS47)。また、論理検索済み
のデータレコードであると判断した場合 (ステップS4
5がYES)は、検索結果をアプリケーションプログラ
ム3に通知した後 (ステップS46)、ステップS47
の処理を行なう。If it is determined that the data record is not a logically deleted data record (NO in step S45), the primary key 22 is the key value set in the key unit 17, and the suffix 23 is the data record of the data record searched this time. The data record of the value set in the current suffix 24 is searched (step S47). If it is determined that the data record has been subjected to the logical search (step S4
5 is YES), after notifying the search result to the application program 3 (step S46), and then step S47.
Is performed.
【0079】そして、ステップS47でデータレコード
を検索でき、且つそのデータレコードが未検索のデータ
レコードである場合 (ステップS48,S49がそれぞ
れYES,NO)は、ステップS46の処理に戻り、そ
うでない場合 (ステップS48がNO,ステップS49
がYES)は、検索終了をアプリケーションプログラム
3に通知した後 (ステップS50)、その処理を終了す
る。If the data record can be searched in step S47 and the data record is an unsearched data record (steps S48 and S49 are YES and NO, respectively), the process returns to step S46. (NO in step S48, step S49
Is YES), the application program 3 is notified of the end of the search (step S50), and the process is terminated.
【0080】今、例えば、ファイル2の内容が図13に
示すものである時に、アプリケーションプログラム3
が、指示識別情報部16に検索対象を論理削除済みのデ
ータレコードにすることを要求する情報を設定し、キー
部17にキー値「ABC」を設定し、その後、データレ
コード検索手段13を起動したとすると、以下の処理が
行なわれる。Now, for example, when the contents of the file 2 are as shown in FIG.
Sets the information requesting that the search target be a logically deleted data record in the instruction identification information section 16, sets the key value "ABC" in the key section 17, and then activates the data record search means 13. If so, the following processing is performed.
【0081】データレコード検索手段13は、起動され
ると、サフィックスの初期値をサフィックス部18に設
定することを依頼し (図4,ステップS21)、これに
より、サフィックス管理手段14が、サフィックス部1
8にサフィックスの初期値「0000」を設定する。When activated, the data record search means 13 requests that the initial value of the suffix be set in the suffix part 18 (step S21 in FIG. 4).
8 is set to the initial value of the suffix “0000”.
【0082】その後、データレコード検索手段13は、
指示識別情報部16に論理削除済みのデータレコードを
検索対象にした検索の実行を要求する情報が設定されて
いるので (図5,ステップS37がNO)、キー部1
7,サフィックス部18に設定されているキー値「AB
C0000」を検索キーにしてファイル2を検索する
(ステップS43)。この検索により、主キー22=A
BC,サフィックス23=0000のデータレコードL
3が探し出される。Thereafter, the data record search means 13
Since the information for requesting the execution of the search for the data record whose logic has been deleted is set in the instruction identification information section 16 (FIG. 5, step S37 is NO), the key section 1 is set.
7. The key value “AB” set in the suffix
The file 2 is searched using "C0000" as a search key (step S43). By this search, primary key 22 = A
Data record L with BC, suffix 23 = 0000
3 is found.
【0083】データレコードL3は、論理削除されてい
ないデータレコードであるので (ステップS45がN
O)、サフィックス管理手段14は、主キー22がキー
部17に設定されている値で、且つサフィックス23が
今回検索したデータレコードL3のカレントサフィック
ス24に設定されている値「0002」のデータレコー
ドを検索する (ステップS47)。Since the data record L3 is a data record that has not been logically deleted (N in step S45)
O), the suffix management means 14 determines that the primary key 22 is the value set in the key portion 17 and the suffix 23 is the data record of the value “0002” set in the current suffix 24 of the data record L3 searched this time. Is retrieved (step S47).
【0084】この検索により、未検索のデータレコード
L2が探し出されるので(ステップS48,S49がY
ES,NO)、サフィックス管理手段14は、データレ
コードL2の内容をアプリケーションプログラム3に通
知する (ステップS46)。By this search, an unsearched data record L2 is found (steps S48 and S49 are Y
(ES, NO), the suffix management means 14 notifies the contents of the data record L2 to the application program 3 (step S46).
【0085】その後、サフィックス管理手段14は、キ
ー部17に設定されているキー値が「ABC」,今回検
索したデータレコードL2のカレントサフィックス24
に設定されている値が「0001」であることから、主
キー22に「ABC」が設定され、且つサフィックス2
3に「0001」が設定されているデータレコードを検
索する (ステップS47)。Thereafter, the suffix management means 14 determines that the key value set in the key section 17 is "ABC" and the current suffix 24 of the data record L2 searched this time.
Is set to “0001”, “ABC” is set in the primary key 22 and the suffix 2
A data record in which "0001" is set to 3 is searched (step S47).
【0086】この検索により、未検索のデータレコード
L1が検索されるので (ステップS48,S49がYE
S,NO)、サフィックス管理手段14は、データレコ
ードの内容をアプリケーションプログラム3に通知する
(ステップS46)。As a result of this search, an unsearched data record L1 is searched (steps S48 and S49 are YE
(S, NO), the suffix management unit 14 notifies the application program 3 of the contents of the data record.
(Step S46).
【0087】その後、サフィックス管理手段14は、キ
ー部17に設定されているキー値が「ABC」,今回検
索したデータレコードL1のカレントサフィックス24
に設定されている値が「0000」であることから、主
キー22に「ABC」が設定され、且つサフィックス2
3に「0000」が設定されているデータレコードを検
索する (ステップS47)。Thereafter, the suffix management means 14 determines that the key value set in the key section 17 is “ABC” and the current suffix 24 of the data record L1 searched this time.
Is set to “0000”, “ABC” is set in the primary key 22 and the suffix 2
A data record in which “0000” is set in 3 is searched (step S47).
【0088】この検索により、データレコードL3が検
索されるが、データレコードL3は検索済みのデータレ
コードであるので (ステップS49がYES)、サフィ
ックス管理手段14は、検索終了をアプリケーションプ
ログラム3に通知した後 (ステップS50)、その処理
を終了する。By this search, the data record L3 is searched. Since the data record L3 is a searched data record (YES in step S49), the suffix management unit 14 notifies the application program 3 of the end of the search. Later (step S50), the process ends.
【0089】次に、データレコードをファイル2から物
理的に削除する場合の動作を説明する。Next, the operation for physically deleting a data record from the file 2 will be described.
【0090】アプリケーションプログラム3は、ファイ
ル2からデータレコードを物理的に削除する場合、先
ず、指示識別情報部16に物理削除を要求する情報及び
削除基準時点を格納すると共に、キー部17に物理削除
するデータレコードのアプリケーションプログラム3が
意識しているキー値(例えば、「ABC」とする)を設
定し、その後、データレコード検索手段13を起動す
る。When physically deleting a data record from the file 2, the application program 3 first stores the information for requesting physical deletion and the deletion reference time in the instruction identification information section 16, and stores the physical deletion in the key section 17. A key value (for example, “ABC”) that the application program 3 of the data record is aware of is set, and then the data record search unit 13 is started.
【0091】データレコード検索手段13は、起動され
ると、図4の流れ図に示すように、サフィックスの初期
値をサフィックス部18に設定することをサフィックス
管理手段14に依頼し (ステップS21)、これによ
り、サフィックス管理手段14がサフィックス部18に
サフィックスの初期値「0000」を設定する。When activated, the data record search means 13 requests the suffix management means 14 to set the initial value of the suffix in the suffix part 18 as shown in the flow chart of FIG. 4 (step S21). Accordingly, the suffix management unit 14 sets the initial value “0000” of the suffix in the suffix part 18.
【0092】その後、データレコード検索手段13は、
指示識別情報部16に物理削除を要求する情報が設定さ
れていることから (ステップS27がYES)、キー部
17,サフィックス部18に設定されているキー値「A
BC0000」を検索キーにしてファイル2を検索する
(ステップS28)。Thereafter, the data record search means 13
Since information for requesting physical deletion is set in the instruction identification information section 16 (YES in step S27), the key value “A” set in the key section 17 and the suffix section 18 is set.
Search for file 2 using "BC0000" as a search key
(Step S28).
【0093】そして、キー値が「ABC0000」のデ
ータレコードを検索できなかった場合は、アプリケーシ
ョンプログラム3にエラー通知を行ない (ステップS3
0)、検索できた場合は探し出したデータレコードの格
納時点が指示識別情報部16に格納されている削除基準
時点以前であるか否かを判断する (ステップS31)。If the data record with the key value "ABC0000" cannot be retrieved, an error notification is sent to the application program 3 (step S3).
0) If it is found, it is determined whether or not the storage time of the found data record is before the deletion reference time stored in the instruction identification information section 16 (step S31).
【0094】そして、格納時点が削除基準時点以前であ
ると判断した場合 (ステップS31がYES)は、アプ
リケーションプログラム3に検索したデータレコードの
位置情報を通知した後 (ステップS32)、主キーの値
がキー部17に設定されているキー値で、且つサフィッ
クス23の値が今回検索したデータレコードのカレント
サフィックス24に設定されているキー値のデータレコ
ードを検索し (ステップS33)、格納時点が削除基準
時点以後であると判断した場合 (ステップS31がN
O)は、ステップS33の処理を行なう。If it is determined that the storage time is before the deletion reference time (step S31 is YES), the application program 3 is notified of the location information of the searched data record (step S32), and then the value of the primary key is determined. Is a key value set in the key portion 17 and a data record having a key value set in the current suffix 24 of the data record whose suffix 23 is currently searched (step S33), and the storage time is deleted. When it is determined that it is after the reference time (step S31 is N
O) performs the process of step S33.
【0095】ステップS33で、データレコードを検索
できなかった場合 (ステップS34がNO)は、データ
レコード検索手段13は、検索終了をアプリケーション
プログラム3に通知した後 (ステップS36)、その処
理を終了し、検索できた場合(ステップS34がYE
S)は、検索したデータレコードが検索済みのデータレ
コードであるか否かを判断する (ステップS35)。If the data record cannot be retrieved in step S33 (NO in step S34), the data record retrieval means 13 notifies the application program 3 of the termination of the retrieval (step S36), and terminates the processing. , If the search is successful (step S34 is YE
S) determines whether or not the searched data record is a searched data record (step S35).
【0096】そして、検索済みのデータレコードである
と判断した場合 (ステップS35がYES)は、検索終
了をアプリケーションプログラム3に通知した後 (ステ
ップS36)、その処理を終了し、検索済みのデータレ
コードでないと判断した場合(ステップS35がNO)
は、ステップS31の処理を行なう。If it is determined that the data record has been searched (step S35: YES), the end of the search is notified to the application program 3 (step S36). If it is determined that it is not (NO in step S35)
Performs the process of step S31.
【0097】今、例えば、ファイル2の内容が図13に
示すものである時に、アプリケーションプログラム3
が、主キー22の値が「ABC」で、且つ格納時点が削
除基準時点α以前のデータレコードを物理削除しようと
して、指示識別情報部16に物理削除を指示する情報及
び削除基準時点αを格納すると共に、キー部17にキー
値「ABC」を格納し、その後データレコード検索手段
13を起動したとすると、以下の処理が行なわれること
になる。但し、図13に示したデータレコードL1〜L
3の内、データレコードL1の格納時点のみが基準時点
α以前であるとする。Now, for example, when the contents of the file 2 are as shown in FIG.
However, when the value of the primary key 22 is “ABC” and the storage time is to physically delete the data record before the deletion reference time α, the information for instructing physical deletion and the deletion reference time α are stored in the instruction identification information section 16. At the same time, if the key value “ABC” is stored in the key unit 17 and the data record search unit 13 is subsequently activated, the following processing is performed. However, the data records L1 to L shown in FIG.
3, it is assumed that only the storage time of the data record L1 is before the reference time α.
【0098】データレコード検索手段13は、起動され
ると、主キー22=ABC,サフィックス23=000
0のデータレコードL3を探し出し、データレコードL
3の格納時点が削除基準時点α以前であるか否かを判断
する (ステップS27〜S31)。データレコードL3
の格納時点は削除基準時点α以後であるので、データレ
コード検索手段13は、主キー22に「ABC」が設定
され、サフィックス23に「0002」が設定されてい
るデータレコードを検索する (ステップS33)。When the data record search means 13 is activated, the primary key 22 = ABC and the suffix 23 = 000
0 data record L3, and the data record L
It is determined whether or not the storage time of No. 3 is before the deletion reference time α (steps S27 to S31). Data record L3
Is stored after the deletion reference time α, the data record search means 13 searches for a data record in which “ABC” is set in the primary key 22 and “0002” is set in the suffix 23 (step S33). ).
【0099】この検索により、検索済みでないデータレ
コードL2が探し出されるので(ステップS34,S3
5がYES,NO)、データレコード検索手段13は、
データレコードL2の格納時点が削除基準時点α以前で
あるか否かを判断する (ステップS31)。As a result of this search, a data record L2 that has not been searched is found (steps S34 and S3).
5 is YES, NO), the data record search means 13
It is determined whether the storage time of the data record L2 is before the deletion reference time α (step S31).
【0100】データレコードL2の格納時点は削除基準
時点α以後であるので、データレコード検索手段13
は、主キー22に「ABC」が設定され、且つサフィッ
クス23に「0001」が設定されているデータレコー
ドを検索する (ステップS33)。The data record L2 is stored after the deletion reference time α.
Searches for a data record in which "ABC" is set in the primary key 22 and "0001" is set in the suffix 23 (step S33).
【0101】この検索により、検索済みでないデータレ
コードL1が探し出されるので、データレコード検索手
段13は、データレコードL1の格納時点が削除基準時
点α以前であるか否かを判断する (ステップS31)。As a result of this search, a data record L1 that has not been searched is found, so the data record search means 13 determines whether or not the storage time of the data record L1 is before the deletion reference time α (step S31). .
【0102】データレコードL1の格納時点は、削除基
準時点α以前であるので(ステップS31がYES)、
データレコード検索手段13は、データレコードL1の
位置情報うアプリケーションプログラム3に通知する
(ステップS32)。その後、データレコード検索手段
13は、主キー22に「ABC」が設定され、且つサフ
ィックス23に「0000」が設定されているデータレ
コードを検索することにより、データレコードL3を探
し出すが(ステップS33)、データレコードL3は検
索済みのデータレコードであるので (ステップS35が
YES)、アプリケーションプログラム3に検索終了を
通知した後 (ステップS36)、その処理を終了する。The data record L1 is stored before the deletion reference time α (YES in step S31).
The data record search means 13 notifies the application program 3 of the position information of the data record L1.
(Step S32). Thereafter, the data record search means 13 searches for a data record in which "ABC" is set in the primary key 22 and "0000" is set in the suffix 23, thereby searching for the data record L3 (step S33). Since the data record L3 is a searched data record (YES in step S35), after notifying the application program 3 of the end of the search (step S36), the processing ends.
【0103】アプリケーションプログラム3は、データ
レコード検索手段13からデータレコードL1の位置情
報が渡されると、それをデータレコード物理削除手段1
2に渡す。When the application program 3 receives the position information of the data record L1 from the data record search unit 13, it sends it to the data record physical deletion unit 1.
Hand over to 2.
【0104】データレコード物理削除手段12は、デー
タレコードL1の位置情報が渡されると、それに従って
データレコードL1を物理的にファイル2から削除す
る。この結果、ファイル2の内容は図14に示すよう
に、データレコードL1〜L3の内、データレコードL
1が物理的に削除されたものとなる。When the position information of the data record L1 is passed, the data record physical deletion means 12 physically deletes the data record L1 from the file 2 according to the position information. As a result, as shown in FIG. 14, the contents of file 2 are data records L1 out of data records L1 to L3.
1 is physically deleted.
【0105】[0105]
【発明の効果】以上説明したように本発明は、ファイル
に格納するデータレコードのキー項目をアプリケーショ
ンプログラムが意識しているキーに対応する主キーと、
主キーの値が同一のデータレコードのキー値をユニーク
なものにするためのサフィックスとから構成すると共
に、データレコード内に主キーが同一のデータレコード
の内の格納順を示すカレントサフィックスを設け、アプ
リケーションプログラムからデータレコードを格納する
ことが要求された場合、格納要求されたデータレコード
のアプリケーションプログラムが意識するキー値と主キ
ーの値が同一の論理削除済みのデータレコードがファイ
ル内に存在すれば、論理削除済みのデータレコードのサ
フィックスの値を同データレコードのカレントサフィッ
クスの値に基づいて変更すると共に、格納要求されたデ
ータレコードの主キー,サフィックス,カレントサフィ
ックスの値をそれぞれアプリケーションプログラムが意
識しているキー値,サフィックスの初期値,論理削除済
みのデータレコードの変更後のサフィックスの値にして
ファイルに格納するものであり、新規に格納しようとす
るデータレコードのアプリケーションプログラムが意識
しているキー値と主キーの値が同一のデータレコードが
ファイル中に存在する場合であっても、論理削除済みデ
ータレコードを物理削除する必要がないので、処理速度
を向上させることができる効果があると共に、プログラ
ム開発時の生産性を高いものにすることができる効果が
ある。As described above, according to the present invention, a key item of a data record stored in a file is defined as a primary key corresponding to a key that the application program is aware of,
A primary key value is composed of a suffix for making the key value of the same data record unique, and a current suffix is provided in the data record indicating a storage order of the data records having the same primary key, If a data record is requested to be stored from the application program, if a logically deleted data record with the same key value and primary key value as the application program's conscious of the requested data record exists in the file The suffix value of the logically deleted data record is changed based on the current suffix value of the data record, and the application program is aware of the primary key, suffix, and current suffix value of the data record requested to be stored. Key value, The initial value of the fix, the value of the suffix after the change of the logically deleted data record is stored in the file, and the key value and primary key of the data record to be newly stored are aware of the application program. Even when a data record having the same value exists in the file, it is not necessary to physically delete the logically deleted data record, so that the processing speed can be improved and the production time during program development can be improved. There is an effect that the property can be increased.
【0106】また、本発明は、主キーとサフィックスと
から構成され、主キーにアプリケーションプログラムが
指定したキー値が設定される検索キーのサフィックスの
値を変更しながら、ファイルを検索するデータレコード
検索手段を備えており、論理削除済みのデータレコード
も検索できるので、論理削除済みのデータレコードを再
利用することが可能になる効果がある。Further, the present invention comprises a primary key and a suffix, wherein the primary key is set to a key value specified by the application program. Since it is possible to search for data records that have been logically deleted, there is an effect that it is possible to reuse data records that have been logically deleted.
【0107】更に、本発明は、ファイルからデータレコ
ードを物理的に削除するデータレコード物理削除手段を
備えているので、ファイル容量が不足した場合、不要な
データレコードを削除できる効果がある。Further, since the present invention includes a data record physical deletion means for physically deleting a data record from a file, an unnecessary data record can be deleted when the file capacity is insufficient.
【図1】本発明の実施例のブロック図である。FIG. 1 is a block diagram of an embodiment of the present invention.
【図2】データレコード論理削除手段11の処理例を示
す流れ図である。FIG. 2 is a flowchart showing a processing example of a data record logical deletion unit 11;
【図3】データレコード物理削除手段12の処理例を示
す流れ図である。FIG. 3 is a flowchart showing a processing example of a data record physical deletion unit 12;
【図4】データレコード検索手段13の処理例を示す流
れ図である。FIG. 4 is a flowchart showing a processing example of a data record search means 13;
【図5】データレコード検索手段13の処理例を示す流
れ図である。FIG. 5 is a flowchart showing a processing example of a data record search means 13;
【図6】データレコード格納手段15の処理例を示す流
れ図である。FIG. 6 is a flowchart showing a processing example of a data record storage means 15;
【図7】サフィックス管理手段14の処理例を示す流れ
図である。FIG. 7 is a flowchart showing a processing example of a suffix management unit 14;
【図8】アプリケーションプログラム3が意識している
データレコードの形式を示す図である。FIG. 8 is a diagram showing a format of a data record that is aware of the application program 3.
【図9】データレコードが格納された時のファイル2の
状態を示す図である。FIG. 9 is a diagram showing a state of file 2 when a data record is stored.
【図10】データレコードが論理削除された時のファイ
ル2の状態を示す図である。FIG. 10 is a diagram showing a state of file 2 when a data record is logically deleted.
【図11】データレコードが格納された時のファイル2
の状態を示す図である。FIG. 11 shows a file 2 when data records are stored.
It is a figure showing the state of.
【図12】データレコードが論理削除された時のファイ
ル2の状態を示す図である。FIG. 12 is a diagram showing a state of file 2 when a data record is logically deleted.
【図13】データレコードが格納された時のファイル2
の状態を示す図である。FIG. 13 shows a file 2 when data records are stored.
It is a figure showing the state of.
【図14】データレコードが物理削除された時のファイ
ルの状態を示す図である。FIG. 14 is a diagram showing a state of a file when a data record is physically deleted.
1…ファイル管理システム 11…データレコード論理削除手段 12…データレコード物理削除手段 13…データレコード検索手段 14…サフィックス管理手段 15…データレコード格納手段 16…指示識別情報部 17…キー部 18…サフィックス部 2…ファイル 3…アプリケーションプログラム DESCRIPTION OF SYMBOLS 1 ... File management system 11 ... Data record logical deletion means 12 ... Data record physical deletion means 13 ... Data record search means 14 ... Suffix management means 15 ... Data record storage means 16 ... Instruction identification information part 17 ... Key part 18 ... Suffix part 2 ... file 3 ... application program
Claims (3)
重複を許さないファイル管理システムに於いて、 前記データレコードは、キー項目がアプリケーションプ
ログラムが意識しているキーに対応する主キーと、主キ
ーの値が同一のデータレコードのキー値をユニークなも
のにするためのサフィックスとから構成されると共に、
主キーが同一のデータレコードの内の格納順を示すカレ
ントサフィックスと、論理削除済みか否かを示す論理削
除情報とを含み、 前記ファイル管理システムは、 前記アプリケーションプログラムからのキー値を指定し
た論理削除要求に応答して、前記ファイルに格納されて
いるデータレコードの内の、主キーに前記アプリケーシ
ョンプログラムが指定したキー値が設定され、且つサフ
ィックスにその初期値が設定されているデータレコード
の論理削除情報を論理削除済みにするデータレコード論
理削除手段と、 前記アプリケーションプログラムからのデータレコード
の格納要求に応答して、主キーに前記アプリケーション
プログラムが前記データレコードのキー値として意識し
ているキー値が設定され、且つサフィックスにその初期
値が設定されている論理削除済みのデータレコードが前
記ファイル内に存在する場合は、該データレコードのカ
レントサフィックスに設定されている値に基づいて該デ
ータレコードのサフィックスの値を変更すると共に、変
更後のサフィックスの値を出力し、存在しない場合は、
カレントサフィックスの初期値を出力するサフィックス
管理手段と、 該サフィックス管理手段から値が出力されることによ
り、前記アプリケーションプログラムが格納要求してい
るデータレコードを、主キー,サフィックス及びカレン
トサフィックスの値がそれぞれ前記アプリケーションプ
ログラムが意識しているキー値,カレントサフィックス
の初期値及び前記サフィックス管理手段が出力した値の
データレコードとして前記ファイルに格納するデータレ
コード格納手段と、 前記アプリケーションプログラムから論理削除されてい
ないデータレコードを検索対象とする、キー値を指定し
た検索要求が出力された場合、主キーの値を前記アプリ
ケーションプログラムが指定したキー値、サフィックス
の値をその初期値とした検索キーによって前記ファイル
を検索することにより、前記ファイルから、主キーに前
記アプリケーションプログラムが指定したキー値が設定
され、且つサフィックスにその初期値が設定されている
論理削除されていないデータレコードを検索するデータ
レコード検索手段とを備えたことを特徴とする論理削除
データ管理方式。In a file management system that does not allow duplication of key values of data records in a file, the data record includes a primary key whose key item corresponds to a key that the application program is aware of, and a primary key. And a suffix to make the key value of the same data record unique.
The file management system includes a current suffix indicating a storage order in the same data record whose primary key is the same and logical deletion information indicating whether or not logical deletion has been completed. In response to the delete request, of the data records stored in the file, the key value specified by the application program is set in the primary key and the logical value of the data record whose initial value is set in the suffix is set. A data record logical deletion unit for logically deleting the deletion information; and a key value that the application program is aware of as a key value of the data record in a primary key in response to a data record storage request from the application program. Is set, and the initial value is set in the suffix. If the logically deleted data record exists in the file, the suffix of the data record is changed based on the value set in the current suffix of the data record, and the suffix after the change is changed. Is output, and if it does not exist,
A suffix management means for outputting an initial value of the current suffix; and a value output from the suffix management means, so that the data record requested by the application program to be stored is converted into a primary key, a suffix, and a value of the current suffix. Data record storage means for storing in the file a data record of a key value, a current suffix initial value, and a value output by the suffix management means, which are conscious of the application program; and data not logically deleted from the application program. When a search request specifying a key value for a record to be searched is output, a search key is used with the primary key value as the key value specified by the application program and the suffix value as the initial value. A data record for searching the file for a data record that has not been logically deleted, in which the key value specified by the application program is set as the primary key and the initial value is set as the suffix from the file. A logical deletion data management method comprising a search means.
プリケーションプログラムから論理削除済みデータレコ
ードを検索対象とする、キー値を指定した検索要求が出
力されることにより、各回の検索毎に、主キーの値を前
記アプリケーションプログラムが指定したキー値とした
検索キー中のサフィックスの値を変更して前記ファイル
を検索し、前記ファイルから、主キーに前記アプリケー
ションプログラムが指定したキー値が設定されている論
理削除済みのデータレコードを検索することを特徴とす
る請求項1記載の論理削除データ管理方式。2. The data record search means outputs a search request that specifies a key value from the application program as a search target for a logically deleted data record. A logic in which a value of a suffix in a search key whose value is a key value specified by the application program is changed to search the file, and a key value specified by the application program is set as a primary key from the file. 2. The logically deleted data management method according to claim 1, wherein a deleted data record is searched.
物理削除要求に応答して、前記ファイルから物理削除要
求されたデータレコードを物理的に削除するデータレコ
ード物理削除手段を備えたことを特徴とする請求項2記
載の論理削除データ管理方式。3. A data record physical deletion means for physically deleting a data record requested to be physically deleted from the file in response to a physical deletion request from the application program. Logical deletion data management method described.
Priority Applications (1)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
JP6114603A JP2586330B2 (en) | 1994-04-30 | 1994-04-30 | Logical deletion data management method |
Applications Claiming Priority (1)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
JP6114603A JP2586330B2 (en) | 1994-04-30 | 1994-04-30 | Logical deletion data management method |
Publications (2)
Publication Number | Publication Date |
---|---|
JPH07302216A JPH07302216A (en) | 1995-11-14 |
JP2586330B2 true JP2586330B2 (en) | 1997-02-26 |
Family
ID=14641993
Family Applications (1)
Application Number | Title | Priority Date | Filing Date |
---|---|---|---|
JP6114603A Expired - Fee Related JP2586330B2 (en) | 1994-04-30 | 1994-04-30 | Logical deletion data management method |
Country Status (1)
Country | Link |
---|---|
JP (1) | JP2586330B2 (en) |
-
1994
- 1994-04-30 JP JP6114603A patent/JP2586330B2/en not_active Expired - Fee Related
Non-Patent Citations (1)
Title |
---|
発明協会公開技報公技番号93−648号 |
Also Published As
Publication number | Publication date |
---|---|
JPH07302216A (en) | 1995-11-14 |
Similar Documents
Publication | Publication Date | Title |
---|---|---|
JP4255373B2 (en) | Management and synchronization application for network file systems | |
JP3554459B2 (en) | Text data registration search method | |
JPH1011343A (en) | Processor and method for information processing | |
JP2000357115A (en) | Device and method for file retrieval | |
JP2586330B2 (en) | Logical deletion data management method | |
CN115794820A (en) | ETL file authority control method and device | |
JP2624170B2 (en) | Logical deletion data physical deletion method | |
JPH096653A (en) | Data base checking information processor | |
JP4104325B2 (en) | Document management apparatus, document management program, and recording medium | |
JP3497053B2 (en) | Processing method in online database management system and online database management system | |
JP4311926B2 (en) | Data management apparatus, program, and recording medium | |
JP2000259459A (en) | File storage medium, file management device and storage medium for file management program | |
JP3489153B2 (en) | File system | |
JPH10133934A (en) | Distributed document managing system and program storing medium realizing it | |
JP2008217596A (en) | Document retrieval system and program | |
JPH0836512A (en) | Directory retrieval device | |
JP2616686B2 (en) | Database reorganization during business process | |
JPH11184889A (en) | Image data management device | |
JPH11272526A (en) | Data processor and storage medium | |
JP2507604B2 (en) | Information processing device | |
JPH11353212A (en) | Method and device for managing member in area sharing file | |
JP2001101047A (en) | Device and method for managing data and storage medium | |
JP2000181777A (en) | Method and device for linking database file | |
JPH0744426A (en) | File management method for file system | |
JP2643850B2 (en) | File processing device |
Legal Events
Date | Code | Title | Description |
---|---|---|---|
LAPS | Cancellation because of no payment of annual fees |