Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/zhenxiangba/zhenxiangba.com/public_html/phproxy-improved-master/index.php on line 456
JPH0560632B2 - - Google Patents
[go: Go Back, main page]

JPH0560632B2 - - Google Patents

Info

Publication number
JPH0560632B2
JPH0560632B2 JP62016725A JP1672587A JPH0560632B2 JP H0560632 B2 JPH0560632 B2 JP H0560632B2 JP 62016725 A JP62016725 A JP 62016725A JP 1672587 A JP1672587 A JP 1672587A JP H0560632 B2 JPH0560632 B2 JP H0560632B2
Authority
JP
Japan
Prior art keywords
database
logical page
page number
test
record
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 - Lifetime
Application number
JP62016725A
Other languages
Japanese (ja)
Other versions
JPS63184829A (en
Inventor
Yosha Okamoto
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.)
Fujitsu Ltd
Original Assignee
Fujitsu Ltd
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Fujitsu Ltd filed Critical Fujitsu Ltd
Priority to JP62016725A priority Critical patent/JPS63184829A/en
Publication of JPS63184829A publication Critical patent/JPS63184829A/en
Publication of JPH0560632B2 publication Critical patent/JPH0560632B2/ja
Granted legal-status Critical Current

Links

Landscapes

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

Description

【発明の詳細な説明】 〔概要〕 指定した論理ページ数に基づき論理ページ番号
を発行して本番用のデータベースの一部を複写
し、テスト用データベースを生成する。
[Detailed Description of the Invention] [Summary] A logical page number is issued based on the specified number of logical pages, a part of the production database is copied, and a test database is generated.

テスト時は、本番データベース検索用に算出さ
れた論理ページ番号よりテスト用データベースの
論理ページ番号に変換して検索する。
During testing, the logical page number calculated for searching the actual database is converted into a logical page number of the test database for searching.

〔産業上の利用分野〕[Industrial application field]

本発明はデータベースシステムにおける検索方
式の改良に関する。
The present invention relates to improvements in search methods in database systems.

データベース検索方法の一つにユーザランダム
エントリ手法がある。
One of the database search methods is the user random entry method.

これは応用プログラムが指定したレコードキー
(コード)により、そのレコードが格納されてい
る論理ページ番号を算出し、その論理ページより
所望のレコードを検索する方法で、ポインタで連
係されたレコードを最初に検索する(エントリ)
ときに使用される。
This method calculates the logical page number in which the record is stored using the record key (code) specified by the application program, and searches for the desired record from that logical page.The record linked by the pointer is first searched. Search (entry)
sometimes used.

一方応用プログラムをテストする場合、本番の
データベースを更新しないようにその一部が別フ
アイルに複写されるが、データ構造を変えずに複
写するため、応用プログラムがエントリしたとき
そのレコードが複写フアイルに存在しない場合が
あり、従つてテスト時には応用プログラムのエン
トリ範囲等を変更している。
On the other hand, when testing an application program, part of the actual database is copied to a separate file so as not to update it, but since the data structure is copied without changing, when the application program makes an entry, the record is copied to a separate file. In some cases, it does not exist, so the entry range of the application program is changed during testing.

このため、復元ミスとか手数を要する等の問題
点があり、これを解決した検索方式が求めされて
いる。
For this reason, there are problems such as restoration errors and the need for labor, and there is a need for a search method that solves these problems.

〔従来の技術〕[Conventional technology]

第5図はユーザランダムエントリ手法説明図で
ある。
FIG. 5 is an explanatory diagram of the user random entry method.

データベースシステムにおけるデータは、レコ
ードキー(レコードキー番号、例えば従業員番
号)Xn、複数のデータ項目(入社年月日、所属
等)Dn、レコード間を関係付けるポインタ等よ
り構成されるレコードRCnに格納されており、応
用プログラム1とデータベース管理部2とのデー
タのやりとりはレコード単位に、記憶媒体3との
入出力は論理ページ単位に行われる。
Data in a database system is stored in records RCn, which consists of a record key (record key number, e.g. employee number) Data is exchanged between the application program 1 and the database management unit 2 on a record-by-record basis, and input/output with the storage medium 3 is carried out on a logical page-by-page basis.

