Understanding Data

Kingsley Uyi Idehen
Kingsley Uyi IdehenFounder & CEO at OpenLink Software
UNDERSTANDING 
DATA 
By Kingsley Idehen 
Founder & CEO, OpenLink Software
Presentation Goals 
Deconstruct Data 
Understand Data Representation 
Understand Data Access 
Understand Data Integration 
License CC-BY-SA 4.0 (International).
SITUATION ANALYSIS 
License CC-BY-SA 4.0 (International).
EVERY DAY WE HEAR 
License CC-BY-SA 4.0 (International). 
DATA IS 
BIG 
DATA IS 
OPEN 
DATA IS 
LINKED
WE ALMOST NEVERHEAR ABOUT 
License CC-BY-SA 4.0 (International). 
WHAT DATA 
ACTUALLY IS 
HOW DATA IS 
REPRESENTED 
HOW DATA IS 
ACCESSED, 
SHARED, 
& INTEGRATED
Why is Data Important? 
Data is the basis of 
Information, Knowledge, and Wisdom. 
WISDOM 
KNOWLEDGE 
INFORMATION 
DATA 
License CC-BY-SA 4.0 (International).
What is Data? 
Data is how we 
express Observation 
in reusable form. 
License CC-BY-SA 4.0 (International).
What is Observation? 
Observation is the Perception of 
Relationships between Entities. 
YOUR OBSERVATIONS 
PEOPLE, PLACES, MUSIC, DOCUMENTS, CALENDARS, 
DIARIES, ADDRESS BOOKS & MORE... 
License CC-BY-SA 4.0 (International).
What is an Entity? 
An Entity is a Distinctly Identifiable Thing 
License CC-BY-SA 4.0 (International).
How is an Entity Identified (Named) ? 
An Entity is Identified (or named) through the combined effects of 
Identifier based denotation (signification) and document content 
based connotation (description). 
License CC-BY-SA 4.0 (International).
How is an Entity Denoted? 
An Entity is Denoted (Signified) 
through the use of an Identifier. 
License CC-BY-SA 4.0 (International).
What is an Identifier? 
An Identifier is a Sign 
(or Token) that Signifies 
(Denotes, or 
“Stands For”) an Entity 
License CC-BY-SA 4.0 (International).
Identifier Types? 
Quoted Literals such as: 
“Kingsley Idehen” or ‘Kingsley Idehen’ 
Absolute References: 
<http://kingsley.idehen.net/dataspace/person/kidehen#this> 
Relative References: 
<#KingsleyIdehen> 
License CC-BY-SA 4.0 (International).
How is an Entity Described? 
Through entity relationships that are 
represented in reusable form via document 
content (sentences and statements). 
License CC-BY-SA 4.0 (International).
What is a Relationship? 
A Relationship is an Association 
between two or more Entities, 
where each has a specific Role. 
License CC-BY-SA 4.0 (International).
What is a Relationship Role? 
A Relationship Role is a 
Function performed by an Entity 
in a Relationship 
License CC-BY-SA 4.0 (International).
Relationship Role Types? 
• Entity Attribute Value EAV 
 Entity -- observation focal point 
 Attribute -- observation attribute name 
(relationship type determinant) 
 Value -- observation attribute value 
• RDF (WC3’s Resource Description Framework) 
 Subject -- observation focal point 
 Predicate -- observation attribute name 
(relationship type determinant) 
 Object -- observation attribute value 
License CC-BY-SA 4.0 (International).
Relationship Role: Predicate 
The Relationship Predicate is the Connector that 
associates an observation focal point (Subject) with 
something, in the form of an observation value (Object). 
License CC-BY-SA 4.0 (International).
Relationship Role: Subject 
Actual Entity being Observed 
License CC-BY-SA 4.0 (International).
Relationship Role: Object 
Value associated 
with an observation focal point (Subject) 
via a Relationship Predicate. 
License CC-BY-SA 4.0 (International).
Types of Values? 
• Untyped Literals (Strings) 
• Typed Literals 
 Numbers 
 Dates 
 Booleans 
 Etc. 
• References (Local and Global Hyperlinks) 
License CC-BY-SA 4.0 (International).
How are Relationships Expressed? 
Relationships are Expressed using a Language, 
i.e., a system of signs [for denotation], syntax 
[arrangement of signs to form sentences], and entity 
relation semantics [meaning of relationship roles] for 
encoding and decoding information. 
Example: 
Subject, Predicate, Object – 
Used by W3C’s Resource Description Framework (RDF) 
and Natural Language. 
License CC-BY-SA 4.0 (International).
How Are Entity Relationships Represented ? 
Entity Relationships are Represented using notations 
associated with a specific language. Examples 
include: 
• Entity Relationship Model (Network /Graph) 
Diagrams. 
• Tables (CSV files, Spreadsheets, and SQL Relational 
Database Management Systems). 
• RDF-Turtle, JSON-LD, RDF/XML, HTML+Microdata, 
HTML+RDFa etc.. 
License CC-BY-SA 4.0 (International).
Entity Relationship Diagram 
<#hasCapital> 
License CC-BY-SA 4.0 (International). 
<#PopulatedPlace> 
“France” 
<#Paris> 
<#type> 
<#hasLabel> 
<#France>
Turtle Notation Based Entity Relationship Statements 
<#France> <#Type> <#PopulatedPlace> . 
<#France> <#hasLabel> ”France” . 
<#France> <#hasCapital> <#Paris> . 
<#Paris> <#Type> <#PopulatedPlace> . 
<#Paris> <#hasLabel> ”Paris” . 
<#PopulatedPlace> <#Type> <#Place> . 
License CC-BY-SA 4.0 (International).
Entity Relationship Tables 
Delimiter: e.g., Comma 
Identifier Quote Character: Double-quotes 
Relation Header Row: Entity,Attribute,Value 
Relation Body 
Example: 
“Entity”, “Attribute” “Value” 
“France”, “Type” “PopulatedPlace” 
“France” , “hasLabel” “France” 
“France” , “hasCapital” “Paris” 
License CC-BY-SA 4.0 (International).
Statement Representation: Spreadsheet Tables 
Entity (Subject) Attribute (Predicate) Value (Object) 
#France #Type #PopulatedPlace 
#France #hasLabel “France” 
#France #hasCapital #Paris 
#Paris #Type #PopulatedPlace 
#Paris #hasLabel “Paris” 
#PopulatedPlace #Type #Place 
License CC-BY-SA 4.0 (International).
How are Statements Persisted & Transmitted? 
• Persistence: 
 To paper based documents 
 To digital realm documents 
(e.g., operating system files, web pages, etc.) 
• Transmission: 
 Text oriented serialization formats 
 Binary serialization formats 
License CC-BY-SA 4.0 (International).
Understanding Data (Recap) 
• The term “Data” refers to observation 
expressed in reusable form. 
• The term “Observation” refers to our 
perception of Entity Relationships. 
• Entity Relationships are expressed 
using a language. 
• Statements are represented using 
a variety of notations; persisted to paper 
or digital documents; and transmissible 
using a variety of serialization formats. 
License CC-BY-SA 4.0 (International).
DATA ACCESS 
License CC-BY-SA 4.0 (International).
Fundamental Challenge 
Access to Data Independent of: 
• Location 
(File or Database Management System) 
• Representation Notation 
• Serialization Format 
• Transmission Protocol 
• Host Operating Systems 
• Consumer Applications 
License CC-BY-SA 4.0 (International).
Critical Components 
• Identifiers that denote (signify) each entity associated with the 
following relationship roles: 
 Entity (Subject) 
 Attribute (Predicate) 
 Value (Object) 
