Enterprise Knowledge Management in Semantic Web

Size: px
Start display at page:

Download "Enterprise Knowledge Management in Semantic Web"

Transcription

1 Enterprise Knowledge Management in Semantic Web Liviana Tudor Department of Information Technology, Mathematics, Physics Petroleum-Gas University of Ploiesti, Romania Abstract This article presents an enterprise knowledge management model in a Semantic Web application and performs a comparative analysis of the ways to optimize access to semantic data. In the Semantic Web, inference enables performing queries that make semantic matching based on meaningful relationships among pieces of data. The case study presents a Semantic Web application managed using the RDF data model and a relational database. The performance of the semantic model is emphasized through the study of the inference methods and of the parallel execution parameters for the queries on the analyzed RDF graph. Keywords: Web semantic, inference, relational database, knowledge management, query performance Introduction The semantic technology for databases allows the implementation of artificial intelligence techniques in the relational database theory. The semantic technology is operated using concepts such as knowledge base, rules, inference, ontology, which allow the integration of semantic data in the relational model of the databases. In this article, we will describe a semantic model used to manage knowledge in a Web application for an online magazine and we will perform a comparative analysis of the optimization techniques for the semantic queries. The support for the semantic technologies will be provided by the Resource Description Framework (RDF) model. In W3C RDF (2004), the RDF is presented as a language for representing information about resources in the World Wide Web. By generalizing the concept of a Web resource, RDF can be used to represent information that can be identified on the Web, even when they cannot be directly retrieved on the Web. The article is organized in the following sections. The section Semantic data modeling presents the basics on semantic data modeling and the way to implement it in Oracle databases. The representation of the semantic data uses the RDF data model, and the data query uses the rule-based inference. The section Case study: semantic data for journal article presents a semantic data management model used for an online magazine containing scientific articles. The section Performance of the semantic model makes a performance analysis of the previously described semantic model, by comparing the query optimization techniques. The last section presents the final conclusions and underlines the contributions of this article.

2 Semantic data modeling The semantic technology ensures semantic data storage and the query of ontologies, and the inference extends the power of the semantic queries. For example, an Oracle database may contain semantic data, ontologies (RDF/OWL models) and traditional relational data. RDF data model RDF data model is based on identifying information using Web identifiers, called Uniform Resource Identifiers (URIs), and describing resources in terms of simple properties and property values. This enables RDF to represent simple statements about resources as a graph of nodes and arcs representing the resources, and their properties and values. In W3C RDF Primer (2004), RDF statements are similar to a number of other formats for recording information, such as: entries in a simple record describing the resource in a data processing system, rows in a simple relational database, and simple assertions in formal logic. Murray et al. (2012) said that semantic data in Oracle database is modeled using a directed graph. The metadata statements are represented as triples: nodes are used to represent two parts of the triple, and the third part is represented by a directed link that describes the relationship between the nodes. Oracle statements are expressed in triples, where each triple is stored in a semantic data network and can be represented by a link in a directed graph: (<subject resource>, <predicate property>, <object value>). (1) Figure 1 illustrates the functionality of the semantic technologies in relational databases, the data storage capabilities, the logical inference and querying of RDF data, ontologies and enterprise data. RDF data and ontologies Enterprise data Relational Database STORE data INFERENCE QUERY Fig 1. Semantic technologies Inference: rules and rulebases Tudor (2012) has mentioned that, with declarative programming, the inference is a method to process pieces of knowledge in a knowledge base and to generate rule-based arguments. Through analogy to a relational database, it can be stated that the inference improves the performance of semantic queries, through logical deductions based on semantic data and rules. In a relational database, the inference enables performing queries that make semantic matching based on meaningful relationships among pieces of data, as opposed to just syntactic matching based on string or values. Inferencing involves the use of rules placed in rulebases. Murray et al. (2012) said that a rule is an object that can be applied to draw inferences from semantic data and consists of an IF side pattern for the antecedents, an optional filter condition that further restricts the subgraphs matched by the IF side pattern, and a THEN side pattern for the consequents. For example, the rule a manager of a journal is also a reviewer of the journal could be represented formally as follows: 74

3 Rule manager_rule IF r = manager (journal) THEN r = reviewer (journal) ENDIF Figure 2 shows triple sets being inferred from model data and the application of rules in one or more rulebases. The database can have semantic models, rulebases, and inferred triple sets, and an inferred triple set can be derived using rules in one or more rulebases. Model 1 Triple set Model n Triple set n Fig 2. Inference The RDFS rulebase implements the RDFS entailment rules, as described in the W3C RDF Semantics (2004). An entailment (rules index) is an object containing precomputed triples that can be inferred from applying a specified set of rulebases to a specified set of models. An entailment stores triples derived via inferencing. Case study: semantic data for journal article Rulebase 1 Rulebase n This section presents a simplified semantic model made in PL/SQL Oracle for the management of knowledge in an electronic magazine. A semantic model holds an RDF graph (set of (<subject>, <predicate>, <object>) triples) and is associated with an SDO_RDF_TRIPLE_S column in an application table. The development of a Semantic Web application in PL/SQL involves the creation of a semantic data network in order to add semantic support to the Oracle database. The 'articles' semantic data model uses an 'articles_rdf_data' table, which memorizes references to the model data. The semantic relations between the articles published in the electronic magazine can be represented through the nodes and arcs of the RDF graph associated to the application. Figure 3 describes a few pieces of information used in the semantic model Goasdoué, F., Manolescu, I., Roatis, A. Foundations of RDF databases Arenas, M., Gutierrez, C., Pérez, J. Efficient Query Answering against Dynamic RDF Databases Fig 3. RDF graph 75

