JP2000029898A - Sql generation system - Google Patents

Sql generation system

Info

Publication number
JP2000029898A
JP2000029898A JP10198365A JP19836598A JP2000029898A JP 2000029898 A JP2000029898 A JP 2000029898A JP 10198365 A JP10198365 A JP 10198365A JP 19836598 A JP19836598 A JP 19836598A JP 2000029898 A JP2000029898 A JP 2000029898A
Authority
JP
Japan
Prior art keywords
dml
configuration information
ddl
information
sql
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.)
Pending
Application number
JP10198365A
Other languages
Japanese (ja)
Inventor
Rieko Shimizu
理恵子 清水
Toru Uzawa
亨 鵜澤
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.)
Hitachi Ltd
Original Assignee
Hitachi 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 Hitachi Ltd filed Critical Hitachi Ltd
Priority to JP10198365A priority Critical patent/JP2000029898A/en
Publication of JP2000029898A publication Critical patent/JP2000029898A/en
Pending legal-status Critical Current

Links

Landscapes

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

Abstract

PROBLEM TO BE SOLVED: To generate DML even in the case that the actual body of a database as an object is not present by preserving DML constitution information in a DML constitution information holding area by using DDL constitution information or the like and generating the DML from the respective preserved information of DBMS, DDL constitution and DML constitution. SOLUTION: For the data definition language(DDL) constitution information 101, a user inputs a column name, selects the column attribute of the input column name from DBMS information preserved in a DBMS information holding area 108 and preserves it in a DDL constitution information holding area 109 by a table constitution information registration processing 105. A data manipulation language(DML) generation processing part 114 buries structured query language(SQL) grammar information preserved in the DBMS information holding area 108, the DDL constitution information preserved in the DDL constitution information holding area 109 and the DML constitution information preserved in the DML constitution information holding area 110 in an SQL pattern file 111 for the DBMS to be the object and generates the DML.

Description

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

【0001】[0001]

【発明の属する技術分野】本発明はデータベースのSQ
Lの生成に関するものである。
[0001] The present invention relates to the SQ of a database.
L generation.

【0002】[0002]

【従来の技術】データベースのDDLやDMLを生成す
る機能は、既存のDB設計支援ツールやクライアントサ
ーバシステム開発ツールでも実現されているが、DML
は対象となるデータベースのスキーマに定義されている
テーブル定義の情報を使用して生成される。このため、
従来技術でのDMLの生成は、対象データベースの実体
が必要である。
2. Description of the Related Art The function of generating DDL and DML of a database is realized by existing DB design support tools and client server system development tools.
Is generated using the table definition information defined in the schema of the target database. For this reason,
The generation of a DML according to the prior art requires an entity of a target database.

【0003】また、プログラムで使用するDMLの内容
により、テーブルやインデックスの定義に追加・変更が
発生することは少なくないが、既にデータベースの実体
が作成されている場合は、既存のデータベースの実体の
削除とDDLの再作成及び再実行という手順でデータベ
ースの実体を再作成することになる。
[0003] In addition, it is not uncommon for the definition of tables and indexes to be added or changed depending on the contents of the DML used in a program. The entity of the database is re-created by the procedure of deleting, re-creating and re-executing the DDL.

【0004】[0004]

【発明が解決しようとする課題】上記のように、従来技
術ではDMLを生成する前にデータベースに対して、テ
ーブル定義のDDLを実行し、データベースの実体を生
成しなければならない。しかし、インデックス定義等の
最適化はDMLの内容を考慮する必要がある。このた
め、後から生成したDMLに対して最適なデータベース
の実体を作成するためには、既存のデータベースの実体
の削除とDDLの再作成及び再実行という手順で、デー
タベースの実体の再作成を行うことになり、作業が多く
なる。
As described above, in the prior art, the DDL of the table definition must be executed on the database before generating the DML to generate the entity of the database. However, optimization of the index definition and the like needs to consider the contents of the DML. For this reason, in order to create an optimal database entity for the DML generated later, the database entity is re-created by deleting the existing database entity, re-creating and re-executing the DDL. That means more work.