論理ページLPは複数のレコードRCnより構成
されるもので、それぞれのレコードRCnが格納さ
れる論理ページLPの論理ページ番号C1nは、
レコードキー番号Xn、論理ページ数A1に基づ
き、以下のように発行される。即ち、 Xn/A1=B1……余りC1n 但しB1は整数 の算式により、その余りC1nをそのレコード
RCnの論理ページ番号として割り付ける。例えば Xn=104番 A1=1000ページ とすると、レコードキー番号104は論理ページ
番号104の論理ページに格納される。
The logical page LP is composed of a plurality of records RCn, and the logical page number C1n of the logical page LP in which each record RCn is stored is as follows.
It is issued as follows based on the record key number Xn and the logical page number A1. In other words,
Assigned as the logical page number of RCn. For example, if Xn=104th page A1=1000 pages, record key number 104 is stored in the logical page with logical page number 104.

処理を開始する最初のレコードRCnを直接検索
するユーザランダムエントリ手法は、レコードキ
ー番号Xnより上記算式で論理ページ番号C1n
を算出し検索する方法で、論理ページ番号C1n
の算出はランダマイズルーチン4が行う。即ち、 (1) 応用プログラム1はレコードキー番号Xnを
指定してランダムマイズルーチン4を呼出す。
The user random entry method of directly searching for the first record RCn to start processing is to use the above formula to find the logical page number C1n from the record key number Xn.
Logical page number C1n
The calculation of is performed by randomization routine 4. That is, (1) Application program 1 specifies record key number Xn and calls randomize routine 4.

(2) ランダマイズルーチン4は上記算式で論理ペ
ージ番号C1nを算出し、応用プログラム1に
返す。
(2) The randomization routine 4 calculates the logical page number C1n using the above formula and returns it to the application program 1.

(3) 応用プログラム1はこの論理ページ番号C1
nに基づき、データベース管理部2にレコード
RCnの検査を依頼する。
(3) Application program 1 has this logical page number C1
Records are stored in the database management section 2 based on n.
Request an RCn inspection.

(4) データベース管理部2は記憶媒体3より該当
論理ページLPを読出し、要求されたレコード
RCnを検索しても応用プログラム1に渡す。
(4) The database management unit 2 reads the corresponding logical page LP from the storage medium 3 and stores the requested record.
Even if RCn is searched, it is passed to application program 1.

以上のごとく本番用のデータベース100が構
築されるが、疑似アクセスモードにより本番用の
データベース100を使用してテストすることが
できる。
Although the production database 100 is constructed as described above, the production database 100 can be used for testing in the pseudo access mode.

このとき、データベース管理部2は本番用のデ
ータベース100が変更されないよう応用プログ
ラム1で更新されたレコードを元に戻すが、他の
応用プログラムが更新したデータベースを使用し
てテストする場合は、データ構造を変えずにデー
タベースの一部(1/m)がテスト用データベー
スとして複写フアイル5に複写される。
At this time, the database management unit 2 restores the records updated by the application program 1 so that the production database 100 is not changed. However, when testing using a database updated by another application program, the data structure A portion (1/m) of the database is copied to the copy file 5 as a test database without changing the data.

しかし、上記テスト用データベースとして、例
えば1000ページの中、ページ番号1〜100が複写
されると、レコードキー番号101〜999は
101〜999ページに格納されているため複写フアイ
ル5には存在せず、このレコードの検索を依頼す
ると、該当の論理ページが無いというエラー状態
となる。
However, in the above test database, if page numbers 1 to 100 are copied out of 1000 pages, the record key numbers 101 to 999 will be
Since it is stored in pages 101 to 999, it does not exist in the copy file 5, and when a search request is made for this record, an error state occurs that the corresponding logical page does not exist.

このため、テスト時には応用プログラム1にお
いて複写フアイル5に該当レコードが存在する
様、例えばエントリするレコードキー番号範囲等
を変更している。
For this reason, during testing, the application program 1 changes the record key number range to be entered, for example, so that the corresponding record exists in the copy file 5.

〔発明が解決しようとする問題点〕[Problem that the invention seeks to solve]

