JPH0784842A - Relative record batch read system - Google Patents

Relative record batch read system

Info

Publication number
JPH0784842A
JPH0784842A JP5252553A JP25255393A JPH0784842A JP H0784842 A JPH0784842 A JP H0784842A JP 5252553 A JP5252553 A JP 5252553A JP 25255393 A JP25255393 A JP 25255393A JP H0784842 A JPH0784842 A JP H0784842A
Authority
JP
Japan
Prior art keywords
file
record
read
key
sub
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Granted
Application number
JP5252553A
Other languages
Japanese (ja)
Other versions
JP2624146B2 (en
Inventor
Kosuke Suda
康輔 寿田
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
NEC Corp
Original Assignee
NEC Corp
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by NEC Corp filed Critical NEC Corp
Priority to JP5252553A priority Critical patent/JP2624146B2/en
Publication of JPH0784842A publication Critical patent/JPH0784842A/en
Application granted granted Critical
Publication of JP2624146B2 publication Critical patent/JP2624146B2/en
Anticipated expiration legal-status Critical
Expired - Fee Related legal-status Critical Current

Links

Abstract

PURPOSE:To decrease the number of steps of a user program by storing records of a main and a subordinate file together in the work area of a user program. CONSTITUTION:When the user program 6 sends a relative record batch read instruction 60 to the main file, a relative record batch read instruction control part 10 reads a record RA out of the main file A by a main file read means 14 and stores it in an input/output buffer 11. Then on the basis of the contents of the record RA which are read in previously by a subordinate file read means 15 and the contents of an assignment information file 4, key values at the time of retrieval of subordinate files B and C and subordinate files B and C are determined and records RB and RC are read out of the subordinate files B and C determined by using the key values and stored in the input/output buffer 11. Then an informing means 16 stores the records RA-RC, read in the input/ output buffer 11, together in the work area 63 of the user program 6.

Description

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

【0001】[0001]

【産業上の利用分野】本発明は情報処理装置におけるレ
コード読み込み方式に関し、特に、或るファイルからレ
コードを読み込み、この読み込んだレコード中の項目の
内容をキーにして更に別のファイルからレコードを読み
込むという一連の処理を、ユーザプログラムから発行さ
れる1つの関連レコード一括読み込み命令に対して実行
する関連レコード一括読み込み方式に関する。
BACKGROUND OF THE INVENTION 1. Field of the Invention The present invention relates to a record reading method in an information processing apparatus, and more particularly to reading a record from a certain file and reading the record from another file by using the contents of the items in the read record as a key. The related record batch reading method for executing the series of processes for one related record batch reading instruction issued from the user program.

【0002】[0002]

【従来の技術】従来、情報処理装置上で動作するユーザ
プログラムによって、或るファイルからレコードを読み
込み、この読み込んだレコード中の項目の内容をキーに
して更に別のファイルからレコードを読み込むという処
理を実現するには、そのユーザプログラム上に複数のリ
ード命令を予め記述しておく必要があった。以下、図面
を参照して従来技術を説明する。
2. Description of the Related Art Conventionally, a user program operating on an information processing apparatus reads a record from a certain file and reads the record from another file by using the contents of the items in the read record as a key. In order to realize it, it is necessary to describe a plurality of read commands in the user program in advance. Hereinafter, a conventional technique will be described with reference to the drawings.

【0003】今、図8に示すような3つのファイルA,
B,Cが存在していると仮定する。ここで、ファイルA
はレコードRAの集合であり、各レコードRAは項目a
〜eを有している。また、ファイルBはレコードRBの
集合であり、各レコードRBは項目b,f〜iを有して
いる。更に、ファイルCはレコードRCの集合であり、
各レコードRCは項目c,j〜mを有している。
Now, three files A, as shown in FIG.
Assume that B and C are present. Where file A
Is a set of record RAs, and each record RA is an item a.
To e. The file B is a set of records RB, and each record RB has items b and f to i. Further, the file C is a set of records RC,
Each record RC has items c, j to m.

【0004】このようなファイルA〜Cに対して、例え
ば、項目aをキーにしてファイルAからレコードRAを
読み込み、この読み込んだレコードRA中の項目bの内
容をキーにしてファイルBからレコードRBを読み込
み、更にレコードRA中の項目cの内容をキーにしてフ
ァイルCからレコードRCを読み込む場合、ユーザプロ
グラム中には図9に示すような処理を記述しておく。
For such files A to C, for example, the record RA is read from the file A by using the item a as a key, and the content of the item b in the read record RA is used as the key by the record from the file B to the record RB. To read the record RC from the file C using the content of the item c in the record RA as a key, the processing as shown in FIG. 9 is described in the user program.

【0005】図9において、100は項目aがユーザプ
ログラム上のワークエリアWKAに保持された値に等し
いレコードをファイルAから読み込むリード命令、10
1はリード成功時の処理記述で、読み込んだファイルA
のレコード中の項目bの内容を変数X1に、項目cの内
容を変数X2に代入する処理、103は項目bが変数X
1の値に等しいレコードをファイルBから読み込むリー
ド命令、106は項目cが変数X2の値に等しいレコー
ドをファイルCから読み込むリード命令である。なお、
102,105,108は各々のリード命令が不成功に
終わったときに行うべき処理の記述、104はリード命
令103の成功時に読み込んだファイルBのレコード中
の項目fの内容を変数X3に設定する処理の記述、10
7はリード命令106の成功時に読み込んだファイルC
のレコード中の項目jの内容を変数X4に設定する処理
の記述である。
In FIG. 9, 100 is a read command for reading from the file A a record whose item a is equal to the value held in the work area WKA on the user program.
1 is the processing description when the read is successful, and the read file A
Processing for substituting the content of item b in the record of the above into the variable X1 and the content of item c into the variable X2.
A read command for reading a record having a value of 1 from the file B, and a read command 106 for reading a record having an item c having a value of the variable X2 from the file C. In addition,
Reference numerals 102, 105 and 108 describe the processing to be performed when each read instruction is unsuccessful, and 104 sets the content of the item f in the record of the file B read when the read instruction 103 succeeds in the variable X3. Description of processing, 10
7 is a file C read when the read command 106 is successful.
Is a description of the process of setting the content of item j in the record of (1) to variable X4.

【0006】図10は、図9に示したような処理記述を
含むユーザプログラム200が実行されたときの情報処
理装置上のOS201の動作説明図である。
FIG. 10 is a diagram for explaining the operation of the OS 201 on the information processing apparatus when the user program 200 including the process description as shown in FIG. 9 is executed.

【0007】ユーザプログラム200から図9のリード
命令100が発行されると、OS201中のレコード読
み込み命令制御部202は、ファイルAから該当するレ
コードRA(項目aの内容がワークエリアWKAに格納
された内容に等しいレコード)を入出力バッファ203
に読み込み、この読み込んだレコードRAをユーザ作業
領域204に転送する。
When the user program 200 issues the read command 100 shown in FIG. 9, the record read command control unit 202 in the OS 201 stores the corresponding record RA from the file A (the contents of the item a are stored in the work area WKA). Record equal to content) input / output buffer 203
The read record RA is transferred to the user work area 204.