【0005】本発明では、DDLを構成するテーブル名
やカラム名等のDDL構成情報をSQL生成システムに
保存し、DMLの生成に使用することで、DMLの生成
時にデータベースの実体の存在を必須とする問題を解決
する。また、DDL構成情報を使用して生成するDML
もDML構成情報としてSQL生成システムに保存して
おき、保存したDML構成情報の探索条件の内容から自
動的にインデックス定義のDDL構成情報を作成・保存
する処理により、インデックス定義の最適化の問題を改
善する。
In the present invention, DDL configuration information such as table names and column names constituting DDL are stored in an SQL generation system and used for DML generation, so that the existence of a database entity is indispensable when DML is generated. To solve the problem. Also, a DML generated using the DDL configuration information
Is also stored in the SQL generation system as DML configuration information, and the DDL configuration information of the index definition is automatically created and stored from the contents of the search condition of the stored DML configuration information, thereby optimizing the index definition. Improve.

【0006】[0006]

【課題を解決するための手段】DBMSの文法等のDB
MS情報、DDLに記述されるDDL構成情報、及びD
MLに記述されるDML構成情報をSQL生成システム
で保存することにより、ユーザは、データベースのスキ
ーマで持つテーブル定義の代わりに、テーブル定義の内
容を持つDDL構成情報を使用してDML構成情報を入
力でき、ユーザに入力されたDML構成情報とDBMS
情報及びDDL構成情報からDMLを生成するため、対
象データベースと切り離した状態でのDML生成が可能
になる。また、DMLの探索条件(WHERE句)の内
容をDML構成情報から取得し、該当カラムに対してイ
ンデックス定義のDDL構成情報を作成し、DDLの生
成を可能にする。
Means for Solving the Problems DB such as DBMS grammar
MS information, DDL configuration information described in DDL, and D
By storing the DML configuration information described in the ML in the SQL generation system, the user inputs the DML configuration information using the DDL configuration information having the contents of the table definition instead of the table definition included in the schema of the database. DML configuration information and DBMS input by the user
Since the DML is generated from the information and the DDL configuration information, the DML can be generated in a state separated from the target database. Also, the content of the DML search condition (WHERE clause) is acquired from the DML configuration information, and DDL configuration information of an index definition is created for the corresponding column, thereby enabling generation of the DDL.

【0007】[0007]

【発明の実施の形態】以下、本発明の実施の形態を詳細
に説明する。
Embodiments of the present invention will be described below in detail.

【0008】図1は、本発明のSQL生成システム10
4の機能構成図である。リポジトリ112はDBMS毎
の文法情報などを保存するDBMS情報保持領域10
8、DDLを構成する情報を保存するDDL構成情報保
持領域109、DMLを構成する情報を保存するDML
構成情報保持領域110、及びSQLやプログラムの雛
形となるパターンファイル111で構成されている。S
QLのパターンファイル111はDBMS毎、プログラ
ムのパターンファイル111は言語毎に用意する。
FIG. 1 shows an SQL generation system 10 according to the present invention.
4 is a functional configuration diagram of FIG. The repository 112 is a DBMS information holding area 10 for storing grammar information and the like for each DBMS.
8. DDL configuration information holding area 109 for storing information constituting DDL, DML for storing information constituting DML
It comprises a configuration information holding area 110 and a pattern file 111 serving as a template for SQL and programs. S
The QL pattern file 111 is prepared for each DBMS, and the program pattern file 111 is prepared for each language.