以上説明したように、ユーザランダムエントリ
手法で応用プログラムをテストする際、複写フア
イルにエントリするレコードが存在する様応用プ
ログラムを変更していた。
As explained above, when testing an application program using the user random entry method, the application program is changed so that there is a record to be entered into the copy file.

このため、手数とともに復元ミスを生じやすい
という問題点があり、本発明はこの問題点を解決
するデータベースシステムにおける検索方式を提
供することを目的とするものである。
For this reason, there is a problem that restoration errors are likely to occur as well as troublesome work.It is an object of the present invention to provide a search method in a database system that solves this problem.

〔問題点を解決するための手段〕[Means for solving problems]

上記目的のため、本発明のデータベースの検索
方式は、第1図本発明の原理説明図に示すよう
に、 指定された第2の論理ページ数A2と所定のレ
コードキー番号とに基づき、本番用データベース
100と同一の所定の算式で第2の論理ページ番
号C2nを発行するとともに該データベース10
0を複写してテスト用データベース101を生成
するテスト用データベース生成部8と、 該論理ページ番号算出部4で算出された第1の
論理ページ番号C1nを第2の論理ページ番号C
2nに変換して該テスト用データベース101を
検索せしめる変換部10と を設けたものである。
For the above purpose, the database search method of the present invention is based on the specified second logical page number A2 and a predetermined record key number, as shown in FIG. A second logical page number C2n is issued using the same predetermined formula as the database 100, and the database 10
0 to generate the test database 101, and the first logical page number C1n calculated by the logical page number calculating unit 4 to the second logical page number C.
2n to search the test database 101.

〔作用〕[Effect]

本番用のデータベース100では、レコード
RCnを Xn/A1=B1 ……余りCln の算式により、論理ページ番号C1nに格納して
いる。
In the production database 100, records
RCn is stored in logical page number C1n using the formula: Xn/A1=B1 . . . remainder Cln.

テスト用データベース101(テストスキー
マ)作成時には、同じ算式が使用されるから、レ
コードRCnは Xn/A2=B2 ……余りC2n により、論理ページ番号C2nに割当てられる。
Since the same formula is used when creating the test database 101 (test schema), the record RCn is assigned to the logical page number C2n according to Xn/A2=B2 . . . the remainder C2n.

論理ページ番号算出部(ランダマイズルーチ
ン)4は本番用の論理ページ番号C1nを応用プ
ログラム1に返すから、応用プログラム1から検
索要求のあつた論理ページ番号C1nをC2nに
変換してテスト用データベース101を検索す
る。
The logical page number calculation unit (randomization routine) 4 returns the actual logical page number C1n to the application program 1, so it converts the logical page number C1n requested by the application program 1 to C2n and uses the test database 101. search for.

この演算は Xn=A1×B1+C1n (C1n<A1) =A2×B2+C2n (C2n<A2) より、 C1n=A2×B2−A1×B1+C2n となり、A2=1/m・A1の場合、 Cln=A2(B2−mB1)+C2n 但し B2−mB1≧0 となる。 This operation is Xn=A1×B1+C1n (C1n<A1) =A2×B2+C2n (C2n<A2) Than, C1n=A2×B2−A1×B1+C2n So, if A2=1/m・A1, Cln=A2(B2−mB1)+C2n However, B2−mB1≧0 becomes.

以上の結果、 C1/A2 ……余りC2n となり、ランダマイズルーチン4が算出した論理
ページ番号C1nを用いて応用プログラム1が検
索依頼を行つたとき、C1nをテスト用データベ
ース101の論理ページ数A2で割り、その余り
C2nをデータベース管理部7に通知して検索せ
しめる。
As a result of the above, C1/A2... has a remainder C2n, and when the application program 1 makes a search request using the logical page number C1n calculated by the randomization routine 4, C1n is divided by the logical page number A2 of the test database 101. , and the remainder C2n is notified to the database management section 7 to be searched.

以上の結果、本番の応用プログラム、ランダマ
イズルーチンを変更することなく応用プログラム
のテストを行うことができる。
As a result of the above, it is possible to test the application program without changing the actual application program or randomization routine.

〔実施例〕〔Example〕