【0008】ユーザプログラム200は、図9の101
に相当する処理を実行することにより、ユーザ作業領域
204に転送されたレコードRAの項目bの内容を変数
X1に、項目cの内容を変数X2に設定する。
The user program 200 is 101 in FIG.
By executing the process corresponding to, the content of the item b of the record RA transferred to the user work area 204 is set to the variable X1, and the content of the item c is set to the variable X2.

【0009】次にユーザプログラム200から図9のリ
ード命令103が発行されると、レコード読み込み命令
制御部202は、ファイルBから該当するレコードRB
(項目bの内容が変数X1の内容に等しいレコード)を
入出力バッファ203に読み込み、更にユーザ作業領域
204に転送する。
Next, when the user program 200 issues the read command 103 of FIG. 9, the record read command control unit 202 causes the record B of the corresponding record RB from the file B.
(A record in which the content of item b is equal to the content of the variable X1) is read into the input / output buffer 203 and further transferred to the user work area 204.

【0010】ユーザプログラム200は、図9の104
に相当する処理を実行することにより、ユーザ作業領域
204中のレコードRBの項目fの内容を変数X3に設
定する。
The user program 200 is 104 in FIG.
The contents of the item f of the record RB in the user work area 204 is set to the variable X3 by executing the process corresponding to.

【0011】次にユーザプログラム200から図9のリ
ード命令106が発行されると、レコード読み込み命令
制御部202は、ファイルCから該当するレコードRC
(項目cの内容が変数X2の内容に等しいレコード)を
入出力バッファ203を介してユーザ作業領域204に
転送し、ユーザプログラム200は図9の107に相当
する処理を実行することにより、レコードRC中の項目
jの内容を変数X4に設定する。
Next, when the read command 106 of FIG. 9 is issued from the user program 200, the record read command control section 202 causes the corresponding record RC from the file C.
The record RC in which the content of the item c is equal to the content of the variable X2 is transferred to the user work area 204 via the input / output buffer 203, and the user program 200 executes a process corresponding to 107 in FIG. The content of the item j in the inside is set to the variable X4.

【0012】[0012]

【発明が解決しようとする課題】このように、或るファ
イルからレコードを読み込み、この読み込んだレコード
中の項目の内容をキーにして別のファイルからレコード
を読み込む場合、従来は、図9に示したように、複数の
リード命令をユーザプログラム中に記述しておく必要が
あり、ユーザプログラムのステップ数が増大し、作成工
数がかかる等の問題点があった。
As described above, when a record is read from a certain file and the record is read from another file by using the contents of the items in the read record as a key, the conventional method is shown in FIG. As described above, it is necessary to describe a plurality of read commands in the user program, which increases the number of steps of the user program and takes a lot of time for creating.

【0013】本発明はこのような事情に鑑みて提案され
たものであり、その目的は、或るファイルからレコード
を読み込み、この読み込んだレコード中の項目の内容を
キーにして更に別のファイルからレコードを読み込むと
いう一連の処理を、ユーザプログラム中に1つの関連レ
コード一括読み込み命令を記述しておくだけで実現する
ことができる関連レコード一括読み込み方式を提供する
ことにある。
The present invention has been proposed in view of such circumstances, and an object thereof is to read a record from a certain file, and use the contents of the items in the read record as a key to read from another file. It is to provide a related record batch reading method that can realize a series of processes of reading records by simply describing one related record batch reading instruction in a user program.

【0014】[0014]

【課題を解決するための手段】本発明は上記の目的を達
成するために、以下のような構成を有している。
In order to achieve the above object, the present invention has the following constitution.

【0015】(A)主ファイルのレコード中の項目のう
ち間接キーとなる項目と、その間接キーとなる項目の値
をキーとして検索されるレコードを含む副ファイルとの
対応関係を保持するアサイン情報ファイルと、オペレー
ティング・システム内に設けられた関連レコード一括読
み込み命令制御部とを備え、且つ、前記関連レコード一
括読み込み命令制御部に、ユーザプログラムから主ファ
イルに対して関連レコード一括読み込み命令が発行され
ることにより、主ファイルからレコードを読み込んで入
出力バッファに格納する主ファイル読み込み手段と、該
主ファイル読み込み手段により読み込まれたレコードの
内容と前記アサイン情報ファイルの内容とに基づいて副
ファイルおよび該副ファイルを検索する際のキー値を決
定し、該決定したキー値を使用して前記決定した副ファ
イルからレコードを読み込んで前記入出力バッファに格
納する副ファイル読み込み手段と、前記入出力バッファ
に読み込まれた主ファイルのレコードおよび副ファイル
のレコードを一括してユーザプログラムの作業領域へ格
納する通知手段とを備える構成。
(A) Assignment information that holds a correspondence relationship between an item serving as an indirect key among the items in the record of the main file and a sub file that includes a record searched using the value of the item serving as the indirect key as a key A file and a related record batch read command control unit provided in the operating system are provided, and a related program batch read command is issued from the user program to the main file to the related record batch read command control unit. To read the record from the main file and store it in the input / output buffer, and the sub-file and the sub-file based on the content of the record read by the main file reading means and the content of the assignment information file. Decide the key value when searching the sub-file and decide -A sub-file reading means for reading a record from the determined sub-file by using a key value and storing it in the input / output buffer, and a record of the main file and a record of the sub-file read in the input / output buffer all together. And a notification means for storing the user program in the work area.

