Created
June 26, 2018 14:50
-
-
Save kidehen/08fe775c2f4aa3a91c6dd7dd68c6e435 to your computer and use it in GitHub Desktop.
Relational Database Management Systems (RDBMS) Type Comparison
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| | RDF Triple Store | RDF Quad Store | Graph Database | Single Model RDBMS (Tables) | Multi-Model RDBMS (Tables & RDF Graphs) | | |
|-------------------------------------------------------|----------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------|---------------------------------------------|------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------| | |
| Data Modeled as Entity Relationship Types (Relations) | Y | Y | Y | Y | Y | | |
| Entity Identifiers | IRIs | IRIs | Proprietary | Proprietary | IRIs and Proprietary | | |
| Entity Relationship Type Representation | RDF Sentences/Statements (depictable as Directed Graphs) | RDF Sentences/Statements (depictable as Directed Graphs) | Proprietary (depictable as Directed Graphs) | Tables | Tables or RDF Sentences/Statements (depictable as Directed Graphs) | | |
| Entity Relationship Type Structure | subject->predicate->object 3-Tuples (or Triples) | subject->predicate->object 3-Tuples (or Triples) associated with a Named Graph (Data Source Name or Internal Document/Page) | Proprietary | N-Tuples + a Relation Header | N-Tuples + a Relation Header and/or subject->predicate->object 3-Tuples (or Triples) associated with a Named Graph (Data Source Name or Internal Document/Page) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment