Chapter 16 Linked Data, Ontologies, and DBpedia

Size: px
Start display at page:

Download "Chapter 16 Linked Data, Ontologies, and DBpedia"

Transcription

1 Abstract Chapter 16 Linked Data, Ontologies, and DBpedia Alex Adamec The Semantic Web is a collaborative movement which promotes common data formats on the World Wide Web and aims to convert the currently unstructured and semi-structured documents on the web into a web of data by encouraging the inclusion of semantic content (metadata) in web pages. [7] Not only does the Semantic Web need access to data, but relationships among data should be made available, too. This collection of interrelated datasets on the web is referred to as Linked Data, and the relationships among the data are defined using vocabularies, or ontologies. [11] [13] Just as relational databases or XML need specific query languages, the Web of Data needs its own specific query language and facilities. This is provided by the SPARQL query language and the accompanying protocols. [14] To improve the quality of data integration on the web, inferences are used to automatically analyze the content of data and discover new relationships. [12] 1 Background Cognitive scientist Allan M. Collins, linguist M. Ross Quillian, and psychologist Elizabeth F. Loftus formed the concept of the Semantic Network Model in the early 1960s as a form to represent semantically structured knowledge. [7] By inserting machine-readable metadata about pages and how they are related to each other, the Semantic Network Model extends the network of hyperlinked human-readable web pages by enabling automated agents to access the Web more intelligently and perform tasks on behalf of users. [7] The term "Semantic Web" was coined by Tim Berners-Lee, the inventor of the World Wide Web and director of the World Wide Web Consortium ("W3C"). He defines the Semantic Web as "a web of data that can be processed directly and indirectly by machines." [7] 2 Purpose Today, humans can use the web to perform tasks which machines are incapable of accomplishing without human direction because web pages are designed to be read by people, not machines. The semantic web, however, is a system that requires that the relevant information sources be semantically structured so as to enable machines to "understand" and respond to complex human requests based on their meaning. [7] Tim Berners-Lee originally expressed the vision of the Semantic Web as follows: I have a dream for the Web [in which computers] become capable of analyzing all the data on the Web the content, links, and transactions between people and computers. A "Semantic Web", which makes this possible, has yet to emerge, but when it does, the day-to-day mechanisms of trade, bureaucracy and our daily lives will be handled by machines talking to machines. The "intelligent agents" people have touted for ages will finally materialize. [7]

2 3 Components Often, the term "Semantic Web" is used more precisely to refer to the formats and technologies that enable it. These technologies provide a formal description of concepts, terms, and relationships within a given knowledge domain and enable the collection, structuring, and recovery of linked data. [7] 3.1 Linked Data LOD Cloud Diagram as of September 2011 [5] To make the Web of Data a reality, it is important to have a standard format for data on the web. This empowers the data to be reachable and manageable by Semantic Web tools. Not only does the Semantic Web need access to data, but relationships among data should be made available, too. This collection of interrelated datasets on the web is referred to as Linked Data. The relationships among the data is what distinguishes it from a sheer collection of datasets. [11] Linked Data lies at the heart of what Semantic Web is all about: large scale integration of, and reasoning on, data on the Web. [11] RDF, the Resource Description Framework, is a common format which allows for either conversion or on-the-fly access to existing databases such as relational, XML, and HTML databases (RDF will be discussed in further detail later in Section 3.2.1). This common framework is necessary to achieve and create Linked Data. Also important is the ability to setup query endpoints to access that data more conveniently. [11]

3 3.2 Ontologies The Semantic Web is a Web of Data of people and titles and dates and product numbers and any other data one might think of. Semantic Web technologies such as RDF, OWL, and SPARQL combine to allow applications to query that data and draw inferences using ontologies. [11] Ontologies define the concepts and terms (relationships) used to describe and represent an area of concern. According to the World Wide Web Consortium, ontologies are used to classify the terms that can be used in a particular application, characterize possible relationships, and define possible constraints on using those terms. [13] The complexity of ontologies can vary greatly. Ontologies can be very simple (describing only one or two concepts) or very intricate (containing several thousand terms). [13] The terms ontology and vocabulary are used interchangeably, although their meanings differ slightly. The word ontology is typically reserved for more complex, formal collections of terms, whereas vocabulary is used when such strict formalism is unnecessary or used only in a very loose sense. [13] Vocabularies help data integration when ambiguities may exist on the terms used in the different data sets. Vocabularies also form the basic building blocks for inference techniques. W3C offers an example of this regarding the application of ontologies in the field of health care: Medical professionals use [ontologies] to represent knowledge about symptoms, diseases, and treatments. Pharmaceutical companies use [ontologies] to represent information about drugs, dosages, and allergies. Combining this knowledge from the medical and pharmaceutical communities with patient data enables a whole range of intelligent applications such as decision support tools that search for possible treatments; systems that monitor drug efficacy and possible side effects; and tools that support epidemiological research. [13] Another use of ontologies is to organize knowledge. Ontologies can be used as standard formalisms by museums, libraries, enterprises, newspapers, etc. to manage their large collections of historical artifacts, books, business glossaries, and news reports. [13] The complexity of the vocabularies used varies by application. Although some applications may decide to rely on the logic of the application program and not even use small vocabularies, other applications may need more complex ontologies with complex reasoning procedures. It all depends on the requirements and the goals of the applications. To satisfy these different needs, a large palette of techniques to describe and define different forms of vocabularies in a standard format are used: These include RDF and RDF Schemas, Simple Knowledge Organization System (SKOS), Web Ontology Language (OWL), and the Rule Interchange Format (RIF). [13] Ontology Languages Ontologies are constructed using formal languages known as ontology languages. These languages permit the encoding of knowledge about specific domains and often include reasoning rules that support the processing of that knowledge. [6] Usually declarative languages, ontology languages are almost always generalizations of frame languages, and they are commonly based on either description logic or first-order logic. [6]