【0016】(B)主ファイルのレコード中の項目のう
ち間接キーとなる項目と、その間接キーとなる項目の値
をキーとして検索されるレコードを含む副ファイルとの
対応関係を登録するためのアサイン情報ファイルと、副
ファイルとなり得る全てのファイルについてそのレコー
ド中に存在する項目を列挙した登録ファイルと、間接キ
ーとする主ファイルの項目を設定した間接キー設定テー
ブルと、ユーザプログラムの翻訳時にソースプログラム
中に記述された、間接キーとする主ファイルの項目を前
記間接キー設定テーブルに設定するコンパイラと、オペ
レーティング・システム内に設けられた関連レコード一
括読み込み命令制御部とを備え、且つ、前記関連レコー
ド一括読み込み命令制御部に、ユーザプログラムから主
ファイルに対して関連レコード一括読み込み命令が発行
されることにより、前記間接キー設定テーブルの内容と
前記登録ファイルの内容とに基づいて、主ファイルのレ
コード中の項目のうち間接キーとなる項目と、その間接
キーとなる項目の値をキーとして検索されるレコードを
含む副ファイルとの対応関係を前記アサイン情報ファイ
ルに登録するアサイン情報ファイル登録手段と、主ファ
イルからレコードを読み込んで入出力バッファに格納す
る主ファイル読み込み手段と、該主ファイル読み込み手
段により読み込まれたレコードの内容と前記アサイン情
報ファイルの内容とに基づいて副ファイルおよび該副フ
ァイルを検索する際のキー値を決定し、該決定したキー
値を使用して前記決定した副ファイルからレコードを読
み込んで前記入出力バッファに格納する副ファイル読み
込み手段と、前記入出力バッファに読み込まれた主ファ
イルのレコードおよび副ファイルのレコードを一括して
ユーザプログラムの作業領域へ格納する通知手段とを備
える構成。
(B) Among the items in the record of the main file, an item serving as an indirect key and a subfile containing a record searched using the value of the item serving as the indirect key as a key are registered. An assignment information file, a registration file that enumerates the items that exist in the record for all files that can be sub-files, an indirect key setting table that sets the items of the main file that is the indirect key, and the source when the user program is translated. The program includes a compiler for setting an item of a main file as an indirect key described in a program in the indirect key setting table, and a related record batch reading instruction control unit provided in an operating system, and In the batch record reading command control unit, from the user program to the main file By issuing the continuous record batch reading command, an item to be an indirect key among the items in the record of the main file, and the indirect key thereof, based on the contents of the indirect key setting table and the contents of the registered file. Assign information file registration means for registering the correspondence relationship with the sub file containing the record to be searched with the value of the item as a key, and the main file read for reading the record from the main file and storing it in the input / output buffer And a key value for searching the sub-file and the sub-file based on the content of the record read by the main file reading means and the content of the assignment information file, and use the determined key value Then, the record is read from the determined sub-file and stored in the input / output buffer. Structure comprising a sub-file read unit that, a notification means for storing in the work area of the user program collectively record the record and subfile of the main file that was read into the output buffer.

【0017】[0017]

【作用】構成(A)の関連レコード一括読み込み方式に
おいては、アサイン情報ファイルが、主ファイルのレコ
ード中の項目のうち間接キーとなる項目と、その間接キ
ーとなる項目の値をキーとして検索されるレコードを含
む副ファイルとの対応関係を保持しており、オペレーテ
ィング・システム内に設けられた関連レコード一括読み
込み命令制御部が、ユーザプログラムから主ファイルに
対して関連レコード一括読み込み命令が発行されると、
主ファイル読み込み手段によって、主ファイルからレコ
ードを読み込んで入出力バッファに格納し、次いで、副
ファイル読み込み手段によって、主ファイル読み込み手
段により読み込まれたレコードの内容とアサイン情報フ
ァイルの内容とに基づいて副ファイルおよび副ファイル
を検索する際のキー値を決定し、この決定したキー値を
使用して、決定した副ファイルからレコードを読み込ん
で入出力バッファに格納し、次いで通知手段が、入出力
バッファに読み込まれた主ファイルのレコードおよび副
ファイルのレコードを一括してユーザプログラムの作業
領域へ格納する。
In the related record batch reading method of configuration (A), the assignment information file is searched using the item serving as an indirect key among the items in the record of the main file and the value of the item serving as the indirect key as a key. The related record batch read instruction control unit provided in the operating system issues a related record batch read instruction from the user program to the main file. When,
The main file reading means reads the record from the main file and stores it in the input / output buffer, and then the sub file reading means reads the record based on the contents of the record read by the main file reading means and the contents of the assignment information file. Determines the key value for searching files and subfiles, uses this determined key value to read records from the determined subfile and store them in the I / O buffer, and then the notification means Store the read main file record and sub file record in the work area of the user program all together.

【0018】構成(B)の関連レコード一括読み込み方
式においては、コンパイラが、ユーザプログラムの翻訳
時にソースプログラム中に記述された間接キーとする主
ファイルの項目を間接キー設定テーブルに設定し、オペ
レーティング・システム内に設けられた関連レコード一
括読み込み命令制御部が、ユーザプログラムから主ファ
イルに対して関連レコード一括読み込み命令が発行され
ると、アサイン情報ファイル登録手段によって、間接キ
ー設定テーブルの内容と、副ファイルとなり得る全ての
ファイルについてそのレコード中に存在する項目を列挙
した登録ファイルの内容とに基づいて、主ファイルのレ
コード中の項目のうち間接キーとなる項目と、その間接
キーとなる項目の値をキーとして検索されるレコードを
含む副ファイルとの対応関係をアサイン情報ファイルに
登録し、次いで、主ファイル読み込み手段によって、主
ファイルからレコードを読み込んで入出力バッファに格
納し、次いで副ファイル読み込み手段によって、主ファ
イル読み込み手段により読み込まれたレコードの内容と
アサイン情報ファイルの内容とに基づいて副ファイルお
よび副ファイルを検索する際のキー値を決定し、この決
定したキー値を使用して、決定した副ファイルからレコ
ードを読み込んで入出力バッファに格納し、通知手段
が、入出力バッファに読み込まれた主ファイルのレコー
ドおよび副ファイルのレコードを一括してユーザプログ
ラムの作業領域へ格納する。
In the related record batch reading method of configuration (B), the compiler sets the item of the main file as the indirect key described in the source program when the user program is translated in the indirect key setting table, and When the user program issues a related record batch read command to the main file, the related record batch read command control unit provided in the system causes the assignment information file registration means to display the contents of the indirect key setting table and the sub file. Based on the contents of the registered file that lists the items that exist in that record for all files that can be files, the items that are indirect keys among the items in the record of the main file and the values of the items that are indirect keys With a subfile containing the records to be searched with The correspondence is registered in the assignment information file, then the main file reading means reads the record from the main file and stores it in the input / output buffer, and then the sub file reading means reads the record read by the main file reading means. And a key value for searching the subfile based on the contents of the assignment information file and the key value for searching the subfile, and using this determined key value, read the record from the determined subfile and store it in the I / O buffer. Then, the notifying means collectively stores the record of the main file and the record of the sub file read in the input / output buffer in the work area of the user program.

【0019】[0019]

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