本発明の実施例を第2図〜第4図を参照しつつ
説明する。
Embodiments of the present invention will be described with reference to FIGS. 2 to 4.

第2図において、 6はテストモード設定部であつて、論理ページ
数A2、レコードキー番号範囲等、テスト用に記
入されたジヨブ記述文JCLに基づき、テストモー
ドを設定するもの、 7はデータベース管理部であつて、テスト用デ
ータベース生成部8を前述した算式に基づき、所
定のレコードRCnに第2の論理ページ番号C2n
を発行して本番用のデータベース100を複写す
るもの、 9はテスト用データベース101を検索する検
索部、 10は変換部であつて、応用プログラム1が検
索依頼した論理ページ番号C1nに対して、複写
フアイル11のラベル102を参照して第2の論
理ページ数A2を求め、前述した算式によつてテ
スト用データベース101の論理ページ番号C2
nを算出するもの、 であリ、その他全図を通じて同一符号は同一対象
物を表す。
In Fig. 2, 6 is a test mode setting section, which sets the test mode based on the job description JCL written for testing, such as logical page number A2, record key number range, etc., and 7 is a database management section. The test database generation unit 8 generates a second logical page number C2n in a predetermined record RCn based on the above-mentioned formula.
9 is a search unit that searches the test database 101, and 10 is a conversion unit that copies the logical page number C1n requested by the application program 1 to search. The second logical page number A2 is determined by referring to the label 102 of the file 11, and the logical page number C2 of the test database 101 is calculated using the above-mentioned formula.
The same reference numerals represent the same objects throughout the figures.

以上の構成によつて、以下のようにテスト動作
が行われる。
With the above configuration, a test operation is performed as follows.

〔テストモードの設定〕[Test mode settings]

(1) テスト用データベース101の論理ページ数
(論理ページ数データ、以下データは省略する)
A2とレコードキー番号範囲とをジヨブ制御文
JCLに入力する。
(1) Number of logical pages of test database 101 (logical page number data, data omitted below)
A2 and record key number range in job control statement
Fill in the JCL.

(2) これにより、テストモード設定部6はテスト
モードに設定し、データベース管理部7にテス
ト用データベース101の生成を依頼する。
(2) As a result, the test mode setting unit 6 sets the test mode and requests the database management unit 7 to generate the test database 101.

(3) テスト用データベース生成部8は、所定の算
式(Xn/A2)を演算し、その余りC2nを論
理ページ番号として、所定のレコードRCnを本
番用データベース100より複写フアイル11
に複写する。
(3) The test database generation unit 8 calculates a predetermined formula (Xn/A2), uses the remainder C2n as a logical page number, and transfers a predetermined record RCn from the production database 100 to the copy file 11.
Copy to.

〔テスト動作〕[Test operation]

(1) 応用プログラム1が所定のレコードRCnを参
照するとき、レコードキー番号Xnを指定して
ランダマイズルーチン4を呼出す。
(1) When the application program 1 refers to a predetermined record RCn, it specifies the record key number Xn and calls the randomization routine 4.

(2) ランダマイズルーチン4は本番用の算式
(Xn/A1)によりその余り、論理ページ番号
Clnを応用プログラム1に返す。
(2) Randomize routine 4 uses the actual formula (Xn/A1) to calculate the remainder and logical page number.
Return Cln to application program 1.

(3) 応用プログラム1はこれに基づき、変換部1
0にレコードRCnの検索を依頼する。
(3) Application program 1 is based on this, converter 1
0 to search for record RCn.

(4) 変換部10は複写フアイル11のラベルを参
照し、テスト用データベースの論理ページ数A
2を求め、(C1n/A2)を演算し、その余
りC2nをテスト用データベース101の論理
ページ番号としてデータベース管理部7に検索
を依頼する。
(4) The conversion unit 10 refers to the label of the copy file 11 and determines the number of logical pages A of the test database.
2, calculates (C1n/A2), uses the remainder C2n as the logical page number of the test database 101, and requests the database management unit 7 to search.

(5) データベース管理部7は複写フアイル11を
検索し論理ページ番号C2nとレコードキー番
号Xnとに基づきレコードRCnを検索する。
(5) The database management unit 7 searches the copy file 11 and searches for the record RCn based on the logical page number C2n and the record key number Xn.

