The Intelligent Database Interface

Total Page:16

File Type:pdf, Size:1020Kb

The Intelligent Database Interface The Intelligent Database Interface: Integrating AI and Database Systems Donald P. McKay and Timothy W. Finin and Anthony O'Hare Unisys Center for Advanced Information Technology Paoli, Pennsylvania [email protected] and [email protected] Abstract its tuple-at-a-time inference mechanisms. The IDI has also b een used to implement a query server supp orting The Intel ligent Database Interface IDI is a cache-based a database used for an Air Travel Information System interface that is designed to provide Arti cial Intelligence which is accessed byaspoken language system imple- systems with ecient access to one or more databases on one [ ] or more remote database management systems DBMSs. mented in Prolog Dahl, et. al., 1990 . It can b e used to interface with a wide variety of di erent In addition to providing ecient access to remote DBMSs with little or no mo di cation since SQL is used to DBMSs, the IDI o ers several other distinct advan- communicate with remote DBMSs and the implementation tages. It can b e used to interface with a wide vari- of the IDI provides a high degree of p ortability. The query ety of di erent DBMSs with little or no mo di cation language of the IDI is a restricted subset of function-free since SQL is used to communicate with the remote Horn clauses which is translated into SQL. Results from the DBMS. Also, several connections to the same or di er- IDI are returned one tuple at a time and the IDI manages ent DBMSs can exist simultaneously and can b e kept a cache of result relations to improve eciency. The IDI is active across anynumb er of queries b ecause connec- one of the key comp onents of the Intel ligent System Server tions to remote DBMSs are abstract ob jects that are ISS knowledge representation and reasoning system and is also b eing used to provide database services for the Unisys managed as resources by the IDI. Finally, accessing sp oken language systems program. schema information is handled automatically by the IDI, i.e., the application is not required to maintain up-to-date schema information for the IDI. This signif- Intro duction icantly reduces the p otential for errors intro duced by The Intel ligent Database Interface IDI is a p ortable, stale schema information or by hand entered data. cache-based interface designed to provide arti cial intel- The IDI can b e viewed as a stand-alone DBMS inter- ligence systems in general and exp ert systems in par- face which accepts queries in the form of IDIL clauses ticular with ecient access to one or more databases and returns the result relation as a set of tuples i.e., on one or more remote database management systems a list of Lisp atoms and/or strings. IDIL queries are [ DBMS which supp ort SQL Chamb erlin, et. al., translated into SQL and sent to the appropriate DBMS ] 1976 . The query language of the IDI is the Intelligent for execution. The results from the DBMS are then [ ] Database Interface Language IDIL O'Hare, 1989 and transformed by the IDI into tuples of Lisp ob jects. Al- is based on a restricted subset of function-free Horn though the IDI was not designed to b e used directly clauses where the head of a clause represents the tar- by a user, the following descriptions will b e couched get list i.e., the form of the result relation and the in terms of using the IDI as a stand-alone system so b o dy is a conjunction of literals which denote database that wemayavoid complicating our discussions with relations or op erations on the relations and/or their at- the details of an AI system such as the ISS. tributes e.g., negation, aggregation, and arithmetic op- The design of the IDI was heavily in uenced by pre- erations. [ vious research in the area of AI/DB integration Kellog, The IDI is one of the key comp onents of the In- et. al., 1986, O'Hare, 1987, O'Hare and Travis, 1989, [ ] tel ligent System Server ISS Finin, et. al., 1989 ] O'Hare and Sheth, 1989 . One of the more signi cant [ ] which is based on Protem Fritzson and Finin, 1988 design criteria that this lead to is the supp ort of non- and provides a combined logic-based and frame-based trivial queries in IDIL. That is, to allow for queries in- knowledge representation system and supp orts forward- volving more than just a single database relation. This chaining, backward-chaining, and truth maintenance. capability allows the AI system to o -load computa- The IDI was designed to b e compatible with the logic- tions that are more eciently pro cessed by the DBMS based knowledge representation scheme of the ISS and instead of the AI system e.g., join op erations. In many cases, this also has the e ect of reducing the size of data current address: IBM, ResearchTriangle Park, North Carolina set that is returned by the DBMS. the AI system is extended with DBMS capabilities to vide ecient access to, and management of, large AI AI DB pro ts of stored data. In general, such systems do DB amoun hnology. Rather, the Extending the AI system Loose coupling not incorp orate full DBMS tec emphasis is on the AI system and the DBMS capabil- ities are added in an ad hoc and limited manner, e.g., DB AI Interface DB [ ] al., 1986 implements only the data access AI Ceri, et. yer. Alternatively, a new generation knowledge-based Extending the DB system Enhanced AI/DB interface la [ ] system such as LDL Chimenti, et. al., 1987 maybe constructed. In either case, this approach e ectively Figure 1: Of the four alternative approaches to AI/DB inte- involves \re-inventing" some or all of DBMS technol- gration, the Intel ligent Database Interface is an example of ogy. While such systems typically provide sophisticated an enhanced AI/DB interface. to ols and environments for the development of applica- tions such as exp ert systems, they can not readily make use of existing databases. Thus, the developmentofAI While the IDI is to some small degree system dep en- applications whichmust access existing databases will dent, it do es o er a high degree of p ortability b ecause b e exceedingly dicult if not imp ossible e.g., when the it is implemented in Common Lisp, communicates with database is routinely accessed and up dated via more remote DBMSs using SQL and standard UNIX pip es, traditional kinds of applications. and represents IDIL queries and their results as Com- mon Lisp ob jects. Extending the DBMS System: This approach extends a DBMS to provide knowledge representation In the following sections we present a brief overview [ and reasoning capabilities, e.g., POSTGRES Stone- of the area of AI/DB integration which represents a ] breaker, et. al., 1987 . Here, the DBMS capabilities are large part of the motivation for the IDI, a discussion the central concern and the AI capabilities are added in of some of the more signi cant features of the IDI, the an ad hoc manner. The knowledge representation and organization and ma jor comp onents of the IDI, and - reasoning capabilities are generally quite limited and nally an example of how the IDI is b eing used in two they lack the sophisticated to ols and environments of applications. most AI systems. Such systems do not directly sup- p ort the use of existing DBMSs nor can they directly AI/DB Integration supp ort existing AI applications e.g., exp ert systems The integration of AI and DBMS technologies promises without substantial e ort on the part of the applica- to play a signi cant role in shaping the future of com- tion develop er. In some sense, this is the opp osite of [ ] puting. As noted in Bro die, 1988 , AI/DB integration the previous approach. is crucial not only for next generation computing but Lo ose Coupling: The lo ose coupling approachto also for the continued development of DBMS technology AI/DB integration uses a simple interface b etween the and for the e ective application of muchofAItechnol- twotyp es of systems to provide the AI system with ac- ogy. [ cess to existing databases, e.g., KEE-connection Abar- While b oth DBMS and AI systems, particularly ex- ] banel and Williams, 1986 . While this approach has p ert systems, representwell established technologies, the distinct advantage of integrating existing AI sys- research and development in the area of AI/DB inte- tems and existing DBMSs, the relatively low level of gration is comparatively new. The motivations driv- integration results in p o or p erformance and limited use ing the integration of these two technologies include of the DBMS by the AI system. In addition, access the need for a access to large amounts of shared to data from the database, as well as the data itself, data for knowledge pro cessing, b ecient manage- is p o orly integrated into the representational scheme of ment of data as well as knowledge, and c intelli- the AI system. The highly divergent metho ds repre- gent pro cessing of data. In addition to these moti- senting data e.g., relational data mo dels vs. frames is vations, the design of IDI was also motivated by the generally left to the application develop er or knowledge desire to preserve the substantial investment repre- engineer with only minimal supp ort from the AI/DB sented by most existing databases.
Recommended publications
  • 1990-The Intelligent Database Interface: Integrating AI And
    From: AAAI-90 Proceedings. Copyright ©1990, AAAI (www.aaai.org). All rights reserved. The Intelligent Database Interface: Integrating AI and Database Systems Donald P. McKay and Timothy W. Finin and Anthony O’Hare* Unisys Center for Advanced Information Technology Paoli, Pennsylvania [email protected] and [email protected] Abstract its tuple-at-a-time inference mechanisms. The ID1 has also been used to implement a query server supporting The Intelligent Database Interface (IDI) is a cache-based interface that is designed to provide Artificial Intelligence a database used for an Air Trorvel Information System systems with efficient access to one or more databases on one which is accessed by a spoken language system imple- or more remote database management systems (DBMSs). mented in Prolog [Dahl, et. al., 19901. It can be used to interface with a wide variety of different In addition to providing efficient access to remote DBMSs with little or no modification since SQL is used to DBMSs, the ID1 offers several other distinct advan- communicate with remote DBMSs and the implementation tages. It can be used to interface with a wide vari- of the ID1 provides a high degree of portability. The query ety of different DBMSs with little or no modification language of the ID1 is a restricted subset of function-free since SQL is used to communicate with the remote Horn clauses which is translated into SQL. Results from the DBMS. Also, several connections to the same or differ- ID1 are returned one tuple at a time and the ID1 manages a cache of result relations to improve efficiency.
    [Show full text]
  • Intelligent Database Systems
    Intelligent Database Systems Barbara Catania University of Genova (Italy) IIWAS 2001 - Linz, Austria IIWAS 2001 - Linz, Austria Barbara Catania Pag. 1 Outline • Introduction to Intelligent Database Systems (IDBs) • Fundamental IDB approaches • IDBs and their role in Web applications • An IDB approach for metadata representation and retrieval • Conclusions • Bibliography IIWAS 2001 - Linz, Austria Barbara Catania Pag. 2 Introduction IIWAS 2001 - Linz, Austria Barbara Catania Pag. 3 What is an IDB? DB technology: AI techniques: • limited modeling capabilities • often toy systems • new data management • no persistent management applications of data Late ‘80s/’90s DB techniques can aid AI techniques can an AI system to deal provide semantic support to a with large amount of IDB Technology information DB system IIWAS 2001 - Linz, Austria Barbara Catania Pag. 4 Characteristics of IDBs • Architecture based (at least implicitly) on an organization in the Expert Systems (ESs) style – Fact DataBase (FDB) + Rule Base (RLB) • Use of AI techniques – Knowledge representation techniques • semantic data representation – Inference techniques • improved reasoning about data – Intelligent user interfaces • help users to make requests and receive replies • persistency of the FDB IIWAS 2001 - Linz, Austria Barbara Catania Pag. 5 A traditional taxonomy of IDBs Efforts originated in a DB context Static extensions Dynamic extensions extending the expressive power introducing some form of of traditional DB data models reasoning inside DBMSs Efforts originated in a AI context Basic solutions Advanced solutions coupling knowledge-based attempt to use AI systems systems and DBMSs to deal directly with large amount of information IIWAS 2001 - Linz, Austria Barbara Catania Pag. 6 Fundamental IDB approaches IIWAS 2001 - Linz, Austria Barbara Catania Pag.
    [Show full text]
  • An Intelligent Database for PSUBOT, an Autonomous Wheelchair
    Portland State University PDXScholar Dissertations and Theses Dissertations and Theses 1992 An intelligent database for PSUBOT, an autonomous wheelchair Dieudonne Mayi Portland State University Follow this and additional works at: https://pdxscholar.library.pdx.edu/open_access_etds Part of the Electrical and Computer Engineering Commons Let us know how access to this document benefits ou.y Recommended Citation Mayi, Dieudonne, "An intelligent database for PSUBOT, an autonomous wheelchair" (1992). Dissertations and Theses. Paper 4332. https://doi.org/10.15760/etd.6216 This Thesis is brought to you for free and open access. It has been accepted for inclusion in Dissertations and Theses by an authorized administrator of PDXScholar. Please contact us if we can make this document more accessible: [email protected]. AN ABSTRACT OF THE THESIS OF Dieudonne Mayi for the Master of Science in Electrical and Computer Engineering presented February 7, 1992. Title: An Intelligent Database for PSUBOT, an Autonomous Wheelchair. APPROVED BY THE MEMBERS OF THE THESIS COMM E: Maria Balogh Jeal);-$'choltz ,/ In the design of autonomous mobile robots, databases have been used mainly to store information on the environment in which the device is to operate. For most of the models and ready systems, the database when used, is not a stand alone component in the system, rather it is only intended to keep static information on the disposition and properties of objects on the map. 2 In this thesis is implemented an intelligent database. This database is called intelligent because it is knowledge-based. It combines static facts to build more information. An intelligent database such as this one will be a plus for an intended autonomous machine such as the PSUBOT wheelchair being developed in the Department of Electrical Engineering.
    [Show full text]
  • DATABASES for ARTIFICIAL INTELLIGENCE Srishty Choudhary, Uday Patkar
    Srishty Choudhary et al, International Journal of Computer Science and Mobile Computing, Vol.5 Issue.3, March- 2016, pg. 67-70 Available Online at www.ijcsmc.com International Journal of Computer Science and Mobile Computing A Monthly Journal of Computer Science and Information Technology ISSN 2320–088X IMPACT FACTOR: 5.258 IJCSMC, Vol. 5, Issue. 3, March 2016, pg.67 – 70 DATABASES FOR ARTIFICIAL INTELLIGENCE Srishty Choudhary, Uday Patkar BVCOEL, INDIA BVCOEL, INDIA [email protected] [email protected] Abstract- The basic motto behind implementing artificial intelligence is to create expert systems and to implement human intelligence in machines. An intelligent robot is a machine able to extract information from its environment. One can study this to know more about themselves and how data are stored and which system is used here. Keywords: - AI (Artificial intelligence), RDMS (Relational database management system), DBMS (Database management system), IDMS (Intelligent database management system), HIPM (Human information processing model), DPM (Data processing model). I. INTRODUCTION Artificial intelligence is a branch of science or rather advanced science which deals with how intelligence can be implemented. But after implementing next important aspect that should be made confront is how data which is generated will be stored and for that we need databases. Database is basically a pool of data which stores data in both sequential and non-sequential format. II. THEORETICAL BACKGROUND Data is collection of bits and bytes of information and a database is an organised collection of data. On the broader side a Database management system (DBMS) is a computer software application that interacts with the user, other applications, and the database itself to capture and analyse data.
    [Show full text]
  • BUILDING an EXPERT DATABASE SYSTEM in C USING CLIPS and PARADOX Major Field: Computer Science Biographical
    BUILDING AN EXPERT DATABASE SYSTEM IN C USING CLIPS AND PARADOX BY DIPTI R. BHARGAVA Bachelor of Science Nagpur University Nagpur, India 1986 Submitted to the Faculty of the Graduate College of the Oklahoma state University in partial fulfillment of the requirements for the Degree of MASTER OF SCIENCE July, 1993 OKLc\HOlVfA STATE UJ\,TfVERSITY BUILDING AN EXPERT DAT~BASE SYSTEM IN C USING CLIPS AND PARADOX Thesis Approved: (l Thesis Advisor ;) _/;) . z ' !vk~L----~ Dean~f the Graduate College ii ACKNOWLEDGMENTS I wish to express my sincere appreciation to my parents, to whom I dedicate this thesis, for having given me the opportunity to pursue higher studies in the us. Their love and support enabled me to accomplish this mission. Thanks also to my brothers, sisters and the rest of my family for their great love and moral support. Special thanks to my dear friend Ravi without whose constant nagging this thesis would never have been completed. Gratitude is due to my friends Shashi, Anu, Ganesh Sundaram, Mr. Larry Watkins of UCC, Elaine Burges and Regina Henry of ISS. My special thanks to my manager Maryanne Deaton at United Airlines for being so considerate and understanding during this effort. I also extend my thanks to my colleagues for their encouragement. My thanks to Dr. M. Samadzadeh for his valuable suggestions during this rather difficult process. Last but not least my thanks to my husband for being on my side. iii TABLE OF CONTENTS Chapter Page I. INTRODUCTION . 1 Statement of the Problem. • . 3 Proposed Thesis . 4 II.
    [Show full text]
  • MANAGING and MINING MULTIMEDIA DATABASES
    MANAGING and MINING MULTIMEDIA DATABASES 0037FM/frame Page 2 Friday, May 11, 2001 10:31 AM MANAGING and MINING MULTIMEDIA DATABASES Bhavani Thuraisingham CRC Press Boca Raton London New York Washington, D.C. disclaimer Page 1 Friday, May 18, 2001 3:50 PM Library of Congress Cataloging-in-Publication Data Thuraisingham, Bhavani M. Managing and mining multimedia databases / Bhavani Thuraisingham. p. cm. Includes bibliographical references and index. ISBN 0-8493-0037-1 1. Database management. 2. Data mining. 3. Multimedia systems. I. Title. QA76.9.D3 T458 2001 006.7—dc21 2001025368 This book contains information obtained from authentic and highly regarded sources. Reprinted material is quoted with permission, and sources are indicated. A wide variety of references are listed. Reasonable efforts have been made to publish reliable data and information, but the author and the publisher cannot assume responsibility for the validity of all materials or for the consequences of their use. Neither this book nor any part may be reproduced or transmitted in any form or by any means, electronic or mechanical, including photocopying, microfilming, and recording, or by any information storage or retrieval system, without prior permission in writing from the publisher. The consent of CRC Press LLC does not extend to copying for general distribution, for promotion, for creating new works, or for resale. Specific permission must be obtained in writing from CRC Press LLC for such copying. Direct all inquiries to CRC Press LLC, 2000 N.W. Corporate Blvd., Boca Raton, Florida 33431. Trademark Notice: Product or corporate names may be trademarks or registered trademarks, and are used only for identification and explanation, without intent to infringe.
    [Show full text]
  • An Architecture for Distributed Multimedia Database Systems
    Syracuse University SURFACE Electrical Engineering and Computer Science College of Engineering and Computer Science 1990 An Architecture for distributed multimedia database systems P. B. Berra Syracuse University C.Y.R. Chen Syracuse University, Department of Electrical and Computer Engineering A. Ghafoor Syracuse University, Department of Electrical and Computer Engineering C. C. Lin Syracuse University, School of Information Science Follow this and additional works at: https://surface.syr.edu/eecs Part of the Computer Sciences Commons Recommended Citation Berra, P. B.; Chen, C.Y.R.; Ghafoor, A.; and Lin, C. C., "An Architecture for distributed multimedia database systems" (1990). Electrical Engineering and Computer Science. 28. https://surface.syr.edu/eecs/28 This Working Paper is brought to you for free and open access by the College of Engineering and Computer Science at SURFACE. It has been accepted for inclusion in Electrical Engineering and Computer Science by an authorized administrator of SURFACE. For more information, please contact [email protected]. An Architecture for Distributed Multimedia Database Systems 1 P.B. Berra C.Y.R. Chen A. Ghafoor C.C. Lin* T.D.C. Little D. Shin* Department of Electrical & Computer Engineering Syracuse University Syracuse, NY 13244-1240 *School of Computer and Information Science Syracuse University Syracuse, NY 13244-4100 Abstract– In the past few years considerable demand for user oriented multimedia information systems has developed. These systems must provide a rich set of functionality so that new, complex, and interesting applications can be addressed. This places considerable importance on the management of diverse data types including text, images, audio and video. These requirements generate the need for a new generation of distributed heterogeneous multimedia database systems.
    [Show full text]
  • Data Modeling of Knowledge Rules: an Oracle Prototype
    JOURNAL OF SOFTWARE, VOL. 7, NO. 12, DECEMBER 2012 2857 Data Modeling of Knowledge Rules: An Oracle Prototype Rajeev Kaula Computer Information Systems Department, Missouri State University, Springfield, MO 65897 (USA) E-Mail: [email protected] Abstract—Knowledge rules are outlined declaratively in a and JESS [7]. This paper outlines an approach to knowledge base repository. Each rule is created structure knowledge rules as a database schema for independently for storage in the repository. This paper storage in relational databases using traditional entity provides an approach to apply the techniques of traditional relationship (ER) modeling techniques. As relational entity-relationship data modeling to structure the database and the associated language SQL are widely knowledge rules for storage as a database schema in a relational database management system. Utilization of entity considered the ANSI/ISO standard for data storage and relationship model and relational database for modeling manipulation (viz. SQL:2008), data modeling of knowledge rules provides for a more standardized knowledge rules for storage as a relational database mechanism for structuring knowledge rules. Storage of schema provides a more standardized structure for knowledge rules in a relational database shall also bring knowledge base (repository). Besides, representation of about improved integration with business applications, the knowledge rules as a relational database schema besides having the availability of services provided for enables utilization of SQL for rule definition, transactional database applications. The paper utilizes the maintenance, and manipulation. Oracle database for illustrating the application of the Even though there have been attempts toward concepts through a sample set of knowledge rules. The approach is explained through a prototype in Oracle's integration of knowledge base and database, such PL/SQL Server Pages.
    [Show full text]
  • Oracle Database 12C Product Family
    Oracle White Paper June 2014 Oracle Database 12c Product Family Oracle Database 12c Product Family Disclaimer The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any contract. It is not a commitment to deliver any material, code, or functionality, and should not be relied upon in making purchasing decisions. The development, release, and timing of any features or functionality described for Oracle’s products remains at the sole discretion of Oracle. Oracle Database 12c Product Family Introduction ......................................................................................... 1 Enterprise Edition Options .................................................................. 2 Oracle Active Data Guard ............................................................. 2 Advanced Analytics ...................................................................... 2 Oracle Advanced Compression ................................................... 2 Oracle Advanced Security ........................................................... 3 Oracle Database Vault .................................................................. 3 Oracle TimesTen Application-Tier Database Cache .................. 3 Oracle Label Security ................................................................... 4 Oracle Multitenant ......................................................................... 4 Oracle On-Line Analytical Processing (OLAP) .......................... 4 Oracle
    [Show full text]
  • Educational Multimedia Databases
    Educational Multimedia Databases G.W. Hiddink 2001 Ph.D. thesis University of Twente Twente University Press Also available in print: http://www.tup.utwente.nl/uk/catalogue/educational/multimedia-databases/ Educational Multimedia Databases Promotiecommissie: Voorzitter: Prof.dr. J.M. Pieters, Universiteit Twente Promotoren: Prof.dr.ir. P.M.G. Apers, Universiteit Twente Prof.dr. J.C.M.M. Moonen, Universiteit Twente Leden: Prof.dr.ir. E. Duval, Katholieke Universiteit Leuven Prof.dr. C. Hoede, Universiteit Twente Dr. G.C. van der Veer, Vrije Universiteit Amsterdam Prof.dr.ir. P.W. Verhagen, Universiteit Twente Dr. H.M. Blanken, Universiteit Twente Dissertation CTIT 01-39 Publisher: Twente University Press, P.O. Box 217, 7500 AE Enschede, the Netherlands, www.tup.utwente.nl Print: Grafisch Centrum Twente, Enschede © G.W. Hiddink, Enschede, 2001 No part of this work may be reproduced by print, photocopy or any other means without the permission in writing from the publisher. ISBN 9036516773 EDUCATIONAL MULTIMEDIA DATABASES PROEFSCHRIFT ter verkrijging van de graad van doctor aan de Universiteit Twente, op gezag van de rector magnificus, prof.dr. F.A. van Vught, volgens besluit van het College voor Promoties in het openbaar te verdedigen op vrijdag 2 november 2001 te 13.15 uur door Gerrit Willem Hiddink geboren op 19 augustus 1969 te Zelhem Dit proefschrift is goedgekeurd door de promotoren prof.dr.ir. P.M.G. Apers prof.dr. J.C.M.M. Moonen Preface Five years ago, I embarked on a journey towards a new country. I did not know much about that country; where or how to find it? I only knew that this country would be able to provide a fertile soil for my academic ambitions.
    [Show full text]
  • Coupling Expert Systems with Database Management Systems
    COUPLING EXPERT SYSTEMS WITH DATABASE MANAGEMENT SYSTEMS Matthias Jarke Yannis Vassiliou May 1983 Center for Research on Information Systems Computer Applications and Information Systems Area Graduate School of Business Administration New York University Working Paper Series CRIS #54 GBA #83-53(CR) Center for Digital Economy Research Stem School of Business IVorking Paper IS-83-53 ABSTRACT The combined use of Database Management Systems (DBMS) and Artificial Intelligence-based Expert Systems (ES) is potentially very valuable for modern business applications. The large body of facts usually required in business infor- mation systems can be made available to an ES through an existing commercial DBMS. Furthermore, the DBMS itself can be used more intelligently and operated more efficiently if enhanced with ES features. However, the implementation of a DBMS-ES cooperation is very difficult. We explore practical benefits of the cooperative use of DBMS and ES, as well as the research challenges it presents. Strategies for providing data from a DBMS to an ES are given; complementary strategies for providing intelligence from an ES to a DBMS are also presented. Finally, we discuss archi- tectural issues such as degree of coupling, and combination with quantitative methods. As an illustration, a research effort at New York Univer- sity to integrate a logic-based business ES with a relational DBMS is described. Center for Digital Economy Research Stem School of Business IVorking Paper IS-83-53 Page 2 1 .0 INTRODUCTION In the mid-sixties the world watched with fascination a volcano off the fishing town of Heimaey, Iceland, create a new island, Surtsey, out of its ashes.
    [Show full text]
  • An Application of Flexible Query Interface to Relational Databases
    IOSR Journal of Computer Engineering (IOSR-JCE) e-ISSN: 2278-0661,p-ISSN: 2278-8727, Volume 17, Issue 5, Ver. V (Sep. – Oct. 2015), PP 01-07 www.iosrjournals.org An application of flexible query interface to relational databases Onwuachu Uzochukwu C, Oghenekaro, Linda U Department of Computer Sciences, Imo state University, Owerri, Nigeria. Department of Computer Sciences, University of Port Harcourt, Choba, Nigeria. Abstract: The use of databases has for long been for the computer elites in the society as well as multinationals that can pay for their services, and these has inhibited the scope and wide use of database applications. The aim of this paper is to develop yet another flexible query interface for relational databases that is user friendly and has the capability to adequately help users work with databases without a thorough knowledge of database programming. It also provides guidelines for users interested in learning the technicalities involved in database query writing. The proposed system uses an object oriented methodology and was implemented using Java programming language.From the result, the system shows a high level of flexibility in database query processing. Keywords: Database, flexible query, Interface, object oriented and Java programming. I. Introduction The absence of a flexible and intelligent database query interface for non-expert users has been an issue of concern for ages for the populace. A general information management system that is capable of managing several kinds of data, stored in the database is known as Database Management System (DBMS). The DBMS grants support for logical views of data that are separate from the physical views, i.e.
    [Show full text]