【0020】図1を参照すると、本発明の関連レコード
一括読み込み方式を適用した情報処理装置の一例は、オ
ペレーティング・システム(OS)1と、間接キー設定
テーブル2と、登録ファイル3と、アサイン情報ファイ
ル4と、ソース形式のユーザプログラム5をコンパイル
してオブジェクト形式のユーザプログラム6を生成する
コンパイラ7と、処理対象となる複数のファイルA,
B,Cとを含んでいる。
Referring to FIG. 1, an example of an information processing apparatus to which the related record batch reading method of the present invention is applied is an operating system (OS) 1, an indirect key setting table 2, a registration file 3, and assignment information. A file 4, a compiler 7 that compiles a source format user program 5 to generate an object format user program 6, and a plurality of files A to be processed,
B and C are included.

【0021】また、OS1には、関連レコード一括読み
込み命令制御部10と入出力バッファ11とが含まれ、
関連レコード一括読み込み命令制御部10は、判定手段
12,アサイン情報ファイル登録手段13,主ファイル
読み込み手段14,副ファイル読み込み手段15および
通知手段16で構成されている。
The OS 1 also includes a related record batch read instruction control unit 10 and an input / output buffer 11.
The related record batch reading command control unit 10 is composed of a judging unit 12, an assignment information file registering unit 13, a main file reading unit 14, a sub file reading unit 15 and a notifying unit 16.

【0022】図2はユーザプログラム6に含まれる関連
レコード一括読み込み命令60の一例と、この命令60
による読み込みが成功した際の処理記述61の一例と、
間接キー定義62の一例とを示す。関連レコード一括読
み込み命令60は、項目aがワークエリアWKAに保持
された値に等しいレコードをファイルAから読み込むリ
ード命令の一種で、図9に示したリード命令100と異
なり、当該命令60が関連レコード一括読み込み命令で
あることを示すパラメータ$が付加されている。また、
間接キー定義62として、項目b,項目cが定義されて
いる。
FIG. 2 shows an example of a related record batch reading command 60 included in the user program 6 and this command 60.
An example of the processing description 61 when the reading by the
An example of the indirect key definition 62 is shown. The related record batch read command 60 is a kind of read command for reading a record in which the item a is equal to the value held in the work area WKA from the file A, and unlike the read command 100 shown in FIG. A parameter $ indicating that it is a batch read command is added. Also,
Item b and item c are defined as the indirect key definition 62.

【0023】図3はコンパイラ7がソース形式のユーザ
プログラム5をコンパイルしてオブジェクト形式のユー
ザプログラム6を生成する際、ユーザプログラム5中の
間接キー定義62に従って間接キー設定テーブル2に設
定する間接キー情報の一例を示す。この例では、項目b
と項目cとが間接キーである旨が間接キー設定テーブル
2に設定されている。
FIG. 3 shows an indirect key set in the indirect key setting table 2 according to the indirect key definition 62 in the user program 5 when the compiler 7 compiles the source type user program 5 to generate the object type user program 6. An example of information is shown. In this example, item b
And the fact that item c is an indirect key are set in the indirect key setting table 2.

【0024】図4は登録ファイル3の内容例を示す図で
ある。この例では、副ファイルとなり得る可能性のある
ファイルB,Cについて、それらがどのような項目を有
しているかが記述されている。なお、ファイルB,Cの
構成は図8で説明したものと同じであり、またファイル
Aの構成も図8で説明したものと同じである。
FIG. 4 is a diagram showing an example of the contents of the registration file 3. In this example, for the files B and C that may be sub-files, what items they have is described. The configurations of the files B and C are the same as those described in FIG. 8, and the configuration of the file A is the same as that described in FIG.

【0025】図5および図6は関連レコード一括読み込
み命令制御部10の処理例を示すフローチャートであ
り、S1〜S16は各ステップを示す。また、図7はア
サイン情報ファイル4の内容例を示す図である。以下、
各図を参照して本実施例の動作を説明する。
5 and 6 are flowcharts showing an example of processing of the related record batch read instruction control unit 10, and S1 to S16 show respective steps. FIG. 7 is a diagram showing an example of the contents of the assignment information file 4. Less than,
The operation of this embodiment will be described with reference to the drawings.

【0026】利用者は、図8に示したようなファイルA
〜Cに対する処理として、項目aをキーにしてファイル
AからレコードRAを読み込み、この読み込んだレコー
ドRA中の項目bの内容をキーにしてファイルBからレ
コードRBを読み込み、更にレコードRA中の項目cの
内容をキーにしてファイルCからレコードRCを読み込
む処理を行う場合、ユーザプログラム5中には図2に示
したような関連レコード一括読み込み命令60を、レコ
ードRAの読み込み箇所毎に記述しておく。また、それ
らの読み込みが成功した場合の処理として例えば図2の
61のような処理を記述しておく。更に、ファイルAの
項目b,cを間接キーとして利用するので、項目b,c
を間接キーとしてユーザプログラム5中に定義しておく
(62)。なお、一般にコボル等のソースプログラムに
おいては、利用するファイルを宣言しておく必要があ
り、今の例ではファイルA〜Cを使用するので、それら
について宣言しておく。また、間接的に使用する登録フ
ァイル3,アサイン情報ファイル4についても宣言して
おく。
The user can use the file A as shown in FIG.
As a process for .about.C, the record RA is read from the file A by using the item a as a key, the record RB is read from the file B by using the content of the item b in the read record RA as a key, and the item c in the record RA is further read. When the process of reading the record RC from the file C is performed by using the contents of the above as a key, the related record batch reading instruction 60 as shown in FIG. 2 is described in the user program 5 for each reading position of the record RA. . In addition, a process such as 61 in FIG. 2 is described as a process when the reading is successful. Furthermore, since items b and c of file A are used as indirect keys, items b and c
Is defined as an indirect key in the user program 5 (62). Generally, in a source program such as Kobol, it is necessary to declare files to be used, and since files A to C are used in this example, they are declared. Further, the registration file 3 and the assignment information file 4 used indirectly are also declared.

【0027】コンパイラ7は、ユーザプログラム5をコ
ンパイルしてユーザプログラム6を生成する際、ユーザ
プログラム5中で定義された図2の間接キーの情報62
を図3に示すようにOS1から参照可能な間接キー設定
テーブル2に設定する。
When the compiler 7 compiles the user program 5 to generate the user program 6, the indirect key information 62 of FIG. 2 defined in the user program 5 is generated.
Is set in the indirect key setting table 2 that can be referred to by the OS 1 as shown in FIG.