以上により、複写論理ページ数に基づき論理ペ
ージ番号を発行してテスト用データベースを生成
するとともに、応用プログラム1が指定する論理
ページをテスト用データベース101に対応して
変換して検索するから、応用プログラム1、ラン
ダマイズルーチン4を変更することがない。
As described above, a logical page number is issued based on the number of copied logical pages to generate a test database, and the logical page specified by the application program 1 is converted and searched in accordance with the test database 101. 1. Randomization routine 4 is not changed.

なお、上記変換部10はデータベース管理部7
に含めることができ、また本番の論理ページ数が
変更されたときにも使用することができる。
Note that the conversion section 10 is a database management section 7.
It can also be used when the number of logical pages in production changes.

〔発明の効果〕〔Effect of the invention〕

上記詳細に説明したように、本発明は、テスト
用データベースの論理ページ数を指定して複写フ
アイルを作成し、検索時は算出された本番の論理
ページ番号をテスト用データベースに対応して変
換する検索方式を提供するものであるから、応用
プログラムを変更することがなく、テストを簡易
に行える効果は多大なものがある。
As explained in detail above, the present invention specifies the number of logical pages of a test database to create a copy file, and when searching, converts the calculated actual logical page number to correspond to the test database. Since it provides a search method, there is no need to change the application program, and it has a great effect in that tests can be easily performed.

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

第1図は本発明の原理説明図、第2図は実施例
の検索部ブロツク図、第3図はテスト用データベ
ース生成フローチヤート図、第4図はエントリ動
作フローチヤート図、第5図はユーザランダムエ
ントリ手法説明図、である。図中、 1は応用プログラム、2はデータベース管理シ
ステム、3は記憶媒体、4はランダマイズルーチ
ン、5は複写フアイル、6はテストモード設定
部、7はデータベース管理部、8はテスト用デー
タベース生成部、9は検索部、10は変換部、1
1は複写フアイル、100は本番用のデータベー
ス、101はテスト用のデータベース、RCnはレ
コード、Xnはレコードキー番号、A1は本番用
データベースの論理ページ数、A2はテスト用デ
ータベースの論理ページ数、C1nは本番用デー
タベースの論理ページ番号、C2nはテスト用デ
ータベースの論理ページ番号、である。
Fig. 1 is an explanatory diagram of the principle of the present invention, Fig. 2 is a block diagram of the search unit of the embodiment, Fig. 3 is a test database generation flowchart, Fig. 4 is an entry operation flowchart, and Fig. 5 is a user FIG. 2 is an explanatory diagram of a random entry method. In the figure, 1 is an application program, 2 is a database management system, 3 is a storage medium, 4 is a randomization routine, 5 is a copy file, 6 is a test mode setting section, 7 is a database management section, 8 is a test database generation section, 9 is a search section, 10 is a conversion section, 1
1 is the copy file, 100 is the production database, 101 is the test database, RCn is the record, Xn is the record key number, A1 is the number of logical pages in the production database, A2 is the number of logical pages in the test database, C1n is the logical page number of the production database, and C2n is the logical page number of the test database.

Claims (1)