【0009】テーブル定義のDDL構成情報101は、
ユーザがテーブル名やカラム名を入力し、入力したカラ
ム名のカラム属性をDBMS情報保持領域108に保存
されているDBMS情報から選択し、テーブル構成情報
登録処理105でDDL構成情報保持領域109に保存
する。DML構成情報102は、DDL構成情報保持領
域109に既に保存されているテーブル定義のDDL構
成情報と、DBMS情報保持領域108に保存されてい
るSQL文法情報を選択する方法でユーザが入力し、D
ML構成情報登録処理106でDML構成情報保持領域
110に保存する。インデックス定義のDDL構成情報
103は、DML構成情報保持領域110に保存されい
てるDML構成情報の探索条件(SQLのWHERE
句)と、DBMS情報保持領域108に保存されている
SQL文法情報から、SQL生成システムで自動作成
し、インデックス構成情報登録処理107でDDL構成
情報保持領域109に保存する。
The DDL configuration information 101 of the table definition is
The user inputs a table name or a column name, selects a column attribute of the input column name from the DBMS information stored in the DBMS information storage area 108, and stores it in the DDL configuration information storage area 109 in the table configuration information registration processing 105. I do. The DML configuration information 102 is input by the user by a method of selecting the DDL configuration information of the table definition already stored in the DDL configuration information storage area 109 and the SQL grammar information stored in the DBMS information storage area 108.
In the ML configuration information registration processing 106, the data is stored in the DML configuration information holding area 110. The DDL configuration information 103 of the index definition is stored in a DML configuration information search area (SQL WHERE of SQL) stored in the DML configuration information holding area 110.
Phrase) and the SQL grammar information stored in the DBMS information storage area 108, automatically created by the SQL generation system, and stored in the DDL configuration information storage area 109 by the index configuration information registration processing 107.

【0010】DDL生成処理113は、DBMS情報保
持領域108に保存されているSQL文法情報と、DD
L構成情報保持領域109に保存されているDDL構成
情報を、対象とするDBMS用のSQLのパターンファ
イル111に埋め込んでDDLを生成し、SQLファイ
ル115として出力する。また、DML生成処理114
は、DBMS情報保持領域108に保存されているSQ
L文法情報と、DDL構成情報保持領域109に保存さ
れているDDL構成情報、及びDML構成情報保持領域
110に保存されているDML構成情報を、対象とする
DBMS用のSQLパターンファイル111に埋め込ん
でDMLを生成し、更に対象とする言語用のプログラム
のパターンファイル111に埋め込んでプログラムソー
ス116として出力する。
[0010] The DDL generation processing 113 includes the SQL grammar information stored in the DBMS information holding area 108 and the DD grammar information.
The DDL configuration information stored in the L configuration information holding area 109 is embedded in the SQL pattern file 111 for the target DBMS to generate a DDL, and output as the SQL file 115. Also, DML generation processing 114
Is the SQ stored in the DBMS information holding area 108
The L grammar information, the DDL configuration information stored in the DDL configuration information storage area 109, and the DML configuration information stored in the DML configuration information storage area 110 are embedded in the SQL pattern file 111 for the target DBMS. The DML is generated, embedded in the pattern file 111 of the target language program, and output as the program source 116.

【0011】図4はDDL構成情報保持領域109のデ
ータ構成図である。DDL構成情報保持領域109は5
つの表から構成される。表DB401は、データベース
に関する情報を保存する。表TABLE402は、デー
タベースに対して作成するテーブルの一覧を保存し、各
テーブルのカラムに関する情報は表TABLE_COL
UMN403で保存する。テーブルに対して作成するイ
ンデックスの情報は表TABLE_INDEX404と
表TABLE_INDEX_COLUMN405で保存
する。テーブル構成情報登録処理105では表TABL
E402と表TABLE_COLUMN403にDDL
構成情報を保存する。
FIG. 4 is a data configuration diagram of the DDL configuration information holding area 109. The DDL configuration information holding area 109 is 5
It consists of two tables. The table DB 401 stores information on a database. A table TABLE 402 stores a list of tables to be created in the database, and information on columns of each table is stored in a table TABLE_COL.
Save with UMN403. Index information created for the table is stored in a table TABLE_INDEX 404 and a table TABLE_INDEX_COLUMN 405. In the table configuration information registration processing 105, the table TABL
DDL in E402 and table TABLE_COLUMN403
Save configuration information.

【0012】図5はDML構成情報保持領域110のデ
ータ構成図である。DML構成情報保持領域110は5
つの表から構成される。表SQL501は、SQLの一
覧を保存する。表SQL_TABLE502は、各SQ
Lの対象テーブルを保存し、対象カラムは表SQL_C
OLUMN503で保存する。各SQLの探索条件の内
容は表SQL_WHERE504で保存し、ソート条件
の内容は表SQL_ORDER505で保存する。
FIG. 5 is a data configuration diagram of the DML configuration information holding area 110. DML configuration information holding area 110 is 5
It consists of two tables. The table SQL501 stores a list of SQL. The table SQL_TABLE 502 indicates that each SQ
Save the target table of L, the target column is the table SQL_C
Save with OLUMN 503. The content of the search condition of each SQL is stored in a table SQL_WHERE 504, and the content of the sort condition is stored in a table SQL_ORDER 505.

【0013】図2はDDL構成情報を使用したDML構
成情報登録処理106を示したフローチャートである。
DDL構成情報保持領域109の表TABLE402や
表TABLE_COLUMN403には、テーブル定義
のDDL構成情報が保存されている。また、DBMS情
報保持領域108には、DBMS毎のSQLの文法規則
が保存されている。フローチャート中は、社員テーブル
から、ある特定の部署コードを持つデータを検索し、社
員番号と氏名を社員番号の昇順でソートして表示すると
いう例のDML構成情報の登録処理を示している。
FIG. 2 is a flowchart showing DML configuration information registration processing 106 using DDL configuration information.
The table definition 402 and the table TABLE_COLUMN 403 in the DDL configuration information holding area 109 store the DDL configuration information of the table definition. The DBMS information storage area 108 stores SQL grammar rules for each DBMS. The flowchart shows a process of registering DML configuration information in which data having a specific department code is retrieved from an employee table, and employee numbers and names are sorted and displayed in ascending order of employee numbers.

【0014】ユーザはDML構成情報の入力を、対象テ
ーブルの選択201、対象カラムの選択202、探索条
件カラムの選択203、ソートカラムの選択204の順
序で行う。DDL構成情報保持領域109の表TABL
E402から表示する社員テーブルを選択201し、表
TABLE_COLUMN403中で社員テーブルとリ
ンクしているカラムから表示する社員番号カラムと氏名
カラムを選択202する。
The user inputs DML configuration information in the order of target table selection 201, target column selection 202, search condition column selection 203, and sort column selection 204. Table TABL of DDL configuration information holding area 109
An employee table to be displayed is selected 201 from E402, and an employee number column and a name column to be displayed are selected 202 from columns linked to the employee table in the table TABLE_COLUMN403.

【0015】次に、表TABLE_COLUMN403
中で社員テーブルとリンクしているカラムから探索条件
となる部署コードカラムを選択203し、選択したカラ
ムの関係演算子や論理演算子等をDBMS情報保持領域
108に保存されているSQL文法情報から選択203
する。そして、対象カラムの選択202で選択した社員
番号カラムと氏名カラムから、ソート条件にする社員番
号カラムを選択204し、社員番号カラムのソート条件
はDBMS情報保持領域108に保存されているSQL
文法情報から選択204する。
Next, the table TABLE_COLUMN 403
A section code column serving as a search condition is selected from the columns linked to the employee table in the table 203, and relational operators and logical operators of the selected columns are selected from the SQL grammar information stored in the DBMS information holding area 108. Selection 203
I do. Then, an employee number column to be used as a sort condition is selected 204 from the employee number column and the name column selected in the target column selection 202, and the sort condition of the employee number column is stored in the SQL information stored in the DBMS information holding area 108.
Select 204 from the grammar information.

【0016】上記の手順でユーザにより入力されたDM
L構成情報は、DML構成情報登録処理205により、
DML構成情報保持領域110中の表SQL501、表
SQL_TABLE502、表SQL_COLUMN5
03、表SQL_WHERE504、表SQL_ORD
ER505に保存される。
The DM input by the user in the above procedure
The L configuration information is obtained by the DML configuration information registration process 205.
Table SQL501, table SQL_TABLE502, table SQL_COLUMN5 in the DML configuration information holding area 110
03, table SQL_WHERE 504, table SQL_ORD
Stored in ER505.