【0028】ユーザプログラム6が実行され、関連レコ
ード一括読み込み命令60が発行されると、OS1の関
連レコード一括読み込み命令制御部10は図5に示す処
理を開始する。
When the user program 6 is executed and the related record batch read command 60 is issued, the related record batch read command control unit 10 of the OS 1 starts the process shown in FIG.

【0029】先ず、判定手段12によって、発行された
リード命令が関連レコード一括読み込み命令であること
を、命令のパラメータ$によって識別する(S1)。
First, the determining means 12 identifies that the read command issued is a related record batch read command by the parameter $ of the command (S1).

【0030】次に、アサイン情報ファイル登録手段13
によって、アサイン情報ファイル4に設けられた図7の
登録済フラグ70を調べ、アサイン情報が登録済か否か
を判定する(S2)。
Next, the assignment information file registration means 13
Then, the registered flag 70 of FIG. 7 provided in the assignment information file 4 is checked to determine whether the assignment information has been registered (S2).

【0031】今、発行された関連レコード一括読み込み
命令60がユーザプログラム6の起動後に最初に実行さ
れた関連レコード一括読み込み命令であったとすると、
登録済フラグ70はオフになっているため、アサイン情
報ファイル登録手段13によってS3〜S7の処理を実
行することによりアサイン情報ファイル4への登録処理
を行う。
If the issued related record batch read command 60 is the related record batch read command executed first after the user program 6 is started,
Since the registered flag 70 is off, the assignment information file registration means 13 executes the processing of S3 to S7 to perform the registration processing in the assignment information file 4.

【0032】即ち、先ず、間接キー設定テーブル2から
間接キーとして項目bを入力する(S3)。次に、この
入力した間接キーの項目bで図4の登録ファイル3を検
索し、当該間接キーの項目bを含むファイルBを副ファ
イルとして取得し(S5)、間接キーの項目bと副ファ
イルBとの対応関係を図7に示すようにアサイン情報フ
ァイル4に登録する(S6)。
That is, first, the item b is input as an indirect key from the indirect key setting table 2 (S3). Next, the registered file 3 of FIG. 4 is searched for with the input indirect key item b, and the file B including the indirect key item b is acquired as a subfile (S5). The correspondence relationship with B is registered in the assignment information file 4 as shown in FIG. 7 (S6).

【0033】次に処理S3に戻って次の間接キーの項目
cを間接キー設定テーブル2から入力し、処理S5でそ
の項目cをキーにして登録ファイル3を検索して副ファ
イルCを取得し、処理S6で間接キーの項目cと副ファ
イルCとの対応関係を図7に示すようにアサイン情報フ
ァイル4に登録する。これで、間接キー設定テーブル2
中の全ての間接キーについての処理を終えたので、それ
を処理S4で判別し、処理S7で図7のアサイン情報フ
ァイル4の登録済フラグ70をオンにして、図6の処理
へ進む。
Next, returning to the process S3, the next indirect key item c is input from the indirect key setting table 2, and in the process S5 the registered file 3 is searched by using the item c as a key to obtain the sub file C. In step S6, the correspondence relationship between the indirect key item c and the sub file C is registered in the assignment information file 4 as shown in FIG. With this, indirect key setting table 2
Since the processing for all of the indirect keys therein has been completed, it is determined in processing S4, the registered flag 70 of the assignment information file 4 in FIG. 7 is turned on in processing S7, and the processing proceeds to the processing in FIG.

【0034】アサイン情報ファイル登録手段13による
処理が終了すると、次に主ファイル読み込み手段14に
より、主ファイルのレコードを読み込む(S8)。即
ち、図2に示した関連レコード一括読み込み命令60の
場合、ファイルAから該当するレコードRA(項目aの
内容がワークエリアWKAに格納された内容に等しいレ
コード)を入出力バッファ11に読み込む。
When the processing by the assignment information file registration means 13 is completed, the main file reading means 14 then reads the record of the main file (S8). That is, in the case of the related record batch read command 60 shown in FIG. 2, the corresponding record RA (the record in which the content of item a is equal to the content stored in the work area WKA) is read from the file A into the input / output buffer 11.

【0035】次に、副ファイル読み込み手段15によっ
て、図6の処理S9〜S14の処理を実行する。即ち、
先ず、アサイン情報ファイル4から間接キーとなる項目
bを取り出し(S9)、この取り出した項目bの値を主
ファイル読み込み手段14で読み込まれたレコードRA
の項目bから取得し(S11)、また、間接キーの項目
bに対応する副ファイルBをアサイン情報ファイル4か
ら取り出す(S12)。そして、間接キーの項目bの値
で副ファイルBからレコードを読み込み、読み込んだレ
コードRBを入出力バッファ11に格納する(S1
4)。
Next, the sub-file reading means 15 executes the processes S9 to S14 of FIG. That is,
First, the item b that serves as an indirect key is extracted from the assignment information file 4 (S9), and the value of the extracted item b is read by the main file reading means 14 as a record RA.
From the assignment information file 4 (S12), and the sub file B corresponding to the item b of the indirect key is retrieved from the assignment information file 4 (S12). Then, a record is read from the secondary file B with the value of the item b of the indirect key, and the read record RB is stored in the input / output buffer 11 (S1).
4).

【0036】そして、間接キーの項目bに対応する副フ
ァイルの取得処理S12に戻るが、図7の例では、間接
キーの項目bに対応する副ファイルはファイルBだけな
ので、処理S13から処理S9に戻る。なお、1つの間
接キーの項目に対して複数の副ファイルがアサイン情報
ファイル4に登録されている場合には、その間接キーで
各副ファイルからレコードの読み込みが行われる。
Then, the process returns to the process S12 of acquiring the sub-file corresponding to the item b of the indirect key, but in the example of FIG. 7, since the only sub-file corresponding to the item b of the indirect key is the file B, the processes S13 to S9. Return to. If a plurality of sub-files are registered in the assignment information file 4 for one indirect key item, a record is read from each sub-file with the indirect key.

【0037】処理S9に戻ると、アサイン情報ファイル
4から次の間接キーの項目cを取り出し、この取り出し
た間接キーの項目cの値を主ファイルAから読み込んだ
レコードRAから取得し(S11)、また、間接キーの
項目cに対応する副ファイルCをアサイン情報ファイル
4から取り出す(S12)。そして、間接キーの項目c
の値で副ファイルCからレコードを読み込み、読み込ん
だレコードRCを入出力バッファ11に格納する(S1
4)。そして、間接キーの項目cに対応する副ファイル
の取得処理S12に戻るが、今の例では、間接キーの項
目cに対応する副ファイルはファイルCだけなので、処
理S9に戻る。
Returning to step S9, the next indirect key item c is retrieved from the assignment information file 4, and the value of the retrieved indirect key item c is obtained from the record RA read from the main file A (S11). Further, the sub file C corresponding to the item c of the indirect key is taken out from the assignment information file 4 (S12). And the indirect key item c
Value is read from the sub file C, and the read record RC is stored in the input / output buffer 11 (S1).
4). Then, the process returns to the acquisition process S12 of the sub file corresponding to the indirect key item c, but in the present example, the only sub file corresponding to the indirect key item c is the file C, so the process returns to the process S9.