4 Article1 has the title Efficient Query Answering against Dynamic RDF Databases ; article1 was written by Goasdoué, F., Manolescu, I., Roatis, A.; article1 refers to article2; article2 has the title Foundations of RDF databases ; and article2 was created by Arenas, M., Gutierrez, C., Pérez, J. The partial image of the RDF graph associated to the Semantic Web application contains the following triples expressed in the form (1): ( 'Efficient Query Answering against Dynamic RDF Databases') ( 'Goasdoué, F., Manolescu, Roatis') ( ( Foundations of RDF databases ) ( Arenas, M., Gutierrez., Pérez, J. ) The insertion operation of the semantic data in the table does the correspondence in PL/SQL between (<subject>, <predicate>, <object>) and a triple of the RDF graph: SDO_RDF_TRIPLE_S ('articles', ' ' ' Efficient Query Answering against Dynamic RDF Databases ') Semantic data querying before making the inference only offers a simplified image of the results, due to the fact that it does not have the semantic connections performed between the RDF graph entities. A rule-based inference is made in order to have complete query results. A PL/SQL inference example creating an 'articles_rb' rule base and the rule 'manager_rule' is the following: EXECUTE SEM_APIS.CREATE_RULEBASE('articles_rb'); INSERT INTO mdsys.semr_articles_rb VALUES( 'manager_rule', '(?r : manager?journal)', NULL, '(?r : reviewer?journal)', SEM_ALIASES(SEM_ALIAS('',' The creation of entailment allows refreshing and indexing the rules in the semantic model: SEM_APIS.CREATE_ENTAILMENT( 'rdfs_rix_articles', SEM_Models('articles'), SEM_Rulebases('RDFS','articles_rb')); The semantic data queries allow the information memorized in the semantic model and logically deducted in the inference process to be obtained. SELECT x, y FROM TABLE(SEM_MATCH('{?x : reviewer?y}', SEM_Models('articles'), SEM_Rulebases('RDFS','articles_rb'), SEM_ALIASES(SEM_ALIAS('',' The performance of the semantic model Performing sufficient statistics for the query optimizer is critical for good query performance. Due to the inherent flexibility of the RDF data model, static information may not produce optimal execution plans for semantic queries, however dynamic sampling can often produce much better query execution plans. 76

5 At the same time, the performance of semantic queries can be improved with the help of indexes associated to the semantic network. Lopez et al. (2010) mentioned that some B-tree indexes (including one for enforcing uniqueness constraint) are created automatically at semantic network creation time. Data type indexes may significantly improve the performance of SEM_MATCH queries involving certain types of FILTER expressions. We can investigate two query answering techniques against semantic data: saturation- and reformulation-based. In the article by Goasdoué et al. (2013), the saturation of the database is computed using the allowed entailment rules. The answer set of every query against the database is obtained by query evaluation against the saturation. Reformulation-based query answering reformulates a query Q 1 into another query Q 2 using the immediate entailment rules. Reformulationbased query answering in the RDF graph has been investigated for relational conjunctive queries, while the slight extension thereof has been investigated for SPARQL queries, in studies of Arenas et al (2009), Goasdoué et al (2011). To analyze semantic queries, an RDF graph with 30 triples is used and memorized in an Oracle 11g database. A set of 10 queries is analyzed in terms of the number of results returned and the processing time (in seconds), as described in table 1. A comparative study of the parallel execution method for the set of queries analyzed is emphasized in figure 4. Table 1: Query performance Query Q 1 Q 2 Q 3 Q 4 Q 5 Q 6 Q 7 Q 8 Q 9 Q 10 Answers Time (sec) Parallel query execution Queries Q1 Q2 Q3 Q4 Q5 Q6 Q7 Q8 Q9 Q10 Answers / Time Answ ers Time (sec) Fig 4. Parallel query performance For best inference performance, we can use incremental or parallel inference. Dynamic incremental inference selectively applies semi-naive rule evaluation while generating the entailment, according to Lopez et al. (2010). Inference performance is demonstrated by evaluating the time to finish inference (Table 2). Table 2: Inference performance Inference Time to finish inference (sec.) Parallel inference 1.36 Incremental inference 0.28 The comparison of the time required by the two types of inferences, for the analyzed RDF graph, is illustrated in figure 5. 77

6 Time to finish inference (sec.) 1.5 Time (sec.) Parallel inference Incremental inference Fig: 5. Inference performance A comparative analysis of the optimization techniques for the semantic queries emphasizes the significant influence of the dynamic incremental inference method and the use of data type indexes. The advantage of reformulation based query answering is that the database saturation does not need to be (re)computed. The disadvantage is that every incoming query must be reformulated, which often results in a more complex query. Conclusions The article portrays an enterprise data management model from a semantic network associated to a relational database. The case study describes an Oracle Semantic Web application for an online magazine and the main operations to create a rule base, inference, data querying. The semantic model performance evaluation is done from the inference and querying methods points of view. References Arenas, M., Gutierrez, C. and Pérez, J. (2009), Web Reasoning Web. Semantic Technologies for Information Systems, Springer-Verlag Berlin, Heidelberg. Goasdoué, F., Manolescu, I. and Roatis, A. (2013), Efficient Query Answering against Dynamic RDF Databases Proceedings of the 16th International Conference on Extending Database Technology (EDBT), ISBN: , March 2013, Genoa, Italy, Goasdoué, F., Karanasos, K., Leblay, J. and Manolescu, I. (2011), View selection in semantic web databases, Proceedings of the VLDB Endowment (PVLDB), 5 (2), Lopez, X. and Das, S. (2010), Semantic Technologies in Oracle Database 11g Release 2: Capabilities, Interfaces, Performance Oracle Documentation. [Online], [Retrieved January 15, 2014] Murray, C., Chong, E. I., Das, S., Kolovski, V., Perry, M., Srinivasan, J., Sundara, S., Wu, Z. A. and Yalamanchi, A. (2014), Oracle Database Semantic Technologies Developer's Guide, 11g Release 2 (11.2) Oracle Documentation. [Online], [Retrieved January 16, 2014] Tudor, N. L. (2012) Logic Programming and expert systems. Visual Prolog and ExSys applications (in Romanian), MATRIX ROM Publishing House Bucharest. W3C Working Group, (2014), RDF Primer, World Wide Web Consortium (W3C). [Online], [Retrieved February 25, 2014] 78

Semantic Stored Procedures Programming Environment and performance analysis

Semantic Stored Procedures Programming Environment and performance analysis Semantic Stored Procedures Programming Environment and performance analysis Marjan Efremov 1, Vladimir Zdraveski 2, Petar Ristoski 2, Dimitar Trajanov 2 1 Open Mind Solutions Skopje, bul. Kliment Ohridski

More information

RDF Support in Oracle Oracle USA Inc.

RDF Support in Oracle Oracle USA Inc. RDF Support in Oracle Oracle USA Inc. 1. Introduction Resource Description Framework (RDF) is a standard for representing information that can be identified using a Universal Resource Identifier (URI).

More information

Graph Database Performance: An Oracle Perspective

Graph Database Performance: An Oracle Perspective Graph Database Performance: An Oracle Perspective Xavier Lopez, Ph.D. Senior Director, Product Management 1 Copyright 2012, Oracle and/or its affiliates. All rights reserved. Program Agenda Broad Perspective

More information

Visualizing Large-Scale RDF Data Using Subsets, Summaries, and Sampling in Oracle

Visualizing Large-Scale RDF Data Using Subsets, Summaries, and Sampling in Oracle Visualizing Large-Scale RDF Data Using Subsets, Summaries, and Sampling in Oracle Seema Sundara, Medha Atre #+, Vladimir Kolovski, Souripriya Das, Zhe Wu, Eugene Inseok Chong, Jagannathan Srinivasan Oracle

More information

RDF Resource Description Framework

RDF Resource Description Framework RDF Resource Description Framework Fulvio Corno, Laura Farinetti Politecnico di Torino Dipartimento di Automatica e Informatica e-lite Research Group http://elite.polito.it Outline RDF Design objectives

More information

Extending Data Processing Capabilities of Relational Database Management Systems.

Extending Data Processing Capabilities of Relational Database Management Systems. Extending Data Processing Capabilities of Relational Database Management Systems. Igor Wojnicki University of Missouri St. Louis Department of Mathematics and Computer Science 8001 Natural Bridge Road

More information

Detection and Elimination of Duplicate Data from Semantic Web Queries

Detection and Elimination of Duplicate Data from Semantic Web Queries Detection and Elimination of Duplicate Data from Semantic Web Queries Zakia S. Faisalabad Institute of Cardiology, Faisalabad-Pakistan Abstract Semantic Web adds semantics to World Wide Web by exploiting

More information

DataBridges: data integration for digital cities

DataBridges: data integration for digital cities DataBridges: data integration for digital cities Thematic action line «Digital Cities» Ioana Manolescu Oak team INRIA Saclay and Univ. Paris Sud-XI Plan 1. DataBridges short history and overview 2. RDF

More information

Big Data, Fast Data, Complex Data. Jans Aasman Franz Inc

Big Data, Fast Data, Complex Data. Jans Aasman Franz Inc Big Data, Fast Data, Complex Data Jans Aasman Franz Inc Private, founded 1984 AI, Semantic Technology, professional services Now in Oakland Franz Inc Who We Are (1 (2 3) (4 5) (6 7) (8 9) (10 11) (12

More information

Creating an RDF Graph from a Relational Database Using SPARQL

Creating an RDF Graph from a Relational Database Using SPARQL Creating an RDF Graph from a Relational Database Using SPARQL Ayoub Oudani, Mohamed Bahaj*, Ilias Cherti Department of Mathematics and Informatics, University Hassan I, FSTS, Settat, Morocco. * Corresponding

More information

A Comparison of Database Query Languages: SQL, SPARQL, CQL, DMX

A Comparison of Database Query Languages: SQL, SPARQL, CQL, DMX ISSN: 2393-8528 Contents lists available at www.ijicse.in International Journal of Innovative Computer Science & Engineering Volume 3 Issue 2; March-April-2016; Page No. 09-13 A Comparison of Database

More information

Semantic Data Management. Xavier Lopez, Ph.D., Director, Spatial & Semantic Technologies

Semantic Data Management. Xavier Lopez, Ph.D., Director, Spatial & Semantic Technologies Semantic Data Management Xavier Lopez, Ph.D., Director, Spatial & Semantic Technologies 1 Enterprise Information Challenge Source: Oracle customer 2 Vision of Semantically Linked Data The Network of Collaborative

More information

Performance Analysis, Data Sharing, Tools Integration: New Approach based on Ontology

Performance Analysis, Data Sharing, Tools Integration: New Approach based on Ontology Performance Analysis, Data Sharing, Tools Integration: New Approach based on Ontology Hong-Linh Truong Institute for Software Science, University of Vienna, Austria truong@par.univie.ac.at Thomas Fahringer

More information

Data Store Interface Design and Implementation

Data Store Interface Design and Implementation WDS'07 Proceedings of Contributed Papers, Part I, 110 115, 2007. ISBN 978-80-7378-023-4 MATFYZPRESS Web Storage Interface J. Tykal Charles University, Faculty of Mathematics and Physics, Prague, Czech

More information

Position Paper: Validation of Distributed Enterprise Data is Necessary, and RIF can Help

Position Paper: Validation of Distributed Enterprise Data is Necessary, and RIF can Help Position Paper: Validation of Distributed Enterprise Data is Necessary, and RIF can Help David Schaengold Director of Business Solutions Revelytix, Inc Sept 19, 2011, Revised Oct 17, 2011 Overview Revelytix

More information

Network Graph Databases, RDF, SPARQL, and SNA

Network Graph Databases, RDF, SPARQL, and SNA Network Graph Databases, RDF, SPARQL, and SNA NoCOUG Summer Conference August 16 2012 at Chevron in San Ramon, CA David Abercrombie Data Analytics Engineer, Tapjoy david.abercrombie@tapjoy.com About me

More information

Semantic Knowledge Management System. Paripati Lohith Kumar. School of Information Technology

Semantic Knowledge Management System. Paripati Lohith Kumar. School of Information Technology Semantic Knowledge Management System Paripati Lohith Kumar School of Information Technology Vellore Institute of Technology University, Vellore, India. plohithkumar@hotmail.com Abstract The scholarly activities

More information

The Semantic Web for Application Developers. Oracle New England Development Center Zhe Wu, Ph.D. alan.wu@oracle.com 1

The Semantic Web for Application Developers. Oracle New England Development Center Zhe Wu, Ph.D. alan.wu@oracle.com 1 The Semantic Web for Application Developers Oracle New England Development Center Zhe Wu, Ph.D. alan.wu@oracle.com 1 Agenda Background 10gR2 RDF 11g RDF/OWL New 11g features Bulk loader Semantic operators

More information

Data Validation with OWL Integrity Constraints

Data Validation with OWL Integrity Constraints Data Validation with OWL Integrity Constraints (Extended Abstract) Evren Sirin Clark & Parsia, LLC, Washington, DC, USA evren@clarkparsia.com Abstract. Data validation is an important part of data integration

More information

SPARQL: Un Lenguaje de Consulta para la Web

SPARQL: Un Lenguaje de Consulta para la Web SPARQL: Un Lenguaje de Consulta para la Web Semántica Marcelo Arenas Pontificia Universidad Católica de Chile y Centro de Investigación de la Web M. Arenas SPARQL: Un Lenguaje de Consulta para la Web Semántica

More information

12 The Semantic Web and RDF

12 The Semantic Web and RDF MSc in Communication Sciences 2011-12 Program in Technologies for Human Communication Davide Eynard nternet Technology 12 The Semantic Web and RDF 2 n the previous episodes... A (video) summary: Michael

More information

Enforcing Data Quality Rules for a Synchronized VM Log Audit Environment Using Transformation Mapping Techniques

Enforcing Data Quality Rules for a Synchronized VM Log Audit Environment Using Transformation Mapping Techniques Enforcing Data Quality Rules for a Synchronized VM Log Audit Environment Using Transformation Mapping Techniques Sean Thorpe 1, Indrajit Ray 2, and Tyrone Grandison 3 1 Faculty of Engineering and Computing,

More information

How To Use An Orgode Database With A Graph Graph (Robert Kramer)

How To Use An Orgode Database With A Graph Graph (Robert Kramer) RDF Graph Database per Linked Data Next Generation Open Data, come sfruttare l innovazione tecnologica per creare nuovi scenari e nuove opportunità. Giovanni.Corcione@Oracle.com 1 Copyright 2011, Oracle

More information

ONTOLOGY-BASED APPROACH TO DEVELOPMENT OF ADJUSTABLE KNOWLEDGE INTERNET PORTAL FOR SUPPORT OF RESEARCH ACTIVITIY

ONTOLOGY-BASED APPROACH TO DEVELOPMENT OF ADJUSTABLE KNOWLEDGE INTERNET PORTAL FOR SUPPORT OF RESEARCH ACTIVITIY ONTOLOGY-BASED APPROACH TO DEVELOPMENT OF ADJUSTABLE KNOWLEDGE INTERNET PORTAL FOR SUPPORT OF RESEARCH ACTIVITIY Yu. A. Zagorulko, O. I. Borovikova, S. V. Bulgakov, E. A. Sidorova 1 A.P.Ershov s Institute

More information

A Semantic web approach for e-learning platforms

A Semantic web approach for e-learning platforms A Semantic web approach for e-learning platforms Miguel B. Alves 1 1 Laboratório de Sistemas de Informação, ESTG-IPVC 4900-348 Viana do Castelo. mba@estg.ipvc.pt Abstract. When lecturers publish contents

More information

Acknowledgements References 5. Conclusion and Future Works Sung Wan Kim

Acknowledgements References 5. Conclusion and Future Works Sung Wan Kim Hybrid Storage Scheme for RDF Data Management in Semantic Web Sung Wan Kim Department of Computer Information, Sahmyook College Chungryang P.O. Box118, Seoul 139-742, Korea swkim@syu.ac.kr ABSTRACT: With

More information

Design and Implementation of a Semantic Web Solution for Real-time Reservoir Management

Design and Implementation of a Semantic Web Solution for Real-time Reservoir Management Design and Implementation of a Semantic Web Solution for Real-time Reservoir Management Ram Soma 2, Amol Bakshi 1, Kanwal Gupta 3, Will Da Sie 2, Viktor Prasanna 1 1 University of Southern California,

More information

JOURNAL OF COMPUTER SCIENCE AND ENGINEERING

JOURNAL OF COMPUTER SCIENCE AND ENGINEERING Exploration on Service Matching Methodology Based On Description Logic using Similarity Performance Parameters K.Jayasri Final Year Student IFET College of engineering nishajayasri@gmail.com R.Rajmohan

More information

II. PREVIOUS RELATED WORK

II. PREVIOUS RELATED WORK An extended rule framework for web forms: adding to metadata with custom rules to control appearance Atia M. Albhbah and Mick J. Ridley Abstract This paper proposes the use of rules that involve code to

More information

ABSTRACT 1. INTRODUCTION. Kamil Bajda-Pawlikowski kbajda@cs.yale.edu

ABSTRACT 1. INTRODUCTION. Kamil Bajda-Pawlikowski kbajda@cs.yale.edu Kamil Bajda-Pawlikowski kbajda@cs.yale.edu Querying RDF data stored in DBMS: SPARQL to SQL Conversion Yale University technical report #1409 ABSTRACT This paper discusses the design and implementation

More information

Application of OASIS Integrated Collaboration Object Model (ICOM) with Oracle Database 11g Semantic Technologies

Application of OASIS Integrated Collaboration Object Model (ICOM) with Oracle Database 11g Semantic Technologies Application of OASIS Integrated Collaboration Object Model (ICOM) with Oracle Database 11g Semantic Technologies Zhe Wu Ramesh Vasudevan Eric S. Chan Oracle Deirdre Lee, Laura Dragan DERI A Presentation

More information

OntoDBench: Ontology-based Database Benchmark

OntoDBench: Ontology-based Database Benchmark OntoDBench: Ontology-based Database Benchmark Stéphane Jean, Ladjel Bellatreche, Géraud Fokou, Mickaël Baron, and Selma Khouri LIAS/ISAE-ENSMA and University of Poitiers BP 40109, 86961 Futuroscope Cedex,

More information

Application of ontologies for the integration of network monitoring platforms

Application of ontologies for the integration of network monitoring platforms Application of ontologies for the integration of network monitoring platforms Jorge E. López de Vergara, Javier Aracil, Jesús Martínez, Alfredo Salvador, José Alberto Hernández Networking Research Group,

More information

Semantic Modeling with RDF. DBTech ExtWorkshop on Database Modeling and Semantic Modeling Lili Aunimo

Semantic Modeling with RDF. DBTech ExtWorkshop on Database Modeling and Semantic Modeling Lili Aunimo DBTech ExtWorkshop on Database Modeling and Semantic Modeling Lili Aunimo Expected Outcomes You will learn: Basic concepts related to ontologies Semantic model Semantic web Basic features of RDF and RDF

More information

Semantic Analysis of Business Process Executions

Semantic Analysis of Business Process Executions Semantic Analysis of Business Process Executions Fabio Casati, Ming-Chien Shan Software Technology Laboratory HP Laboratories Palo Alto HPL-2001-328 December 17 th, 2001* E-mail: [casati, shan] @hpl.hp.com

More information

DISCOVERING RESUME INFORMATION USING LINKED DATA

DISCOVERING RESUME INFORMATION USING LINKED DATA DISCOVERING RESUME INFORMATION USING LINKED DATA Ujjal Marjit 1, Kumar Sharma 2 and Utpal Biswas 3 1 C.I.R.M, University Kalyani, Kalyani (West Bengal) India sic@klyuniv.ac.in 2 Department of Computer

More information

Linked Medieval Data: Semantic Enrichment and Contextualisation to Enhance Understanding and Collaboration

Linked Medieval Data: Semantic Enrichment and Contextualisation to Enhance Understanding and Collaboration : Semantic Enrichment and Contextualisation to Enhance Understanding and Collaboration Prof. Dr. Stefan Gradmann Humboldt-Universität zu Berlin / School of Library and Information Science stefan.gradmann@ibi.hu-berlin.de

More information

THE SEMANTIC WEB AND IT`S APPLICATIONS

THE SEMANTIC WEB AND IT`S APPLICATIONS 15-16 September 2011, BULGARIA 1 Proceedings of the International Conference on Information Technologies (InfoTech-2011) 15-16 September 2011, Bulgaria THE SEMANTIC WEB AND IT`S APPLICATIONS Dimitar Vuldzhev

More information

INTRODUCING ORACLE APPLICATION EXPRESS. Keywords: database, Oracle, web application, forms, reports

INTRODUCING ORACLE APPLICATION EXPRESS. Keywords: database, Oracle, web application, forms, reports INTRODUCING ORACLE APPLICATION EXPRESS Cristina-Loredana Alexe 1 Abstract Everyone knows that having a database is not enough. You need a way of interacting with it, a way for doing the most common of

More information

LinkZoo: A linked data platform for collaborative management of heterogeneous resources

LinkZoo: A linked data platform for collaborative management of heterogeneous resources LinkZoo: A linked data platform for collaborative management of heterogeneous resources Marios Meimaris, George Alexiou, George Papastefanatos Institute for the Management of Information Systems, Research

More information

Security Issues for the Semantic Web

Security Issues for the Semantic Web Security Issues for the Semantic Web Dr. Bhavani Thuraisingham Program Director Data and Applications Security The National Science Foundation Arlington, VA On leave from The MITRE Corporation Bedford,

More information

BUSINESS RULES CONCEPTS... 2 BUSINESS RULE ENGINE ARCHITECTURE... 4. By using the RETE Algorithm... 5. Benefits of RETE Algorithm...

BUSINESS RULES CONCEPTS... 2 BUSINESS RULE ENGINE ARCHITECTURE... 4. By using the RETE Algorithm... 5. Benefits of RETE Algorithm... 1 Table of Contents BUSINESS RULES CONCEPTS... 2 BUSINESS RULES... 2 RULE INFERENCE CONCEPT... 2 BASIC BUSINESS RULES CONCEPT... 3 BUSINESS RULE ENGINE ARCHITECTURE... 4 BUSINESS RULE ENGINE ARCHITECTURE...

More information

Put SPARQL in Your Code: Building Applications with Oracle Semantic Technologies. Xavier Lopez, Ph.D. Zhe Wu, Ph.D. Souripriya Das, Ph.D.

Put SPARQL in Your Code: Building Applications with Oracle Semantic Technologies. Xavier Lopez, Ph.D. Zhe Wu, Ph.D. Souripriya Das, Ph.D. Put SPARQL in Your Code: Building Applications with Oracle Semantic Technologies Xavier Lopez, Ph.D. Zhe Wu, Ph.D. Souripriya Das, Ph.D. Semantics at OOW 2009 - Sessions Date/Time Title Location Sunday,

More information

String-Based Semantic Web Data Management Using Ternary B-Trees PhD Seminar, April 29, 2010

String-Based Semantic Web Data Management Using Ternary B-Trees PhD Seminar, April 29, 2010 String-Based Semantic Web Data Management Using Ternary B-Trees PhD Seminar, April 29, 2010 Jürg Senn Department of Computer Science, University of Basel RDF Resource Description Framework (RDF) basis

More information

DLDB: Extending Relational Databases to Support Semantic Web Queries

DLDB: Extending Relational Databases to Support Semantic Web Queries DLDB: Extending Relational Databases to Support Semantic Web Queries Zhengxiang Pan (Lehigh University, USA zhp2@cse.lehigh.edu) Jeff Heflin (Lehigh University, USA heflin@cse.lehigh.edu) Abstract: We

More information

Semantics and Ontology of Logistic Cloud Services*

Semantics and Ontology of Logistic Cloud Services* Semantics and Ontology of Logistic Cloud s* Dr. Sudhir Agarwal Karlsruhe Institute of Technology (KIT), Germany * Joint work with Julia Hoxha, Andreas Scheuermann, Jörg Leukel Usage Tasks Query Execution

More information

Introduction to Ontologies

Introduction to Ontologies Technological challenges Introduction to Ontologies Combining relational databases and ontologies Author : Marc Lieber Date : 21-Jan-2014 BASEL BERN LAUSANNE ZÜRICH DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR.

More information

Secure Semantic Web Service Using SAML

Secure Semantic Web Service Using SAML Secure Semantic Web Service Using SAML JOO-YOUNG LEE and KI-YOUNG MOON Information Security Department Electronics and Telecommunications Research Institute 161 Gajeong-dong, Yuseong-gu, Daejeon KOREA

More information

E6895 Advanced Big Data Analytics Lecture 4:! Data Store

E6895 Advanced Big Data Analytics Lecture 4:! Data Store E6895 Advanced Big Data Analytics Lecture 4:! Data Store Ching-Yung Lin, Ph.D. Adjunct Professor, Dept. of Electrical Engineering and Computer Science Mgr., Dept. of Network Science and Big Data Analytics,

More information

A HUMAN RESOURCE ONTOLOGY FOR RECRUITMENT PROCESS

A HUMAN RESOURCE ONTOLOGY FOR RECRUITMENT PROCESS A HUMAN RESOURCE ONTOLOGY FOR RECRUITMENT PROCESS Ionela MANIU Lucian Blaga University Sibiu, Romania Faculty of Sciences mocanionela@yahoo.com George MANIU Spiru Haret University Bucharest, Romania Faculty

More information

Transport System. Transport System Telematics. Concept of a system for building shared expert knowledge base of vehicle repairs

Transport System. Transport System Telematics. Concept of a system for building shared expert knowledge base of vehicle repairs Archives of Volume 7 Transport System Telematics B. Adamczyk, Ł. Konieczny, R. Burdzik Transport System Issue 2 May 2014 Concept of a system for building shared expert knowledge base of vehicle repairs

More information

RDF graph Model and Data Retrival

RDF graph Model and Data Retrival Distributed RDF Graph Keyword Search 15 2 Linked Data, Non-relational Databases and Cloud Computing 2.1.Linked Data The World Wide Web has allowed an unprecedented amount of information to be published

More information

Geospatial Platforms For Enabling Workflows

Geospatial Platforms For Enabling Workflows Geospatial Platforms For Enabling Workflows Steven Hagan Vice President Oracle Database Server Technologies November, 2015 Evolution of Enabling Workflows HENRY FORD 100 YEARS AGO Industrialized the Manufacturing

More information

Industry 4.0 and Big Data

Industry 4.0 and Big Data Industry 4.0 and Big Data Marek Obitko, mobitko@ra.rockwell.com Senior Research Engineer 03/25/2015 PUBLIC PUBLIC - 5058-CO900H 2 Background Joint work with Czech Institute of Informatics, Robotics and

More information

Object-Process Methodology as a basis for the Visual Semantic Web

Object-Process Methodology as a basis for the Visual Semantic Web Object-Process Methodology as a basis for the Visual Semantic Web Dov Dori Technion, Israel Institute of Technology, Haifa 32000, Israel dori@ie.technion.ac.il, and Massachusetts Institute of Technology,

More information

The Theory of Concept Analysis and Customer Relationship Mining

The Theory of Concept Analysis and Customer Relationship Mining The Application of Association Rule Mining in CRM Based on Formal Concept Analysis HongSheng Xu * and Lan Wang College of Information Technology, Luoyang Normal University, Luoyang, 471022, China xhs_ls@sina.com

More information

On the Standardization of Semantic Web Services-based Network Monitoring Operations

On the Standardization of Semantic Web Services-based Network Monitoring Operations On the Standardization of Semantic Web Services-based Network Monitoring Operations ChenglingZhao^, ZihengLiu^, YanfengWang^ The Department of Information Techonlogy, HuaZhong Normal University; Wuhan,

More information

Distributed Database for Environmental Data Integration

Distributed Database for Environmental Data Integration Distributed Database for Environmental Data Integration A. Amato', V. Di Lecce2, and V. Piuri 3 II Engineering Faculty of Politecnico di Bari - Italy 2 DIASS, Politecnico di Bari, Italy 3Dept Information

More information

Oracle8i Spatial: Experiences with Extensible Databases

Oracle8i Spatial: Experiences with Extensible Databases Oracle8i Spatial: Experiences with Extensible Databases Siva Ravada and Jayant Sharma Spatial Products Division Oracle Corporation One Oracle Drive Nashua NH-03062 {sravada,jsharma}@us.oracle.com 1 Introduction

More information

Presente e futuro del Web Semantico

Presente e futuro del Web Semantico Sistemi di Elaborazione dell informazione II Corso di Laurea Specialistica in Ingegneria Telematica II anno 4 CFU Università Kore Enna A.A. 2009-2010 Alessandro Longheu http://www.diit.unict.it/users/alongheu

More information

Storage and Retrieval of Large RDF Graph Using Hadoop and MapReduce

Storage and Retrieval of Large RDF Graph Using Hadoop and MapReduce Storage and Retrieval of Large RDF Graph Using Hadoop and MapReduce Mohammad Farhan Husain, Pankil Doshi, Latifur Khan, and Bhavani Thuraisingham University of Texas at Dallas, Dallas TX 75080, USA Abstract.

More information

Integrating XML Data Sources using RDF/S Schemas: The ICS-FORTH Semantic Web Integration Middleware (SWIM)

Integrating XML Data Sources using RDF/S Schemas: The ICS-FORTH Semantic Web Integration Middleware (SWIM) Integrating XML Data Sources using RDF/S Schemas: The ICS-FORTH Semantic Web Integration Middleware (SWIM) Extended Abstract Ioanna Koffina 1, Giorgos Serfiotis 1, Vassilis Christophides 1, Val Tannen

More information

A Platform for Supporting Data Analytics on Twitter: Challenges and Objectives 1

A Platform for Supporting Data Analytics on Twitter: Challenges and Objectives 1 A Platform for Supporting Data Analytics on Twitter: Challenges and Objectives 1 Yannis Stavrakas Vassilis Plachouras IMIS / RC ATHENA Athens, Greece {yannis, vplachouras}@imis.athena-innovation.gr Abstract.

More information

æ A collection of interrelated and persistent data èusually referred to as the database èdbèè.

æ A collection of interrelated and persistent data èusually referred to as the database èdbèè. CMPT-354-Han-95.3 Lecture Notes September 10, 1995 Chapter 1 Introduction 1.0 Database Management Systems 1. A database management system èdbmsè, or simply a database system èdbsè, consists of æ A collection

More information

An Enterprise Inference Engine Inside Oracle Database 11g Release e 2 Zhe Wu, Ph.D., Oracle Vladimir Kolovski, Ph.D., Oracle

An Enterprise Inference Engine Inside Oracle Database 11g Release e 2 Zhe Wu, Ph.D., Oracle Vladimir Kolovski, Ph.D., Oracle An Enterprise Inference Engine Inside Oracle Database 11g Release e 2 Zhe Wu, Ph.D., Oracle Vladimir Kolovski, Ph.D., Oracle June 2010 Outline Overview of Oracle Database Semantic Technologies Design of

More information

LDIF - Linked Data Integration Framework

LDIF - Linked Data Integration Framework LDIF - Linked Data Integration Framework Andreas Schultz 1, Andrea Matteini 2, Robert Isele 1, Christian Bizer 1, and Christian Becker 2 1. Web-based Systems Group, Freie Universität Berlin, Germany a.schultz@fu-berlin.de,

More information

Ampersand and the Semantic Web

Ampersand and the Semantic Web Ampersand and the Semantic Web The Ampersand Conference 2015 Lloyd Rutledge The Semantic Web Billions and billions of data units Triples (subject-predicate-object) of URI s Your data readily integrated

More information

An Ontology-based e-learning System for Network Security

An Ontology-based e-learning System for Network Security An Ontology-based e-learning System for Network Security Yoshihito Takahashi, Tomomi Abiko, Eriko Negishi Sendai National College of Technology a0432@ccedu.sendai-ct.ac.jp Goichi Itabashi Graduate School

More information

Semantic Interoperability

Semantic Interoperability Ivan Herman Semantic Interoperability Olle Olsson Swedish W3C Office Swedish Institute of Computer Science (SICS) Stockholm Apr 27 2011 (2) Background Stockholm Apr 27, 2011 (2) Trends: from

More information

OBDA: Query Rewriting or Materialization? In Practice, Both!

OBDA: Query Rewriting or Materialization? In Practice, Both! OBDA: Query Rewriting or Materialization? In Practice, Both! Juan F. Sequeda 1, Marcelo Arenas 2, and Daniel P. Miranker 1 1 Department of Computer Science, The University of Texas at Austin 2 Department

More information

RDF Dataset Management Framework for Data.go.th

RDF Dataset Management Framework for Data.go.th RDF Dataset Management Framework for Data.go.th Pattama Krataithong 1,2, Marut Buranarach 1, and Thepchai Supnithi 1 1 Language and Semantic Technology Laboratory National Electronics and Computer Technology

More information

RDF y SPARQL: Dos componentes básicos para la Web de datos

RDF y SPARQL: Dos componentes básicos para la Web de datos RDF y SPARQL: Dos componentes básicos para la Web de datos Marcelo Arenas PUC Chile & University of Oxford M. Arenas RDF y SPARQL: Dos componentes básicos para la Web de datos Valladolid 2013 1 / 61 Semantic

More information

Oracle Spatial and Graph

Oracle Spatial and Graph Oracle Spatial and Graph Overview of New Graph Features "THE FOLLOWING IS INTENDED TO OUTLINE OUR GENERAL PRODUCT DIRECTION. IT IS INTENDED FOR INFORMATION PURPOSES ONLY, AND MAY NOT BE INCORPORATED INTO

More information

An Ontological Approach to Oracle BPM

An Ontological Approach to Oracle BPM An Ontological Approach to Oracle BPM Jean Prater, Ralf Mueller, Bill Beauregard Oracle Corporation, 500 Oracle Parkway, Redwood City, CA 94065, USA jean.prater@oracle.com, ralf.mueller@oracle.com, william.beauregard@oracle.com

More information

Handling the Complexity of RDF Data: Combining List and Graph Visualization

Handling the Complexity of RDF Data: Combining List and Graph Visualization Handling the Complexity of RDF Data: Combining List and Graph Visualization Philipp Heim and Jürgen Ziegler (University of Duisburg-Essen, Germany philipp.heim, juergen.ziegler@uni-due.de) Abstract: An

More information

Ching-Yung Lin, Ph.D. Adjunct Professor, Dept. of Electrical Engineering and Computer Science IBM Chief Scientist, Graph Computing. October 29th, 2015

Ching-Yung Lin, Ph.D. Adjunct Professor, Dept. of Electrical Engineering and Computer Science IBM Chief Scientist, Graph Computing. October 29th, 2015 E6893 Big Data Analytics Lecture 8: Spark Streams and Graph Computing (I) Ching-Yung Lin, Ph.D. Adjunct Professor, Dept. of Electrical Engineering and Computer Science IBM Chief Scientist, Graph Computing

More information

Integrating Open Sources and Relational Data with SPARQL

Integrating Open Sources and Relational Data with SPARQL Integrating Open Sources and Relational Data with SPARQL Orri Erling and Ivan Mikhailov OpenLink Software, 10 Burlington Mall Road Suite 265 Burlington, MA 01803 U.S.A, {oerling,imikhailov}@openlinksw.com,

More information

Geospatial Technology Innovations and Convergence

Geospatial Technology Innovations and Convergence Geospatial Technology Innovations and Convergence Processing Big and Fast Data: Best with a Multi-Model Database Steven Hagan Vice President Oracle Database Server Technologies August, 2015 Data Volume

More information

International Journal of Scientific & Engineering Research, Volume 4, Issue 11, November-2013 5 ISSN 2229-5518

International Journal of Scientific & Engineering Research, Volume 4, Issue 11, November-2013 5 ISSN 2229-5518 International Journal of Scientific & Engineering Research, Volume 4, Issue 11, November-2013 5 INTELLIGENT MULTIDIMENSIONAL DATABASE INTERFACE Mona Gharib Mohamed Reda Zahraa E. Mohamed Faculty of Science,

More information

A Data Browsing from Various Sources Driven by the User s Data Models

A Data Browsing from Various Sources Driven by the User s Data Models A Data Browsing from Various Sources Driven by the User s Data Models Guntis Arnicans, Girts Karnitis University of Latvia, Raina blvd. 9, Riga, Latvia {Guntis.Arnicans, Girts.Karnitis}@lu.lv Abstract.

More information

A Framework for Collaborative Project Planning Using Semantic Web Technology

A Framework for Collaborative Project Planning Using Semantic Web Technology A Framework for Collaborative Project Planning Using Semantic Web Technology Lijun Shen 1 and David K.H. Chua 2 Abstract Semantic web technology has become an enabling technology for machines to automatically

More information

Additional mechanisms for rewriting on-the-fly SPARQL queries proxy

Additional mechanisms for rewriting on-the-fly SPARQL queries proxy Additional mechanisms for rewriting on-the-fly SPARQL queries proxy Arthur Vaisse-Lesteven, Bruno Grilhères To cite this version: Arthur Vaisse-Lesteven, Bruno Grilhères. Additional mechanisms for rewriting

More information

From Databases to Natural Language: The Unusual Direction

From Databases to Natural Language: The Unusual Direction From Databases to Natural Language: The Unusual Direction Yannis Ioannidis Dept. of Informatics & Telecommunications, MaDgIK Lab University of Athens, Hellas (Greece) yannis@di.uoa.gr http://www.di.uoa.gr/

More information

A SOFTWARE SYSTEM FOR ONLINE LEARNING APPLIED IN THE FIELD OF COMPUTER SCIENCE

A SOFTWARE SYSTEM FOR ONLINE LEARNING APPLIED IN THE FIELD OF COMPUTER SCIENCE The 1 st International Conference on Virtual Learning, ICVL 2006 223 A SOFTWARE SYSTEM FOR ONLINE LEARNING APPLIED IN THE FIELD OF COMPUTER SCIENCE Gabriela Moise Petroleum-Gas University of Ploieşti 39

More information

3. Relational Model and Relational Algebra

3. Relational Model and Relational Algebra ECS-165A WQ 11 36 3. Relational Model and Relational Algebra Contents Fundamental Concepts of the Relational Model Integrity Constraints Translation ER schema Relational Database Schema Relational Algebra

More information

Linked Statistical Data Analysis

Linked Statistical Data Analysis Linked Statistical Data Analysis Sarven Capadisli 1, Sören Auer 2, Reinhard Riedl 3 1 Universität Leipzig, Institut für Informatik, AKSW, Leipzig, Germany, 2 University of Bonn and Fraunhofer IAIS, Bonn,

More information

The Prolog Interface to the Unstructured Information Management Architecture

The Prolog Interface to the Unstructured Information Management Architecture The Prolog Interface to the Unstructured Information Management Architecture Paul Fodor 1, Adam Lally 2, David Ferrucci 2 1 Stony Brook University, Stony Brook, NY 11794, USA, pfodor@cs.sunysb.edu 2 IBM

More information

Pragmatic Web 4.0. Towards an active and interactive Semantic Media Web. Fachtagung Semantische Technologien 26.-27. September 2013 HU Berlin

Pragmatic Web 4.0. Towards an active and interactive Semantic Media Web. Fachtagung Semantische Technologien 26.-27. September 2013 HU Berlin Pragmatic Web 4.0 Towards an active and interactive Semantic Media Web Prof. Dr. Adrian Paschke Arbeitsgruppe Corporate Semantic Web (AG-CSW) Institut für Informatik, Freie Universität Berlin paschke@inf.fu-berlin

More information

Perspectives of Semantic Web in E- Commerce

Perspectives of Semantic Web in E- Commerce Perspectives of Semantic Web in E- Commerce B. VijayaLakshmi M.Tech (CSE), KIET, A.GauthamiLatha Dept. of CSE, VIIT, Dr. Y. Srinivas Dept. of IT, GITAM University, Mr. K.Rajesh Dept. of MCA, KIET, ABSTRACT

More information

LiDDM: A Data Mining System for Linked Data

LiDDM: A Data Mining System for Linked Data LiDDM: A Data Mining System for Linked Data Venkata Narasimha Pavan Kappara Indian Institute of Information Technology Allahabad Allahabad, India kvnpavan@gmail.com Ryutaro Ichise National Institute of

More information

Semantic Web Technologies and Data Management

Semantic Web Technologies and Data Management Semantic Web Technologies and Data Management Li Ma, Jing Mei, Yue Pan Krishna Kulkarni Achille Fokoue, Anand Ranganathan IBM China Research Laboratory IBM Software Group IBM Watson Research Center Bei

More information

Fuzzy-DL Reasoning over Unknown Fuzzy Degrees

Fuzzy-DL Reasoning over Unknown Fuzzy Degrees Fuzzy-DL Reasoning over Unknown Fuzzy Degrees Stasinos Konstantopoulos and Georgios Apostolikas Institute of Informatics and Telecommunications NCSR Demokritos Ag. Paraskevi 153 10, Athens, Greece {konstant,apostolikas}@iit.demokritos.gr

More information

<Insert Picture Here> Why, When, and How to Use Oracle Database 11g Semantic Technologies

<Insert Picture Here> Why, When, and How to Use Oracle Database 11g Semantic Technologies Why, When, and How to Use Oracle Database 11g Semantic Technologies Xavier Lopez, Ph.D, Director, Oracle Server Technologies Souripriya Das, Ph.D, Consultant Member, Oracle Server

More information

72. Ontology Driven Knowledge Discovery Process: a proposal to integrate Ontology Engineering and KDD

72. Ontology Driven Knowledge Discovery Process: a proposal to integrate Ontology Engineering and KDD 72. Ontology Driven Knowledge Discovery Process: a proposal to integrate Ontology Engineering and KDD Paulo Gottgtroy Auckland University of Technology Paulo.gottgtroy@aut.ac.nz Abstract This paper is

More information

Mining the Web of Linked Data with RapidMiner

Mining the Web of Linked Data with RapidMiner Mining the Web of Linked Data with RapidMiner Petar Ristoski, Christian Bizer, and Heiko Paulheim University of Mannheim, Germany Data and Web Science Group {petar.ristoski,heiko,chris}@informatik.uni-mannheim.de

More information

A Semantic Web Based Framework for Social Network Access Control

A Semantic Web Based Framework for Social Network Access Control A Semantic Web Based Framework for Social Network Access Control Barbara Carminati University of Insubria Via Mazzini, 5 Varese - Italy barbara.carminati@ uninsubria.it Murat Kantarcioglu University of

More information

Relational model. Relational model - practice. Relational Database Definitions 9/27/11. Relational model. Relational Database: Terminology

Relational model. Relational model - practice. Relational Database Definitions 9/27/11. Relational model. Relational Database: Terminology COS 597A: Principles of Database and Information Systems elational model elational model A formal (mathematical) model to represent objects (data/information), relationships between objects Constraints

More information

Linked Open Data A Way to Extract Knowledge from Global Datastores

Linked Open Data A Way to Extract Knowledge from Global Datastores Linked Open Data A Way to Extract Knowledge from Global Datastores Bebo White SLAC National Accelerator Laboratory HKU Expert Address 18 September 2014 Developments in science and information processing

More information

A GENERALIZED APPROACH TO CONTENT CREATION USING KNOWLEDGE BASE SYSTEMS

A GENERALIZED APPROACH TO CONTENT CREATION USING KNOWLEDGE BASE SYSTEMS A GENERALIZED APPROACH TO CONTENT CREATION USING KNOWLEDGE BASE SYSTEMS By K S Chudamani and H C Nagarathna JRD Tata Memorial Library IISc, Bangalore-12 ABSTRACT: Library and information Institutions and

More information

Big Data Analytics. Rasoul Karimi

Big Data Analytics. Rasoul Karimi Big Data Analytics Rasoul Karimi Information Systems and Machine Learning Lab (ISMLL) Institute of Computer Science University of Hildesheim, Germany Big Data Analytics Big Data Analytics 1 / 1 Introduction

More information