4 Resource Description Framework One example of an ontology language is the Resource Description Framework (RDF). RDF is a general method to decompose any type of knowledge into small pieces using some rules about the semantics, or meaning, of those pieces. [8] The following is an example of some : < :JOHN A :PERSON. :JOHN :HASMOTHER :SUSAN. :JOHN :HASFATHER :RICHARD. :RICHARD :HASBROTHER :LUKE. RDF isn t concerned merely with how it is written. RDF is about representing networkor graph-structured information. [8] Like RDF, XML also is designed to be simple and generalpurpose, and RDF can be written in XML such as in the following example: <RDF:RDF XMLNS:RDF=" XMLNS:NS=" <NS:PERSON RDF:ABOUT=" <NS:HASMOTHER RDF:RESOURCE=" /> <NS:HASFATHER> <RDF:DESCRIPTION RDF:ABOUT=" <NS:HASBROTHER RDF:RESOURCE=" /> </RDF:DESCRIPTION> </NS:HASFATHER> </NS:PERSON> </RDF:RDF> RDF is designed to represent knowledge in a distributed world and thus is particularly concerned with meaning. Each element mentioned in RDF means something, whether a reference to an abstract concept, something concrete in the world, or a fact. [8] RDF is well suited for distributed knowledge. RDF applications are able to combine RDF files from different sources and easily learn from them new things by linking documents together by their common vocabularies and by allowing any document to use any vocabulary. This flexibility is fairly unique to RDF. : < :RICHARD :HASSISTER :REBECCA {?A :HASFATHER?B.?B :HASSISTER?C. } => {?A :HASAUNT?C }. In the RDF above, the document uses two other relations to define what it means to be an aunt. In RDF, names of entities are global. [8] This means when :JOHN and :HASFATHER are used in one document, applications can assume they have the same meaning in any other RDF document with the [8] Because of this, an application would be able to put this document together with the first RDF document to determine that :REBECCA is :JOHN's aunt. RDF can be used to integrate data from different sources without custom programming or to offer data for re-use by other parties. [8]

5 Web Ontology Language Another example of ontology languages is the Web Ontology Language (OWL). OWL is a family of knowledge representation languages for authoring ontologies or knowledge bases. The languages are characterized by formal semantics and RDF/XML-based serializations for the Semantic Web. OWL is endorsed by the World Wide Web Consortium (W3C) and has attracted academic, medical and commercial interest. [10] An important distinction between RDFS and OWL is that in RDFS, you can only subclass existing classes, whereas OWL allows the construction of classes from existing ones. [4] Examples An example of an OWL ontology is the Music Ontology Specification which provides main concepts and properties for describing music (i.e. artists, albums, tracks, performances, arrangements, etc.) on the Semantic Web. An Example of a Music Ontology Production Workflow [2] Above is an example of a music production workflow using the Music Ontology Specification, and below is an example of how the Music Ontology can be used in HTML to describe Bach's "The Art of Fugue" and one of its performances.

6 <span typeof="mo:musicartist" about=" h"> <span property="foaf:name">johann Sebastian Bach was involved in the <span rev="mo:composer"> <span typeof="mo:composition" about="#composition"> <span property="rdfs:label"> Composition of <span rel="mo:produced_work"> <span typeof="mo:musicalwork" about="#kunst-der-fuge"> <span property="dc:title">the Art of Fugue, BWV 1080: Contrapunctus IX, a 4, alla Duodecima which happened between <span rel="event:time"> <span property="tl:start" datatype="xsd:gyear">1742 and <span property="tl:end" datatype="xsd:gyear">1749. Describing Bach's "The Art of Fugue" in HTML [3] <span typeof="mo:performance" about="#performance"> <span rel="mo:performance_of" resource="#kunst-der-fuge">this work was performed and <a rel="mo:recorded_as" href=" beaeb2a#_"> recorded </a> by the <a rel="mo:performer" href=" 13#_"> Emerson String Quartet </a> in <span rel="event:time"><span property="tl:at" datatype="xsd:gyear">2003, with a <span rel="mo:instrument" typeof="mo:instrument"><span property="rdfs:label">first violin< /span>, a <span rel="mo:instrument" typeof="mo:instrument"><span property="rdfs:label">second violin, a <span rel="mo:instrument" typeof="mo:instrument"><span property="rdfs:label">viola< /span> and a <span rel="mo:instrument" typeof="mo:instrument"><span property="rdfs:label">cello</sp an>. Describing Bach's "The Art of Fugue" in HTML Contd. [3]

7 3.3 Queries The Web of Data, usually represented using RDF, needs its own, RDF-specific query language and facilities just as relational databases and XML need specific query languages such as SQL and XQuery, respectively. This is provided by the SPARQL query language and the accompanying protocols. SPARQL makes it possible to send queries and receive results, e.g., through HTTP or SOAP. [14] As W3C explains, SPARQL queries are based on (triple) patterns. RDF can be seen as a set of relationships among resources (i.e., RDF triples); SPARQL queries provide one or more patterns against such relationships. These triple patterns are similar to RDF triples, except that one or more of the constituent resource references are variables. A SPARQL engine would returns the resources for all triples that match these patterns. [14] Consumers are able to use SPARQL to extract possibly complex information like existing resource references and their relationships. This information can be returned, for example, in a table format, and this table can then be incorporated into another web page. This approach allows SPARQL to provide a powerful tool to build complex mash-up sites or search engines that include data stemming from the Semantic Web. [14] 3.4 Inferences Inference on the Semantic Web can be characterized, broadly speaking, by discovering new relationships or ontologies. Data is modeled as a set of named relationships between resources. Inference means that automatic procedures are able to generate new relationships based on the data and on some additional information in the form of a vocabulary or rule sets. [12] Both vocabularies (ontologies) and rule sets draw upon knowledge representation techniques. Generally speaking, ontologies concentrate on classification methods, and rules focus on defining a general mechanism for discovering and generating new relationships based on existing ones. Unlike rule sets, ontologies put an emphasis on defining 'classes' and 'subclasses', on defining how individual resources can be associated to such classes, and on characterizing the relationships among classes and their instances. [12] To improve the quality of data integration on the web, inferences are used to automatically analyze the content of data and discover new relationships. Inference based techniques are also important in discovering possible inconsistencies in the (integrated) data. [12] 4 Projects This section lists one of the many projects and tools that exist to create Semantic Web solutions: DBpedia.