【0017】図3はインデックス構成情報登録処理10
7を示したフローチャートであり、DMLの探索条件で
選択したカラムに対するインデックス構成情報を自動登
録する処理を示している。DML構成情報保持領域11
0の表SQL_WHERE504から、DML構成情報
登録処理106で保存した探索条件カラムのDB_I
D、TABLE_ID及びCOLUMN_IDを取得3
01する。次に、DBMS情報保持領域108のDBM
SのSQL文法情報から、インデックス作成に必要であ
るソート条件を表すコードとインデックスの種類(固有
・重複)を表すコードを取得302する。
FIG. 3 shows an index configuration information registration process 10.
7 is a flowchart illustrating a process of automatically registering index configuration information for a column selected by a DML search condition. DML configuration information holding area 11
0 from the table SQL_WHERE 504, DB_I of the search condition column stored in the DML configuration information registration processing 106.
Get D, TABLE_ID and COLUMN_ID 3
01. Next, the DBMS of the DBMS information holding area 108
From the SQL grammar information of S, a code representing a sort condition necessary for creating an index and a code representing a type (unique / duplicate) of an index are acquired 302.

【0018】上記の手順で取得したDB_ID、TAB
LE_ID、COLUMN_IDと、SQL生成システ
ム104で自動付与するINDEX_IDとINDEX
_NAME、及びSQL文法情報であるソート条件とイ
ンデックス種類をDDL構成情報保持領域109の表T
ABLE_INDEX404と表TABLE_INDE
X_COLUMN405に保存する。ソート条件は昇順
とし、インデックス種類は、探索条件で選択されるカラ
ムは主キー以外の場合もあるため、重複とする。
DB_ID and TAB obtained by the above procedure
LE_ID, COLUMN_ID, INDEX_ID and INDEX automatically assigned by the SQL generation system 104
_NAME, and sort conditions and index types, which are SQL grammar information, are stored in the table T of the DDL configuration information holding area 109.
ABLE_INDEX404 and table TABLE_INDE
Store in X_COLUMN 405. The sort condition is in ascending order, and the index type is duplicated because the column selected by the search condition may be other than the primary key.

【0019】インデックス構成情報登録処理107でD
DL構成情報保持領域109に自動保存されたDDL構
成情報を使用してDDL生成処理113を実行すると、
探索条件カラムに対するインデックス定義のDDLが生
成される。
In the index configuration information registration processing 107, D
When the DDL generation processing 113 is performed using the DDL configuration information automatically saved in the DL configuration information holding area 109,
A DDL of an index definition for the search condition column is generated.

【0020】[0020]

【発明の効果】対象とするデータベースの実体が存在し
ない場合にも、DMLを生成することが可能となる。ま
た、DMLの探索条件で指定されたカラムに対してイン
デックス定義のDDLを自動生成することで、インデッ
クス定義の最適化を効率的に行うことができる。
According to the present invention, it is possible to generate a DML even when the target database does not exist. In addition, by automatically generating the DDL of the index definition for the column specified by the DML search condition, the optimization of the index definition can be efficiently performed.

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

【図1】本発明のSQL生成システムの機能を示す構成
図。
FIG. 1 is a configuration diagram showing functions of an SQL generation system according to the present invention.

【図2】DDL構成情報を使用したDML構成情報登録
処理のフローチャート。
FIG. 2 is a flowchart of DML configuration information registration processing using DDL configuration information.

【図3】探索条件カラムに対するインデックス構成情報
登録処理のフローチャート。
FIG. 3 is a flowchart of index configuration information registration processing for a search condition column.

【図4】DDL構成情報保持領域のデータ構成図。FIG. 4 is a data configuration diagram of a DDL configuration information holding area.

【図5】DML構成情報保持領域のデータ構成図。FIG. 5 is a data configuration diagram of a DML configuration information holding area.

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