【0038】処理S9に戻ると、アサイン情報ファイル
4中には未処理の間接キーは残っていないので、それを
処理S10で判別し、図5の処理S16へ進む。
Returning to step S9, since there is no unprocessed indirect key remaining in the assignment information file 4, it is discriminated in step S10 and the process proceeds to step S16 in FIG.

【0039】処理S16では、通知手段16により、入
出力バッファ11に格納されている、ファイルAのレコ
ードRA,ファイルBのレコードRB,ファイルCのレ
コードRCを一括してユーザ作業領域63に格納する。
In step S16, the notifying means 16 collectively stores the record RA of the file A, the record RB of the file B, and the record RC of the file C stored in the input / output buffer 11 in the user work area 63. .

【0040】これで、ユーザプログラム6から発行され
た関連レコード一括読み込み命令60にかかるOS1の
処理が終了し、制御がユーザプログラム6に戻される。
With this, the processing of the OS 1 relating to the related record batch read instruction 60 issued from the user program 6 is completed, and the control is returned to the user program 6.

【0041】ユーザプログラム6では、図2の処理記述
61に対応する処理を行うことにより、ユーザ作業領域
63に格納されたファイルAのレコードRAの項目bを
変数X1に、項目cを変数X2に、ファイルBのレコー
ドRBの項目fを変数X3に、ファイルCのレコードR
Cの項目jを変数X4に、それぞれ代入する。
In the user program 6, the item b of the record RA of the file A stored in the user work area 63 is set to the variable X1 and the item c is set to the variable X2 by performing the process corresponding to the process description 61 of FIG. , The item f of the record RB of the file B to the variable X3, the record R of the file C
The item j of C is substituted into the variable X4.