8 4.1 DBpedia DBpedia Logo [9] Wikipedia has grown into one of the central knowledge sources of mankind, maintained by thousands of contributors. The DBpedia project leverages this gigantic source of knowledge by extracting structured information from Wikipedia and by making this information accessible on the Web under the terms of the Creative Commons Attribution-ShareAlike 3.0 License and the GNU Free Documentation License. [1] According to dbpedia.org, The English version of the DBpedia knowledge base currently describes 4.0 million things, out of which 3.22 million are classified in a consistent ontology, including 832,000 persons, 639,000 places (including 427,000 populated places), 372,000 creative works (including 116,000 music albums, 78,000 films and 18,500 video games), 209,000 organizations (including 49,000 companies and 45,000 educational institutions), 226,000 species and 5,600 diseases. [1] Localized versions of DBpedia are also available in 119 languages. Together, all of these versions describe 24.9 million things, out of which 16.8 million are interlinked with the concepts from the English Dbpedia. The full DBpedia data set features labels and abstracts for 12.6 million unique things in 119 different languages; 24.6 million links to images and 27.6 million links to external web pages; 45.0 million external links into other RDF datasets, 67.0 million links to Wikipedia categories, and 41.2 million YAGO categories. The dataset consists of 2.46 billion pieces of information (RDF triples) out of which 470 million were extracted from the English edition of Wikipedia, 1.98 billion were extracted from other language editions, and about 45 million are links to external datasets. [1] The DBpedia knowledge base has several advantages over existing knowledge bases. The DBpedia knowledge base covers many domains; it represents real community agreement; it automatically evolves as Wikipedia changes, and it is truly multilingual. [1] The DBpedia knowledge base allows you to ask quite surprising queries against Wikipedia, for instance Give me all cities in New Jersey with more than 10,000 inhabitants or Give me all Italian musicians from the 18th century. Altogether, the use cases of the DBpedia knowledge base are widespread and range from enterprise knowledge management, over Web search to revolutionizing Wikipedia search, dbpedia.org explains. [1] 5 Conclusion The Semantic Web is a collaborative movement which uses vocabularies, or ontologies, to define the relationships among data and create collections of interrelated datasets on the web, referred to as Linked Data. [11] [13] By promoting common data formats on the World Wide Web and by encouraging the inclusion of semantic content in web pages, the Semantic Web movement aims to convert the documents on the web into a web of data. [7] The SPARQL query language and the accompanying protocols provide a specific query language to extract possibly complex information like existing resource references and their relationships. [14]

9 Inferences are then used to automatically analyze the content of data and discover new relationships to improve the quality of data integration on the web. [12] 6 References [1] About. (2013, September 17). wiki.dbpedia.org : About. Retrieved April 30, 2014, from [2] An Example of a Music Ontology Production Workflow [Web Drawing]. Retrieved from [3] Getting Started. (n.d.). The Music Ontology. Retrieved April 29, 2014, from [4] Herman, Ivan. "Why OWL and not WOL?". Tutorial on Semantic Web Technologies. World Wide Web Consortium. Retrieved 18 April [5] Jentzsch, A. (Artist). (2011, September 19). LOD Cloud Diagram as of September 2011 [Web Graphic]. Retrieved from [6] Ontology language. (2014, April 26). Wikipedia. Retrieved April 29, 2014, from [7] Semantic Web. (2014, April 25). Wikipedia. Retrieved April 29, 2014, from [8] Tauberer, J. (2008, January 21). RDF About. GitHub. Retrieved April 29, 2014, from [9] [Web Graphic]. Retrieved from [10] Web Ontology Language. (2014, April 29). Wikipedia. Retrieved April 29, 2014, from [11] W3C. (n.d.). Data. Retrieved April 29, 2014, from [12] W3C. (n.d.). Inference. Retrieved April 29, 2014, from [13] W3C. (n.d.). Ontologies. Retrieved April 29, 2014, from [14] W3C. (n.d.). Query. Retrieved April 29, 2014, from

Semantic Web Fundamentals

Semantic Web Fundamentals Semantic Web Fundamentals Web Technologies (706.704) 3SSt VU WS 2017/18 Vedran Sabol with acknowledgements to P. Höfler, V. Pammer, W. Kienreich ISDS, TU Graz December 11 th 2017 Overview What is Semantic

More information

Linked Data: What Now? Maine Library Association 2017

Linked Data: What Now? Maine Library Association 2017 Linked Data: What Now? Maine Library Association 2017 Linked Data What is Linked Data Linked Data refers to a set of best practices for publishing and connecting structured data on the Web. URIs - Uniform

More information

Semantic Web Fundamentals

Semantic Web Fundamentals Semantic Web Fundamentals Web Technologies (706.704) 3SSt VU WS 2018/19 with acknowledgements to P. Höfler, V. Pammer, W. Kienreich ISDS, TU Graz January 7 th 2019 Overview What is Semantic Web? Technology

More information

The Data Web and Linked Data.

The Data Web and Linked Data. Mustafa Jarrar Lecture Notes, Knowledge Engineering (SCOM7348) University of Birzeit 1 st Semester, 2011 Knowledge Engineering (SCOM7348) The Data Web and Linked Data. Dr. Mustafa Jarrar University of

More information

Proposal for Implementing Linked Open Data on Libraries Catalogue

Proposal for Implementing Linked Open Data on Libraries Catalogue Submitted on: 16.07.2018 Proposal for Implementing Linked Open Data on Libraries Catalogue Esraa Elsayed Abdelaziz Computer Science, Arab Academy for Science and Technology, Alexandria, Egypt. E-mail address:

More information

The Semantic Web Revisited. Nigel Shadbolt Tim Berners-Lee Wendy Hall

The Semantic Web Revisited. Nigel Shadbolt Tim Berners-Lee Wendy Hall The Semantic Web Revisited Nigel Shadbolt Tim Berners-Lee Wendy Hall Today sweb It is designed for human consumption Information retrieval is mainly supported by keyword-based search engines Some problems

More information

THE GETTY VOCABULARIES TECHNICAL UPDATE

THE GETTY VOCABULARIES TECHNICAL UPDATE AAT TGN ULAN CONA THE GETTY VOCABULARIES TECHNICAL UPDATE International Working Group Meetings January 7-10, 2013 Joan Cobb Gregg Garcia Information Technology Services J. Paul Getty Trust International

More information

SEMANTIC WEB AN INTRODUCTION. Luigi De https://elite.polito.it

SEMANTIC WEB AN INTRODUCTION. Luigi De https://elite.polito.it SEMANTIC WEB AN INTRODUCTION Luigi De Russis @luigidr https://elite.polito.it THE WEB IS A WEB OF DOCUMENT FOR PEOPLE, NOT FOR MACHINES 2 THE WEB IS A WEB OF DOCUMENT 3 THE SEMANTIC WEB IS A WEB OF DATA

More information

BUILDING THE SEMANTIC WEB

BUILDING THE SEMANTIC WEB BUILDING THE SEMANTIC WEB You might have come across the term Semantic Web Applications often, during talks about the future of Web apps. Check out what this is all about There are two aspects to the possible

More information

DBPedia (dbpedia.org)