101…DDL構成情報(テーブル定義)、 102…
DML構成情報、103…DDL構成情報(インデック
ス定義)、104…SQL生成システム、 105
…テーブル構成情報登録処理、106…DML構成情報
登録処理、107…インデックス構成情報登録処理、1
08…DBMS情報保持領域、 109…DDL構成
情報保持領域、110…DML構成情報保持領域、 1
11…パターンファイル、112…リポジトリ、
113…DDL生成処理、114…DML生成
処理、 115…SQLファイル、116…プ
ログラムソース、201…対象テーブルの選択、
202…対象カラムの選択、203…探索条件カラムの
選択、 204…ソートカラムの選択、205…DM
L構成情報の登録、301…探索条件カラムの取得、
302…SQL文法情報の取得、303…インデック
ス構成情報の登録、401…表DB、
402…表TABLE、403…表TABLE_CO
LUMN、404…表TABLE_INDEX、405
…表TABLE_INDEX_COLUMN、501…
表SQL、 502…表SQL_TAB
LE、503…表SQL_COLUMN、 504…表
SQL_WHERE、505…表SQL_ORDER。
101 ... DDL configuration information (table definition), 102 ...
DML configuration information, 103: DDL configuration information (index definition), 104: SQL generation system, 105
... Table configuration information registration processing, 106 ... DML configuration information registration processing, 107 ... Index configuration information registration processing, 1
08: DBMS information holding area, 109: DDL configuration information holding area, 110: DML configuration information holding area, 1
11 ... pattern file, 112 ... repository,
113: DDL generation processing, 114: DML generation processing, 115: SQL file, 116: program source, 201: selection of target table,
202: Selection of target column, 203: Selection of search condition column, 204: Selection of sort column, 205: DM
L configuration information registration, 301 ... acquisition of search condition columns,
302: acquisition of SQL grammar information; 303: registration of index configuration information; 401: table DB;
402: Table TABLE, 403: Table TABLE_CO
LUMN, 404 ... Table TABLE_INDEX, 405
… Table TABLE_INDEX_COLUMN, 501…
Table SQL, 502 ... Table SQL_TAB
LE, 503: table SQL_COLUMN, 504: table SQL_WHERE, 505: table SQL_ORDER.

Claims (2)