【0042】以上で1つの関連レコード一括読み込み命
令60に関連する処理の実行が終了したことになる。ユ
ーザプログラム6中の別の箇所から関連レコード一括読
み込み命令60と同様な命令(但し、キーとなる項目a
の値は相違するが)が発行されると、既にアサイン情報
ファイル4へは間接キーと副ファイルとの対応関係が登
録済なので、図5の処理S2から図6の処理S8へ進
み、主ファイルAからのレコードの読み込みに続き、副
ファイルB,Cからのレコードの読み込みが行われ、そ
れらのレコードが一括してユーザプログラム6に返却さ
れる。
With the above, the execution of the processing related to one related record batch read instruction 60 is completed. A command similar to the related record batch read command 60 from another location in the user program 6 (however, a key item a
However, since the correspondence relationship between the indirect key and the sub file has already been registered in the assignment information file 4, the process proceeds from step S2 of FIG. 5 to step S8 of FIG. Following the reading of the record from A, the reading of the records from the sub-files B and C is performed, and those records are collectively returned to the user program 6.

【0043】以上のようにして、本実施例では、1つの
関連レコード一括読み込み命令で関連する副ファイルか
らのレコードの読み込みを可能としている。なお、主フ
ァイルAに対してユーザプログラム6から発行されたレ
コード読み込み命令が、通常の読み込み命令の場合は、
図5の処理S15において主ファイル読み込み手段14
によって主ファイルからレコードが読み込まれて入出力
バッファ11に格納され、この格納されたレコードが処
理S16において通知手段16によってユーザプログラ
ム6の作業領域63へ格納される。
As described above, in this embodiment, it is possible to read the records from the related sub-file with one related record batch reading command. If the record read command issued from the user program 6 to the main file A is a normal read command,
In step S15 of FIG. 5, the main file reading means 14
A record is read from the main file and stored in the input / output buffer 11 by the, and the stored record is stored in the work area 63 of the user program 6 by the notifying means 16 in step S16.

【0044】以上の実施例は、アサイン情報ファイル4
の登録をOSで実施したが、ユーザ自身が事前にアサイ
ン情報ファイル4へ必要な情報を登録しておくことも可
能であり、その場合には、間接キー設定テーブル2,登
録ファイル3,アサイン情報ファイル登録手段13は省
略でき、またコンパイラ7の間接キー設定テーブルへの
設定機能は省くことができる。
In the above embodiment, the assignment information file 4
The registration was performed by the OS, but it is also possible for the user to register the necessary information in advance in the assignment information file 4, in which case the indirect key setting table 2, the registration file 3, the assignment information The file registration means 13 can be omitted, and the setting function for the indirect key setting table of the compiler 7 can be omitted.

【0045】[0045]

【発明の効果】以上説明したように、本発明の関連レコ
ード一括読み込み方式によれば、以下のような効果を得
ることができる。
As described above, according to the related record batch reading method of the present invention, the following effects can be obtained.

【0046】或るファイルからレコードを読み込み、こ
の読み込んだレコード中の項目の内容をキーにして更に
別のファイルからレコードを読み込むという一連の処理
を、ユーザプログラム中に1つの関連レコード一括読み
込み命令を記述しておくだけで実現することができる。
このため、ユーザプログラムのステップ数が減り、作成
工数が低減する。
A series of processes of reading a record from a certain file and reading a record from another file by using the contents of the items in the read record as a key are executed by a single related record batch reading instruction in the user program. It can be realized just by describing it.
Therefore, the number of steps of the user program is reduced, and the number of preparation steps is reduced.

【0047】コンパイラに、ユーザプログラムの翻訳時
にソースプログラム中に記述された、間接キーとする主
ファイルの項目を間接キー設定テーブルに設定する機能
を持たせ、またオペレーティング・システムの関連レコ
ード一括読み込み命令制御部にアサイン情報ファイル登
録手段を持たせる構成によれば、利用者はアサイン情報
ファイルの内容を自ら作成する必要がなく、間接キーの
定義だけを行えば済むので、関連レコード一括読み込み
処理を行う際のユーザの負担をより一層軽減することが
できる。
The compiler has a function of setting the items of the main file as indirect keys described in the source program at the time of translation of the user program in the indirect key setting table, and the related record batch reading instruction of the operating system. According to the configuration in which the control unit has the assignment information file registration means, the user does not need to create the contents of the assignment information file by himself, but only the indirect key needs to be defined. The burden on the user at that time can be further reduced.

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

【図1】本発明の関連レコード一括読み込み方式を適用
した情報処理装置の一例を示すブロック図である。
FIG. 1 is a block diagram showing an example of an information processing apparatus to which a related record batch reading method of the present invention is applied.

【図2】ユーザプログラムに記述された関連レコード一
括読み込み命令等の例を示す図である。
FIG. 2 is a diagram showing an example of a related record batch read command and the like described in a user program.

【図3】間接キー設定テーブルの内容例を示す図であ
る。
FIG. 3 is a diagram showing an example of contents of an indirect key setting table.

【図4】登録ファイルの内容例を示す図である。FIG. 4 is a diagram showing an example of contents of a registration file.

【図5】関連レコード一括読み込み命令制御部の処理例
の一部を示すフローチャートである。
FIG. 5 is a flowchart showing a part of a processing example of a related record batch read instruction control unit.

【図6】関連レコード一括読み込み命令制御部の処理例
の残りの部分を示すフローチャートである。
FIG. 6 is a flowchart showing the remaining part of the processing example of the related record batch read instruction control unit.

【図7】アサイン情報ファイル4の内容例を示す図であ
る。
7 is a diagram showing an example of contents of an assignment information file 4. FIG.

【図8】処理対象となるファイルと各ファイル中のレコ
ードの項目の例を示す図である。
FIG. 8 is a diagram showing an example of files to be processed and items of records in each file.

【図9】或るファイルから読み込んだレコード中の項目
の内容をキーにして別のファイルからレコードを読み込
む場合のユーザプログラム中の従来の記述例を示す図で
ある。
FIG. 9 is a diagram showing a conventional description example in a user program when a record is read from another file by using the content of an item in the record read from a certain file as a key.

【図10】図9のユーザプログラムの実行中におけるO
Sの動作説明図である。
FIG. 10 is O during execution of the user program of FIG.
It is an operation | movement explanatory drawing of S.

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

1…オペレーティング・システム(OS) 10…関連レコード一括読み込み命令制御部 11…入出力バッファ 12…判定手段 13…アサイン情報ファイル登録手段 14…主ファイル読み込み手段 15…副ファイル読み込み手段 16…通知手段 2…間接キー設定テーブル 3…登録ファイル 4…アサイン情報ファイル 5…ソース形式のユーザプログラム 6…オブジェクト形式のユーザプログラム 60…関連レコード一括読み込み命令 63…ユーザ作業領域 7…コンパイラ A,B,C…処理対象となるファイル DESCRIPTION OF SYMBOLS 1 ... Operating system (OS) 10 ... Related record batch reading command control unit 11 ... Input / output buffer 12 ... Judgment means 13 ... Assignment information file registration means 14 ... Main file reading means 15 ... Sub file reading means 16 ... Notification means 2 ... Indirect key setting table 3 ... Registration file 4 ... Assignment information file 5 ... Source format user program 6 ... Object format user program 60 ... Related record batch read instruction 63 ... User work area 7 ... Compiler A, B, C ... Processing Target file

Claims (3)

【特許請求の範囲】[Claims] 【請求項1】 主ファイルのレコード中の項目のうち間
接キーとなる項目と、その間接キーとなる項目の値をキ
ーとして検索されるレコードを含む副ファイルとの対応
関係を保持するアサイン情報ファイルと、 オペレーティング・システム内に設けられた関連レコー
ド一括読み込み命令制御部とを備え、且つ、 前記関連レコード一括読み込み命令制御部に、 ユーザプログラムから主ファイルに対して関連レコード
一括読み込み命令が発行されることにより、主ファイル
からレコードを読み込んで入出力バッファに格納する主
ファイル読み込み手段と、 該主ファイル読み込み手段により読み込まれたレコード
の内容と前記アサイン情報ファイルの内容とに基づいて
副ファイルおよび該副ファイルを検索する際のキー値を
決定し、該決定したキー値を使用して前記決定した副フ
ァイルからレコードを読み込んで前記入出力バッファに
格納する副ファイル読み込み手段と、 前記入出力バッファに読み込まれた主ファイルのレコー
ドおよび副ファイルのレコードを一括してユーザプログ
ラムの作業領域へ格納する通知手段とを備えることを特
徴とする関連レコード一括読み込み方式。
1. An assignment information file which holds a correspondence relationship between an item serving as an indirect key among the items in a record of a main file and a sub file including a record searched by using a value of the item serving as the indirect key as a key. And a related record batch read command control unit provided in the operating system, and a related program batch read command is issued from the user program to the main file to the related record batch read command control unit. The main file reading means for reading a record from the main file and storing it in the input / output buffer, and the sub file and the sub file based on the contents of the record read by the main file reading means and the contents of the assignment information file. Decide the key value for searching the file, and A sub-file reading unit that reads a record from the determined sub-file by using a value and stores the record in the input / output buffer, and a record of the main file and the sub-file record read in the input / output buffer by a user A related record batch reading method comprising: a notification means for storing the program in a work area of the program.
【請求項2】 主ファイルのレコード中の項目のうち間
接キーとなる項目と、その間接キーとなる項目の値をキ
ーとして検索されるレコードを含む副ファイルとの対応
関係を登録するためのアサイン情報ファイルと、 副ファイルとなり得る全てのファイルについてそのレコ
ード中に存在する項目を列挙した登録ファイルと、 間接キーとする主ファイルの項目を設定した間接キー設
定テーブルと、 ユーザプログラムの翻訳時にソースプログラム中に記述
された、間接キーとする主ファイルの項目を前記間接キ
ー設定テーブルに設定するコンパイラと、 オペレーティング・システム内に設けられた関連レコー
ド一括読み込み命令制御部とを備え、且つ、 前記関連レコード一括読み込み命令制御部に、 ユーザプログラムから主ファイルに対して関連レコード
一括読み込み命令が発行されることにより、前記間接キ
ー設定テーブルの内容と前記登録ファイルの内容とに基
づいて、主ファイルのレコード中の項目のうち間接キー
となる項目と、その間接キーとなる項目の値をキーとし
て検索されるレコードを含む副ファイルとの対応関係を
前記アサイン情報ファイルに登録するアサイン情報ファ
イル登録手段と、 主ファイルからレコードを読み込んで入出力バッファに
格納する主ファイル読み込み手段と、 該主ファイル読み込み手段により読み込まれたレコード
の内容と前記アサイン情報ファイルの内容とに基づいて
副ファイルおよび該副ファイルを検索する際のキー値を
決定し、該決定したキー値を使用して前記決定した副フ
ァイルからレコードを読み込んで前記入出力バッファに
格納する副ファイル読み込み手段と、 前記入出力バッファに読み込まれた主ファイルのレコー
ドおよび副ファイルのレコードを一括してユーザプログ
ラムの作業領域へ格納する通知手段とを備えることを特
徴とする関連レコード一括読み込み方式。
2. An assignment for registering a correspondence relationship between an item serving as an indirect key among the items in a record of a main file and a sub file including a record searched by using a value of the item serving as the indirect key as a key. An information file, a registration file that lists the items that exist in the record for all files that can be sub-files, an indirect key setting table that sets the items of the main file that is the indirect key, and the source program when the user program is translated. A related file batch read instruction control unit provided in the operating system, and a compiler for setting the items of the main file as indirect keys described in the indirect key setting table described therein; The batch read command control unit controls the main file from the user program. By issuing the continuous record batch reading command, an item to be an indirect key among the items in the record of the main file, and the indirect key thereof, based on the contents of the indirect key setting table and the contents of the registered file. Assign information file registration means for registering the correspondence relationship with the sub file containing the record to be searched with the value of the item as a key, and the main file read for reading the record from the main file and storing it in the input / output buffer Means for determining a sub-file and a key value for searching the sub-file based on the content of the record read by the main file reading means and the content of the assignment information file, and using the determined key value Then, the record is read from the determined sub-file and stored in the input / output buffer. Batch reading related records, comprising: sub-file reading means for reading, and notification means for collectively storing the records of the main file and the records of the sub-file read into the input / output buffer in the work area of the user program. method.
【請求項3】 前記関連レコード一括読み込み命令制御
部は、主ファイルに対してユーザプログラムから発行さ
れたレコード読み込み命令が、関連レコード一括読み込
み命令か、通常の読み込み命令かを命令のパラメータに
よって識別し、通常の読み込み命令の場合は、前記主フ
ァイル読み込み手段によって主ファイルからレコードを
読み込んで前記入出力バッファに格納し、該格納された
レコードを前記通知手段によって前記ユーザプログラム
の作業領域へ格納することを特徴とする請求項1または
2記載の関連レコード一括読み込み方式。
3. The related record batch read command control unit identifies whether the record read command issued from the user program to the main file is a related record batch read command or a normal read command by a command parameter. In the case of a normal read command, the main file reading means reads the record from the main file and stores it in the input / output buffer, and the notifying means stores the stored record in the work area of the user program. The related record batch reading method according to claim 1 or 2.
JP5252553A 1993-09-14 1993-09-14 Related record batch reading method Expired - Fee Related JP2624146B2 (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
JP5252553A JP2624146B2 (en) 1993-09-14 1993-09-14 Related record batch reading method

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
JP5252553A JP2624146B2 (en) 1993-09-14 1993-09-14 Related record batch reading method

Publications (2)

Publication Number Publication Date
JPH0784842A true JPH0784842A (en) 1995-03-31
JP2624146B2 JP2624146B2 (en) 1997-06-25

Family

ID=17238977

Family Applications (1)

Application Number Title Priority Date Filing Date
JP5252553A Expired - Fee Related JP2624146B2 (en) 1993-09-14 1993-09-14 Related record batch reading method

Country Status (1)

Country Link
JP (1) JP2624146B2 (en)

Cited By (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US6039551A (en) * 1996-06-07 2000-03-21 Matsushita Electric Industrial Co., Ltd. Gear pump for use in an electrically-operated sealed compressor

Citations (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
JPH04184652A (en) * 1990-11-20 1992-07-01 Nec Corp Remote file read system
JPH04199338A (en) * 1990-11-29 1992-07-20 Nec Corp Data base management system
JPH04199444A (en) * 1990-11-29 1992-07-20 Matsushita Electric Ind Co Ltd File controller
JPH05204728A (en) * 1992-01-27 1993-08-13 Hitachi Ltd Intelligent fetch system for data base retrieval

Patent Citations (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
JPH04184652A (en) * 1990-11-20 1992-07-01 Nec Corp Remote file read system
JPH04199338A (en) * 1990-11-29 1992-07-20 Nec Corp Data base management system
JPH04199444A (en) * 1990-11-29 1992-07-20 Matsushita Electric Ind Co Ltd File controller
JPH05204728A (en) * 1992-01-27 1993-08-13 Hitachi Ltd Intelligent fetch system for data base retrieval

Cited By (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US6039551A (en) * 1996-06-07 2000-03-21 Matsushita Electric Industrial Co., Ltd. Gear pump for use in an electrically-operated sealed compressor
US6116877A (en) * 1996-06-07 2000-09-12 Matsushita Electric Industrial Co., Ltd. Gear pump for use in an electrically-operated sealed compressor
US6227828B1 (en) 1996-06-07 2001-05-08 Matsushita Electric Industrial Co., Ltd. Gear pump for use in an electrically-operated sealed compressor

Also Published As

Publication number Publication date
JP2624146B2 (en) 1997-06-25

Similar Documents

Publication Publication Date Title
JPH0784842A (en) Relative record batch read system
JP3637606B2 (en) Data processing device
JPH0883168A (en) Data processing system and its method
JP3303304B2 (en) Computer system configuration change method
JPH067400Y2 (en) File search device
JP2901543B2 (en) Magnetic disk file relocation method
JPH03129570A (en) Data base retrieving system
JPH09160704A (en) Command supplement device
JPS62138924A (en) Table search control system
JPH06251185A (en) Output file generating system in ocr data entry system
JPH03259327A (en) Code conversion system
JPH05210562A (en) Network file system
JPS6325731A (en) Data processor
JPH04230576A (en) Method for retrieving record
JP2000090082A (en) Data processor
JPH08328879A (en) Task management system
JPH10240744A (en) System for processing retrieval of range division chart and method therefor and recording medium for recording retrieval processing program
JPH05143422A (en) Updated journal managing system
JPH06103027A (en) Data separation processing method
JPS62115557A (en) Bootloading system of program
JPH04305756A (en) Command processor
JP2004227090A (en) Device and program for setting display picture and recording medium
JPH05100914A (en) File input/output information collecting system
JPH04137035A (en) Software design structure storage device
JPH06161516A (en) Checking method for sequence program

Legal Events

Date Code Title Description
FPAY Renewal fee payment (event date is renewal date of database)

Free format text: PAYMENT UNTIL: 20080411

Year of fee payment: 11

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

Free format text: PAYMENT UNTIL: 20090411

Year of fee payment: 12

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

Free format text: PAYMENT UNTIL: 20100411

Year of fee payment: 13

LAPS Cancellation because of no payment of annual fees