DBPedia (dbpedia.org) Matt Harbers Databases and the Web April 22 nd, 2011 DBPedia (dbpedia.org) What is it? DBpedia is a community whose goal is to provide a web based open source data set of RDF triples based on Wikipedia

More information

Abstract: In this paper we propose research on how the

Abstract: In this paper we propose research on how the The Semantic Web Converting the Current Web Services Imran Alam Shoeb Ahad Siddiqui Nida Khan Deptt Of CS Deptt Of CSE Deptt Of CSE Jamia Hamdard, Delhi Integral University, Lucknow Integral University,

More information

State of the Art of Semantic Web

State of the Art of Semantic Web State of the Art of Semantic Web Ali Alqazzaz Computer Science and Engineering Department Oakland University Rochester Hills, MI 48307, USA gazzaz86@gmail.com Abstract Semantic web is an attempt to provide

More information

COMP6217 Social Networking Technologies Web evolution and the Social Semantic Web. Dr Thanassis Tiropanis

COMP6217 Social Networking Technologies Web evolution and the Social Semantic Web. Dr Thanassis Tiropanis COMP6217 Social Networking Technologies Web evolution and the Social Semantic Web Dr Thanassis Tiropanis t.tiropanis@southampton.ac.uk The narrative Semantic Web Technologies The Web of data and the semantic

More information

Semantics. Matthew J. Graham CACR. Methods of Computational Science Caltech, 2011 May 10. matthew graham

Semantics. Matthew J. Graham CACR. Methods of Computational Science Caltech, 2011 May 10. matthew graham Semantics Matthew J. Graham CACR Methods of Computational Science Caltech, 2011 May 10 semantic web The future of the Internet (Web 3.0) Decentralized platform for distributed knowledge A web of databases

More information

WebGUI & the Semantic Web. William McKee WebGUI Users Conference 2009

WebGUI & the Semantic Web. William McKee WebGUI Users Conference 2009 WebGUI & the Semantic Web William McKee william@knowmad.com WebGUI Users Conference 2009 Goals of this Presentation To learn more about the Semantic Web To share Tim Berners-Lee's vision of the Web To

More information

A Developer s Guide to the Semantic Web

A Developer s Guide to the Semantic Web A Developer s Guide to the Semantic Web von Liyang Yu 1. Auflage Springer 2011 Verlag C.H. Beck im Internet: www.beck.de ISBN 978 3 642 15969 5 schnell und portofrei erhältlich bei beck-shop.de DIE FACHBUCHHANDLUNG

More information

Introduction to Linked Data

Introduction to Linked Data Introduction to Linked Data Sandro Hawke, W3C sandro@hawke.org @sandhawke http://www.w3.org/2010/talks/0608-linked-data June 8 2010, Cambridge Semantic Web Gathering Outline Context Motivation Prerequisites

More information

ITARC Stockholm Olle Olsson World Wide Web Consortium (W3C) Swedish Institute of Computer Science (SICS)

ITARC Stockholm Olle Olsson World Wide Web Consortium (W3C) Swedish Institute of Computer Science (SICS) 2 ITARC 2010 Stockholm 100420 Olle Olsson World Wide Web Consortium (W3C) Swedish Institute of Computer Science (SICS) 3 Contents Trends in information / data Critical factors... growing importance Needs

More information

ITARC Stockholm Olle Olsson World Wide Web Consortium (W3C) Swedish Institute of Computer Science (SICS)

ITARC Stockholm Olle Olsson World Wide Web Consortium (W3C) Swedish Institute of Computer Science (SICS) 2 ITARC 2010 Stockholm 100420 Olle Olsson World Wide Web Consortium (W3C) Swedish Institute of Computer Science (SICS) 3 Contents Trends in information / data Critical factors... growing importance Needs

More information

Corso di Biblioteche Digitali

Corso di Biblioteche Digitali Corso di Biblioteche Digitali Vittore Casarosa casarosa@isti.cnr.it tel. 050-315 3115 cell. 348-397 2168 Ricevimento dopo la lezione o per appuntamento Valutazione finale 70-75% esame orale 25-30% progetto

More information

Semantic Web: vision and reality

Semantic Web: vision and reality Semantic Web: vision and reality Mile Jovanov, Marjan Gusev Institute of Informatics, FNSM, Gazi Baba b.b., 1000 Skopje {mile, marjan}@ii.edu.mk Abstract. Semantic Web is set of technologies currently

More information

Knowledge Representation in Social Context. CS227 Spring 2011

Knowledge Representation in Social Context. CS227 Spring 2011 7. Knowledge Representation in Social Context CS227 Spring 2011 Outline Vision for Social Machines From Web to Semantic Web Two Use Cases Summary The Beginning g of Social Machines Image credit: http://www.lifehack.org

More information

Corso di Biblioteche Digitali

Corso di Biblioteche Digitali Corso di Biblioteche Digitali Vittore Casarosa casarosa@isti.cnr.it tel. 050-315 3115 cell. 348-397 2168 Ricevimento dopo la lezione o per appuntamento Valutazione finale 70-75% esame orale 25-30% progetto

More information

Linked Data Evolving the Web into a Global Data Space

Linked Data Evolving the Web into a Global Data Space Linked Data Evolving the Web into a Global Data Space Anja Jentzsch, Freie Universität Berlin 05 October 2011 EuropeanaTech 2011, Vienna 1 Architecture of the classic Web Single global document space Web

More information

Why You Should Care About Linked Data and Open Data Linked Open Data (LOD) in Libraries

Why You Should Care About Linked Data and Open Data Linked Open Data (LOD) in Libraries Why You Should Care About Linked Data and Open Data Linked Open Data (LOD) in Libraries Florida Library Webinars Novare Library Services May 30, 2014 Jason Clark Head of Library Informatics & Computing

More information

Semantic Web and Linked Data

Semantic Web and Linked Data Semantic Web and Linked Data Petr Křemen December 2012 Contents Semantic Web Technologies Overview Linked Data Semantic Web Technologies Overview Semantic Web Technology Stack from Wikipedia. http://wikipedia.org/wiki/semantic_web,

More information

DBpedia Extracting structured data from Wikipedia

DBpedia Extracting structured data from Wikipedia DBpedia Extracting structured data from Wikipedia Anja Jentzsch, Freie Universität Berlin Köln. 24. November 2009 DBpedia DBpedia is a community effort to extract structured information from Wikipedia

More information

a paradigm for the Introduction to Semantic Web Semantic Web Angelica Lo Duca IIT-CNR Linked Open Data:

a paradigm for the Introduction to Semantic Web Semantic Web Angelica Lo Duca IIT-CNR Linked Open Data: Introduction to Semantic Web Angelica Lo Duca IIT-CNR angelica.loduca@iit.cnr.it Linked Open Data: a paradigm for the Semantic Web Course Outline Introduction to SW Give a structure to data (RDF Data Model)

More information

Semantiska webben DFS/Gbg

Semantiska webben DFS/Gbg 1 Semantiska webben 2010 DFS/Gbg 100112 Olle Olsson World Wide Web Consortium (W3C) Swedish Institute of Computer Science (SICS) With thanks to Ivan for many slides 2 Trends and forces: Technology Internet

More information

Introduction to Semantic Web

Introduction to Semantic Web ه عا ی Semantic Web Introduction to Semantic Web Morteza Amini Sharif University of Technology Fall 95-96 Outline Thinking and Intelligent Applications The World Wide Web History The Problem with the Web

More information

Contribution of OCLC, LC and IFLA

Contribution of OCLC, LC and IFLA Contribution of OCLC, LC and IFLA in The Structuring of Bibliographic Data and Authorities : A path to Linked Data BY Basma Chebani Head of Cataloging and Metadata Services, AUB Libraries Presented to

More information

A Linked Data Translation Approach to Semantic Interoperability

A Linked Data Translation Approach to Semantic Interoperability A Data Translation Approach to Semantic Interoperability November 12, 2014 Dataversity Webinar Rafael M Richards MD MS Physician Informaticist Veterans Health Administratioan U.S. Department of Veterans

More information

Linking Spatial Data from the Web

Linking Spatial Data from the Web European Geodemographics Conference London, April 1, 2009 Linking Spatial Data from the Web Christian Becker, Freie Universität Berlin Hello Name Job Christian Becker Partner, MES (consulting) PhD Student

More information

A tutorial report for SENG Agent Based Software Engineering. Course Instructor: Dr. Behrouz H. Far. XML Tutorial.

A tutorial report for SENG Agent Based Software Engineering. Course Instructor: Dr. Behrouz H. Far. XML Tutorial. A tutorial report for SENG 609.22 Agent Based Software Engineering Course Instructor: Dr. Behrouz H. Far XML Tutorial Yanan Zhang Department of Electrical and Computer Engineering University of Calgary

More information

Master Informatique Semantic Technologies. Introduction. Werner Nutt

Master Informatique Semantic Technologies. Introduction. Werner Nutt 1 Werner Nutt 2 Acknowledgment These slides are based on the slide sets RDF by Mariano Rodriguez Overview and XML for the course Semantic Web Technologies at TU Dresden by Sebastian Rudolph 3 The Semantic

More information

Chapter 2 SEMANTIC WEB. 2.1 Introduction

Chapter 2 SEMANTIC WEB. 2.1 Introduction Chapter 2 SEMANTIC WEB 2.1 Introduction The term Semantic refers to a sequence of symbols that can be used to communicate meaning and this communication can then affect behavior in different situations.

More information

The Semantic Web DEFINITIONS & APPLICATIONS

The Semantic Web DEFINITIONS & APPLICATIONS The Semantic Web DEFINITIONS & APPLICATIONS Data on the Web There are more an more data on the Web Government data, health related data, general knowledge, company information, flight information, restaurants,

More information

SPARQL Protocol And RDF Query Language

SPARQL Protocol And RDF Query Language SPARQL Protocol And RDF Query Language WS 2011/12: XML Technologies John Julian Carstens Department of Computer Science Communication Systems Group Christian-Albrechts-Universität zu Kiel March 1, 2012

More information

Semantic Web Systems Introduction Jacques Fleuriot School of Informatics

Semantic Web Systems Introduction Jacques Fleuriot School of Informatics Semantic Web Systems Introduction Jacques Fleuriot School of Informatics 11 th January 2015 Semantic Web Systems: Introduction The World Wide Web 2 Requirements of the WWW l The internet already there

More information

Semantic Technologies and CDISC Standards. Frederik Malfait, Information Architect, IMOS Consulting Scott Bahlavooni, Independent

Semantic Technologies and CDISC Standards. Frederik Malfait, Information Architect, IMOS Consulting Scott Bahlavooni, Independent Semantic Technologies and CDISC Standards Frederik Malfait, Information Architect, IMOS Consulting Scott Bahlavooni, Independent Part I Introduction to Semantic Technology Resource Description Framework

More information

Copyright 2012 Taxonomy Strategies. All rights reserved. Semantic Metadata. A Tale of Two Types of Vocabularies

Copyright 2012 Taxonomy Strategies. All rights reserved. Semantic Metadata. A Tale of Two Types of Vocabularies Taxonomy Strategies July 17, 2012 Copyright 2012 Taxonomy Strategies. All rights reserved. Semantic Metadata A Tale of Two Types of Vocabularies What is semantic metadata? Semantic relationships in the

More information

Semantic Web and Natural Language Processing

Semantic Web and Natural Language Processing Semantic Web and Natural Language Processing Wiltrud Kessler Institut für Maschinelle Sprachverarbeitung Universität Stuttgart Semantic Web Winter 2014/2015 This work is licensed under a Creative Commons

More information

Orchestrating Music Queries via the Semantic Web

Orchestrating Music Queries via the Semantic Web Orchestrating Music Queries via the Semantic Web Milos Vukicevic, John Galletly American University in Bulgaria Blagoevgrad 2700 Bulgaria +359 73 888 466 milossmi@gmail.com, jgalletly@aubg.bg Abstract

More information

What is the Semantic Web? 17 XBRL International Conference Eindhoven, the Netherlands 5st May, Ivan Herman, W3C

What is the Semantic Web? 17 XBRL International Conference Eindhoven, the Netherlands 5st May, Ivan Herman, W3C What is the Semantic Web? th 17 XBRL International Conference Eindhoven, the Netherlands 5st May, 2008 Ivan Herman, W3C (2) > Towards a Semantic Web The current Web represents information using natural

More information

From the Web to the Semantic Web: RDF and RDF Schema

From the Web to the Semantic Web: RDF and RDF Schema From the Web to the Semantic Web: RDF and RDF Schema Languages for web Master s Degree Course in Computer Engineering - (A.Y. 2016/2017) The Semantic Web [Berners-Lee et al., Scientific American, 2001]

More information

geospatial querying ApacheCon Big Data Europe 2015 Budapest, 28/9/2015