【特許請求の範囲】[Claims] 【請求項1】データベースのSQL(SQL:Structur
ed Query Language 構造化照会言語)の文法情報等を保
存するDBMS情報保持領域と、データベースのテーブ
ルやインデックスを定義するDDL(DDL:Data Def
inition Language データ定義言語)を構成するDDL
構成情報を保存するDDL構成情報保持領域、及びテー
ブルのデータを操作(検索・追加・削除・更新)するD
ML(DML:Data Manipulation Language データ操
作言語)を構成するDML構成情報を保存するDML構
成情報保持領域を持ち、DDL構成情報保持領域に保存
されているテーブル定義を構成するDDL構成情報とD
BMS情報保持領域に保存されている文法情報を使用し
て、ユーザが入力したDML構成情報をDML構成情報
保持領域に保存し、保存されいてるDBMS情報、DD
L構成情報、及びDML構成情報からDMLを生成する
ことを特徴とするSQL生成システム。
1. A database (SQL: Structure: SQL)
ed Query Language A DBMS information holding area for storing grammar information and the like of structured query language, and a DDL (DDL: Data Def) for defining tables and indexes of the database.
DDL that constitutes inition Language (Data Definition Language)
DDL configuration information storage area for storing configuration information, and D for operating (searching, adding, deleting, and updating) table data
It has a DML configuration information storage area for storing DML configuration information that configures ML (Data Manipulation Language), and DDL configuration information and D that configure a table definition stored in the DDL configuration information storage area.
Using the grammar information stored in the BMS information storage area, the DML configuration information input by the user is stored in the DML configuration information storage area, and the stored DBMS information, DD
An SQL generation system for generating a DML from L configuration information and DML configuration information.
【請求項2】上記請求項1に記載のSQL生成システム
において、SQLの探索条件(WHERE句)に指定さ
れたカラムに対するインデックス定義のDDL構成情報
を、DML構成情報保持領域に保存されているDML構
成情報の探索条件(WHERE句)の情報とDBMS情
報保持領域の文法情報から作成し、DDL構成情報保持
領域に保存することを特徴とするSQL生成システム。
2. The DML configuration information according to claim 1, wherein the DML configuration information of the index definition for the column specified in the SQL search condition (WHERE clause) is stored in the DML configuration information holding area. An SQL generation system, which is created from information of a search condition (WHERE clause) of configuration information and grammatical information of a DBMS information storage area, and stores the generated information in a DDL configuration information storage area.
JP10198365A 1998-07-14 1998-07-14 Sql generation system Pending JP2000029898A (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
JP10198365A JP2000029898A (en) 1998-07-14 1998-07-14 Sql generation system

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
JP10198365A JP2000029898A (en) 1998-07-14 1998-07-14 Sql generation system

Publications (1)

Publication Number Publication Date
JP2000029898A true JP2000029898A (en) 2000-01-28

Family

ID=16389903

Family Applications (1)

Application Number Title Priority Date Filing Date
JP10198365A Pending JP2000029898A (en) 1998-07-14 1998-07-14 Sql generation system

Country Status (1)

Country Link
JP (1) JP2000029898A (en)

Cited By (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20110179404A1 (en) * 2010-01-20 2011-07-21 Aetna Inc. System and method for code automation
US8010582B2 (en) 2002-03-18 2011-08-30 International Business Machines Corporation Method, system, and program product for migrating data from one data base management system to another data base management system
JP2012123582A (en) * 2010-12-08 2012-06-28 Hitachi Ltd Data access processing management/generation system
JP2020042722A (en) * 2018-09-13 2020-03-19 東芝情報システム株式会社 Data search system and data searching program

Cited By (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US8010582B2 (en) 2002-03-18 2011-08-30 International Business Machines Corporation Method, system, and program product for migrating data from one data base management system to another data base management system
US20110179404A1 (en) * 2010-01-20 2011-07-21 Aetna Inc. System and method for code automation
US8555263B2 (en) * 2010-01-20 2013-10-08 Aetna Inc. System and method for code automation
JP2012123582A (en) * 2010-12-08 2012-06-28 Hitachi Ltd Data access processing management/generation system
JP2020042722A (en) * 2018-09-13 2020-03-19 東芝情報システム株式会社 Data search system and data searching program

Similar Documents

Publication Publication Date Title
US7185016B1 (en) Methods and transformations for transforming metadata model
US7457810B2 (en) Querying markup language data sources using a relational query processor
US6148296A (en) Automatic generation of database queries
Deen et al. Data integration in distributed databases
US6374263B1 (en) System for maintaining precomputed views
US5802524A (en) Method and product for integrating an object-based search engine with a parametrically archived database
CA2281331A1 (en) Database management system
EP1081610A2 (en) Methods for transforming metadata models
US6675160B2 (en) Database processing method, apparatus for carrying out the same and medium storing processing program
US10509787B2 (en) Installation for managing a database
US6301581B1 (en) Method and system for managing access to a plurality of data objects
CN112347108A (en) Data query method and system suitable for hybrid backend
Naumann et al. Data fusion in three steps: Resolving inconsistencies at schema-, tuple-, and value-level
JP2006524376A (en) Generic database schema
JP2000029898A (en) Sql generation system
CA2317194C (en) Query engine and method for querying data using metadata model
US7251641B2 (en) Adjustable database runtime kernel
Carey et al. Data access interoperability in the IBM database family
Shekita High Performance Implementation Techniques for Next Generation Database Systems
US20050076007A1 (en) Structured query language table merging
CA2318302C (en) Methods and transformations for transforming metadata model
JPH02236778A (en) Inquiry optimumization processing system
JP2000276386A (en) Method and device for generating program utilizing relation of relational data base
Schmidt et al. Basic Building Blocks for Column-Stores
Huawei Technologies Co., Ltd. SQL Syntax Categories