• Identifiers that denote entity description documents 
(Descriptors) 
• Identifiers that provide entity naming (identification) via 
implicit or explicit [denotation]  [description document 
content] resolution using indirection (i.e., combined effect of 
denotation & connotation to deliver identification or sense) 
• Name Resolution Protocols 
• Document Content Serialization Formats 
License CC-BY-SA 4.0 (International).
Entity Identifiers (Names) 
Uniform Resource Identifier (URI) 
<http://kingsley.idehen.net/dataspace/person/kidehen#this> 
– WebID (i.e., an HTTP URI that denotes an Entity of Type: Agent 
(Person, Organization, Software, Robot etc) 
ODBC Data Source Name (DSN) 
DSN=CRM 
JDBC Data Source Name (DSN) 
DSN=CRM 
License CC-BY-SA 4.0 (International).
Entity Description Document Locators 
• Uniform Resource (Data) Locator (URL) 
o <http://kingsley.idehen.net/dataspace/person/kidehen> – an HTTP URI that denotes a 
Document on an HTTP Network 
• ODBC Data Source Name 
o DSN=CRM;HOST=crm.example.org;SVT=Oracle;DATABASE=CRM;TABLE=CUSTOMER – 
denotes an ODBC accessible Table in a SQL RDBMS 
• JDBC Data Source URL 
o jdbc:openlink://crm.example.org/SVT=Oracle/DATABASE=CRM/TABLE=CUSTOMER – 
denotes a JDBC accessible Table in a SQL RDBMS 
License CC-BY-SA 4.0 (International).
ODBC Data Source Name Challenges 
• SQL Relational Database Specific. 
• Identifiers are x.500 names that are only 
understood by operating system locked 
applications. 
• Identifiers denote RDBMS specific tables, views, 
users, and stored procedures. 
License CC-BY-SA 4.0 (International).
JDBC Data Source Name Challenges 
• SQL Relational Database Specific. 
• Identifiers are “jdbc:” scheme URIs that are only 
understood by JDBC compliant applications 
constrained by Java Virtual Machine (JVM). 
• Identifiers denote RDBMS specific tables, views, 
users, and stored procedures. 
License CC-BY-SA 4.0 (International).
HTTP URI based Data Source Name Virtues 
• Database Engine Independent. 
• Data Access Protocol Independent. 
• Data Representation Format Independent. 
• Identifiers are Literals and/or References 
(which globalize lookup scope). 
• Identifiers denote anything, i.e., an kind of entity. 
• Identifiers are “terms” that resolve to referent 
description documents, globally. 
License CC-BY-SA 4.0 (International).
Data Source Name Resolution Protocols 
• Internet based Computer Network – 
Domain Name Services (DNS) protocol 
provides Name Resolution for Computers. 
• World Wide Web Document Network – 
HTTP provides Name Resolution for Web 
Documents via HTTP URLs. 
• World Wide Web Data Network – 
HTTP provides Name Resolution for 
Entities via HTTP URIs . 
License CC-BY-SA 4.0 (International).
DNS based Linked Computer Network (Internet) 
Linked Computer Network (e.g., Internet) 
1. Computer (DNS CNAMES) Names are Data Source Name 
2. Actual Data Model and Data Access is Local and Machine OS hosted App. specific. 
License CC-BY-SA 4.0 (International). 
Internet
HTTP based Linked Document Network (Web 1.0 & 2.0) 
Linked Document Network (e.g., World Wide Web) 
1. Computer (DNS CNAMES) Names become irrelevant. 
2. Document Locators / Addresses (HTTP URLs) are Data Source Names (DSNs). 
3. One kind of Relation i.e., "LinksTo" is what connects the Documents. 
4. To machines: actual Data Model, Entity Relation Semantics, and Representation Notations are 
indecipherable from content. 
Internet 
Web 
License CC-BY-SA 4.0 (International).
HTTP based Linked Data Network (Web 3.0) 
Linked Data Network (e.g., Linked Open Data Cloud) 
1. Entity Names (HTTP URIs) are Data Source Names (DSNs) 
2. Computer (DNS CNAMES) & Document Names (HTTP URLs) become irrelevant 
3. Actual Data Model and Representation Notations are loosely coupled. 
License CC-BY-SA 4.0 (International). 
Internet 
Web 
Linked Data
LINKED DATA 
(WEBBY STRUCTURED DATA) 
License CC-BY-SA 4.0 (International).
Linked Data Fundamentals 
• Denote (“refer to” or name) entities unambiguously using URIs 
– similar to the role of “words” in natural language. 
• Use HTTP URIs so that the description of any entity can be 
looked up using any HTTP user agent – similar to the role of 
“terms “ in natural language. 
• Use human and machine readable statements 
(via open standards e.g., RDF) to create document content that 
describes entities. 
• Refer to other entities using their HTTP URI based names in 
your entity description documents – i.e., – expand the Web! 
License CC-BY-SA 4.0 (International).
Understanding HTTP URI Entity Name and 
Description Doc Address Duality 
An HTTP URI is a kind of 
identifier that denotes 
(“Refers To”) 
an entity while also 
resolving to its 
description document, 
over an HTTP Network. 
License CC-BY-SA 4.0 (International).
What is Linked Data? 
Linked Data is the use of Resolvable URIs 
to enhance Structured Data Representation. 
Basically: 
Representing Entity Relationships using Statements 
where the relationship role participants 
[Subject, Predicate, and Object (optionally)] 
are unambiguously “referred to” using Resolvable URIs. 
License CC-BY-SA 4.0 (International).
What is Linked Open Data? 
Linked Open Data is the use of HTTP URIs 
to enhance Structured Data Representation. 
Basically: 
Representing Entity Relationships using Statements 
where the relationship role participants 
[Subject, Predicate, and Object (optionally)] 
are unambiguously “referred to” using HTTP URIs. 
Note: URIs and HTTP are Open Standards 
License CC-BY-SA 4.0 (International).
Why is Linked Open Data Important? 
• It turns HTTP URIs (Hyperlinks) into Data Source Names. 
• It moves us from Open Database Connectivity to Open 
Data Connectivity – that scales from Private Data 
Spaces to the World Wide Web. 
• It delivers a powerful mechanism for virtualization of 
disparate and heterogeneous data sources (big or 
small) i.e., Data De-Silo-Fication. 
• It is inherently Platform Agnostic. 
• It delivers a Linked Open Data Cloud that scales to the 
World Wide Web. 
License CC-BY-SA 4.0 (International).
What is RDF based Linked Data? 
RDF-based Linked Data is the use of IRIs 
and Entity Relationship Type (aka. Relations) Semantics to 
enhance Structured Data Representation. 
Basically: 
Representing Entity Relationships using Statements 
where the relationship role participants 
[Subject, Predicate, and Object (optionally)] 
are unambiguously “referred to” using IRIs. 
Note: RDF and IRIs are Open Standards 
License CC-BY-SA 4.0 (International).
What is RDF based Linked Open Data? 
RDF-based Linked Open Data is the use of 
HTTP URIs & Entity Relationship Type (Relations) 
Semantics 
to enhance Structured Data Representation. 
Basically: 
Representing Entity Relationships and 
Relation Semantics using Statements 
where the relationship role participants 
[Subject, Predicate, and Object (optionally)] 
are unambiguously “referred to” using HTTP URIs. 
Note: RDF, HTTP and URIs are Open Standards 
License CC-BY-SA 4.0 (International).
What is RDF based Linked Data? 
RDF-based Linked Data is 
Web-Like Structured Data 
enhanced with RDF’s 
*explicit* machine-and 
human-comprehensible 
Entity Relationship 
Semantics. 
Identifiers, Structured Data Representation, and Logic 
License CC-BY-SA 4.0 (International). 
Linked 
Data 
RDF 
Predicate Logic 
(Entity Relationship 
Semantics)
RDF based Linked Open Data (Semantic Web) 
Semantically Enhanced Linked Data Network 
(e.g., Semantic Web of Big Linked Open Data) 
License CC-BY-SA 4.0 (International). 
Internet 
Web 
Linked Data 
Relation 
1. Entity Names (HTTP URIs) are Semantics 
Data Source Names (DSNs) 
2. Computer (DNS CNAMES) 
& Document Names (HTTP 
URLs) become irrelevant 
3. Actual Data Model and 
Representation Notations 
are loosely coupled 
4. RDF & RDF Schema Relation 
Semantics 
are accessible and 
comprehendible to 
humans and machines.
Local Linked Data (Inaccessible) 
Entity (Subject) Attribute (Predicate) Value (Object) 
urn:data:object:id:France urn:data:object:id:Type urn:data:object:id:Popula 
tedPlace 
urn:data:object:id:France urn:data:object:id:hasLabel “France” 
urn:data:object:id:France urn:data:object:id:hasCapital urn:data:object:id:Paris 
urn:data:object:id:Paris urn:data:object:id:Type urn:data:object:id:Popula 
tedPlace 
urn:data:object:id:Paris urn:data:object:id:hasLabel “Paris” 
urn:data:object:id:Populate 
dPlace 
urn:data:object:id:Type urn:data:object:id:Place 
License CC-BY-SA 4.0 (International).
Linked Data (Accessible Webby Data) 
Entity (Subject) Attribute (Predicate) Value (Object) 
http://dbpedia.org/resource/France 
http://www.w3.org/1999/02/22-rdf-syntax- 
ns#type 
http://dbpedia.org/ontology/Popula 
tedPlace 
http://dbpedia.org/resource/France 
http://www.w3.org/2000/01/rdf-schema# 
label 
“France” 
http://dbpedia.org/resource/France http://dbpedia.org/ontology/capital http://dbpedia.org/resource/Paris 
http://dbpedia.org/resource/Paris 
http://www.w3.org/1999/02/22-rdf-syntax- 
ns#type 
http://dbpedia.org/ontology/Popula 
tedPlace 
http://dbpedia.org/resource/Paris 
http://www.w3.org/2000/01/rdf-schema# 
label 
“Paris” 
http://dbpedia.org/ontology/Popula 
tedPlace 
http://www.w3.org/2000/01/rdf-schema# 
subClassOf 
http://dbpedia.org/ontology/Place 
License CC-BY-SA 4.0 (International).
Massive Linked Open Data Cloud 
License CC-BY-SA 4.0 (International).
NATURAL LANGUAGE & DATA 
“Natural Languages are the most sophisticated systems of 
communication ever developed.” – John F. Sowa 
“Once you have a truly massive amount of information 
integrated as knowledge, then the human-software system 
will be superhuman, in the same sense that mankind with 
writing is superhuman compared to mankind before 
writing.” – Douglas Lenat 
License CC-BY-SA 4.0 (International).
Natural Language & Data 
• A Word or Phrase is an identifier that names an Entity (thing) via 
implicit [denotation][referent description document content] 
resolution 
• A Term is a Word or Phrase that names an Entity via explicit, 
[denotation][referent description document content] 
resolution, using indirection. 
• A Sentence is a syntax rules constrained arrangement of Words 
and Phrases that represent types of Entity Relationships. 
• A Statement is a kind of Sentence constructed from Terms. 
License CC-BY-SA 4.0 (International).
Data (Recap) 
• A IRI is an Internationalized Identifier that has the entity naming 
characteristics of a Word or Phrase. 
• An HTTP URI is a kind of IRI that has the entity naming 
characteristics of a Term i.e., denotation (signification) and 
connotation (description) reference duality. 
• RDF enables digital sentence construction where IRIs are used to 
name Entities participating in the Subject, Predicate, and Object 
relationship roles. 
• RDF based Linked Data enables digital statement construction 
where HTTP URIs are used to denote Entities participating in the 
Subject, Predicate, and Object relationship roles. 
License CC-BY-SA 4.0 (International).
Natural Language & Data Connection 
• An RDF triple represents a “Datum” – a Sentence compromised 
of Words or Phrases. 
• An RDF based Linked Open Data Triple represents a “Webby 
Datum” – a Statement comprised of Terms. 
• RDF triple collections represent Data – Sentences. 
• RDF based Linked Open Data triple collections represent “Webby 
Data” – Statements. 
License CC-BY-SA 4.0 (International).
Live Additional Information Links 
An Glossary of terms, in Linked Data form: 
• Data 
• Big Data 
• Open Data 
• Public Open Data 
• Linked Data 
• Linked Open Data 
• Semantic Web 
• Resource Description Framework (RDF) 
License CC-BY-SA 4.0 (International).
References 
• The Role of Logic and Ontology in Language and 
Reasoning --- John F. Sowa 
• Blogic – Pat Hayes 
• Unified View of Data – Peter Chen 
• Levels of Abstraction: Net, Web, Graph – Tim Berners- 
Lee 
• What is Data? What is a Datum – Ontolog Forum 
Thread 
• Data & Relations – Ontolog Forum Thread. 
License CC-BY-SA 4.0 (International).
Additional Information 
Web Sites 
OpenLink Software 
YouID – Digital Identity Card (Certificate) Generator 
OpenLink Data Spaces – Semantically enhanced Personal & Enterprise Data Spaces & 
Collaboration Platform 
OpenLink Virtuoso - Hybrid Data Management, Integration, Application, and Identity Server 
Universal Data Access Drivers - High-Performance ODBC, JDBC, ADO.NET, and OLE-DB 
Drivers 
Social Media Data spaces 
http://kidehen.blogspot.com (weblog) 
http://www.openlinksw.com/blog/~kidehen/ (weblog) 
https://plus.google.com/112399767740508618350/posts (Google+) 
https://twitter.com/#!/kidehen (Twitter) 
Hashtag: #LinkedData (Anywhere). 
License CC-BY-SA 4.0 (International).
1 of 61

Recommended

Introduction to Big Data/Machine Learning by
Introduction to Big Data/Machine LearningIntroduction to Big Data/Machine Learning
Introduction to Big Data/Machine LearningLars Marius Garshol
306.6K views137 slides
Data Visualization - A Brief Overview by
Data Visualization - A Brief OverviewData Visualization - A Brief Overview
Data Visualization - A Brief OverviewRotary Club of North Raleigh
2.7K views38 slides
Data Visualization - What can you see? #baai17 by
Data Visualization - What can you see? #baai17Data Visualization - What can you see? #baai17
Data Visualization - What can you see? #baai17Eugene O'Loughlin
3.9K views34 slides
Oltp vs olap by
Oltp vs olapOltp vs olap
Oltp vs olapMr. Fmhyudin
61.6K views19 slides
Data visualisation & analytics with Tableau by
Data visualisation & analytics with Tableau Data visualisation & analytics with Tableau
Data visualisation & analytics with Tableau Outreach Digital
5.2K views31 slides
Introduction to Data Visualization by
Introduction to Data VisualizationIntroduction to Data Visualization
Introduction to Data VisualizationStephen Tracy
11.3K views62 slides

More Related Content

What's hot

Data visualization by
Data visualizationData visualization
Data visualizationMoushmi Dasgupta
351 views48 slides
TCS MODULE 6.pdf by
TCS MODULE 6.pdfTCS MODULE 6.pdf
TCS MODULE 6.pdfnikshaikh786
134 views11 slides
Tableau Presentation by
Tableau PresentationTableau Presentation
Tableau PresentationAndrea Bissoli
45.9K views43 slides
Understanding the difference between Data, information and knowledge by
Understanding the difference between Data, information and knowledgeUnderstanding the difference between Data, information and knowledge
Understanding the difference between Data, information and knowledgeNeeti Naag
3.8K views4 slides
Tableau ppt by
Tableau pptTableau ppt
Tableau pptSharepoint Online Training
25.4K views23 slides

What's hot(20)

Understanding the difference between Data, information and knowledge by Neeti Naag
Understanding the difference between Data, information and knowledgeUnderstanding the difference between Data, information and knowledge
Understanding the difference between Data, information and knowledge
Neeti Naag3.8K views
Classification techniques in data mining by Kamal Acharya
Classification techniques in data miningClassification techniques in data mining
Classification techniques in data mining
Kamal Acharya2.9K views
Slides: Knowledge Graphs vs. Property Graphs by DATAVERSITY
Slides: Knowledge Graphs vs. Property GraphsSlides: Knowledge Graphs vs. Property Graphs
Slides: Knowledge Graphs vs. Property Graphs
DATAVERSITY2K views
Learning Tableau - Data, Graphs, Filters, Dashboards and Advanced features by Venkata Reddy Konasani
Learning Tableau -  Data, Graphs, Filters, Dashboards and Advanced featuresLearning Tableau -  Data, Graphs, Filters, Dashboards and Advanced features
Learning Tableau - Data, Graphs, Filters, Dashboards and Advanced features
Tableau PPT by sterlingit
Tableau PPTTableau PPT
Tableau PPT
sterlingit4.9K views
Conceptual database design by Umair Shakir
Conceptual database designConceptual database design
Conceptual database design
Umair Shakir756 views
Data Visualization in Exploratory Data Analysis by Eva Durall
Data Visualization in Exploratory Data AnalysisData Visualization in Exploratory Data Analysis
Data Visualization in Exploratory Data Analysis
Eva Durall405 views
Python for Data Science | Python Data Science Tutorial | Data Science Certifi... by Edureka!
Python for Data Science | Python Data Science Tutorial | Data Science Certifi...Python for Data Science | Python Data Science Tutorial | Data Science Certifi...
Python for Data Science | Python Data Science Tutorial | Data Science Certifi...
Edureka!1.5K views
The Data Warehouse Lifecycle by bartlowe
The Data Warehouse LifecycleThe Data Warehouse Lifecycle
The Data Warehouse Lifecycle
bartlowe32.1K views

Viewers also liked

Data vs. information by
Data vs. informationData vs. information
Data vs. informationBesar Limani
26.8K views10 slides
BII The Internet Of Everything 2015 by
BII The Internet Of Everything 2015 BII The Internet Of Everything 2015
BII The Internet Of Everything 2015 BI Intelligence
75.4K views65 slides
Data and information by
Data and informationData and information
Data and informationBuxoo Abdullah
57.3K views13 slides
Pp1 data, information & knowledge by
Pp1 data, information & knowledgePp1 data, information & knowledge
Pp1 data, information & knowledgemenisantixs
16K views12 slides
Data presentation 2 by
Data presentation 2Data presentation 2
Data presentation 2Rawalpindi Medical College
124.8K views36 slides
Nature of Inquiry and Research by
Nature of Inquiry and ResearchNature of Inquiry and Research
Nature of Inquiry and ResearchDAPHNIE MONTEVERDE
64.1K views6 slides

Viewers also liked(20)

Data vs. information by Besar Limani
Data vs. informationData vs. information
Data vs. information
Besar Limani26.8K views
BII The Internet Of Everything 2015 by BI Intelligence
BII The Internet Of Everything 2015 BII The Internet Of Everything 2015
BII The Internet Of Everything 2015
BI Intelligence75.4K views
Pp1 data, information & knowledge by menisantixs
Pp1 data, information & knowledgePp1 data, information & knowledge
Pp1 data, information & knowledge
menisantixs16K views
Financing Innovations For The Bottom Of The Pyramid by Aynampudi Subbarao
Financing Innovations For The Bottom Of The PyramidFinancing Innovations For The Bottom Of The Pyramid
Financing Innovations For The Bottom Of The Pyramid
Aynampudi Subbarao1.3K views
DMann-SQLDeveloper4Reporting by David Mann
DMann-SQLDeveloper4ReportingDMann-SQLDeveloper4Reporting
DMann-SQLDeveloper4Reporting
David Mann307 views
Sql rally amsterdam Aanalysing data with Power BI and Hive by Jen Stirrup
Sql rally amsterdam Aanalysing data with Power BI and HiveSql rally amsterdam Aanalysing data with Power BI and Hive
Sql rally amsterdam Aanalysing data with Power BI and Hive
Jen Stirrup3.1K views
Oracle OpenWorld 2011 - Oracle Application Express within the Oracle SOA Suite by Douwe Pieter van den Bos
Oracle OpenWorld 2011 - Oracle Application Express within the Oracle SOA SuiteOracle OpenWorld 2011 - Oracle Application Express within the Oracle SOA Suite
Oracle OpenWorld 2011 - Oracle Application Express within the Oracle SOA Suite
OpenLink Virtuoso - Management & Decision Makers Overview by Kingsley Uyi Idehen
OpenLink Virtuoso - Management & Decision Makers OverviewOpenLink Virtuoso - Management & Decision Makers Overview
OpenLink Virtuoso - Management & Decision Makers Overview
Sql saturday denmark power bi for pdf by Jen Stirrup
Sql saturday denmark power bi for pdfSql saturday denmark power bi for pdf
Sql saturday denmark power bi for pdf
Jen Stirrup2.5K views
Oracle Apex Technical Introduction by crokitta
Oracle Apex   Technical IntroductionOracle Apex   Technical Introduction
Oracle Apex Technical Introduction
crokitta2.1K views
How to save 30% on your internal printing expenses by Chris Gallagher
How to save 30% on your internal printing expensesHow to save 30% on your internal printing expenses
How to save 30% on your internal printing expenses
Chris Gallagher228 views

Similar to Understanding Data

Understanding data -latest by
Understanding data  -latestUnderstanding data  -latest
Understanding data -latestMatt Heward-Mills
414 views58 slides
Enterprise & Web based Federated Identity Management & Data Access Controls by
Enterprise & Web based Federated Identity Management & Data Access Controls Enterprise & Web based Federated Identity Management & Data Access Controls
Enterprise & Web based Federated Identity Management & Data Access Controls Kingsley Uyi Idehen
4.6K views74 slides
Chachra, "Improving Discovery Systems Through Post Processing of Harvested Data" by
Chachra, "Improving Discovery Systems Through Post Processing of Harvested Data"Chachra, "Improving Discovery Systems Through Post Processing of Harvested Data"
Chachra, "Improving Discovery Systems Through Post Processing of Harvested Data"National Information Standards Organization (NISO)
207 views56 slides
B08 A3pc 90 Diapo Damy En by
B08 A3pc 90 Diapo Damy EnB08 A3pc 90 Diapo Damy En
B08 A3pc 90 Diapo Damy EnTerritorial Intelligence
291 views43 slides
Technical overview of the JISC Information Environment by
Technical overview of the JISC Information EnvironmentTechnical overview of the JISC Information Environment
Technical overview of the JISC Information EnvironmentAndy Powell
384 views36 slides
Virtuoso Platform Overview by
Virtuoso Platform OverviewVirtuoso Platform Overview
Virtuoso Platform OverviewKingsley Uyi Idehen
421 views46 slides

Similar to Understanding Data (20)

Enterprise & Web based Federated Identity Management & Data Access Controls by Kingsley Uyi Idehen
Enterprise & Web based Federated Identity Management & Data Access Controls Enterprise & Web based Federated Identity Management & Data Access Controls
Enterprise & Web based Federated Identity Management & Data Access Controls
Kingsley Uyi Idehen4.6K views
Technical overview of the JISC Information Environment by Andy Powell
Technical overview of the JISC Information EnvironmentTechnical overview of the JISC Information Environment
Technical overview of the JISC Information Environment
Andy Powell384 views
The JISC Information Environment and VLEs by Andy Powell
The JISC Information Environment and VLEsThe JISC Information Environment and VLEs
The JISC Information Environment and VLEs
Andy Powell491 views
X.500 More Than a Global Directory by lurdhu agnes
X.500 More Than a Global DirectoryX.500 More Than a Global Directory
X.500 More Than a Global Directory
lurdhu agnes 1.8K views
Linked Data for Czech Legislation by Martin Necasky
Linked Data for Czech LegislationLinked Data for Czech Legislation
Linked Data for Czech Legislation
Martin Necasky5K views
Linked data MLA 2015 by Cason Snow
Linked data MLA 2015Linked data MLA 2015
Linked data MLA 2015
Cason Snow129 views
Linked Data MLA 2015 by Cason Snow
Linked Data MLA 2015Linked Data MLA 2015
Linked Data MLA 2015
Cason Snow300 views
5 steps to becoming a JISC IE content provider by Andy Powell
5 steps to becoming a JISC IE content provider5 steps to becoming a JISC IE content provider
5 steps to becoming a JISC IE content provider
Andy Powell645 views
A Framework for Self-descriptive RESTful Services by ruyalarcon
A Framework for Self-descriptive RESTful ServicesA Framework for Self-descriptive RESTful Services
A Framework for Self-descriptive RESTful Services
ruyalarcon1.5K views
Swap For Dummies Rsp 2007 11 29 by Julie Allinson
Swap For Dummies Rsp 2007 11 29Swap For Dummies Rsp 2007 11 29
Swap For Dummies Rsp 2007 11 29
Julie Allinson3.4K views

More from Kingsley Uyi Idehen

LOD Cloud Knowledge Graph vs COVID-19 by
LOD Cloud Knowledge Graph vs COVID-19LOD Cloud Knowledge Graph vs COVID-19
LOD Cloud Knowledge Graph vs COVID-19Kingsley Uyi Idehen
507 views24 slides
Virtuoso, The Prometheus of RDF -- Sematics 2014 Conference Keynote by
 Virtuoso, The Prometheus of RDF -- Sematics 2014 Conference Keynote Virtuoso, The Prometheus of RDF -- Sematics 2014 Conference Keynote
Virtuoso, The Prometheus of RDF -- Sematics 2014 Conference KeynoteKingsley Uyi Idehen
13.3K views33 slides
HTML5 based PivotViewer for Visualizing LInked Data by
HTML5 based PivotViewer for Visualizing LInked Data HTML5 based PivotViewer for Visualizing LInked Data
HTML5 based PivotViewer for Visualizing LInked Data Kingsley Uyi Idehen
6.6K views23 slides
Sigma Knowledge Engineering Environment by
Sigma Knowledge Engineering EnvironmentSigma Knowledge Engineering Environment
Sigma Knowledge Engineering EnvironmentKingsley Uyi Idehen
1.4K views41 slides
Linked Open Data (LOD) Cloud & Ontology Life Cycles by
Linked Open Data (LOD) Cloud & Ontology Life Cycles Linked Open Data (LOD) Cloud & Ontology Life Cycles
Linked Open Data (LOD) Cloud & Ontology Life Cycles Kingsley Uyi Idehen
1.6K views16 slides
ISWC 2012 - Linked Data Meetup by
ISWC 2012 - Linked Data MeetupISWC 2012 - Linked Data Meetup
ISWC 2012 - Linked Data MeetupKingsley Uyi Idehen
1.1K views9 slides

More from Kingsley Uyi Idehen(20)

Virtuoso, The Prometheus of RDF -- Sematics 2014 Conference Keynote by Kingsley Uyi Idehen
 Virtuoso, The Prometheus of RDF -- Sematics 2014 Conference Keynote Virtuoso, The Prometheus of RDF -- Sematics 2014 Conference Keynote
Virtuoso, The Prometheus of RDF -- Sematics 2014 Conference Keynote
Kingsley Uyi Idehen13.3K views
HTML5 based PivotViewer for Visualizing LInked Data by Kingsley Uyi Idehen
HTML5 based PivotViewer for Visualizing LInked Data HTML5 based PivotViewer for Visualizing LInked Data
HTML5 based PivotViewer for Visualizing LInked Data
Kingsley Uyi Idehen6.6K views
Linked Open Data (LOD) Cloud & Ontology Life Cycles by Kingsley Uyi Idehen
Linked Open Data (LOD) Cloud & Ontology Life Cycles Linked Open Data (LOD) Cloud & Ontology Life Cycles
Linked Open Data (LOD) Cloud & Ontology Life Cycles
Kingsley Uyi Idehen1.6K views
Accessing the Linked Open Data Cloud via ODBC by Kingsley Uyi Idehen
Accessing the Linked Open Data Cloud via ODBCAccessing the Linked Open Data Cloud via ODBC
Accessing the Linked Open Data Cloud via ODBC
Kingsley Uyi Idehen3.8K views
Virtuoso ODBC Driver Configuration & Usage (Mac OS X) by Kingsley Uyi Idehen
Virtuoso ODBC Driver Configuration & Usage (Mac OS X)Virtuoso ODBC Driver Configuration & Usage (Mac OS X)
Virtuoso ODBC Driver Configuration & Usage (Mac OS X)
Kingsley Uyi Idehen34.9K views
Virtuoso ODBC Driver Configuration & Usage (Windows) by Kingsley Uyi Idehen
Virtuoso ODBC Driver Configuration & Usage (Windows)Virtuoso ODBC Driver Configuration & Usage (Windows)
Virtuoso ODBC Driver Configuration & Usage (Windows)
Kingsley Uyi Idehen6.2K views
Tableau Desktop as a Linked (Open) Data Front-End via ODBC by Kingsley Uyi Idehen
Tableau Desktop as a Linked (Open) Data Front-End via ODBCTableau Desktop as a Linked (Open) Data Front-End via ODBC
Tableau Desktop as a Linked (Open) Data Front-End via ODBC
Kingsley Uyi Idehen6.5K views
Using SAP Crystal Reports as a Linked (Open) Data Front-End via ODBC by Kingsley Uyi Idehen
Using SAP Crystal Reports as a Linked (Open) Data Front-End via ODBCUsing SAP Crystal Reports as a Linked (Open) Data Front-End via ODBC
Using SAP Crystal Reports as a Linked (Open) Data Front-End via ODBC
Kingsley Uyi Idehen3.5K views
Exploiting Linked (Open) Data via Microsoft Access using ODBC File DSNs by Kingsley Uyi Idehen
Exploiting Linked (Open) Data via Microsoft Access using ODBC  File DSNsExploiting Linked (Open) Data via Microsoft Access using ODBC  File DSNs
Exploiting Linked (Open) Data via Microsoft Access using ODBC File DSNs
Kingsley Uyi Idehen3.1K views
Using Tibco SpotFire (via Virtuoso ODBC) as Linked Data Front-end by Kingsley Uyi Idehen
Using Tibco SpotFire (via Virtuoso ODBC) as Linked Data Front-endUsing Tibco SpotFire (via Virtuoso ODBC) as Linked Data Front-end
Using Tibco SpotFire (via Virtuoso ODBC) as Linked Data Front-end
Kingsley Uyi Idehen6.7K views
Exploiting Linked (Open) Data via Microsoft Access by Kingsley Uyi Idehen
Exploiting Linked (Open) Data via Microsoft AccessExploiting Linked (Open) Data via Microsoft Access
Exploiting Linked (Open) Data via Microsoft Access
Kingsley Uyi Idehen3.4K views
Understanding Linked Data via EAV Model based Structured Descriptions by Kingsley Uyi Idehen
Understanding Linked Data via EAV Model based Structured DescriptionsUnderstanding Linked Data via EAV Model based Structured Descriptions
Understanding Linked Data via EAV Model based Structured Descriptions
Kingsley Uyi Idehen3.1K views
Making the Conceptual Layer Real via HTTP based Linked Data by Kingsley Uyi Idehen
Making the Conceptual Layer Real via HTTP based Linked DataMaking the Conceptual Layer Real via HTTP based Linked Data
Making the Conceptual Layer Real via HTTP based Linked Data
Kingsley Uyi Idehen1.4K views

Recently uploaded

Initiating and Advancing Your Strategic GIS Governance Strategy by
Initiating and Advancing Your Strategic GIS Governance StrategyInitiating and Advancing Your Strategic GIS Governance Strategy
Initiating and Advancing Your Strategic GIS Governance StrategySafe Software
176 views68 slides
Elevating Privacy and Security in CloudStack - Boris Stoyanov - ShapeBlue by
Elevating Privacy and Security in CloudStack - Boris Stoyanov - ShapeBlueElevating Privacy and Security in CloudStack - Boris Stoyanov - ShapeBlue
Elevating Privacy and Security in CloudStack - Boris Stoyanov - ShapeBlueShapeBlue
222 views7 slides
Keynote Talk: Open Source is Not Dead - Charles Schulz - Vates by
Keynote Talk: Open Source is Not Dead - Charles Schulz - VatesKeynote Talk: Open Source is Not Dead - Charles Schulz - Vates
Keynote Talk: Open Source is Not Dead - Charles Schulz - VatesShapeBlue
252 views15 slides
GDG Cloud Southlake 28 Brad Taylor and Shawn Augenstein Old Problems in the N... by
GDG Cloud Southlake 28 Brad Taylor and Shawn Augenstein Old Problems in the N...GDG Cloud Southlake 28 Brad Taylor and Shawn Augenstein Old Problems in the N...
GDG Cloud Southlake 28 Brad Taylor and Shawn Augenstein Old Problems in the N...James Anderson
160 views32 slides
CryptoBotsAI by
CryptoBotsAICryptoBotsAI
CryptoBotsAIchandureddyvadala199
40 views5 slides
How to Re-use Old Hardware with CloudStack. Saving Money and the Environment ... by
How to Re-use Old Hardware with CloudStack. Saving Money and the Environment ...How to Re-use Old Hardware with CloudStack. Saving Money and the Environment ...
How to Re-use Old Hardware with CloudStack. Saving Money and the Environment ...ShapeBlue
166 views28 slides

Recently uploaded(20)

Initiating and Advancing Your Strategic GIS Governance Strategy by Safe Software
Initiating and Advancing Your Strategic GIS Governance StrategyInitiating and Advancing Your Strategic GIS Governance Strategy
Initiating and Advancing Your Strategic GIS Governance Strategy
Safe Software176 views
Elevating Privacy and Security in CloudStack - Boris Stoyanov - ShapeBlue by ShapeBlue
Elevating Privacy and Security in CloudStack - Boris Stoyanov - ShapeBlueElevating Privacy and Security in CloudStack - Boris Stoyanov - ShapeBlue
Elevating Privacy and Security in CloudStack - Boris Stoyanov - ShapeBlue
ShapeBlue222 views
Keynote Talk: Open Source is Not Dead - Charles Schulz - Vates by ShapeBlue
Keynote Talk: Open Source is Not Dead - Charles Schulz - VatesKeynote Talk: Open Source is Not Dead - Charles Schulz - Vates
Keynote Talk: Open Source is Not Dead - Charles Schulz - Vates
ShapeBlue252 views
GDG Cloud Southlake 28 Brad Taylor and Shawn Augenstein Old Problems in the N... by James Anderson
GDG Cloud Southlake 28 Brad Taylor and Shawn Augenstein Old Problems in the N...GDG Cloud Southlake 28 Brad Taylor and Shawn Augenstein Old Problems in the N...
GDG Cloud Southlake 28 Brad Taylor and Shawn Augenstein Old Problems in the N...
James Anderson160 views
How to Re-use Old Hardware with CloudStack. Saving Money and the Environment ... by ShapeBlue
How to Re-use Old Hardware with CloudStack. Saving Money and the Environment ...How to Re-use Old Hardware with CloudStack. Saving Money and the Environment ...
How to Re-use Old Hardware with CloudStack. Saving Money and the Environment ...
ShapeBlue166 views
NTGapps NTG LowCode Platform by Mustafa Kuğu
NTGapps NTG LowCode Platform NTGapps NTG LowCode Platform
NTGapps NTG LowCode Platform
Mustafa Kuğu423 views
State of the Union - Rohit Yadav - Apache CloudStack by ShapeBlue
State of the Union - Rohit Yadav - Apache CloudStackState of the Union - Rohit Yadav - Apache CloudStack
State of the Union - Rohit Yadav - Apache CloudStack
ShapeBlue297 views
CloudStack and GitOps at Enterprise Scale - Alex Dometrius, Rene Glover - AT&T by ShapeBlue
CloudStack and GitOps at Enterprise Scale - Alex Dometrius, Rene Glover - AT&TCloudStack and GitOps at Enterprise Scale - Alex Dometrius, Rene Glover - AT&T
CloudStack and GitOps at Enterprise Scale - Alex Dometrius, Rene Glover - AT&T
ShapeBlue152 views
Zero to Cloud Hero: Crafting a Private Cloud from Scratch with XCP-ng, Xen Or... by ShapeBlue
Zero to Cloud Hero: Crafting a Private Cloud from Scratch with XCP-ng, Xen Or...Zero to Cloud Hero: Crafting a Private Cloud from Scratch with XCP-ng, Xen Or...
Zero to Cloud Hero: Crafting a Private Cloud from Scratch with XCP-ng, Xen Or...
ShapeBlue198 views
Extending KVM Host HA for Non-NFS Storage - Alex Ivanov - StorPool by ShapeBlue
Extending KVM Host HA for Non-NFS Storage -  Alex Ivanov - StorPoolExtending KVM Host HA for Non-NFS Storage -  Alex Ivanov - StorPool
Extending KVM Host HA for Non-NFS Storage - Alex Ivanov - StorPool
ShapeBlue123 views
Business Analyst Series 2023 - Week 4 Session 8 by DianaGray10
Business Analyst Series 2023 -  Week 4 Session 8Business Analyst Series 2023 -  Week 4 Session 8
Business Analyst Series 2023 - Week 4 Session 8
DianaGray10123 views
KVM Security Groups Under the Hood - Wido den Hollander - Your.Online by ShapeBlue
KVM Security Groups Under the Hood - Wido den Hollander - Your.OnlineKVM Security Groups Under the Hood - Wido den Hollander - Your.Online
KVM Security Groups Under the Hood - Wido den Hollander - Your.Online
ShapeBlue221 views
2FA and OAuth2 in CloudStack - Andrija Panić - ShapeBlue by ShapeBlue
2FA and OAuth2 in CloudStack - Andrija Panić - ShapeBlue2FA and OAuth2 in CloudStack - Andrija Panić - ShapeBlue
2FA and OAuth2 in CloudStack - Andrija Panić - ShapeBlue
ShapeBlue147 views
Developments to CloudStack’s SDN ecosystem: Integration with VMWare NSX 4 - P... by ShapeBlue
Developments to CloudStack’s SDN ecosystem: Integration with VMWare NSX 4 - P...Developments to CloudStack’s SDN ecosystem: Integration with VMWare NSX 4 - P...
Developments to CloudStack’s SDN ecosystem: Integration with VMWare NSX 4 - P...
ShapeBlue194 views
Future of AR - Facebook Presentation by Rob McCarty
Future of AR - Facebook PresentationFuture of AR - Facebook Presentation
Future of AR - Facebook Presentation
Rob McCarty64 views
Backup and Disaster Recovery with CloudStack and StorPool - Workshop - Venko ... by ShapeBlue
Backup and Disaster Recovery with CloudStack and StorPool - Workshop - Venko ...Backup and Disaster Recovery with CloudStack and StorPool - Workshop - Venko ...
Backup and Disaster Recovery with CloudStack and StorPool - Workshop - Venko ...
ShapeBlue184 views
DRBD Deep Dive - Philipp Reisner - LINBIT by ShapeBlue
DRBD Deep Dive - Philipp Reisner - LINBITDRBD Deep Dive - Philipp Reisner - LINBIT
DRBD Deep Dive - Philipp Reisner - LINBIT
ShapeBlue180 views
Digital Personal Data Protection (DPDP) Practical Approach For CISOs by Priyanka Aash
Digital Personal Data Protection (DPDP) Practical Approach For CISOsDigital Personal Data Protection (DPDP) Practical Approach For CISOs
Digital Personal Data Protection (DPDP) Practical Approach For CISOs
Priyanka Aash158 views

Understanding Data

  • 1. UNDERSTANDING DATA By Kingsley Idehen Founder & CEO, OpenLink Software
  • 2. Presentation Goals Deconstruct Data Understand Data Representation Understand Data Access Understand Data Integration License CC-BY-SA 4.0 (International).
  • 3. SITUATION ANALYSIS License CC-BY-SA 4.0 (International).
  • 4. EVERY DAY WE HEAR License CC-BY-SA 4.0 (International). DATA IS BIG DATA IS OPEN DATA IS LINKED
  • 5. WE ALMOST NEVERHEAR ABOUT License CC-BY-SA 4.0 (International). WHAT DATA ACTUALLY IS HOW DATA IS REPRESENTED HOW DATA IS ACCESSED, SHARED, & INTEGRATED
  • 6. Why is Data Important? Data is the basis of Information, Knowledge, and Wisdom. WISDOM KNOWLEDGE INFORMATION DATA License CC-BY-SA 4.0 (International).
  • 7. What is Data? Data is how we express Observation in reusable form. License CC-BY-SA 4.0 (International).
  • 8. What is Observation? Observation is the Perception of Relationships between Entities. YOUR OBSERVATIONS PEOPLE, PLACES, MUSIC, DOCUMENTS, CALENDARS, DIARIES, ADDRESS BOOKS & MORE... License CC-BY-SA 4.0 (International).
  • 9. What is an Entity? An Entity is a Distinctly Identifiable Thing License CC-BY-SA 4.0 (International).
  • 10. How is an Entity Identified (Named) ? An Entity is Identified (or named) through the combined effects of Identifier based denotation (signification) and document content based connotation (description). License CC-BY-SA 4.0 (International).
  • 11. How is an Entity Denoted? An Entity is Denoted (Signified) through the use of an Identifier. License CC-BY-SA 4.0 (International).
  • 12. What is an Identifier? An Identifier is a Sign (or Token) that Signifies (Denotes, or “Stands For”) an Entity License CC-BY-SA 4.0 (International).
  • 13. Identifier Types? Quoted Literals such as: “Kingsley Idehen” or ‘Kingsley Idehen’ Absolute References: <http://kingsley.idehen.net/dataspace/person/kidehen#this> Relative References: <#KingsleyIdehen> License CC-BY-SA 4.0 (International).
  • 14. How is an Entity Described? Through entity relationships that are represented in reusable form via document content (sentences and statements). License CC-BY-SA 4.0 (International).
  • 15. What is a Relationship? A Relationship is an Association between two or more Entities, where each has a specific Role. License CC-BY-SA 4.0 (International).
  • 16. What is a Relationship Role? A Relationship Role is a Function performed by an Entity in a Relationship License CC-BY-SA 4.0 (International).
  • 17. Relationship Role Types? • Entity Attribute Value EAV  Entity -- observation focal point  Attribute -- observation attribute name (relationship type determinant)  Value -- observation attribute value • RDF (WC3’s Resource Description Framework)  Subject -- observation focal point  Predicate -- observation attribute name (relationship type determinant)  Object -- observation attribute value License CC-BY-SA 4.0 (International).
  • 18. Relationship Role: Predicate The Relationship Predicate is the Connector that associates an observation focal point (Subject) with something, in the form of an observation value (Object). License CC-BY-SA 4.0 (International).
  • 19. Relationship Role: Subject Actual Entity being Observed License CC-BY-SA 4.0 (International).
  • 20. Relationship Role: Object Value associated with an observation focal point (Subject) via a Relationship Predicate. License CC-BY-SA 4.0 (International).
  • 21. Types of Values? • Untyped Literals (Strings) • Typed Literals  Numbers  Dates  Booleans  Etc. • References (Local and Global Hyperlinks) License CC-BY-SA 4.0 (International).
  • 22. How are Relationships Expressed? Relationships are Expressed using a Language, i.e., a system of signs [for denotation], syntax [arrangement of signs to form sentences], and entity relation semantics [meaning of relationship roles] for encoding and decoding information. Example: Subject, Predicate, Object – Used by W3C’s Resource Description Framework (RDF) and Natural Language. License CC-BY-SA 4.0 (International).
  • 23. How Are Entity Relationships Represented ? Entity Relationships are Represented using notations associated with a specific language. Examples include: • Entity Relationship Model (Network /Graph) Diagrams. • Tables (CSV files, Spreadsheets, and SQL Relational Database Management Systems). • RDF-Turtle, JSON-LD, RDF/XML, HTML+Microdata, HTML+RDFa etc.. License CC-BY-SA 4.0 (International).
  • 24. Entity Relationship Diagram <#hasCapital> License CC-BY-SA 4.0 (International). <#PopulatedPlace> “France” <#Paris> <#type> <#hasLabel> <#France>
  • 25. Turtle Notation Based Entity Relationship Statements <#France> <#Type> <#PopulatedPlace> . <#France> <#hasLabel> ”France” . <#France> <#hasCapital> <#Paris> . <#Paris> <#Type> <#PopulatedPlace> . <#Paris> <#hasLabel> ”Paris” . <#PopulatedPlace> <#Type> <#Place> . License CC-BY-SA 4.0 (International).
  • 26. Entity Relationship Tables Delimiter: e.g., Comma Identifier Quote Character: Double-quotes Relation Header Row: Entity,Attribute,Value Relation Body Example: “Entity”, “Attribute” “Value” “France”, “Type” “PopulatedPlace” “France” , “hasLabel” “France” “France” , “hasCapital” “Paris” License CC-BY-SA 4.0 (International).
  • 27. Statement Representation: Spreadsheet Tables Entity (Subject) Attribute (Predicate) Value (Object) #France #Type #PopulatedPlace #France #hasLabel “France” #France #hasCapital #Paris #Paris #Type #PopulatedPlace #Paris #hasLabel “Paris” #PopulatedPlace #Type #Place License CC-BY-SA 4.0 (International).
  • 28. How are Statements Persisted & Transmitted? • Persistence:  To paper based documents  To digital realm documents (e.g., operating system files, web pages, etc.) • Transmission:  Text oriented serialization formats  Binary serialization formats License CC-BY-SA 4.0 (International).
  • 29. Understanding Data (Recap) • The term “Data” refers to observation expressed in reusable form. • The term “Observation” refers to our perception of Entity Relationships. • Entity Relationships are expressed using a language. • Statements are represented using a variety of notations; persisted to paper or digital documents; and transmissible using a variety of serialization formats. License CC-BY-SA 4.0 (International).
  • 30. DATA ACCESS License CC-BY-SA 4.0 (International).
  • 31. Fundamental Challenge Access to Data Independent of: • Location (File or Database Management System) • Representation Notation • Serialization Format • Transmission Protocol • Host Operating Systems • Consumer Applications License CC-BY-SA 4.0 (International).
  • 32. Critical Components • Identifiers that denote (signify) each entity associated with the following relationship roles:  Entity (Subject)  Attribute (Predicate)  Value (Object) • Identifiers that denote entity description documents (Descriptors) • Identifiers that provide entity naming (identification) via implicit or explicit [denotation]  [description document content] resolution using indirection (i.e., combined effect of denotation & connotation to deliver identification or sense) • Name Resolution Protocols • Document Content Serialization Formats License CC-BY-SA 4.0 (International).
  • 33. Entity Identifiers (Names) Uniform Resource Identifier (URI) <http://kingsley.idehen.net/dataspace/person/kidehen#this> – WebID (i.e., an HTTP URI that denotes an Entity of Type: Agent (Person, Organization, Software, Robot etc) ODBC Data Source Name (DSN) DSN=CRM JDBC Data Source Name (DSN) DSN=CRM License CC-BY-SA 4.0 (International).
  • 34. Entity Description Document Locators • Uniform Resource (Data) Locator (URL) o <http://kingsley.idehen.net/dataspace/person/kidehen> – an HTTP URI that denotes a Document on an HTTP Network • ODBC Data Source Name o DSN=CRM;HOST=crm.example.org;SVT=Oracle;DATABASE=CRM;TABLE=CUSTOMER – denotes an ODBC accessible Table in a SQL RDBMS • JDBC Data Source URL o jdbc:openlink://crm.example.org/SVT=Oracle/DATABASE=CRM/TABLE=CUSTOMER – denotes a JDBC accessible Table in a SQL RDBMS License CC-BY-SA 4.0 (International).
  • 35. ODBC Data Source Name Challenges • SQL Relational Database Specific. • Identifiers are x.500 names that are only understood by operating system locked applications. • Identifiers denote RDBMS specific tables, views, users, and stored procedures. License CC-BY-SA 4.0 (International).
  • 36. JDBC Data Source Name Challenges • SQL Relational Database Specific. • Identifiers are “jdbc:” scheme URIs that are only understood by JDBC compliant applications constrained by Java Virtual Machine (JVM). • Identifiers denote RDBMS specific tables, views, users, and stored procedures. License CC-BY-SA 4.0 (International).
  • 37. HTTP URI based Data Source Name Virtues • Database Engine Independent. • Data Access Protocol Independent. • Data Representation Format Independent. • Identifiers are Literals and/or References (which globalize lookup scope). • Identifiers denote anything, i.e., an kind of entity. • Identifiers are “terms” that resolve to referent description documents, globally. License CC-BY-SA 4.0 (International).
  • 38. Data Source Name Resolution Protocols • Internet based Computer Network – Domain Name Services (DNS) protocol provides Name Resolution for Computers. • World Wide Web Document Network – HTTP provides Name Resolution for Web Documents via HTTP URLs. • World Wide Web Data Network – HTTP provides Name Resolution for Entities via HTTP URIs . License CC-BY-SA 4.0 (International).
  • 39. DNS based Linked Computer Network (Internet) Linked Computer Network (e.g., Internet) 1. Computer (DNS CNAMES) Names are Data Source Name 2. Actual Data Model and Data Access is Local and Machine OS hosted App. specific. License CC-BY-SA 4.0 (International). Internet
  • 40. HTTP based Linked Document Network (Web 1.0 & 2.0) Linked Document Network (e.g., World Wide Web) 1. Computer (DNS CNAMES) Names become irrelevant. 2. Document Locators / Addresses (HTTP URLs) are Data Source Names (DSNs). 3. One kind of Relation i.e., "LinksTo" is what connects the Documents. 4. To machines: actual Data Model, Entity Relation Semantics, and Representation Notations are indecipherable from content. Internet Web License CC-BY-SA 4.0 (International).
  • 41. HTTP based Linked Data Network (Web 3.0) Linked Data Network (e.g., Linked Open Data Cloud) 1. Entity Names (HTTP URIs) are Data Source Names (DSNs) 2. Computer (DNS CNAMES) & Document Names (HTTP URLs) become irrelevant 3. Actual Data Model and Representation Notations are loosely coupled. License CC-BY-SA 4.0 (International). Internet Web Linked Data
  • 42. LINKED DATA (WEBBY STRUCTURED DATA) License CC-BY-SA 4.0 (International).
  • 43. Linked Data Fundamentals • Denote (“refer to” or name) entities unambiguously using URIs – similar to the role of “words” in natural language. • Use HTTP URIs so that the description of any entity can be looked up using any HTTP user agent – similar to the role of “terms “ in natural language. • Use human and machine readable statements (via open standards e.g., RDF) to create document content that describes entities. • Refer to other entities using their HTTP URI based names in your entity description documents – i.e., – expand the Web! License CC-BY-SA 4.0 (International).
  • 44. Understanding HTTP URI Entity Name and Description Doc Address Duality An HTTP URI is a kind of identifier that denotes (“Refers To”) an entity while also resolving to its description document, over an HTTP Network. License CC-BY-SA 4.0 (International).
  • 45. What is Linked Data? Linked Data is the use of Resolvable URIs to enhance Structured Data Representation. Basically: Representing Entity Relationships using Statements where the relationship role participants [Subject, Predicate, and Object (optionally)] are unambiguously “referred to” using Resolvable URIs. License CC-BY-SA 4.0 (International).
  • 46. What is Linked Open Data? Linked Open Data is the use of HTTP URIs to enhance Structured Data Representation. Basically: Representing Entity Relationships using Statements where the relationship role participants [Subject, Predicate, and Object (optionally)] are unambiguously “referred to” using HTTP URIs. Note: URIs and HTTP are Open Standards License CC-BY-SA 4.0 (International).
  • 47. Why is Linked Open Data Important? • It turns HTTP URIs (Hyperlinks) into Data Source Names. • It moves us from Open Database Connectivity to Open Data Connectivity – that scales from Private Data Spaces to the World Wide Web. • It delivers a powerful mechanism for virtualization of disparate and heterogeneous data sources (big or small) i.e., Data De-Silo-Fication. • It is inherently Platform Agnostic. • It delivers a Linked Open Data Cloud that scales to the World Wide Web. License CC-BY-SA 4.0 (International).
  • 48. What is RDF based Linked Data? RDF-based Linked Data is the use of IRIs and Entity Relationship Type (aka. Relations) Semantics to enhance Structured Data Representation. Basically: Representing Entity Relationships using Statements where the relationship role participants [Subject, Predicate, and Object (optionally)] are unambiguously “referred to” using IRIs. Note: RDF and IRIs are Open Standards License CC-BY-SA 4.0 (International).
  • 49. What is RDF based Linked Open Data? RDF-based Linked Open Data is the use of HTTP URIs & Entity Relationship Type (Relations) Semantics to enhance Structured Data Representation. Basically: Representing Entity Relationships and Relation Semantics using Statements where the relationship role participants [Subject, Predicate, and Object (optionally)] are unambiguously “referred to” using HTTP URIs. Note: RDF, HTTP and URIs are Open Standards License CC-BY-SA 4.0 (International).
  • 50. What is RDF based Linked Data? RDF-based Linked Data is Web-Like Structured Data enhanced with RDF’s *explicit* machine-and human-comprehensible Entity Relationship Semantics. Identifiers, Structured Data Representation, and Logic License CC-BY-SA 4.0 (International). Linked Data RDF Predicate Logic (Entity Relationship Semantics)
  • 51. RDF based Linked Open Data (Semantic Web) Semantically Enhanced Linked Data Network (e.g., Semantic Web of Big Linked Open Data) License CC-BY-SA 4.0 (International). Internet Web Linked Data Relation 1. Entity Names (HTTP URIs) are Semantics Data Source Names (DSNs) 2. Computer (DNS CNAMES) & Document Names (HTTP URLs) become irrelevant 3. Actual Data Model and Representation Notations are loosely coupled 4. RDF & RDF Schema Relation Semantics are accessible and comprehendible to humans and machines.
  • 52. Local Linked Data (Inaccessible) Entity (Subject) Attribute (Predicate) Value (Object) urn:data:object:id:France urn:data:object:id:Type urn:data:object:id:Popula tedPlace urn:data:object:id:France urn:data:object:id:hasLabel “France” urn:data:object:id:France urn:data:object:id:hasCapital urn:data:object:id:Paris urn:data:object:id:Paris urn:data:object:id:Type urn:data:object:id:Popula tedPlace urn:data:object:id:Paris urn:data:object:id:hasLabel “Paris” urn:data:object:id:Populate dPlace urn:data:object:id:Type urn:data:object:id:Place License CC-BY-SA 4.0 (International).
  • 53. Linked Data (Accessible Webby Data) Entity (Subject) Attribute (Predicate) Value (Object) http://dbpedia.org/resource/France http://www.w3.org/1999/02/22-rdf-syntax- ns#type http://dbpedia.org/ontology/Popula tedPlace http://dbpedia.org/resource/France http://www.w3.org/2000/01/rdf-schema# label “France” http://dbpedia.org/resource/France http://dbpedia.org/ontology/capital http://dbpedia.org/resource/Paris http://dbpedia.org/resource/Paris http://www.w3.org/1999/02/22-rdf-syntax- ns#type http://dbpedia.org/ontology/Popula tedPlace http://dbpedia.org/resource/Paris http://www.w3.org/2000/01/rdf-schema# label “Paris” http://dbpedia.org/ontology/Popula tedPlace http://www.w3.org/2000/01/rdf-schema# subClassOf http://dbpedia.org/ontology/Place License CC-BY-SA 4.0 (International).
  • 54. Massive Linked Open Data Cloud License CC-BY-SA 4.0 (International).
  • 55. NATURAL LANGUAGE & DATA “Natural Languages are the most sophisticated systems of communication ever developed.” – John F. Sowa “Once you have a truly massive amount of information integrated as knowledge, then the human-software system will be superhuman, in the same sense that mankind with writing is superhuman compared to mankind before writing.” – Douglas Lenat License CC-BY-SA 4.0 (International).
  • 56. Natural Language & Data • A Word or Phrase is an identifier that names an Entity (thing) via implicit [denotation][referent description document content] resolution • A Term is a Word or Phrase that names an Entity via explicit, [denotation][referent description document content] resolution, using indirection. • A Sentence is a syntax rules constrained arrangement of Words and Phrases that represent types of Entity Relationships. • A Statement is a kind of Sentence constructed from Terms. License CC-BY-SA 4.0 (International).
  • 57. Data (Recap) • A IRI is an Internationalized Identifier that has the entity naming characteristics of a Word or Phrase. • An HTTP URI is a kind of IRI that has the entity naming characteristics of a Term i.e., denotation (signification) and connotation (description) reference duality. • RDF enables digital sentence construction where IRIs are used to name Entities participating in the Subject, Predicate, and Object relationship roles. • RDF based Linked Data enables digital statement construction where HTTP URIs are used to denote Entities participating in the Subject, Predicate, and Object relationship roles. License CC-BY-SA 4.0 (International).
  • 58. Natural Language & Data Connection • An RDF triple represents a “Datum” – a Sentence compromised of Words or Phrases. • An RDF based Linked Open Data Triple represents a “Webby Datum” – a Statement comprised of Terms. • RDF triple collections represent Data – Sentences. • RDF based Linked Open Data triple collections represent “Webby Data” – Statements. License CC-BY-SA 4.0 (International).
  • 59. Live Additional Information Links An Glossary of terms, in Linked Data form: • Data • Big Data • Open Data • Public Open Data • Linked Data • Linked Open Data • Semantic Web • Resource Description Framework (RDF) License CC-BY-SA 4.0 (International).
  • 60. References • The Role of Logic and Ontology in Language and Reasoning --- John F. Sowa • Blogic – Pat Hayes • Unified View of Data – Peter Chen • Levels of Abstraction: Net, Web, Graph – Tim Berners- Lee • What is Data? What is a Datum – Ontolog Forum Thread • Data & Relations – Ontolog Forum Thread. License CC-BY-SA 4.0 (International).
  • 61. Additional Information Web Sites OpenLink Software YouID – Digital Identity Card (Certificate) Generator OpenLink Data Spaces – Semantically enhanced Personal & Enterprise Data Spaces & Collaboration Platform OpenLink Virtuoso - Hybrid Data Management, Integration, Application, and Identity Server Universal Data Access Drivers - High-Performance ODBC, JDBC, ADO.NET, and OLE-DB Drivers Social Media Data spaces http://kidehen.blogspot.com (weblog) http://www.openlinksw.com/blog/~kidehen/ (weblog) https://plus.google.com/112399767740508618350/posts (Google+) https://twitter.com/#!/kidehen (Twitter) Hashtag: #LinkedData (Anywhere). License CC-BY-SA 4.0 (International).

Editor's Notes

  1. Title previously read “Data Access Challenge”
  2. Previously read: A WebID that denotes a Person Entity Typo in word organization
  3. Previously read: Uniform Resource (Data) Locator (URL) http://kingsley.idehen.net/dataspace/person/kidehen – denotes an HTTP accessible Document comprised of structured data ODBC Data Source Name DSN=CRM;HOST=crm.example.org;SVT=Oracle;DATABASE=CRM;TABLE=CUSTOMER – denotes an ODBC accessible Table JDBC Data Source URL jdbc:openlink://crm.example.org/SVT=Oracle/DATABASE=CRM/TABLE=CUSTOMER – denotes a JDBC accessible Table
  4. Previously read: Linked data principles “Refer To” (Name or Denote) Entities unambiguously using URIs. Use resolvable URIs (e.g., HTTP URIs) so that Entity Names resolve to Entity Description Documents (Descriptors). Use Structured Data to enhance the content of Entity Description Documents. Expand the Web by referring to other entities using their HTTP URIs.
  5. Previously read: Understanding HTTP URI Duality Duality endowed Identifiers that denote (“Refer To”) an entity while also resolving to its description, over an HTTP Network.
  6. Please check over colour keyed words Deleted: Words play Subject, Predicate, or Object roles in Sentences.