geospatial querying ApacheCon Big Data Europe 2015 Budapest, 28/9/2015 geospatial querying in ApacheCon Big Data Europe 2015 Budapest, 28/9/2015 Who am I? Sergio Fernández @wikier http://linkedin.com/in/sergiofernandez http://www.wikier.org Partner Technology Manager at Redlink

More information

Library of Congress BIBFRAME Pilot. NOTSL Fall Meeting October 30, 2015

Library of Congress BIBFRAME Pilot. NOTSL Fall Meeting October 30, 2015 Library of Congress BIBFRAME Pilot NOTSL Fall Meeting October 30, 2015 THE BIBFRAME EDITOR AND THE LC PILOT The Semantic Web and Linked Data : a Recap of the Key Concepts Learning Objectives Describe the

More information

Linking Data with RDF

Linking Data with RDF Linking Data with RDF Wiltrud Kessler Institut für Maschinelle Sprachverarbeitung Universität Stuttgart Semantic Web Winter 2014/15 This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike

More information

INF3580/4580 Semantic Technologies Spring 2015

INF3580/4580 Semantic Technologies Spring 2015 INF3580/4580 Semantic Technologies Spring 2015 Lecture 15: RDFa Martin Giese 11th May 2015 Department of Informatics University of Oslo Repetition 18 June: Guest lecture, Lars Marius Garshol 25 May: no

More information

COMP9321 Web Application Engineering

COMP9321 Web Application Engineering COMP9321 Web Application Engineering Semester 2, 2015 Dr. Amin Beheshti Service Oriented Computing Group, CSE, UNSW Australia Week 12 (Wrap-up) http://webapps.cse.unsw.edu.au/webcms2/course/index.php?cid=2411

More information

DBpedia-An Advancement Towards Content Extraction From Wikipedia

DBpedia-An Advancement Towards Content Extraction From Wikipedia DBpedia-An Advancement Towards Content Extraction From Wikipedia Neha Jain Government Degree College R.S Pura, Jammu, J&K Abstract: DBpedia is the research product of the efforts made towards extracting

More information

Contents. G52IWS: The Semantic Web. The Semantic Web. Semantic web elements. Semantic Web technologies. Semantic Web Services

Contents. G52IWS: The Semantic Web. The Semantic Web. Semantic web elements. Semantic Web technologies. Semantic Web Services Contents G52IWS: The Semantic Web Chris Greenhalgh 2007-11-10 Introduction to the Semantic Web Semantic Web technologies Overview RDF OWL Semantic Web Services Concluding comments 1 See Developing Semantic

More information

COMP9321 Web Application Engineering

COMP9321 Web Application Engineering COMP9321 Web Application Engineering Semester 1, 2017 Dr. Amin Beheshti Service Oriented Computing Group, CSE, UNSW Australia Week 12 (Wrap-up) http://webapps.cse.unsw.edu.au/webcms2/course/index.php?cid=2457

More information

Semantic Web Company. PoolParty - Server. PoolParty - Technical White Paper.

Semantic Web Company. PoolParty - Server. PoolParty - Technical White Paper. Semantic Web Company PoolParty - Server PoolParty - Technical White Paper http://www.poolparty.biz Table of Contents Introduction... 3 PoolParty Technical Overview... 3 PoolParty Components Overview...

More information

RDF for Life Sciences

RDF for Life Sciences RDF for Life Sciences Presentation to Oracle Life Sciences User Group June 23, 2004 John Wilbanks World Wide Web Consortium (W3C) What is the W3C? Founded in 1994 by Tim Berners-Lee Develops common protocols

More information

The Emerging Web of Linked Data

The Emerging Web of Linked Data 4th Berlin Semantic Web Meetup 26. February 2010 The Emerging Web of Linked Data Prof. Dr. Christian Bizer Freie Universität Berlin Outline 1. From a Web of Documents to a Web of Data Web APIs and Linked

More information

Revisiting Blank Nodes in RDF to Avoid the Semantic Mismatch with SPARQL

Revisiting Blank Nodes in RDF to Avoid the Semantic Mismatch with SPARQL Revisiting Blank Nodes in RDF to Avoid the Semantic Mismatch with SPARQL Marcelo Arenas 1, Mariano Consens 2, and Alejandro Mallea 1,3 1 Pontificia Universidad Católica de Chile 2 University of Toronto

More information

COMP9321 Web Application Engineering

COMP9321 Web Application Engineering COMP9321 Web Application Engineering Semester 2, 2017 Dr. Amin Beheshti Service Oriented Computing Group, CSE, UNSW Australia Week 5 http://webapps.cse.unsw.edu.au/webcms2/course/index.php?cid=2465 1 Semantic

More information

Linked Open Data: a short introduction

Linked Open Data: a short introduction International Workshop Linked Open Data & the Jewish Cultural Heritage Rome, 20 th January 2015 Linked Open Data: a short introduction Oreste Signore (W3C Italy) Slides at: http://www.w3c.it/talks/2015/lodjch/

More information

Architecture and Applications

Architecture and Applications webinale 2010 31.05.2010 The Web of Linked Data Architecture and Applications Prof. Dr. Christian Bizer Freie Universität Berlin Outline 1. From a Web of Documents to a Web of Data Web APIs and Linked

More information

I'm going to introduce you to the basic concepts of linked data and provide some context on how linked data might be used to enhance access to

I'm going to introduce you to the basic concepts of linked data and provide some context on how linked data might be used to enhance access to I'm going to introduce you to the basic concepts of linked data and provide some context on how linked data might be used to enhance access to Canadian legal resources on the emerging semantic web. I'll

More information

a paradigm for the Semantic Web Linked Data Angelica Lo Duca IIT-CNR Linked Open Data:

a paradigm for the Semantic Web Linked Data Angelica Lo Duca IIT-CNR Linked Open Data: Linked Data Angelica Lo Duca IIT-CNR angelica.loduca@iit.cnr.it Linked Open Data: a paradigm for the Semantic Web Linked Data are a series of best practices to connect structured data through the Web.

More information

The necessity of hypermedia RDF and an approach to achieve it

The necessity of hypermedia RDF and an approach to achieve it The necessity of hypermedia RDF and an approach to achieve it Kjetil Kjernsmo 1 Department of Informatics, Postboks 1080 Blindern, 0316 Oslo, Norway kjekje@ifi.uio.no Abstract. This paper will give an

More information

Google indexed 3,3 billion of pages. Google s index contains 8,1 billion of websites

Google indexed 3,3 billion of pages. Google s index contains 8,1 billion of websites Access IT Training 2003 Google indexed 3,3 billion of pages http://searchenginewatch.com/3071371 2005 Google s index contains 8,1 billion of websites http://blog.searchenginewatch.com/050517-075657 Estimated