【特許請求の範囲】 1 第1の論理ページ数A1とレコードキー番号
Xnとに基づき所定の算式で第1の論理ページ番
号C1nをそれぞれのレコードRCnに発行してデ
ータベース100を管理するとともに論理ページ
LPの一部を複写してテスト用データベースを生
成しテストせしめるデータベース管理部7と、応
用プログラム1の指定するレコードキー番号Xn
に基づき第1の論理ページ番号C1nを算出し該
データベース100を検索せしめる論理ページ番
号算出部4とを備えたデータベースシステムにお
いて、 指定された第2の論理ページ数A2と所定のレ
コードキー番号とに基づき、前記所定の算式で第
2の論理ページ番号C2nを発行するとともに該
データベース100を複写してテスト用データベ
ース101を生成するテスト用データベース生成
部8と、 該論理ページ番号算出部4で算出された第1の
論理ページ番号C1nを第2の論理ページ番号C
2nに変換して該テスト用データベース101を
検索せしめる変換部10と を設け、プログラムテスト時に第2の論理ページ
数A2を設定して該データベース100を複写せ
しめるとともに、算出された第1の論理ページ番
号C1nを第2の論理ページ番号C2nに変換し
てテスト用データベース101を検索せしめるこ
とを特徴とするデータベースシステムにおける検
索方式。
[Claims] 1. First logical page number A1 and record key number
The database 100 is managed by issuing a first logical page number C1n to each record RCn using a predetermined formula based on
A database management unit 7 that copies a part of the LP to generate a test database and tests it, and a record key number Xn specified by the application program 1.
In a database system including a logical page number calculation unit 4 that calculates a first logical page number C1n based on a specified number of logical pages A2 and searches the database 100, a test database generation unit 8 that issues a second logical page number C2n using the predetermined formula and copies the database 100 to generate a test database 101; The first logical page number C1n is changed to the second logical page number C.
2n to search the test database 101, and sets a second logical page number A2 at the time of program test to copy the database 100, and also sets the second logical page number A2 at the time of program test to copy the database 100. A search method in a database system characterized in that the test database 101 is searched by converting a number C1n into a second logical page number C2n.
JP62016725A 1987-01-27 1987-01-27 Retrieving system for data base system Granted JPS63184829A (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
JP62016725A JPS63184829A (en) 1987-01-27 1987-01-27 Retrieving system for data base system

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
JP62016725A JPS63184829A (en) 1987-01-27 1987-01-27 Retrieving system for data base system

Publications (2)

Publication Number Publication Date
JPS63184829A JPS63184829A (en) 1988-07-30
JPH0560632B2 true JPH0560632B2 (en) 1993-09-02

Family

ID=11924235

Family Applications (1)

Application Number Title Priority Date Filing Date
JP62016725A Granted JPS63184829A (en) 1987-01-27 1987-01-27 Retrieving system for data base system

Country Status (1)

Country Link
JP (1) JPS63184829A (en)

Families Citing this family (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
JP4998552B2 (en) * 2007-03-20 2012-08-15 富士通株式会社 Simulation processing apparatus, simulation processing system, and computer program
JP5668492B2 (en) * 2011-01-25 2015-02-12 富士通株式会社 Data processing apparatus, computer program, and data processing method
JP6503908B2 (en) * 2015-06-12 2019-04-24 富士通株式会社 Control program, control method, and control device
JP6662153B2 (en) * 2016-03-31 2020-03-11 ダイキン工業株式会社 Program creation system

Also Published As

Publication number Publication date
JPS63184829A (en) 1988-07-30

Similar Documents

Publication Publication Date Title
US5519855A (en) Summary catalogs
US5758146A (en) Method and apparatus for optimizing data retrieval using index scanning
US20050010592A1 (en) Method and system for taking a data snapshot
JP2009009590A (en) System and method for website content development
JPH0415839A (en) Distributed data base control device
JPH0279141A (en) Virtual index mechanism
US6353819B1 (en) Method and system for using dynamically generated code to perform record management layer functions in a relational database manager
Ceri et al. Optimization problems and solution methods in the design of data distribution
JPH0560632B2 (en)
US7092933B1 (en) Supporting user-defined datatypes
JPH09160798A (en) Test equipment for plant control system
JPH04267443A (en) File managing processor
US7127457B1 (en) Method and system for executing database queries
Radecki Reducing the perils of merging Boolean and weighted retrieval systems
JP2762949B2 (en) Query Partitioning Method in Object-Oriented Database Management System
CN114580018A (en) Privacy computing method, device, electronic device and storage medium
Bradley An extended owner-coupled set data model and predicate calculus for database management
Morrissey et al. Distributed query optimization using reduction filters
JP2546101B2 (en) Distributed database update method
JP3398672B2 (en) Intermediate data storage device
Skjellaug et al. Multi-dimensional time support for spatial data models
US7171397B1 (en) Method and system for measuring parallelism of a database system execution step
JPH01191229A (en) File control system
KR930007231B1 (en) Database Access Method using Physical Address in DBMS of Electronic Switching System
JP2722660B2 (en) How to manage indexed sequential files

Legal Events

Date Code Title Description
EXPY Cancellation because of completion of term