More information

Natural Language Processing with PoolParty

Natural Language Processing with PoolParty Natural Language Processing with PoolParty Table of Content Introduction to PoolParty 2 Resolving Language Problems 4 Key Features 5 Entity Extraction and Term Extraction 5 Shadow Concepts 6 Word Sense

More information

Prof. Dr. Christian Bizer

Prof. Dr. Christian Bizer STI Summit July 6 th, 2011, Riga, Latvia Global Data Integration and Global Data Mining Prof. Dr. Christian Bizer Freie Universität ität Berlin Germany Outline 1. Topology of the Web of Data What data

More information

Introduction. October 5, Petr Křemen Introduction October 5, / 31

Introduction. October 5, Petr Křemen Introduction October 5, / 31 Introduction Petr Křemen petr.kremen@fel.cvut.cz October 5, 2017 Petr Křemen (petr.kremen@fel.cvut.cz) Introduction October 5, 2017 1 / 31 Outline 1 About Knowledge Management 2 Overview of Ontologies

More information

The Semantic Planetary Data System

The Semantic Planetary Data System The Semantic Planetary Data System J. Steven Hughes 1, Daniel J. Crichton 1, Sean Kelly 1, and Chris Mattmann 1 1 Jet Propulsion Laboratory 4800 Oak Grove Drive Pasadena, CA 91109 USA {steve.hughes, dan.crichton,

More information

Ontology Matching and the Semantic Web

Ontology Matching and the Semantic Web Ontology Matching and the Semantic Web Heiko Paulheim TU Darmstadt, Knowledge Engineering Group / SAP Research Darmstadt WeRC Interdisciplinary Talk Series April 26th, 2011 April 26th, 2011 Department

More information

16th International World Wide Web Conference Developers Track, May 11, DBpedia. Querying Wikipedia like a Database

16th International World Wide Web Conference Developers Track, May 11, DBpedia. Querying Wikipedia like a Database 16th International World Wide Web Conference Developers Track, May 11, 2007 DBpedia Querying Wikipedia like a Database Christian Bizer, Freie Universität Berlin Sören Auer, Universität Leipzig Georgi Kobilarov,

More information

The Rich Web. Arnaud Dumont RAL Retreat * Nov 7-9, 2007

The Rich Web. Arnaud Dumont RAL Retreat * Nov 7-9, 2007 The Rich Web Arnaud Dumont RAL Retreat * Nov 7-9, 2007 The State of the Web The web is strong The web is evolving The web has been good to us The web is a key to our future success Evolution of the Web

More information

The role of vocabularies for estimating carbon footprint for food recipies using Linked Open Data

The role of vocabularies for estimating carbon footprint for food recipies using Linked Open Data The role of vocabularies for estimating carbon footprint for food recipies using Linked Open Data Ahsan Morshed Intelligent Sensing and Systems Laboratory, CSIRO, Hobart, Australia {ahsan.morshed, ritaban.dutta}@csiro.au

More information

Designing a self-medication application on Semantic Web technologies. Olivier Curé UPEM LIGM, France

Designing a self-medication application on Semantic Web technologies. Olivier Curé UPEM LIGM, France Designing a self-medication application on Semantic Web technologies Olivier Curé UPEM LIGM, France Overview Self-medication applications Symptom & Drug DB Overview Self-medication applications Symptom

More information

Linked Data. Linking data and expanding service. 1 Introduction What is possible with Linked Data?

Linked Data. Linking data and expanding service. 1 Introduction What is possible with Linked Data? Linked Data Linking data and expanding service Fumihito Nishino Social Innovation Laboratories, Fujitsu Laboratories Ltd. 1 Introduction What is possible with Linked Data? Linked Data has recently been

More information

SRI International, Artificial Intelligence Center Menlo Park, USA, 24 July 2009

SRI International, Artificial Intelligence Center Menlo Park, USA, 24 July 2009 SRI International, Artificial Intelligence Center Menlo Park, USA, 24 July 2009 The Emerging Web of Linked Data Chris Bizer, Freie Universität Berlin Outline 1. From a Web of Documents to a Web of Data

More information

Chapter 13: Advanced topic 3 Web 3.0

Chapter 13: Advanced topic 3 Web 3.0 Chapter 13: Advanced topic 3 Web 3.0 Contents Web 3.0 Metadata RDF SPARQL OWL Web 3.0 Web 1.0 Website publish information, user read it Ex: Web 2.0 User create content: post information, modify, delete

More information

Semantic Integration with Apache Jena and Apache Stanbol

Semantic Integration with Apache Jena and Apache Stanbol Semantic Integration with Apache Jena and Apache Stanbol All Things Open Raleigh, NC Oct. 22, 2014 Overview Theory (~10 mins) Application Examples (~10 mins) Technical Details (~25 mins) What do we mean

More information

The Implementation of Semantic Web Technology in Traditional Plant Medicine

The Implementation of Semantic Web Technology in Traditional Plant Medicine The Implementation of Semantic Web Technology in Traditional Plant Medicine Nur Ana 1, A la Syauqi 2, M Faisal 3 123 Informatics Engineering, Faculty Science and Technology State Islamic University Maulana

More information

Enhancing information services using machine to machine terminology services

Enhancing information services using machine to machine terminology services Enhancing information services using machine to machine terminology services Gordon Dunsire Presented to the IFLA 2009 Satellite Conference Looking at the past and preparing for the future 20-21 Aug 2009,

More information

A Semantic Web-Based Approach for Harvesting Multilingual Textual. definitions from Wikipedia to support ICD-11 revision

A Semantic Web-Based Approach for Harvesting Multilingual Textual. definitions from Wikipedia to support ICD-11 revision A Semantic Web-Based Approach for Harvesting Multilingual Textual Definitions from Wikipedia to Support ICD-11 Revision Guoqian Jiang 1,* Harold R. Solbrig 1 and Christopher G. Chute 1 1 Department of

More information

Untangling the semantic web:

Untangling the semantic web: Untangling the semantic web: what does it mean for scholarly publications? In this presentation Louise Tutton will decode the meaning of the Semantic Web and its ultimate benefits within the publishing

More information

Semantic Web. Semantic Web Services. Morteza Amini. Sharif University of Technology Fall 94-95

Semantic Web. Semantic Web Services. Morteza Amini. Sharif University of Technology Fall 94-95 ه عا ی Semantic Web Semantic Web Services Morteza Amini Sharif University of Technology Fall 94-95 Outline Semantic Web Services Basics Challenges in Web Services Semantics in Web Services Web Service

More information

Database of historical places, persons, and lemmas

Database of historical places, persons, and lemmas Database of historical places, persons, and lemmas Natalia Korchagina Outline 1. Introduction 1.1 Swiss Law Sources Foundation as a Digital Humanities project 1.2 Data to be stored 1.3 Final goal: how

More information

A Technique for Automatic Construction of Ontology from Existing Database to Facilitate Semantic Web

A Technique for Automatic Construction of Ontology from Existing Database to Facilitate Semantic Web 10th International Conference on Information Technology A Technique for Automatic Construction of Ontology from Existing Database to Facilitate Semantic Web Debajyoti Mukhopadhyay, Aritra Banik, Sreemoyee

More information

Web Ontology for Software Package Management

Web Ontology for Software Package Management Proceedings of the 8 th International Conference on Applied Informatics Eger, Hungary, January 27 30, 2010. Vol. 2. pp. 331 338. Web Ontology for Software Package Management Péter Jeszenszky Debreceni

More information

2. Knowledge Representation Applied Artificial Intelligence

2. Knowledge Representation Applied Artificial Intelligence 2. Knowledge Representation Applied Artificial Intelligence Prof. Dr. Bernhard Humm Faculty of Computer Science Hochschule Darmstadt University of Applied Sciences 1 Retrospective Introduction to AI What

More information

Semantic Web. Tahani Aljehani

Semantic Web. Tahani Aljehani Semantic Web Tahani Aljehani Motivation: Example 1 You are interested in SOAP Web architecture Use your favorite search engine to find the articles about SOAP Keywords-based search You'll get lots of information,

More information

Semantic Web Applications and the Semantic Web in 10 Years. Based on work of Grigoris Antoniou, Frank van Harmelen

Semantic Web Applications and the Semantic Web in 10 Years. Based on work of Grigoris Antoniou, Frank van Harmelen Semantic Web Applications and the Semantic Web in 10 Years Based on work of Grigoris Antoniou, Frank van Harmelen Semantic Web Search Engines Charting the web Charting the web Limitations of Swoogle Very

More information

Temporality in Semantic Web

Temporality in Semantic Web Temporality in Semantic Web Ph.D student: Di Wu, Graduate Center, CUNY Mentor: Abdullah Uz Tansel, Baruch College, CUNY Committee: Sarah Zelikovitz, CIS, CUNY Susan P. Imberman, CIS, CUNY Abstract Semantic

More information

Semantic Web. CS-E4410 Semantic Web, Eero Hyvönen Aalto University, Semantic Computing Research Group (SeCo)

Semantic Web. CS-E4410 Semantic Web, Eero Hyvönen Aalto University, Semantic Computing Research Group (SeCo) Semantic Web CS-E4410 Semantic Web, 10.1.2018 Eero Hyvönen Aalto University, Semantic Computing Research Group (SeCo) http://seco.cs.aalto.fi University of Helsinki, HELDIG http://heldig.fi eero.hyvonen@aalto.fi

More information

A service based on Linked Data to classify Web resources using a Knowledge Organisation System

A service based on Linked Data to classify Web resources using a Knowledge Organisation System A service based on Linked Data to classify Web resources using a Knowledge Organisation System A proof of concept in the Open Educational Resources domain Abstract One of the reasons why Web resources

More information

Prof. Dr. Chris Bizer

Prof. Dr. Chris Bizer DBpedia and the Web of Data Prof. Dr. Chris Bizer Freie Universität ität Berlin Berlin. November 28, 2008 Hello Name Job Chris Bizer Junior- Professor at Freie Universität Berlin Projects RAP - RDF API

More information

Enhancing Security Exchange Commission Data Sets Querying by Using Ontology Web Language

Enhancing Security Exchange Commission Data Sets Querying by Using Ontology Web Language MPRA Munich Personal RePEc Archive Enhancing Security Exchange Commission Data Sets Querying by Using Ontology Web Language sabina-cristiana necula Alexandru Ioan Cuza University of Iasi September 2011

More information

Controlled vocabularies, taxonomies, and thesauruses (and ontologies)

Controlled vocabularies, taxonomies, and thesauruses (and ontologies) Controlled vocabularies, taxonomies, and thesauruses (and ontologies) When people maintain a vocabulary of terms and sometimes, metadata about these terms they often use different words to refer to this

More information

Semantic Technology. Opportunities

Semantic Technology. Opportunities Semantic Technology Opportunities Avinash Punekar Scientific Publishing Services April 2011 2 Semantic Technology April 2011 3 What is Semantic Technology? ² Semantic Web ² Web 3.0 ² Linked Open Data /

More information

Lecture Telecooperation. D. Fensel Leopold-Franzens- Universität Innsbruck

Lecture Telecooperation. D. Fensel Leopold-Franzens- Universität Innsbruck Lecture Telecooperation D. Fensel Leopold-Franzens- Universität Innsbruck First Lecture: Introduction: Semantic Web & Ontology Introduction Semantic Web and Ontology Part I Introduction into the subject

More information

WHAT IS WEB 3.0? Abstract. While the concept of Web2.0 has made a significant impact on the

WHAT IS WEB 3.0? Abstract. While the concept of Web2.0 has made a significant impact on the Abstract While the concept of Web2.0 has made a significant impact on the businesses of today, Impetus goes a step forward and tries to comprehend the phenomenon that is most likely to be the next avtaar

More information

1 Copyright 2011, Oracle and/or its affiliates. All rights reserved.

1 Copyright 2011, Oracle and/or its affiliates. All rights reserved. 1 Copyright 2011, Oracle and/or its affiliates. All rights reserved. Integrating Complex Financial Workflows in Oracle Database Xavier Lopez Seamus Hayes Oracle PolarLake, LTD 2 Copyright 2011, Oracle

More information

Interlinking Multimedia Principles and Requirements

Interlinking Multimedia Principles and Requirements Tobias Bürger 1, Michael Hausenblas 2 1 Semantic Technology Institute, STI Innsbruck, University of Innsbruck, 6020 Innsbruck, Austria, tobias.buerger@sti2.at 2 Institute of Information Systems & Information

More information

New Approach to Graph Databases

New Approach to Graph Databases Paper PP05 New Approach to Graph Databases Anna Berg, Capish, Malmö, Sweden Henrik Drews, Capish, Malmö, Sweden Catharina Dahlbo, Capish, Malmö, Sweden ABSTRACT Graph databases have, during the past few

More information